/* ============================================================
   D'tox Solutions Extérieures — Premium Landscaping Theme
   ============================================================ */

.hp-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

:root {
  --green-deep: #0d1f17;
  --green-night: #0a1410;
  --green-forest: #14322a;
  --green-olive: #3d4a2a;
  --green-olive-soft: #5b6b3f;
  --black: #07100c;
  --black-soft: #0e1612;

  --gold: #d4af6f;
  --gold-bright: #e8c989;
  --gold-deep: #a8843f;
  --gold-glow: rgba(212, 175, 111, 0.35);

  --cream: #f4ead7;
  --white: #ffffff;
  --muted: rgba(244, 234, 215, 0.72);
  --muted-2: rgba(244, 234, 215, 0.55);

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --shadow-soft: 0 30px 80px -30px rgba(0, 0, 0, 0.6);
  --shadow-hard: 0 50px 120px -40px rgba(0, 0, 0, 0.8);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-serif: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--cream);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
  font-weight: 300;
  letter-spacing: 0.005em;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* ============================================================
   Layout primitives
   ============================================================ */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  position: relative;
  padding: clamp(80px, 12vw, 160px) 0;
}

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 80px);
  text-align: center;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--cream);
  letter-spacing: -0.005em;
  line-height: 1.1;
  margin: 0;
}

h2 {
  font-size: clamp(34px, 5vw, 60px);
}

h3 {
  font-size: 22px;
  font-weight: 500;
}

.lede {
  font-size: 17px;
  color: var(--muted);
  margin: 22px 0 0;
  line-height: 1.7;
}

p {
  margin: 0 0 16px;
}

em {
  font-style: italic;
  color: var(--gold);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all 0.45s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: #1a1408;
  box-shadow: 0 10px 40px -10px var(--gold-glow);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 60px -10px var(--gold-glow), 0 0 0 1px var(--gold-bright);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--cream);
  border: 1px solid rgba(244, 234, 215, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-block {
  width: 100%;
}

/* ============================================================
   Navbar
   ============================================================ */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 14px 0;
  transition: background 0.5s var(--ease), padding 0.5s var(--ease),
    border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(7, 16, 12, 0.7);
  backdrop-filter: saturate(140%) blur(18px);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
  border-bottom: 1px solid rgba(212, 175, 111, 0.15);
  padding: 10px 0;
}

.nav-inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  height: 48px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.brand-mark svg,
.brand-mark img {
  height: 100%;
  width: auto;
  display: block;
}

.brand-logo {
  height: 56px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--cream);
}

.brand-sub {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  position: relative;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--cream);
  opacity: 0.85;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.nav-links a:not(.nav-cta):hover {
  color: var(--gold);
  opacity: 1;
}

.nav-links a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  opacity: 1 !important;
  transition: all 0.4s var(--ease);
}

.nav-cta:hover {
  background: var(--gold);
  color: #1a1408 !important;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.nav-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: all 0.4s var(--ease);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1585320806297-9794b3e4eeae?auto=format&fit=crop&w=2400&q=80")
    center/cover no-repeat;
  z-index: -2;
  animation: heroZoom 24s var(--ease) infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(80% 60% at 50% 40%, rgba(13, 31, 23, 0.55), rgba(7, 16, 12, 0.95) 75%),
    linear-gradient(180deg, rgba(7, 16, 12, 0.55) 0%, rgba(7, 16, 12, 0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 24px 100px;
  max-width: 920px;
}

.hero-logo {
  max-width: 320px;
  margin: 0 auto 28px;
  filter: drop-shadow(0 0 30px rgba(212, 175, 111, 0.35));
}

.hero-logo svg,
.hero-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-title {
  font-size: clamp(46px, 8vw, 96px);
  line-height: 1.02;
  font-weight: 500;
  margin: 14px 0 28px;
  letter-spacing: -0.015em;
}

.hero-title span {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.55em;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 300;
  text-transform: uppercase;
  font-family: var(--font-sans);
}

.hero-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 42px;
  line-height: 1.7;
}

.hero-cta {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  z-index: 2;
}

.scroll-cue span {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 999px;
  animation: scrollCue 1.8s var(--ease) infinite;
}

@keyframes scrollCue {
  0% { opacity: 0; transform: translate(-50%, 0); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 16px); }
}

