/* ============================================================
   AZEMA LADIES SALON — Stylesheet
   Brand: bottle green / gold / beige / white & cream
   Typefaces: Cormorant Garamond (display), Jost (ui/body)
   ============================================================ */

:root{
  /* --- Brand colours (from Azema Brand Style Guide) --- */
  --white:        #ffffff;
  --cream:        #fbf7ee;   /* warm ivory background */
  --cream-dark:   #f3ecd9;
  --ink:          #111a19;   /* near-black text */
  --green-deep:   #094236;   /* primary bottle green */
  --green:        #0b5a45;
  --green-mid:    #007348;
  --gold:         #d19633;   /* accent gold */
  --gold-soft:    #e8b563;
  --beige:        #b7a57a;   /* secondary accent */
  --beige-dark:   #9c7a41;
  --sage:         #809076;

  /* --- Type --- */
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-ui: 'Jost', 'Futura', 'Century Gothic', sans-serif;

  /* --- Layout --- */
  --container: 1200px;
  --radius: 4px;
  --radius-lg: 14px;
  --shadow-soft: 0 20px 45px -20px rgba(9, 66, 54, 0.35);
  --shadow-card: 0 10px 30px -12px rgba(17, 26, 25, 0.18);
}

/* ---------- Reset ---------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font-ui);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4{ font-family: var(--font-display); font-weight: 600; margin: 0 0 .5em; color: var(--green-deep); }
p{ margin: 0 0 1em; }
button{ font-family: inherit; cursor: pointer; }
:focus-visible{ outline: 3px solid var(--gold); outline-offset: 2px; }

.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Utility ---------- */
.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 12.5px;
  color: var(--beige-dark);
  font-weight: 500;
  margin-bottom: 14px;
}
.eyebrow::before{
  content: "";
  width: 28px; height: 1px;
  background: var(--gold);
  display: inline-block;
}
.section{ padding: 96px 0; }
.section--tight{ padding: 64px 0; }
.section--cream{ background: var(--cream); }
.section--white{ background: var(--white); }
.section--green{ background: var(--green-deep); color: var(--cream); }
.section--green h2, .section--green h3, .section--green .eyebrow{ color: var(--gold-soft); }
.section--green p{ color: rgba(251,247,238,.82); }

.section-head{ max-width: 640px; margin-bottom: 48px; }
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2{ font-size: clamp(30px, 3.4vw, 44px); line-height: 1.15; }
.section-head p{ color: #4a5551; font-size: 17px; }
.section--green .section-head p{ color: rgba(251,247,238,.82); }

.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--font-ui);
  font-size: 13.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn-primary{ background: var(--green-deep); color: var(--cream); }
.btn-primary:hover{ background: var(--green-mid); }
.btn-nav-cta{ background: var(--green-deep); color: var(--white) !important; }
.btn-nav-cta:hover{ background: var(--green-mid); }
.btn-gold{ background: var(--gold); color: var(--green-deep); }
.btn-gold:hover{ background: var(--gold-soft); }
.btn-outline{ background: transparent; border-color: rgba(9,66,54,.35); color: var(--green-deep); }
.btn-outline:hover{ border-color: var(--green-deep); background: rgba(9,66,54,.05); }
.btn-outline-light{ background: transparent; border-color: rgba(251,247,238,.5); color: var(--cream); }
.btn-outline-light:hover{ border-color: var(--gold); color: var(--gold-soft); }
.btn-block{ width: 100%; justify-content: center; }

.btn-row{ display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.pill-list{ display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 32px; }
.pill-list span{
  border: 1px solid rgba(251,247,238,.35);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--cream);
}

.mark{ width: 34px; height: auto; opacity: .9; }
.mark-lg{ width: 56px; }

/* ---------- Offer / info bar ---------- */
.offerbar{
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  color: var(--green-deep);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .03em;
  padding: 9px 20px;
}
.offerbar strong{ font-weight: 700; }
.offerbar a{ text-decoration: underline; margin-left: 6px; }

/* ---------- Top utility bar ---------- */
.topbar{
  background: var(--green-deep);
  color: rgba(251,247,238,.85);
  font-size: 13px;
}
.topbar .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 9px;
  padding-bottom: 9px;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-left{ display: flex; gap: 22px; flex-wrap: wrap; }
