/* ===================================
   ESTHER DUTRÈO — WELLNESS & SPA
   CSS Principal
   =================================== */

:root {
  --cream:       #F7F3EE;
  --cream-deep:  #EDE6DB;
  --ivory:       #FAF8F4;
  --gold:        #B8965A;
  --gold-light:  #D4B07A;
  --gold-pale:   #F0E6D3;
  --charcoal:    #2A2520;
  --charcoal-soft:#3D3630;
  --text-body:   #4A4540;
  --text-muted:  #8A847E;
  --white:       #FFFFFF;
  --border:      rgba(184,150,90,0.25);

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Jost', system-ui, sans-serif;

  --nav-h: 80px;
  --max-w: 1200px;

  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

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

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- UTILITY ---- */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

.section { padding-block: clamp(4rem, 8vw, 7rem); }
.section--dark { background: var(--charcoal); color: var(--cream); }
.section--cream { background: var(--cream); }
.section--gold-pale { background: var(--gold-pale); }

.eyebrow {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.eyebrow::before, .eyebrow::after {
  content: '—';
  margin-inline: 0.4em;
  opacity: 0.6;
}

h1, h2, h3, h4 { font-family: var(--ff-display); line-height: 1.15; }
h1 { font-size: clamp(3.2rem, 8vw, 6.5rem); font-weight: 300; }
h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 300; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 400; }

.lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 300;
  color: var(--text-muted);
  max-width: 56ch;
}

.divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin-block: 1.5rem;
}
.divider--center { margin-inline: auto; }

/* ---- BUTTON ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.85rem 2rem;
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.35s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-smooth);
}
.btn:hover::after { transform: scaleX(1); }

.btn--gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--gold::after { background: var(--gold-light); }
.btn--gold:hover  { color: var(--white); }

.btn--outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--outline::after { background: var(--gold); }
.btn--outline:hover  { color: var(--white); }

.btn--outline-white {
  background: transparent;
  color: var(--cream);
  border-color: rgba(247,243,238,0.5);
}
.btn--outline-white::after { background: rgba(247,243,238,0.12); }
.btn--outline-white:hover  { color: var(--white); border-color: var(--cream); }

.btn span { position: relative; z-index: 1; }
.btn svg  { position: relative; z-index: 1; transition: transform 0.3s; }
.btn:hover svg { transform: translateX(3px); }


/* ==========================================
   NAVIGATION
   ========================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(250,248,244,0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav__logo-name {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}
.nav__logo-sub {
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.1rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.nav__links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  position: relative;
  padding-bottom: 3px;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease-smooth);
}
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }
.nav__links a.active { color: var(--gold); }

.nav__cta {
  padding: 0.6rem 1.4rem;
  font-size: 0.7rem;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--charcoal);
  transition: all 0.3s;
}

.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--ivory);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  text-align: center;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--charcoal);
  letter-spacing: 0.04em;
  transition: color 0.3s;
}
.nav__mobile a:hover { color: var(--gold); }


/* ==========================================
   HERO
   ========================================== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 4rem) clamp(1.5rem,5vw,4rem) 5rem clamp(1.25rem,5vw,2.5rem);
  position: relative;
  z-index: 2;
}

.hero__left::before {
  content: '';
  position: absolute;
  top: 0; right: -80px; bottom: 0;
  width: 160px;
  background: var(--ivory);
  transform: skewX(-3deg);
  z-index: 1;
}

.hero__eyebrow { z-index: 2; position: relative; }

.hero__title {
  position: relative;
  z-index: 2;
  margin-bottom: 0.3em;
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
}

.hero__tagline {
  position: relative;
  z-index: 2;
  font-family: var(--ff-display);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.hero__actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

.hero__info {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero__info-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--gold);
}

.hero__right {
  position: relative;
  overflow: hidden;
}
.hero__image {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(250,248,244,0.15) 0%, transparent 40%),
              linear-gradient(to top, rgba(42,37,32,0.35) 0%, transparent 50%);
}

/* Decorative gold line */
.hero__deco-line {
  position: absolute;
  left: clamp(1.25rem,5vw,2.5rem);
  bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  z-index: 3;
}
.hero__deco-line span {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
}
.hero__deco-line::after {
  content: '';
  width: 1px; height: 60px;
  background: var(--gold);
  opacity: 0.5;
}


