/* =========================================
   THE AESTHETICS LOUNGE — Master Stylesheet
   ========================================= */

/* --- Variables & Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --cream: #F3F1EC;
  --warm-white: #FAFAF7;
  --charcoal: #112015;
  --soft-black: #0C1610;
  --olive: #112015;
  --sage: #5E6B5A;
  --gold: #A8885A;
  --taupe: #B8AFA4;
  --divider: #D5D0C8;
  --body: #3A4238;
  --muted: #5A5F56;
  --forest: #112015;
  --forest-light: #1E3528;
  --forest-mid: #2A4435;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--charcoal);
  background: var(--warm-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

/* --- NAV --- */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 1.3rem 3.5rem;
  display: flex; justify-content: space-between; align-items: center;
  transition: all 0.4s ease;
  background: transparent;
}
nav.nav-solid {
  background: rgba(250,250,248,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
nav.scrolled {
  background: rgba(250,250,248,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  padding: 0.9rem 3.5rem;
}
.nav-logo {
  display: flex; align-items: center;
  text-decoration: none;
}
.nav-logo img {
  height: 65px; width: auto;
  transition: opacity 0.4s;
}
/* Transparent nav: show white logo, hide black */
nav:not(.nav-solid) .logo-white { display: block; }
nav:not(.nav-solid) .logo-black { display: none; }
nav:not(.nav-solid).scrolled .logo-white { display: none; }
nav:not(.nav-solid).scrolled .logo-black { display: block; }
/* Solid nav: always show black logo */
nav.nav-solid .logo-white { display: none; }
nav.nav-solid .logo-black { display: block; }

.nav-links { display: flex; gap: 2.4rem; list-style: none; align-items: center; }
.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; transition: color 0.3s;
}
/* Transparent nav links */
nav:not(.nav-solid) .nav-links a { color: rgba(255,255,255,0.7); }
nav:not(.nav-solid) .nav-links a:hover { color: #fff; }
nav:not(.nav-solid).scrolled .nav-links a { color: var(--body); }
nav:not(.nav-solid).scrolled .nav-links a:hover { color: var(--charcoal); }
/* Solid nav links */
nav.nav-solid .nav-links a { color: var(--body); }
nav.nav-solid .nav-links a:hover { color: var(--charcoal); }
/* Active state */
.nav-links a.active { color: var(--gold) !important; }

.nav-cta {
  font-size: 0.68rem !important;
  padding: 0.55rem 1.4rem;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 0; transition: all 0.3s;
  color: var(--forest) !important;
}
.nav-cta:hover { background: rgba(255,255,255,0.85); }
nav.scrolled .nav-cta,
nav.nav-solid .nav-cta { background: var(--forest); border-color: var(--forest); color: #fff !important; }
nav.scrolled .nav-cta:hover,
nav.nav-solid .nav-cta:hover { background: var(--forest-dark, #1a3328); border-color: var(--forest-dark, #1a3328); color: #fff !important; }

/* Nav Phone - outline style */
.nav-phone {
  font-size: 0.68rem !important;
  padding: 0.55rem 1.4rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 0;
  color: rgba(255,255,255,0.7) !important;
  transition: all 0.3s;
}
.nav-phone:hover { 
  background: rgba(255,255,255,0.08); 
  border-color: rgba(255,255,255,0.5);
  color: #fff !important;
}
nav.scrolled .nav-phone,
nav.nav-solid .nav-phone { 
  background: transparent; 
  border-color: var(--charcoal); 
  color: var(--charcoal) !important; 
}
nav.scrolled .nav-phone:hover,
nav.nav-solid .nav-phone:hover { 
  background: var(--charcoal); 
  border-color: var(--charcoal);
  color: #fff !important;
}


/* --- SHARED TYPOGRAPHY --- */
.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 1.8rem;
}
.section-heading {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 400; line-height: 1.12;
  color: var(--charcoal); margin-bottom: 2rem;
  letter-spacing: -0.01em;
}
.accent-line {
  width: 32px; height: 2px;
  background: var(--gold); margin-bottom: 2rem;
}
.body-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem; font-weight: 300;
  line-height: 1.75; color: var(--body);
}
.body-text + .body-text { margin-top: 1rem; }
.pull-quote {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem; font-weight: 400;
  font-style: italic; line-height: 1.35;
  color: var(--olive);
  margin: 2.2rem 0;
  padding: 1.8rem 0;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}


/* --- BUTTONS --- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.8rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 1rem 2.2rem;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff; text-decoration: none; transition: all 0.35s;
}
.btn-primary:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }
.btn-primary .arrow { font-size: 1rem; transition: transform 0.3s; }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-dark {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  background: var(--charcoal); color: #fff;
  text-decoration: none; transition: all 0.35s;
}
.btn-dark:hover { background: var(--forest-mid); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.85rem 2rem;
  border: 1px solid var(--charcoal); color: var(--charcoal);
  text-decoration: none; transition: all 0.35s;
}
.btn-outline:hover { background: var(--charcoal); color: #fff; }

.btn-light {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff; text-decoration: none; transition: all 0.3s;
}
.btn-light:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.85rem 2rem;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6); text-decoration: none; transition: all 0.3s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.4); color: #fff; background: rgba(255,255,255,0.04); }


/* --- PAGE HERO (About, Services, Contact, Policies) --- */
.page-hero {
  padding: 10rem 3.5rem 5rem;
  text-align: center;
  position: relative;
}
.page-hero--cream { background: var(--cream); }
.page-hero--dark { background: var(--soft-black); }
.page-hero--cream::after {
  content: '';
  position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--divider), transparent);
}
.page-hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.page-hero--cream .page-hero-eyebrow { color: var(--sage); }
.page-hero--dark .page-hero-eyebrow { color: var(--gold); }
.page-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(3rem, 5.5vw, 4.5rem);
  font-weight: 400; line-height: 1.05;
  letter-spacing: -0.02em; margin-bottom: 1rem;
}
.page-hero--cream h1 { color: var(--charcoal); }
.page-hero--dark h1 { color: #fff; }
.page-hero h1 em { font-style: italic; }
.page-hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem; font-weight: 300;
  letter-spacing: 0.04em; max-width: 520px;
  margin: 0 auto; line-height: 1.65;
}
.page-hero--cream .page-hero-sub { color: var(--sage); }
.page-hero--dark .page-hero-sub { color: rgba(255,255,255,0.55); }

/* Forest green variant for interior pages */
.page-hero--forest { background: var(--forest); }
.page-hero--forest .page-hero-eyebrow { color: var(--gold); }
.page-hero--forest h1 { color: #fff; }
.page-hero--forest .page-hero-sub { color: rgba(255,255,255,0.6); }


/* --- SHARED CTA SECTION --- */
.cta-section {
  background: var(--forest-light);
  padding: 5.5rem 3.5rem;
}
.cta-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; justify-content: space-between;
  align-items: center; gap: 3rem;
}
.cta-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 400; color: #fff;
  line-height: 1.1; letter-spacing: -0.01em;
}
.cta-headline em { font-style: italic; }
.cta-right {
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 1.2rem;
}
.cta-right p {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem; font-weight: 300;
  color: rgba(255,255,255,0.5);
  text-align: right; max-width: 300px; line-height: 1.65;
}