/* ============================================================
   Page hero (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  padding: 200px 0 100px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
  filter: brightness(0.45) saturate(1.05);
}

.page-hero.ph-services::before {
  background-image: url("https://images.unsplash.com/photo-1416879595882-3373a0480b5b?auto=format&fit=crop&w=2400&q=80");
}
.page-hero.ph-realisations::before {
  background-image: url("https://images.unsplash.com/photo-1558904541-efa843a96f01?auto=format&fit=crop&w=2400&q=80");
}
.page-hero.ph-about::before {
  background-image: url("https://images.unsplash.com/photo-1604762524889-3e2fcc145683?auto=format&fit=crop&w=2400&q=80");
}
.page-hero.ph-zones::before {
  background-image: url("https://images.unsplash.com/photo-1597844808175-3a01baddb1ba?auto=format&fit=crop&w=2400&q=80");
}
.page-hero.ph-contact::before {
  background-image: url("https://images.unsplash.com/photo-1585320806297-9794b3e4eeae?auto=format&fit=crop&w=2400&q=80");
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(80% 60% at 50% 50%, rgba(13, 31, 23, 0.35), rgba(7, 16, 12, 0.85) 80%),
    linear-gradient(180deg, rgba(7, 16, 12, 0.45) 0%, rgba(7, 16, 12, 0.9) 100%);
}

.page-hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  margin: 12px 0 18px;
}

.page-hero p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.crumbs {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.crumbs a:hover { color: var(--gold); }
.crumbs .sep { color: var(--gold); }

/* Active nav link */
.nav-links a.active {
  color: var(--gold);
  opacity: 1;
}
.nav-links a.active:not(.nav-cta)::after {
  transform: scaleX(1);
}

/* CTA banner used on home / inner pages */
.cta-banner {
  margin: 80px auto 0;
  max-width: 1080px;
  padding: 60px 48px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(212, 175, 111, 0.12), rgba(212, 175, 111, 0.02)),
    var(--green-forest);
  border: 1px solid rgba(212, 175, 111, 0.22);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 50% at 50% 0%, rgba(212, 175, 111, 0.18), transparent 60%);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 14px;
}
.cta-banner p {
  max-width: 520px;
  margin: 0 auto 28px;
  color: var(--muted);
}

@media (max-width: 720px) {
  .page-hero { padding: 150px 0 80px; }
  .cta-banner { padding: 44px 24px; margin-inline: 16px; }
}

/* ============================================================
   Services
   ============================================================ */
.section-services {
  background: linear-gradient(180deg, var(--black) 0%, var(--green-night) 100%);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.services-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.service-card {
  position: relative;
  padding: 36px 30px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(20, 50, 42, 0.4), rgba(13, 31, 23, 0.35));
  border: 1px solid rgba(212, 175, 111, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.6s var(--ease);
  overflow: hidden;
  isolation: isolate;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 120% at 0% 0%, rgba(212, 175, 111, 0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 111, 0.4);
  box-shadow: var(--shadow-soft);
}

.service-card:hover::before {
  opacity: 1;
}

.svc-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(212, 175, 111, 0.08);
  color: var(--gold);
  margin-bottom: 22px;
  transition: all 0.5s var(--ease);
}

.service-card:hover .svc-icon {
  background: var(--gold);
  color: #1a1408;
  transform: rotate(-6deg);
}

.svc-icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  margin-bottom: 10px;
  color: var(--cream);
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   Before / After Showcase
   ============================================================ */
.section-showcase {
  background: var(--green-night);
}

.ba-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
}

.ba-slider {
  position: relative;
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: ew-resize;
  user-select: none;
  border: 1px solid rgba(212, 175, 111, 0.12);
  box-shadow: var(--shadow-soft);
}

.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-before-wrap {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
  will-change: width;
}

.ba-before-wrap .ba-before {
  width: 200%;
  max-width: none;
}

.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  margin: 0;
  cursor: ew-resize;
  z-index: 3;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 2;
  box-shadow: 0 0 30px var(--gold-glow);
}

.ba-handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.ba-handle span::before,
.ba-handle span::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.ba-handle span::before {
  border-right: 6px solid #1a1408;
  left: 12px;
}

.ba-handle span::after {
  border-left: 6px solid #1a1408;
  right: 12px;
}

.ba-label {
  position: absolute;
  top: 18px;
  z-index: 2;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(7, 16, 12, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--cream);
}

.ba-label-left { left: 18px; }
.ba-label-right { right: 18px; color: var(--gold); }

.ba-slider figcaption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  font-size: 13px;
  color: var(--cream);
  background: rgba(7, 16, 12, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 16px;
  border-radius: 10px;
  text-align: center;
}

/* ============================================================
   Why
   ============================================================ */
.section-why {
  background:
    radial-gradient(60% 60% at 80% 20%, rgba(61, 74, 42, 0.25), transparent 60%),
    radial-gradient(60% 60% at 20% 80%, rgba(212, 175, 111, 0.08), transparent 60%),
    var(--green-night);
}