/* ==========================================
   INTRO / ABOUT STRIP
   ========================================== */
.intro {
  padding-block: clamp(4rem,7vw,6rem);
  background: var(--cream);
}
.intro__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.intro__label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  writing-mode: vertical-rl;
  border-left: 1px solid var(--border);
  padding-left: 1rem;
}
.intro__number {
  font-family: var(--ff-display);
  font-size: clamp(6rem, 10vw, 10rem);
  font-weight: 300;
  color: var(--cream-deep);
  line-height: 0.85;
  margin-bottom: -0.15em;
}
.intro__heading { margin-bottom: 1rem; }
.intro__text { margin-bottom: 1.5rem; }
.intro__quote {
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-muted);
}


/* ==========================================
   SERVICES GRID
   ========================================== */
.services__header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}
.services__header .divider { margin-inline: auto; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
}

.service-card {
  background: var(--ivory);
  padding: clamp(2rem,4vw,2.8rem);
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease-smooth);
}
.service-card:hover { background: var(--cream); }
.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 44px; height: 44px;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.service-card__num {
  position: absolute;
  top: 1.2rem; right: 1.5rem;
  font-family: var(--ff-display);
  font-size: 4.5rem;
  font-weight: 300;
  color: var(--cream-deep);
  line-height: 1;
  transition: color 0.4s;
}
.service-card:hover .service-card__num { color: var(--gold-pale); }

.service-card h3 { margin-bottom: 0.6rem; }
.service-card p  { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.65; }

.service-card__link {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  transition: gap 0.3s;
}
.service-card__link:hover { gap: 0.85em; }


/* ==========================================
   PHILOSOPHY / MARQUEE
   ========================================== */
.marquee-section {
  padding-block: 3rem;
  background: var(--charcoal);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 4rem;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-family: var(--ff-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  opacity: 0.65;
  flex-shrink: 0;
}
.marquee-track span.gold { color: var(--gold); opacity: 1; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ==========================================
   EXPERIENCE / TEXTURE SECTION
   ========================================== */
.experience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.experience__image-col {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}
.experience__image-col img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-smooth);
}
.experience__image-col:hover img { transform: scale(1.04); }
.experience__image-col::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(42,37,32,0.1), transparent);
}

.experience__content {
  background: var(--charcoal);
  display: flex;
  align-items: center;
  padding: clamp(3rem,6vw,5rem) clamp(2rem,6vw,5rem);
}
.experience__content .eyebrow { color: var(--gold-light); }
.experience__content h2 { color: var(--cream); margin-bottom: 1rem; }
.experience__content .divider { background: var(--gold); }
.experience__content p {
  color: rgba(247,243,238,0.7);
  margin-bottom: 2rem;
  max-width: 48ch;
}

.experience__stats {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.experience__stat-num {
  font-family: var(--ff-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}
.experience__stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247,243,238,0.5);
  margin-top: 0.2rem;
}


/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials {
  background: var(--cream);
  text-align: center;
}
.testimonials__header { margin-bottom: clamp(2.5rem,5vw,4rem); }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--ivory);
  padding: 2.2rem;
  border: 1px solid var(--border);
  text-align: left;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--ff-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  top: 0.5rem; left: 1.5rem;
  line-height: 1;
}

.testimonial-card p {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  color: var(--charcoal-soft);
  margin-bottom: 1.2rem;
  padding-top: 1rem;
  line-height: 1.7;
}
.testimonial-card__author {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 0.8rem;
}
.stars svg { width: 13px; height: 13px; fill: var(--gold); }