/* --- FOOTER --- */
footer {
  background: var(--soft-black);
  padding: 5rem 3.5rem 2.5rem;
}
.footer-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem;
}
.footer-brand-col {
  display: flex;
  flex-direction: column;
}
.footer-brand {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem; font-weight: 400;
  color: rgba(255,255,255,0.7); margin-bottom: 0.8rem;
}
.footer-logo-link { display: inline-block; margin-bottom: 1.2rem; }
.footer-logo { height: 80px; width: auto; opacity: 0.85; transition: opacity 0.3s; }
.footer-logo-link:hover .footer-logo { opacity: 1; }
.footer-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem; font-weight: 300;
  line-height: 1.7; color: rgba(255,255,255,0.45); max-width: 300px;
}
.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-bottom: 1.4rem;
}
.footer-col a, .footer-col p {
  display: block; font-family: 'DM Sans', sans-serif;
  font-size: 1rem; font-weight: 300;
  color: rgba(255,255,255,0.45); text-decoration: none;
  margin-bottom: 0.7rem; transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold); }
.footer-book-btn {
  display: inline-block;
  margin-top: 1.2rem;
  padding: 0.8rem 1.6rem;
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff !important;
  font-size: 0.85rem !important;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s;
}
.footer-book-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}
.footer-social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.footer-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  color: rgba(255,255,255,0.5);
  transition: all 0.3s;
  margin-bottom: 0;
}
.footer-social-icons a:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(168,136,90,0.1);
}
.footer-social-icons svg {
  width: 20px;
  height: 20px;
}
.footer-bottom {
  max-width: 1400px; margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem; font-weight: 300;
  color: rgba(255,255,255,0.3);
}
.footer-social { display: flex; gap: 1.2rem; }
.footer-social a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.3s;
}
.footer-social a:hover { color: var(--gold); }