.why-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.glass {
  background: linear-gradient(180deg, rgba(244, 234, 215, 0.04), rgba(244, 234, 215, 0.02));
  border: 1px solid rgba(244, 234, 215, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.why-card {
  padding: 38px 30px;
  border-radius: var(--radius-md);
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 111, 0.3);
}

.why-num {
  font-family: var(--font-serif);
  font-size: 14px;
  letter-spacing: 0.32em;
  color: var(--gold);
  margin-bottom: 16px;
}

.why-card h3 {
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   Zones
   ============================================================ */
.section-zones {
  background: linear-gradient(180deg, var(--green-night) 0%, var(--black) 100%);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.zones-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
}

.zone-chip {
  padding: 16px 28px;
  border-radius: 999px;
  background: rgba(244, 234, 215, 0.04);
  border: 1px solid rgba(244, 234, 215, 0.1);
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--cream);
  transition: all 0.4s var(--ease);
  cursor: default;
}

.zone-chip:hover {
  background: rgba(212, 175, 111, 0.12);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

/* ============================================================
   About
   ============================================================ */
.section-about {
  background: var(--black);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
}

.about-img {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: url("https://images.unsplash.com/photo-1604762524889-3e2fcc145683?auto=format&fit=crop&w=1400&q=80")
    center/cover no-repeat;
  box-shadow: var(--shadow-hard);
}

.about-img-accent {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 55%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  background: url("https://images.unsplash.com/photo-1416879595882-3373a0480b5b?auto=format&fit=crop&w=900&q=80")
    center/cover no-repeat;
  border: 6px solid var(--black);
  box-shadow: var(--shadow-soft);
}

.about-copy h2 {
  margin-bottom: 24px;
}

.about-copy p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid rgba(244, 234, 215, 0.1);
}

.about-stats div {
  display: flex;
  flex-direction: column;
}

.about-stats strong {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: -0.01em;
  line-height: 1;
}

.about-stats span {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: 6px;
}

/* ============================================================
   Contact
   ============================================================ */
.section-contact {
  background:
    radial-gradient(50% 50% at 100% 0%, rgba(212, 175, 111, 0.08), transparent 60%),
    var(--green-night);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact-copy h2 {
  margin: 14px 0 22px;
}

.contact-info {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
  display: grid;
  gap: 18px;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  color: var(--cream);
}

.ci-ico {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(212, 175, 111, 0.1);
  display: grid;
  place-items: center;
  color: var(--gold);
  flex-shrink: 0;
}

.ci-ico svg {
  width: 20px;
  height: 20px;
}

.contact-info a:hover {
  color: var(--gold);
}

.contact-form {
  padding: 40px;
  border-radius: var(--radius-md);
  display: grid;
  gap: 18px;
}

.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid rgba(244, 234, 215, 0.12);
  background: rgba(7, 16, 12, 0.5);
  color: var(--cream);
  font-family: inherit;
  font-size: 15px;
  font-weight: 300;
  transition: all 0.3s var(--ease);
  outline: none;
}

.field textarea {
  resize: vertical;
  min-height: 110px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  background: rgba(7, 16, 12, 0.7);
  box-shadow: 0 0 0 3px rgba(212, 175, 111, 0.15);
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath fill='%23d4af6f' d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 44px;
}

.form-note {
  font-size: 13px;
  color: var(--gold);
  margin: 6px 0 0;
  text-align: center;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: linear-gradient(180deg, var(--black) 0%, #050a07 100%);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(212, 175, 111, 0.15);
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(244, 234, 215, 0.08);
}

.footer-brand .brand {
  margin-bottom: 18px;
}

.footer-tag {
  font-family: var(--font-serif);
  font-size: 17px;
  font-style: italic;
  color: var(--muted);
  max-width: 280px;
  margin: 0;
  line-height: 1.5;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 22px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.footer-col a,
.footer-col li {
  font-size: 14px;
  color: var(--muted);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  padding: 0 32px;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted-2);
}

.footer-fine {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* ============================================================
   Reveal animations
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

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

/* stagger child reveals where needed */
.services-grid .service-card:nth-child(1) { transition-delay: 0.05s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.1s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.15s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.2s; }
.services-grid .service-card:nth-child(5) { transition-delay: 0.25s; }
.services-grid .service-card:nth-child(6) { transition-delay: 0.3s; }
.services-grid .service-card:nth-child(7) { transition-delay: 0.35s; }
.services-grid .service-card:nth-child(8) { transition-delay: 0.4s; }
.services-grid .service-card:nth-child(9) { transition-delay: 0.45s; }

.zones-grid .zone-chip:nth-child(odd) { transition-delay: 0.05s; }
.zones-grid .zone-chip:nth-child(even) { transition-delay: 0.15s; }

.hero .reveal { transition-duration: 1.1s; }
.hero .reveal:nth-child(1) { transition-delay: 0.1s; }
.hero .reveal:nth-child(2) { transition-delay: 0.2s; }
.hero .reveal:nth-child(3) { transition-delay: 0.3s; }
.hero .reveal:nth-child(4) { transition-delay: 0.4s; }
.hero .reveal:nth-child(5) { transition-delay: 0.55s; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .about-media {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    background: rgba(7, 16, 12, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 18px;
  }

  .nav-toggle {
    display: flex;
    z-index: 60;
    position: relative;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

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

  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .container {
    padding: 0 22px;
  }

  .nav-inner {
    padding: 0 22px;
  }

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

  .row-2 {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 36px;
  }

  .about-stats {
    gap: 16px;
  }

  .about-stats strong {
    font-size: 30px;
  }

  .about-img-accent {
    right: -10px;
    bottom: -18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