.topbar a{ transition: color .2s ease; }
.topbar-left a:hover{ color: var(--gold-soft); }
.topbar-social{ display: flex; gap: 14px; }
.topbar-social a{
  width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(251,247,238,.3);
  border-radius: 50%;
  font-size: 12px;
}
.topbar-social a:hover{ border-color: var(--gold); color: var(--gold-soft); }

/* ---------- Header / Nav ---------- */
.site-header{
  background: var(--cream);
  position: sticky; top: 0; z-index: 200;
  border-bottom: 1px solid rgba(9,66,54,.08);
}
.site-header .container{ max-width: 1320px; }
.nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}
.brand{ display: flex; align-items: center; gap: 12px; }
.brand img{ height: 46px; width: auto; }
.nav-links{
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-links a{
  font-size: 12.5px;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--green-deep);
  padding: 8px 2px;
  position: relative;
  display: inline-flex;
  align-items: center;
  line-height: 1.2;
}
.nav-links a::after{
  content:"";
  position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after{ transform: scaleX(1); }
.nav-links a.active{ color: var(--gold-dark, var(--beige-dark)); }
.nav-links > li, .nav-links > a{ display: flex; align-items: center; }

/* ---- Services dropdown ---- */
.nav-item-dropdown{ position: relative; display: flex; align-items: center; }
.nav-item-dropdown > a{ display: flex; align-items: center; gap: 5px; }
.nav-caret{ width: 9px; height: 9px; margin-top: 1px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); transition: transform .2s ease; }
.nav-item-dropdown:hover .nav-caret{ transform: rotate(225deg); margin-top: 4px; }
.nav-dropdown{
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(9,66,54,.08);
  padding: 10px;
  min-width: 240px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 50;
}
.nav-item-dropdown:hover .nav-dropdown{
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(10px);
}
.nav-dropdown a{
  display: block; padding: 9px 12px; border-radius: 6px;
  font-size: 12.5px; letter-spacing: .02em; text-transform: none;
  font-weight: 400; color: var(--ink); white-space: nowrap;
}
.nav-dropdown a::after{ display: none; }
.nav-dropdown a:hover{ background: var(--cream); color: var(--green-deep); }

.nav-actions{ display: flex; align-items: center; gap: 16px; }
.nav-phone{
  display: flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 500;
}
.nav-phone svg{ width: 16px; height: 16px; color: var(--gold); }