/* =========================================
   HOMEPAGE
   ========================================= */

/* Hero */
.hero {
  position: relative;
  height: 100vh; min-height: 700px;
  display: flex; overflow: hidden;
  background: var(--forest);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('/images/TAL0126-9.jpeg');
  background-size: cover;
  background-position: center;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 80%, rgba(26, 58, 37, 0.5) 0%, transparent 65%),
    radial-gradient(ellipse 60% 45% at 85% 15%, rgba(10, 22, 14, 0.4) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 50% 50%, rgba(22, 45, 30, 0.15) 0%, transparent 60%),
    linear-gradient(to bottom, rgba(17,32,21,0.4) 0%, rgba(17,32,21,0.75) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%; max-width: 1400px;
  margin: 0 auto; padding: 0 3.5rem;
  display: flex; flex-direction: column;
  justify-content: flex-end; padding-bottom: 6vh;
}
.hero-upper { animation: fadeUp 0.9s ease-out 0.15s both; }
.hero-location {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem; font-weight: 400;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(3.8rem, 8vw, 7rem);
  font-weight: 400; line-height: 0.95;
  color: #fff; letter-spacing: -0.02em; margin-bottom: 2.5rem;
}
.hero h1 em { font-style: italic; }
.hero-bottom {
  display: flex; justify-content: space-between; align-items: flex-end;
  animation: fadeUp 0.9s ease-out 0.4s both;
}
.hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem; font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.65; max-width: 400px;
}
.scroll-cue {
  position: absolute; bottom: 2.2rem; left: 50%;
  transform: translateX(-50%); z-index: 2;
  animation: fadeUp 0.8s ease-out 0.8s both;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.25), transparent);
  animation: pulse 2.2s ease-in-out infinite;
}

/* The Why */
.the-why {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 85vh;
}
.why-image { position: relative; overflow: hidden; }
.why-image-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(145deg, #cec7bd 0%, #ddd8d0 40%, #c2bab0 100%);
  display: flex; align-items: center; justify-content: center;
}
.why-image-placeholder span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--sage);
}
.why-text {
  padding: 5.5rem 4.5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.why-text .pull-quote {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.3;
  margin-bottom: 2.5rem;
}
.hero-quote {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  color: var(--charcoal);
  margin: 0 0 2.5rem 0;
  padding: 0 0 2rem 0;
  border-bottom: 1px solid var(--divider);
}
.signature {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem; font-style: italic; font-weight: 300;
  color: var(--sage); margin-top: 1.5rem;
}

/* Homepage Services Grid */
.services-section {
  background: var(--forest);
  padding: 7rem 3.5rem;
}
.services-inner { max-width: 1400px; margin: 0 auto; }
.services-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 4.5rem; padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.services-header .eyebrow { color: var(--gold); margin-bottom: 1rem; }
.services-header .section-heading { color: #fff; margin-bottom: 0; font-size: clamp(2.5rem, 4vw, 3.5rem); }
.services-header-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem; font-weight: 300;
  color: rgba(255,255,255,0.4);
  max-width: 320px; text-align: right; line-height: 1.65;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 0.75rem;
}
.svc-card {
  position: relative; overflow: hidden;
  text-decoration: none; cursor: pointer;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.svc-card-bg {
  position: absolute; inset: 0;
  transition: transform 0.6s ease;
}
.svc-card-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.svc-card:hover .svc-card-bg { transform: scale(1.05); }
.svc-card::after {
  content: ''; 
  position: absolute; 
  inset: 0;
  background: linear-gradient(to top, rgba(17,32,21,0.95) 0%, rgba(17,32,21,0.7) 35%, rgba(17,32,21,0.3) 60%, rgba(17,32,21,0.1) 100%);
  z-index: 1;
  pointer-events: none;
}
.svc-card-content {
  position: relative; z-index: 2;
  padding: 1.8rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.svc-card-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.2em; color: var(--gold); margin-bottom: 0.6rem;
}
.svc-card-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem; font-weight: 400;
  color: #fff; margin-bottom: 0.5rem; letter-spacing: -0.01em;
}
.svc-card-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; font-weight: 300;
  color: rgba(255,255,255,0.75); line-height: 1.5;
}
.svc-card-arrow {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-top: 1rem;
  opacity: 0; transform: translateY(6px); transition: all 0.3s ease;
}
.svc-card:hover .svc-card-arrow { opacity: 1; transform: translateY(0); }
.svc-view-all { text-align: center; margin-top: 3.5rem; }

