/* ===== DESIGN TOKENS ===== */
:root {
  /* Colors - Luxury White, Beige & Gold */
  --white: #FFFFFF;
  --ivory: #FEFCF8;
  --cream: #FAF6F0;
  --beige-light: #F5EDE3;
  --beige: #E8DFD3;
  --beige-dark: #C4B8A8;
  --gold-light: #E8D5A3;
  --gold: #C9A94E;
  --gold-dark: #A68A3E;
  --gold-deep: #8B7332;
  --charcoal: #2C2C2C;
  --graphite: #4A4A4A;
  --slate: #6B6B6B;
  --silver: #9A9A9A;

  /* Gradients */
  --gradient-gold: linear-gradient(135deg, #E8D5A3, #C9A94E, #A68A3E);
  --gradient-hero: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.55) 100%);
  --gradient-card: linear-gradient(180deg, rgba(254,252,248,0) 0%, rgba(254,252,248,1) 100%);
  --gradient-section: linear-gradient(180deg, #FEFCF8 0%, #FAF6F0 100%);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Borders & Shadows */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-soft: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.08);
  --shadow-elevated: 0 16px 64px rgba(0,0,0,0.12);
  --shadow-gold: 0 4px 32px rgba(201,169,78,0.15);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background-color: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gradient-gold);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--slate);
  max-width: 640px;
  line-height: 1.8;
  font-style: italic;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-3xl) 0;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--transition-smooth);
}

.nav.scrolled {
  background: rgba(254, 252, 248, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 169, 78, 0.12);
  padding: 0.75rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1001;
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-icon svg {
  width: 100%;
  height: 100%;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.2;
  transition: color var(--transition-smooth);
}

.nav-logo-tagline {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  transition: color var(--transition-smooth);
}

.nav.scrolled .nav-logo-name {
  color: var(--charcoal);
}

.nav.scrolled .nav-logo-tagline {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition-smooth);
}

.nav-link:hover::after {
  width: 100%;
}

.nav.scrolled .nav-link {
  color: var(--graphite);
}

.nav-link:hover {
  color: var(--gold);
}

.nav-cta {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.65rem 1.75rem;
  border: 1.5px solid var(--gold-light);
  color: var(--gold-light);
  border-radius: 100px;
  transition: all var(--transition-smooth);
}

.nav-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.nav.scrolled .nav-cta {
  border-color: var(--gold);
  color: var(--gold);
}

.nav.scrolled .nav-cta:hover {
  background: var(--gold);
  color: var(--white);
}

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition-smooth);
  border-radius: 2px;
}

.nav.scrolled .nav-toggle span {
  background: var(--charcoal);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: var(--space-3xl);
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 169, 78, 0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 169, 78, 0.25);
  border-radius: 100px;
  padding: 0.5rem 1.25rem;
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-badge-text {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-title .accent {
  color: var(--gold-light);
  font-style: italic;
  font-family: var(--font-accent);
}

.hero-description {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 580px;
  line-height: 1.8;
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.25rem;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(201, 169, 78, 0.3);
}

.btn-primary:hover {
  background: var(--gold-dark);
  box-shadow: 0 6px 28px rgba(201, 169, 78, 0.45);
  transform: translateY(-2px);
}

.btn-primary svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  animation: fadeInUp 0.8s ease-out 1.2s both;
}

.hero-scroll-text {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--gold-light), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--beige);
  padding: var(--space-xl) 0;
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 48px;
  background: var(--beige);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--slate);
  letter-spacing: 0.04em;
}

/* ===== ABOUT ===== */
.about {
  background: var(--gradient-section);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

.about-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 2px solid var(--gold-light);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.4;
}

.about-content {
  padding: var(--space-lg) 0;
}

.about-text {
  color: var(--graphite);
  margin-bottom: var(--space-lg);
  font-size: 1.05rem;
  line-height: 1.9;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 169, 78, 0.1), rgba(201, 169, 78, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.about-feature-icon svg {
  width: 18px;
  height: 18px;
}

.about-feature-text h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.about-feature-text p {
  font-size: 0.8rem;
  color: var(--slate);
  line-height: 1.5;
}

/* ===== SERVICES ===== */
.services {
  background: var(--white);
}

.services-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.services-header .section-label {
  justify-content: center;
}

.services-header .section-label::before {
  display: none;
}

.services-header .section-subtitle {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.service-card {
  background: var(--ivory);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  border: 1px solid transparent;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform var(--transition-smooth);
}

.service-card:hover {
  border-color: rgba(201, 169, 78, 0.15);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(201, 169, 78, 0.12), rgba(201, 169, 78, 0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--gold);
  transition: all var(--transition-smooth);
}

.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

.service-card:hover .service-link svg {
  transform: translateX(4px);
}

/* ===== LONGEVITY (Featured Section) ===== */
.longevity {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.longevity::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 78, 0.08) 0%, transparent 70%);
}

.longevity .section-label {
  color: var(--gold-light);
}

.longevity .section-title {
  color: var(--white);
}