/* ==========================================
   LOCATION / VINEYARD
   ========================================== */
.location {
  background: var(--ivory);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
}
.location__content {
  padding: clamp(3rem,6vw,5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.location__map-wrap {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}
.location__map-wrap iframe {
  width: 100%; height: 100%;
  border: none;
  filter: grayscale(0.3) sepia(0.1);
}
.location__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  background: var(--gold-pale);
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}
.location__addr {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.location__details {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.location__detail {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.85rem;
  color: var(--text-body);
}
.location__detail svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }


/* ==========================================
   CTA BAND
   ========================================== */
.cta-band {
  background: linear-gradient(135deg, var(--charcoal) 0%, #1A1510 100%);
  padding-block: clamp(4rem,7vw,6rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(184,150,90,0.12) 0%, transparent 65%);
}
.cta-band .eyebrow { color: var(--gold-light); }
.cta-band h2 { color: var(--cream); position: relative; margin-bottom: 0.5rem; }
.cta-band p  { color: rgba(247,243,238,0.6); max-width: 52ch; margin-inline: auto; margin-bottom: 2.5rem; position: relative; }
.cta-band .btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  position: relative;
}


/* ==========================================
   CONTACT PAGE
   ========================================== */
.page-header {
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: 2.5rem;
  background: var(--cream);
  text-align: center;
}
.page-header .eyebrow { margin-bottom: 0.5rem; }
.page-header h1 { margin-bottom: 0.5rem; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
}

.contact-sidebar {
  background: var(--charcoal);
  padding: clamp(3rem,5vw,4rem);
  color: var(--cream);
}
.contact-sidebar h3 { color: var(--cream); margin-bottom: 0.5rem; }
.contact-sidebar .divider { background: var(--gold); }

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-top: 2rem;
}
.contact-info-item {
  display: flex;
  gap: 1rem;
}
.contact-info-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 0.2rem; }
.contact-info-item h4 {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.2rem;
}
.contact-info-item p { font-size: 0.875rem; color: rgba(247,243,238,0.6); line-height: 1.5; }
.contact-info-item a { color: rgba(247,243,238,0.6); transition: color 0.3s; }
.contact-info-item a:hover { color: var(--gold-light); }

.contact-form-wrap {
  background: var(--ivory);
  padding: clamp(3rem,5vw,4rem);
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-grid .full { grid-column: 1 / -1; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-control {
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  color: var(--charcoal);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  -webkit-appearance: none;
}
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,150,90,0.1);
}
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control { cursor: pointer; }

.form-success {
  display: none;
  background: var(--gold-pale);
  border: 1px solid var(--border);
  padding: 1.2rem 1.5rem;
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--charcoal-soft);
  margin-top: 1.5rem;
  text-align: center;
}
.form-success.visible { display: block; }
.form-error { color: #c0392b; font-size: 0.78rem; margin-top: 0.25rem; }


/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: #1A1510;
  color: rgba(247,243,238,0.55);
  padding-top: 4rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(184,150,90,0.15);
}

.footer__brand-name {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.2rem;
}
.footer__brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer__brand p { font-size: 0.85rem; line-height: 1.7; max-width: 30ch; }

.footer__heading {
  font-family: var(--ff-body);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.2rem;
}

.footer__links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links a {
  font-size: 0.85rem;
  transition: color 0.3s;
}
.footer__links a:hover { color: var(--gold-light); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.5rem;
  font-size: 0.78rem;
}

.footer__social {
  display: flex;
  gap: 1rem;
}
.footer__social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(184,150,90,0.25);
  display: flex; align-items: center; justify-content: center;
  color: rgba(247,243,238,0.55);
  transition: all 0.3s;
}
.footer__social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184,150,90,0.08);
}
.footer__social svg { width: 16px; height: 16px; }


/* ==========================================
   PAGE: SERVICES
   ========================================== */