/* Homepage Team */
.team-section {
  padding: 8rem 3.5rem 7rem;
  max-width: 1400px; margin: 0 auto;
}
.team-header { margin-bottom: 5rem; }
.team-header .eyebrow { margin-bottom: 1.2rem; }
.team-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(3.5rem, 7.5vw, 6rem);
  font-weight: 400; line-height: 0.95;
  color: var(--charcoal); letter-spacing: -0.02em; margin-bottom: 2.5rem;
}
.team-headline em { font-style: italic; }
.team-header-line { display: flex; justify-content: flex-end; }
.team-header-line p {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem; font-weight: 300;
  line-height: 1.7; color: var(--sage);
  max-width: 440px; padding-top: 1.5rem;
  border-top: 1px solid var(--divider);
}
.team-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.team-grid-3 {
  grid-template-columns: 1fr 1fr 1fr;
}
.team-grid-3 .team-card {
  aspect-ratio: 3/4;
}
.team-card {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4; background: var(--cream); cursor: pointer;
}
.team-card img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: top center;
  transition: transform 0.7s ease; filter: grayscale(8%);
}
.team-card:hover img { transform: scale(1.04); filter: grayscale(0%); }
.team-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,32,21,0.8) 0%, rgba(17,32,21,0) 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.8rem; transition: background 0.4s;
}
.team-card:hover .team-overlay {
  background: linear-gradient(to top, rgba(17,32,21,0.9) 0%, rgba(17,32,21,0.1) 70%);
}
.team-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem; font-weight: 400;
  color: #fff; margin-bottom: 0.5rem; letter-spacing: -0.01em;
  line-height: 1.15;
}
.team-role {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold);
  line-height: 1.4;
}
.team-creds {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem; font-weight: 300;
  color: rgba(255,255,255,0.6);
  margin-top: 0.6rem; line-height: 1.5;
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.5s ease, opacity 0.4s;
}
.team-card:hover .team-creds { max-height: 100px; opacity: 1; }


/* =========================================
   ABOUT PAGE
   ========================================= */

/* Origin */
.origin-section { padding: 7rem 3.5rem; }
.origin {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem; align-items: center;
}
.origin-image {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover; background: var(--cream);
}
.origin-placeholder {
  background: #FFF8F0;
  border: 1px dashed var(--gold);
  padding: 1.5rem; margin-top: 1.5rem; border-radius: 2px;
}
.origin-placeholder p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem; font-weight: 300;
  line-height: 1.7; color: var(--gold); font-style: italic;
}