.longevity .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.longevity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.longevity-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.longevity-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.longevity-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.longevity-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(201, 169, 78, 0.1);
  transition: all var(--transition-smooth);
}

.longevity-feature:hover {
  background: rgba(201, 169, 78, 0.05);
  border-color: rgba(201, 169, 78, 0.2);
}

.longevity-feature-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
  min-width: 36px;
}

.longevity-feature h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.longevity-feature p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

/* ===== GALLERY ===== */
.gallery {
  background: var(--gradient-section);
}

.gallery-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.gallery-header .section-label {
  justify-content: center;
}

.gallery-header .section-label::before {
  display: none;
}

.gallery-header .section-subtitle {
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: var(--space-md);
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item--large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item--large img {
  height: 100%;
  min-height: 440px;
}

.gallery-item:not(.gallery-item--large) img {
  height: 210px;
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.6) 100%);
  opacity: 0;
  transition: opacity var(--transition-smooth);
  display: flex;
  align-items: flex-end;
  padding: var(--space-md);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-caption {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ===== LOCATION ===== */
.location {
  background: var(--white);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.location-content {
  padding: var(--space-lg) 0;
}

.location-text {
  color: var(--graphite);
  margin-bottom: var(--space-xl);
  font-size: 1.05rem;
  line-height: 1.9;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.location-detail-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 169, 78, 0.1), rgba(201, 169, 78, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.location-detail-icon svg {
  width: 20px;
  height: 20px;
}

.location-detail h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.location-detail p {
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.5;
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
}

.location-map img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.location-map iframe {
  width: 100%;
  height: 480px;
  border: none;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--cream);
}

.testimonials-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.testimonials-header .section-label {
  justify-content: center;
}

.testimonials-header .section-label::before {
  display: none;
}

.testimonials-header .section-subtitle {
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  border: 1px solid var(--beige-light);
  transition: all var(--transition-smooth);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-sm);
  color: var(--gold);
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
}

.testimonial-text {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--graphite);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
}

.testimonial-author-info h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
}

.testimonial-author-info p {
  font-size: 0.75rem;
  color: var(--slate);
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--charcoal);
  text-align: center;
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 78, 0.1) 0%, transparent 70%);
}

.cta-section .section-label {
  justify-content: center;
  color: var(--gold-light);
}

.cta-section .section-label::before {
  display: none;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: var(--space-md);
}

.cta-subtitle {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 520px;
  margin: 0 auto var(--space-xl);
  font-style: italic;
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 2.75rem;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-smooth);
  box-shadow: 0 4px 24px rgba(201, 169, 78, 0.3);
}

.btn-gold:hover {
  background: var(--gold-dark);
  box-shadow: 0 6px 32px rgba(201, 169, 78, 0.5);
  transform: translateY(-2px);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.1rem 2.75rem;
  background: transparent;
  border: 1.5px solid rgba(201, 169, 78, 0.4);
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.btn-outline-gold:hover {
  background: rgba(201, 169, 78, 0.08);
  border-color: var(--gold);
}

/* ===== FOOTER ===== */
.footer {
  background: #1a1a1a;
  padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand .nav-logo-name {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 0.2rem;
}

.footer-brand .nav-logo-tagline {
  margin-bottom: var(--space-md);
  display: block;
}

.footer-description {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
  max-width: 320px;
}

.footer-column h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-column a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast);
}

.footer-column a:hover {
  color: var(--gold-light);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: var(--space-sm);
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  min-width: 18px;
  margin-top: 2px;
}

.footer-contact-item p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: var(--space-md);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  transition: all var(--transition-smooth);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-md);
}

.footer-bottom-links a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-links a:hover {
  color: var(--gold-light);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid,
  .longevity-grid,
  .location-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .about-image img {
    height: 400px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item--large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-item--large img {
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  :root {
    --space-3xl: 5rem;
  }

  .container {
    padding: 0 var(--space-md);
  }

  /* Nav mobile */
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(254, 252, 248, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: var(--space-lg);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-smooth);
  }

  .nav-links.active {
    opacity: 1;
    pointer-events: all;
  }

  .nav-link {
    color: var(--charcoal) !important;
    font-size: 1.2rem;
  }

  .nav-cta {
    border-color: var(--gold) !important;
    color: var(--gold) !important;
  }

  .nav-toggle {
    display: flex;
  }

  /* Hero */
  .hero {
    min-height: 600px;
  }

  .hero-content {
    padding-bottom: var(--space-xl);
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .stat-item:nth-child(2)::after {
    display: none;
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item--large {
    grid-column: span 1;
  }

  .gallery-item--large img {
    min-height: 250px;
  }

  .gallery-item:not(.gallery-item--large) img {
    height: 200px;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Location */
  .location-map iframe {
    height: 320px;
  }

  .about-image-accent {
    display: none;
  }

  .longevity-image img {
    height: 350px;
  }
}

@media (max-width: 480px) {
  :root {
    --space-3xl: 4rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }
}