.services-hero {
  background: var(--cream);
  padding-top: calc(var(--nav-h) + 2rem);
}

.service-detail-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.service-detail-section.reverse { direction: rtl; }
.service-detail-section.reverse > * { direction: ltr; }

.svc-img-col {
  position: relative;
  overflow: hidden;
  min-height: 380px;
}
.svc-img-col img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-smooth);
}
.svc-img-col:hover img { transform: scale(1.05); }

.svc-content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem,5vw,4.5rem);
}
.svc-content-col.dark {
  background: var(--charcoal);
}
.svc-content-col.dark h3 { color: var(--cream); }
.svc-content-col.dark .eyebrow { color: var(--gold-light); }
.svc-content-col.dark .divider { background: var(--gold); }
.svc-content-col.dark p { color: rgba(247,243,238,0.65); }
.svc-content-col.dark ul li { color: rgba(247,243,238,0.65); }

.svc-list { margin-block: 1.2rem 1.8rem; display: flex; flex-direction: column; gap: 0.5rem; }
.svc-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.svc-list li::before {
  content: '';
  width: 18px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0.7em;
}


/* ==========================================
   PAGE: ABOUT
   ========================================== */
.about-hero {
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: 4rem;
  background: var(--cream);
}
.about-hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(3rem,6vw,6rem);
  align-items: center;
}
.about-hero__image {
  position: relative;
  padding-bottom: 120%;
  overflow: hidden;
}
.about-hero__image img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-hero__image::after {
  content: '';
  position: absolute;
  bottom: -1rem; right: -1rem;
  width: 80%; height: 80%;
  border: 1px solid var(--gold);
  z-index: -1;
}

.about-vals {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}
.about-val {
  display: flex;
  gap: 1.2rem;
}
.about-val-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.about-val-icon svg { width: 18px; height: 18px; }
.about-val h4 {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
}
.about-val p { font-size: 0.87rem; color: var(--text-muted); }


/* ==========================================
   SCROLL REVEAL ANIMATIONS
   ========================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}
.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; }

/* ==========================================
   PLACEHOLDER IMAGES
   (à remplacer par de vraies photos)
   ========================================== */
.img-placeholder {
  width: 100%; height: 100%;
  min-height: 400px;
  background: var(--cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.8rem;
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.img-placeholder svg { width: 40px; height: 40px; opacity: 0.4; }

/* Placeholder gradients par section */
.ph-hero     { background: linear-gradient(145deg, #DDD5C8, #C4B49A); }
.ph-exp      { background: linear-gradient(145deg, #2A2520, #3D3630); }
.ph-svc-1    { background: linear-gradient(145deg, #E8DDD0, #D4C8B8); }
.ph-svc-2    { background: linear-gradient(145deg, #C8D4D0, #B4C4BE); }
.ph-svc-3    { background: linear-gradient(145deg, #D4C8D8, #C4B4C8); }
.ph-about    { background: linear-gradient(145deg, #D8CFC8, #C8BFB4); }


/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid   { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }

  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__left { padding-top: calc(var(--nav-h) + 2rem); padding-bottom: 3rem; }
  .hero__left::before { display: none; }
  .hero__right { height: 55vw; min-height: 280px; }
  .hero__deco-line { display: none; }

  .intro__inner { grid-template-columns: 1fr; }
  .intro__label { display: none; }

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

  .experience { grid-template-columns: 1fr; }
  .experience__image-col { height: 300px; }

  .location { grid-template-columns: 1fr; }
  .location__map-wrap { min-height: 300px; }

  .contact-layout { grid-template-columns: 1fr; }

  .service-detail-section { grid-template-columns: 1fr; }
  .service-detail-section.reverse { direction: ltr; }
  .svc-img-col { min-height: 280px; height: 60vw; }

  .about-hero__inner { grid-template-columns: 1fr; }
  .about-hero__image { padding-bottom: 75%; }

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

  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }

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