/* Providers */
.providers {
  background: var(--forest); padding: 7rem 3.5rem;
}
.providers-inner { max-width: 1400px; margin: 0 auto; }
.providers .eyebrow { color: var(--gold); }
.providers .section-heading { color: #fff; margin-bottom: 0.6rem; }
.provider-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem; font-weight: 300;
  color: rgba(255,255,255,0.4); margin-bottom: 4rem;
  max-width: 560px; line-height: 1.65;
}
.provider-block {
  display: grid; grid-template-columns: 340px 1fr;
  gap: 4rem; align-items: start;
  padding-bottom: 5rem; margin-bottom: 5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.provider-block:last-of-type { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.provider-photo {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover; object-position: top center;
  filter: grayscale(8%); transition: filter 0.5s;
}
.provider-block:hover .provider-photo { filter: grayscale(0%); }
.provider-name {
  font-family: 'DM Serif Display', serif;
  font-size: 2.2rem; font-weight: 400;
  color: #fff; margin-bottom: 0.3rem; letter-spacing: -0.01em;
}
.provider-role {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.6rem;
}
.provider-bio {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; font-weight: 300;
  line-height: 1.8; color: rgba(255,255,255,0.55);
}
.provider-bio p + p { margin-top: 1rem; }
.credential-bar {
  margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.credential-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 0.4rem;
}
.credential-value {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem; font-weight: 400;
  color: rgba(255,255,255,0.75);
}

/* Values */
.values { background: var(--cream); padding: 5.5rem 3.5rem; }
.values-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem; text-align: center;
}
.value-icon { font-size: 1.4rem; color: var(--gold); margin-bottom: 1.2rem; }
.value-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem; font-weight: 400;
  color: var(--charcoal); margin-bottom: 0.8rem;
}
.value-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem; font-weight: 300;
  line-height: 1.7; color: var(--body);
}

/* Philosophy */
.philosophy-section { padding: 7rem 3.5rem; }
.philosophy {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
}
.philosophy .pull-quote { font-size: 1.4rem; margin: 2rem 0; }


/* =========================================
   SERVICES PAGE
   ========================================= */

/* Category Grid */
.cat-grid-section { padding: 5rem 3.5rem 3rem; }
.cat-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--divider); border: 1px solid var(--divider);
}
.cat-card {
  background: var(--warm-white); padding: 2.8rem 1.5rem;
  text-align: center; text-decoration: none;
  transition: all 0.4s; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.cat-card:hover { background: var(--cream); }
.cat-card-num {
  font-family: 'DM Serif Display', serif;
  font-size: 1rem; color: var(--gold); margin-bottom: 0.6rem;
}
.cat-card-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem; font-weight: 400;
  color: var(--charcoal); margin-bottom: 0.6rem; letter-spacing: -0.01em;
}
.cat-card-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem; font-weight: 300;
  color: var(--muted); line-height: 1.6; max-width: 260px;
}
.cat-arrow {
  display: block; margin-top: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold);
  opacity: 0; transform: translateY(4px); transition: all 0.3s;
}
.cat-card:hover .cat-arrow { opacity: 1; transform: translateY(0); }