.nav-toggle{
  display: none;
  background: none; border: none;
  width: 34px; height: 26px;
  position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content: ""; position: absolute; left: 0; right: 0;
  height: 2px; background: var(--green-deep);
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle span{ top: 12px; }
.nav-toggle span::before{ top: -8px; }
.nav-toggle span::after{ top: 8px; }
.nav-toggle.is-open span{ background: transparent; }
.nav-toggle.is-open span::before{ transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span::after{ transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero{
  position: relative;
  color: var(--cream);
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg{
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background-size: cover; background-position: center;
}
.hero-bg::after{
  content:"";
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(120deg, rgba(43,34,19,.90) 8%, rgba(43,34,19,.62) 50%, rgba(43,34,19,.32) 100%);
}
.hero-inner{ position: relative; z-index: 2; max-width: 680px; padding: 90px 0; }
.hero h1{
  color: var(--white);
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.06;
  margin-bottom: 22px;
}
.hero h1 em{ font-style: italic; color: var(--gold-soft); }
.hero p.lead{ font-size: 18px; color: rgba(251,247,238,.86); max-width: 560px; margin-bottom: 8px; }
.hero-butterfly{
  position: absolute; right: 6%; top: 50%; transform: translateY(-50%);
  width: 240px; opacity: .16;
}

.hero-whatsapp{
  position: fixed; right: 24px; bottom: 24px; z-index: 300;
  width: 58px; height: 58px; border-radius: 50%;
  background: #1fb855;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(9,66,54,.35);
  transition: transform .2s ease;
}
.hero-whatsapp:hover{ transform: scale(1.07); }
.hero-whatsapp svg{ width: 28px; height: 28px; fill: #fff; }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero{
  background: linear-gradient(160deg, var(--cream-dark) 0%, var(--cream) 55%, var(--white) 100%);
  color: var(--ink);
  padding: 150px 0 70px;
  position: relative;
  overflow: hidden;
  text-align: center;
  border-bottom: 1px solid rgba(9,66,54,.08);
}
.page-hero::before{
  content:"";
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background: radial-gradient(circle at 15% 15%, rgba(209,150,51,.10), transparent 40%),
              radial-gradient(circle at 88% 85%, rgba(9,66,54,.07), transparent 45%);
}
.page-hero .eyebrow{ justify-content: center; color: var(--beige-dark); }
.page-hero .eyebrow::before{ display:none; }
.page-hero h1{ color: var(--green-deep); font-size: clamp(36px,5vw,54px); position: relative; z-index: 1;}
.page-hero p{ color: #5a655f; max-width: 560px; margin: 0 auto; position: relative; z-index: 1;}
.breadcrumb{
  font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--sage); margin-top: 14px; position: relative; z-index: 1;
}
.breadcrumb a{ color: var(--green-deep); }
.breadcrumb a:hover{ color: var(--gold); }

/* ---------- Service cards (home grid) ---------- */
.service-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  min-height: 420px; /* fallback for browsers without aspect-ratio support */
  box-shadow: var(--shadow-card);
  transition: transform .35s ease;
}
.service-card:hover{ transform: translateY(-6px); }
.service-card img{ width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover img{ transform: scale(1.06); }
.service-card-overlay{
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(0deg, rgba(9,66,54,.92) 0%, rgba(9,66,54,.15) 55%, rgba(9,66,54,0) 75%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 26px;
}
.service-card-overlay h3{ color: var(--white); font-size: 24px; margin-bottom: 6px; }
.service-card-overlay p{ color: rgba(251,247,238,.82); font-size: 14px; margin-bottom: 14px; }
.service-card-overlay .link-arrow{
  font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold-soft); display: inline-flex; align-items: center; gap: 6px;
}

.center-cta{ text-align: center; margin-top: 48px; }

/* ---------- Why us ---------- */
.why-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-image{ position: relative; }
.why-image img{ border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.why-image-badge{
  position: absolute; bottom: -24px; left: -24px;
  background: var(--gold); color: var(--green-deep);
  padding: 20px 26px; border-radius: var(--radius-lg);
  font-family: var(--font-display); font-weight: 600;
  box-shadow: var(--shadow-card);
}
.why-image-badge span{ display:block; font-size: 30px; line-height: 1; }
.why-image-badge small{ font-family: var(--font-display); font-size: 17px; font-weight: 600; letter-spacing: .01em; line-height: 1.3; display: block; text-transform: none; }

.why-feature{ display: flex; gap: 18px; padding: 20px 0; border-top: 1px solid rgba(9,66,54,.12); }
.why-feature:first-of-type{ border-top: none; }
.why-feature .num{
  font-family: var(--font-display); font-size: 26px; color: var(--gold); min-width: 40px;
}
.why-feature h4{ margin-bottom: 6px; font-size: 19px; }
.why-feature p{ margin: 0; color: #4a5551; font-size: 15px; }

/* ---------- Team ---------- */
.team-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.team-grid.team-grid--3{ grid-template-columns: repeat(3, 1fr); }
.team-card{ text-align: center; }
.team-photo{
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  min-height: 300px; /* fallback for browsers without aspect-ratio support */
  margin-bottom: 18px;
  position: relative;
  box-shadow: var(--shadow-card);
}
.team-photo img{ width: 100%; height: 100%; object-fit: cover; }
.team-social{
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; opacity: 0; transition: opacity .25s ease, bottom .25s ease;
}
.team-card:hover .team-social{ opacity: 1; bottom: 16px; }
.team-social a{
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(251,247,238,.95); color: var(--green-deep);
  display: flex; align-items: center; justify-content: center; font-size: 13px;
}
.team-card h3{ font-size: 21px; margin-bottom: 2px; }
.team-card .role{ font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--beige-dark); }
.team-card .bio{ font-size: 13.5px; color: #4a5551; margin-top: 8px; }

/* ---------- Gallery ---------- */
.gallery-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery-grid a{ border-radius: var(--radius); overflow: hidden; display: block; position: relative; }
.gallery-grid img{ width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-grid a:hover img{ transform: scale(1.08); }
.gallery-grid a.tall{ grid-row: span 2; }
.gallery-grid a::after{
  content: "";
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(9,66,54,0);
  transition: background .25s ease;
}
.gallery-grid a:hover::after{ background: rgba(9,66,54,.15); }

/* ---------- Testimonials ---------- */
.testi-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.testi-card{
  background: var(--white);
  padding: 34px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border-top: 3px solid var(--gold);
}
.testi-stars{ color: var(--gold); font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
.testi-card p.quote{ font-size: 15.5px; color: #354039; margin-bottom: 18px; font-style: italic; }
.testi-card p.testi-name{ font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--green-deep); margin: 0; }
.testi-card p.testi-source{ font-size: 12px; color: var(--beige-dark); letter-spacing: .05em; text-transform: uppercase; margin: 0; }
.testi-card{ border: 1px solid rgba(9,66,54,.1); }

/* ---------- Pricing / services table ---------- */
.price-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.price-card{
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  box-shadow: var(--shadow-card);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.price-card .p-name{ font-family: var(--font-display); font-size: 20px; color: var(--green-deep); margin-bottom: 4px;}
.price-card .p-meta{ font-size: 13px; color: var(--sage); }
.price-card .p-amount{ font-family: var(--font-display); font-size: 24px; color: var(--gold); font-weight: 700; white-space: nowrap; }

.category-chips{ display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; }
.category-chips a{
  padding: 9px 18px; border-radius: 999px; font-size: 13px; letter-spacing: .03em;
  border: 1px solid rgba(9,66,54,.2); color: var(--green-deep);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.category-chips a:hover{ background: var(--green-deep); color: var(--cream); border-color: var(--green-deep); }

/* ---------- Booking / iframe ---------- */
.booking-panel{
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  border: 1px solid rgba(9,66,54,.08);
}
.booking-panel-head{
  padding: 22px 26px;
  background: var(--green-deep);
  color: var(--cream);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.booking-panel-head h3{ color: var(--white); margin: 0; font-size: 22px; }
.booking-panel-head p{ margin: 0; font-size: 13px; color: rgba(251,247,238,.75); }
.booking-frame-wrap{ width: 100%; }
.booking-frame-wrap iframe{
  width: 100%;
  border: none;
  display: block;
  min-height: 900px;
}
.booking-fallback{
  padding: 40px 26px; text-align: center; color: var(--sage); font-size: 14px;
}

/* ---------- Values / Mission cards ---------- */
.value-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.value-card{
  background: var(--white);
  padding: 30px 26px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.value-card .idx{
  font-family: var(--font-display); color: var(--gold); font-size: 15px; letter-spacing: .1em;
  margin-bottom: 12px; display:block;
}
.value-card h4{ font-size: 19px; margin-bottom: 8px; }
.value-card p{ font-size: 14px; color: #4a5551; margin: 0; }

/* ---------- Split / story ---------- */
.split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.split img{ border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.split .promise{
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(26px, 3vw, 36px);
  color: var(--gold);
  margin: 18px 0 20px;
}

/* ---------- FAQ ---------- */
.faq-list{ max-width: 780px; margin: 0 auto; }
.faq-item{
  border-bottom: 1px solid rgba(9,66,54,.14);
}
.faq-q{
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  background: none; border: none;
  text-align: left;
  font-family: var(--font-display); font-size: 19px; color: var(--green-deep); font-weight: 600;
}
.faq-q .icon{ font-size: 20px; color: var(--gold); transition: transform .25s ease; flex-shrink:0; }
.faq-item.open .faq-q .icon{ transform: rotate(45deg); }
.faq-a{
  max-height: 0; overflow: hidden; transition: max-height .3s ease;
}
.faq-a p{ padding: 0 4px 22px; color: #4a5551; max-width: 640px; }

/* ---------- Location / contact cards ---------- */
.info-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 44px;
}
.info-card{
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  box-shadow: var(--shadow-card);
  text-align: center;
}
.info-card .ico{ font-size: 26px; margin-bottom: 12px; }
.info-card h4{ font-size: 16px; margin-bottom: 6px; }
.info-card p{ font-size: 13.5px; color: #4a5551; margin: 0; }

.map-frame{ border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); }
.map-frame iframe{ width: 100%; height: 440px; border: 0; display:block; }

/* ---------- CTA band ---------- */
.cta-band{
  background: linear-gradient(120deg, var(--cream-dark), var(--white));
  border: 1px solid rgba(9,66,54,.12);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 60px 50px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta-band::before{
  content:"";
  position: absolute; top: -40%; right: -8%; width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(209,150,51,.16), transparent 70%);
}
.cta-band h3{ color: var(--green-deep); font-size: clamp(24px,3vw,32px); margin-bottom: 6px; }
.cta-band p{ color: #4a5551; margin: 0; }
.cta-band--green{
  background: linear-gradient(120deg, var(--green-deep), #0b3d33);
  color: var(--cream); border-color: transparent;
}
.cta-band--green h3{ color: var(--white); }
.cta-band--green p{ color: rgba(251,247,238,.8); }

/* ---------- Contact form (WhatsApp composer) ---------- */
.contact-form{
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group{ display: flex; flex-direction: column; gap: 8px; }
.form-group.full{ grid-column: 1 / -1; }
.form-group label{ font-size: 12.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--green-deep); font-weight: 500; }
.form-group input, .form-group select, .form-group textarea{
  border: 1px solid rgba(9,66,54,.2);
  border-radius: var(--radius);
  padding: 13px 14px;
  font-family: var(--font-ui);
  font-size: 14.5px;
  background: var(--cream);
  color: var(--ink);
}
.form-group textarea{ resize: vertical; min-height: 110px; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus{
  outline: none; border-color: var(--gold);
}

/* ---------- Footer ---------- */
.site-footer{ background: var(--green-deep); color: rgba(251,247,238,.82); padding-top: 80px; }
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(251,247,238,.12);
}
.footer-brand img{ height: 44px; margin-bottom: 18px; }
.footer-brand p{ font-size: 14px; color: rgba(251,247,238,.7); max-width: 320px; }
.footer-social{ display: flex; gap: 10px; margin-top: 18px; }
.footer-social a{
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(251,247,238,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: background .2s ease, border-color .2s ease;
}
.footer-social a:hover{ background: var(--gold); border-color: var(--gold); color: var(--green-deep); }

.footer-col h4{
  color: var(--gold-soft); font-family: var(--font-ui);
  font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 20px; font-weight: 600;
}
.footer-col ul li{ margin-bottom: 12px; }
.footer-col ul a{ font-size: 14.5px; color: rgba(251,247,238,.78); }
.footer-col ul a:hover{ color: var(--gold-soft); }
.footer-hours{ display: flex; justify-content: space-between; font-size: 13.5px; padding: 6px 0; border-bottom: 1px dashed rgba(251,247,238,.12); }
.footer-hours span:last-child{ color: var(--gold-soft); }

.footer-bottom{
  padding: 22px 0 26px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 12.5px; color: rgba(251,247,238,.55);
}
.footer-bottom a:hover{ color: var(--gold-soft); }

/* ---------- Products / brands ---------- */
.brand-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.brand-card{
  background: var(--white);
  border: 1px solid rgba(9,66,54,.1);
  border-radius: var(--radius-lg);
  padding: 30px 22px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.brand-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-card); }
.brand-logo-slot{
  height: 64px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.brand-logo-slot img{ max-height: 100%; max-width: 100%; object-fit: contain; }
.brand-logo-placeholder{
  width: 100%; height: 100%;
  border: 1.5px dashed rgba(9,66,54,.25);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10.5px; letter-spacing: .04em; text-transform: uppercase;
  color: var(--sage); text-align: center; padding: 4px;
}
.brand-card h4{ font-size: 16px; margin-bottom: 4px; }
.brand-card p{ font-size: 12.5px; color: var(--sage); margin: 0; }

/* ---------- Instagram feed ---------- */
.instagram-embed-wrap{
  min-height: 80px;
}
.instagram-embed-slot{
  background: var(--white);
  border: 1.5px dashed rgba(9,66,54,.25);
  border-radius: var(--radius-lg);
  padding: 60px 30px;
  text-align: center;
  color: var(--sage);
}
.instagram-embed-slot code{
  display: block; margin-top: 14px; padding: 12px 16px;
  background: var(--cream-dark); border-radius: 8px; font-size: 12.5px;
  color: var(--green-deep); text-align: left; overflow-x: auto;
}

/* ---------- Blog cards ---------- */
.blog-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.blog-card{
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(9,66,54,.08);
}
.blog-card-img{ aspect-ratio: 16/10; min-height: 160px; background: linear-gradient(135deg, var(--cream-dark), var(--beige)); display:flex; align-items:center; justify-content:center; }
.blog-card-body{ padding: 22px 24px 26px; }
.blog-card .blog-tag{ font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.blog-card h3{ font-size: 20px; margin: 8px 0 10px; }
.blog-card p{ font-size: 14px; color: #4a5551; }

/* ---------- Story / owner section ---------- */
.story-block{
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: start;
}
.story-photo{
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/5;
}
.story-photo img{ width:100%; height:100%; object-fit:cover; }
.story-signoff{ font-family: var(--font-display); font-style: italic; color: var(--gold); font-size: 20px; margin-top: 18px; }
/* Reveal-on-scroll is a progressive enhancement only. Content is fully
   visible by default; animation is opt-in via a class the page adds
   after confirming JS actually ran, so a JS failure never hides content. */
.reveal{ opacity: 1; transform: none; }
.js-anim .reveal{ opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.js-anim .reveal.in{ opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce){
  .js-anim .reveal{ opacity: 1; transform: none; transition: none; }
  html{ scroll-behavior: auto; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px){
  .service-grid{ grid-template-columns: repeat(2, 1fr); }
  .team-grid{ grid-template-columns: repeat(2, 1fr); }
  .team-grid.team-grid--3{ grid-template-columns: repeat(2, 1fr); }
  .gallery-grid{ grid-template-columns: repeat(3, 1fr); }
  .testi-grid{ grid-template-columns: repeat(1, 1fr); }
  .why-grid{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; gap: 36px; }
  .value-grid{ grid-template-columns: repeat(2, 1fr); }
  .info-grid{ grid-template-columns: repeat(2, 1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .price-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 860px){
  .nav-links{
    position: fixed; inset: 74px 0 0 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 24px;
    gap: 6px;
    transform: translateX(100%);
    transition: transform .3s ease;
    overflow-y: auto;
  }
  .nav-links.is-open{ transform: translateX(0); }
  .nav-links a{ display: block; width: 100%; padding: 14px 0; font-size: 16px; border-bottom: 1px solid rgba(9,66,54,.08); }
  .nav-item-dropdown{ flex-direction: column; align-items: flex-start; width: 100%; }
  .nav-item-dropdown > a{ border-bottom: none; padding-bottom: 4px; }
  .nav-caret{ display: none; }
  .nav-dropdown{
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; background: none; padding: 0 0 10px 14px;
    display: block; grid-template-columns: 1fr; min-width: 0;
  }
  .nav-dropdown a{ padding: 8px 0; border-bottom: none; color: var(--sage); }
  .nav-phone{ display: none; }
  .nav-toggle{ display: block; }
  .nav-actions .btn-nav-cta{ padding: 11px 18px; font-size: 12px; }
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
  .value-grid{ grid-template-columns: 1fr; }
  .info-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .form-row{ grid-template-columns: 1fr; }
}

@media (max-width: 620px){
  .section{ padding: 64px 0; }
  .service-grid{ grid-template-columns: 1fr; }
  .team-grid, .team-grid.team-grid--3{ grid-template-columns: 1fr; }
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .cta-band{ padding: 40px 26px; flex-direction: column; text-align: center; }
  .why-image-badge{ left: 14px; bottom: -18px; padding: 14px 18px; }
  .topbar-left{ display: none; }
}