/* Service Sections */
.svc-section { padding: 5rem 3.5rem; max-width: 1400px; margin: 0 auto; }
.svc-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  padding-bottom: 2rem; margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--divider);
}
.svc-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.6rem;
}
.svc-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  font-weight: 400; color: var(--charcoal);
  line-height: 1.12; letter-spacing: -0.01em;
}
.svc-tagline {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem; font-weight: 400;
  font-style: italic; color: var(--sage);
  text-align: right; max-width: 520px;
  white-space: nowrap;
}
.sub-cat {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
  padding: 1.2rem 0 0.4rem; margin-top: 1.5rem;
}
.svc-item {
  display: grid; grid-template-columns: 1fr auto;
  gap: 3rem; padding: 2.2rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05); align-items: start;
}
.svc-item:last-child { border-bottom: none; }
.svc-item-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.45rem; font-weight: 400;
  color: var(--charcoal); margin-bottom: 0.5rem; letter-spacing: -0.01em;
}
.addon-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-left: 0.6rem;
}
.svc-item-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem; font-weight: 300;
  line-height: 1.75; color: var(--body); max-width: 640px;
}
.svc-item-price { text-align: right; white-space: nowrap; padding-top: 0.2rem; }
.price-main {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem; font-weight: 400; color: var(--charcoal);
}
.price-unit {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem; font-weight: 300;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); display: block; margin-top: 0.2rem;
}
.price-pkg {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem; font-weight: 400;
  color: var(--gold); margin-top: 0.4rem;
}
.svc-book-btn {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem; font-weight: 400;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.7rem 1.6rem;
  border: 1px solid var(--charcoal); color: var(--charcoal);
  text-decoration: none; transition: all 0.3s; margin-top: 1rem;
}
.svc-book-btn:hover { background: var(--charcoal); color: #fff; }
.section-divider {
  border: none; border-top: 1px solid var(--divider);
  margin: 0 3.5rem; max-width: 1400px;
  margin-left: auto; margin-right: auto;
}

/* Pricing Tables */
.pricing-table {
  margin: 1.5rem 0 2rem; padding: 2rem;
  background: var(--cream); border-radius: 2px;
}
.pricing-table-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 1.2rem;
}
.pricing-grid {
  display: grid; gap: 0.7rem 2.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; font-weight: 300; color: var(--body);
}
.pricing-grid-3 { grid-template-columns: 1fr auto auto; }
.pricing-grid-2 { grid-template-columns: 1fr auto; }
.pricing-col-head {
  font-weight: 500; color: var(--sage);
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.pricing-pkg-val { color: var(--gold); }

/* Book Strip */
.book-strip { background: var(--cream); text-align: center; padding: 4rem 3.5rem; }
.book-strip p {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem; font-weight: 400;
  font-style: italic; color: var(--charcoal); margin-bottom: 1.5rem;
}


/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-grid {
  max-width: 1400px; margin: 0 auto;
  padding: 5rem 3.5rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem;
}
.contact-block { margin-bottom: 2.5rem; }
.contact-block:last-child { margin-bottom: 0; }
.contact-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 0.8rem;
}
.contact-value {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem; font-weight: 300;
  line-height: 1.75; color: var(--body);
}
.contact-value a {
  color: var(--charcoal); text-decoration: none;
  border-bottom: 1px solid var(--divider);
  transition: border-color 0.3s;
}
.contact-value a:hover { border-color: var(--gold); }

/* Contact social icons */
.contact-social-icons {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}
.contact-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--divider);
  border-radius: 50%;
  color: var(--sage);
  transition: all 0.3s;
}
.contact-social-icons a:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(168,136,90,0.08);
}
.contact-social-icons svg {
  width: 20px;
  height: 20px;
}

/* Policies */
.policies-section {
  max-width: 800px; margin: 0 auto;
  padding: 5rem 3.5rem;
}
.policy-block { margin-bottom: 3rem; }
.policy-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem; font-weight: 400;
  color: var(--charcoal); margin-bottom: 1rem;
}


/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%,100% { opacity: 1; } 50% { opacity: 0.3; }
}
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }
.reveal-d3 { transition-delay: 0.36s; }


/* =========================================
   HAMBURGER + MOBILE MENU
   ========================================= */
.nav-burger {
  display: none;
  background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
  z-index: 1001;
}
.nav-burger span {
  display: block; width: 24px; height: 1.5px;
  background: #fff; transition: all 0.3s;
}
nav.nav-solid .nav-burger span,
nav.scrolled .nav-burger span { background: var(--charcoal); }
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 999;
  background: var(--soft-black);
  align-items: center; justify-content: center;
}
.mobile-menu.open { display: flex; }
.mobile-menu-inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 1.8rem;
}
.mobile-menu-inner a {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem; color: #fff;
  text-decoration: none; transition: color 0.3s;
}
.mobile-menu-inner a:hover,
.mobile-menu-inner a.active { color: var(--gold); }
.mobile-menu-cta {
  margin-top: 1rem; font-size: 0.9rem !important;
  padding: 0.8rem 2rem;
  border: 1px solid rgba(255,255,255,0.25);
}
.mobile-menu-phone {
  margin-top: 1.5rem; font-size: 0.9rem !important;
  padding: 0.8rem 2rem;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--charcoal) !important;
}


/* =========================================
   SCROLL TO TOP
   ========================================= */
.scroll-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--divider);
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(12px);
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease,
              background 0.3s ease, border-color 0.3s ease;
  z-index: 900;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top-btn:hover {
  background: var(--forest);
  border-color: var(--forest);
  color: #fff;
  box-shadow: 0 4px 16px rgba(17, 32, 21, 0.15);
}

/* Footer Back to Top */
.footer-back-top {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-back-top:hover {
  color: var(--gold);
}
.footer-back-top svg {
  transition: transform 0.3s ease;
}
.footer-back-top:hover svg {
  transform: translateY(-2px);
}


/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-logo img { height: 50px; }

  .svc-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto; grid-auto-rows: 260px;
  }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .provider-block { grid-template-columns: 260px 1fr; gap: 3rem; }
  .values-inner { grid-template-columns: 1fr 1fr; }
  .team-grid-3 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {

  /* Homepage */
  .hero-content { padding: 0 1.5rem 5vh; }
  .hero h1 { font-size: 3.2rem; }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .the-why { grid-template-columns: 1fr; }
  .why-image { min-height: 45vh; }
  .why-text { padding: 3rem 1.5rem; }
  .services-section { padding: 5rem 1.5rem; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .services-header-sub { text-align: left; }
  .svc-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .team-section { padding: 5rem 1.5rem; }
  .team-headline { font-size: 3rem; }
  .team-header-line { justify-content: flex-start; }
  .team-header-line p { max-width: 100%; }
  .team-grid { grid-template-columns: 1fr; gap: 1rem; }
  .team-grid-3 { grid-template-columns: 1fr; }

  /* About */
  .page-hero { padding: 8rem 1.5rem 4rem; }
  .page-hero h1 { font-size: 2.8rem; }
  .origin-section { padding: 5rem 1.5rem; }
  .origin { grid-template-columns: 1fr; gap: 2.5rem; }
  .providers { padding: 5rem 1.5rem; }
  .provider-block { grid-template-columns: 1fr; }
  .provider-photo { aspect-ratio: 1/1; }
  .credential-bar { grid-template-columns: 1fr; }
  .philosophy-section { padding: 5rem 1.5rem; }
  .philosophy { grid-template-columns: 1fr; gap: 2.5rem; }
  .values { padding: 4rem 1.5rem; }
  .values-inner { grid-template-columns: 1fr; }

  /* Services */
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .cat-grid-section { padding: 2.5rem 1.2rem; }
  .svc-section { padding: 3rem 1.2rem; }
  .svc-header { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
  .svc-tagline { text-align: left; white-space: normal; }
  .svc-item { grid-template-columns: 1fr; gap: 0.8rem; }
  .svc-item-price { text-align: left; display: flex; align-items: baseline; gap: 0.6rem; flex-wrap: wrap; }
  .price-unit { display: inline; }
  .section-divider { margin: 0 1.2rem; }
  .cat-card { padding: 2rem 1.2rem; }
  .cat-card-name { font-size: 1.35rem; }
  .svc-title { font-size: 2rem; }
  .svc-item-name { font-size: 1.3rem; }
  .book-strip { padding: 3rem 1.5rem; }
  .pricing-table { padding: 1.5rem; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; padding: 3rem 1.5rem; }

  /* Policies */
  .policies-section { padding: 3rem 1.5rem; }

  /* Shared */
  .cta-section { padding: 4rem 1.5rem; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-right { align-items: center; }
  .cta-right p { text-align: center; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .scroll-top-btn { bottom: 1.5rem; right: 1.5rem; width: 42px; height: 42px; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.6rem; }
  .team-headline { font-size: 2.4rem; }
  .page-hero { padding: 8rem 1.2rem 3rem; }
  .page-hero h1 { font-size: 2.4rem; }
  .cat-grid { grid-template-columns: 1fr; }
  .svc-section { padding: 2.5rem 1rem; }
  .svc-title { font-size: 1.8rem; }
  .footer-inner { grid-template-columns: 1fr; }
}

.footer-bottom-link {
  color: var(--cream);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.footer-bottom-link:hover {
  opacity: 1;
}
.footer-divider {
  margin: 0 0.5rem;
  opacity: 0.5;
}