/* ==========================================================================
   Khosman Dreads - khosmandreads.co.za
   Static rebuild. Built by QuadCorp Digital (Pty) Ltd.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root{
  --gold:#C7AF62;
  --gold-alt:#CBA135;
  --gold-muted:#A9A469;
  --black:#000000;
  --white:#ffffff;
  --cream:#f3efe8;
  --gray:#cbd5e0;

  --headline-font:"Aclonica","Poppins",system-ui,sans-serif;
  --content-font:"Montserrat",system-ui,-apple-system,"Segoe UI",sans-serif;
  --inter-font:"Inter",system-ui,-apple-system,"Segoe UI",sans-serif;
  --poppins-font:"Poppins",var(--content-font);

  --container:1140px;
  --nav-h:150px;
}

/* ---------- Reset ---------- */
*,*::before,*::after{box-sizing:border-box;}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth;}
body{
  margin:0;
  /* Reserves the fixed header's space in the flow. Kept at the full
     var(--nav-h) even once the header shrinks, so content never moves. */
  padding-top:var(--nav-h);
  font-family:var(--content-font);
  font-size:16px;
  line-height:1.6;
  color:var(--white);
  background-color:var(--black);
  overflow-x:hidden;
}
img{max-width:100%;display:block;border:0;}
a{color:inherit;text-decoration:none;}
h1,h2,h3,h4,p,ul,figure{margin:0;}
ul{list-style:none;padding:0;}
button{font:inherit;color:inherit;background:none;border:0;cursor:pointer;}
input,select,textarea{font:inherit;}
:focus-visible{outline:2px solid var(--gold);outline-offset:3px;}

/* ---------- Fixed page background (storefront) ---------- */
.page-bg{
  position:fixed;
  inset:0;
  z-index:-2;
  background:url("../assets/img/hero-storefront.jpeg") center center / cover no-repeat;
}
.page-bg::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.25);
}

/* ---------- Layout helpers ---------- */
.container{
  width:100%;
  max-width:var(--container);
  margin-inline:auto;
  padding-inline:20px;
}
.section{position:relative;}
.section--black{background:var(--black);}
.section--cream{background:var(--cream);color:#111;}
.section--white{background:var(--white);color:#000;}
.section--transparent{background:transparent;}
.visually-hidden{
  position:absolute !important;width:1px;height:1px;padding:0;margin:-1px;
  overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-block;
  font-family:var(--headline-font);
  font-size:16px;
  font-weight:400;
  line-height:1.6;
  text-align:center;
  border:2px solid transparent;
  border-radius:25px;
  background:var(--gold);
  color:var(--white);
  padding:12px 80px;
  transition:background-color .25s ease,transform .25s ease,box-shadow .25s ease;
}
.btn:hover,.btn:focus-visible{
  background:var(--gold-alt);
  transform:translateY(-2px);
  box-shadow:0 8px 22px rgba(0,0,0,.35);
}
.btn--square{
  border-radius:4px;
  font-family:var(--content-font);
  font-weight:700;
  color:var(--black);
  padding:20px 30px;
}
.btn--square:hover,.btn--square:focus-visible{color:var(--black);}

/* ==========================================================================
   Header / navigation
   ========================================================================== */
/* Fixed, not sticky. A sticky header still occupies flow space, so shrinking it
   from var(--nav-h) to 88px on scroll pulled every page up by the difference
   (62px on desktop) and changed document height — which could re-cross the
   scroll threshold and oscillate. Out of flow, the height change moves nothing.
   body reserves the space with padding-top instead. */
.site-header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:100;
  min-height:var(--nav-h);
  display:flex;
  align-items:center;
  transition:background-color .3s ease,min-height .3s ease,box-shadow .3s ease;
}
.site-header.is-stuck{
  background:rgba(0,0,0,.92);
  min-height:88px;
  box-shadow:0 2px 20px rgba(0,0,0,.5);
}
/* Applied for one frame by main.js when a page loads already scrolled, so the
   bar appears in its condensed state instead of animating down into it. */
.site-header.no-transition,
.site-header.no-transition *{transition:none !important;}
/* No position:relative here — the dropdown anchors to .site-header (which is
   sticky, so already a containing block). Anchoring to .container made the menu
   sit 9px high, overlapping the header. */
.site-header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.brand{display:inline-flex;align-items:center;}
.brand img{
  width:100px;
  height:100px;
  object-fit:cover;
  transition:width .3s ease,height .3s ease;
}
.site-header.is-stuck .brand img{width:70px;height:70px;}

/* Hamburger that morphs into an X. Three bars so the change is animated
   rather than a hard icon swap. */
.nav-toggle{
  display:none;
  width:44px;height:44px;
  align-items:center;justify-content:center;
  color:var(--white);
  z-index:2;
}
.nav-toggle__bars{
  position:relative;
  width:26px;height:18px;
  display:block;
}
.nav-toggle__bars i{
  position:absolute;
  left:0;
  width:100%;
  height:2px;
  border-radius:2px;
  background:currentColor;
  transition:transform .32s cubic-bezier(.4,0,.2,1),opacity .2s ease,top .32s cubic-bezier(.4,0,.2,1);
}
.nav-toggle__bars i:nth-child(1){top:0;}
.nav-toggle__bars i:nth-child(2){top:8px;}
.nav-toggle__bars i:nth-child(3){top:16px;}

.site-header.nav-open .nav-toggle{color:var(--gold);}
.site-header.nav-open .nav-toggle__bars i:nth-child(1){top:8px;transform:rotate(45deg);}
.site-header.nav-open .nav-toggle__bars i:nth-child(2){opacity:0;transform:scaleX(.2);}
.site-header.nav-open .nav-toggle__bars i:nth-child(3){top:8px;transform:rotate(-45deg);}

/* Dims the page behind the open menu; created by main.js so the markup stays clean. */
.nav-backdrop{
  position:fixed;
  inset:0;
  z-index:90;
  background:rgba(0,0,0,.5);
  opacity:0;
  pointer-events:none;
  transition:opacity .3s ease;
}
.nav-backdrop.is-visible{opacity:1;pointer-events:auto;}
body.nav-locked{overflow:hidden;}

.nav-list{display:flex;align-items:center;gap:46px;}
.nav-list a{
  font-family:var(--headline-font);
  font-size:18px;
  font-weight:500;
  color:var(--white);
  position:relative;
  padding:6px 0;
  transition:color .25s ease;
}
.nav-list a::after{
  content:"";
  position:absolute;
  left:0;bottom:0;
  width:0;height:2px;
  background:var(--gold);
  transition:width .25s ease;
}
.nav-list a:hover,.nav-list a:focus-visible,.nav-list a.is-active{color:var(--gold);}
.nav-list a:hover::after,.nav-list a:focus-visible::after,.nav-list a.is-active::after{width:100%;}

/* ==========================================================================
   Home - hero
   ========================================================================== */
.hero{
  min-height:536px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:60px 0 90px;
}
.hero__title{
  font-family:var(--headline-font);
  font-size:64px;
  font-weight:700;
  line-height:1.3;
  color:var(--white);
  text-shadow:0 4px 24px rgba(0,0,0,.6);
}
.hero__subtitle{
  font-family:var(--headline-font);
  font-size:23px;
  font-weight:400;
  color:var(--gray);
  margin-top:6px;
  text-shadow:0 2px 14px rgba(0,0,0,.6);
}
.hero__subtitle .gold{color:var(--gold);}
.hero__cta{margin-top:22px;}
.hero .btn{padding:8px 80px;}

/* ==========================================================================
   Home - services
   ========================================================================== */
.services{padding:60px 0 70px;}
.section-title{
  font-family:var(--content-font);
  font-size:32px;
  font-weight:400;
  letter-spacing:2px;
  color:var(--white);
  text-align:center;
  margin-bottom:34px;
}
.services__list{
  max-width:840px;
  margin-inline:auto;
  display:flex;
  flex-direction:column;
  gap:26px;
}
.service{
  display:flex;
  align-items:center;
  gap:26px;
}
.service__media{flex:0 0 auto;}
.service__media img{
  width:100px;
  height:120px;
  object-fit:cover;
  border-radius:2px;
}
/* Divider between service rows. Sits in the middle of the 26px flex gap
   (bottom:-13px) so spacing above and below it stays even, and fades out at
   both ends rather than hitting the edges as a hard rule. */
.services__list .service{position:relative;}
.services__list .service:not(:last-child)::after{
  content:"";
  position:absolute;
  left:0;right:0;bottom:-13px;
  height:1px;
  background:linear-gradient(90deg,
    transparent 0%,
    rgba(199,175,98,.15) 15%,
    rgba(199,175,98,.5) 50%,
    rgba(199,175,98,.15) 85%,
    transparent 100%);
  pointer-events:none;
}

.service__body{flex:1 1 auto;min-width:0;}
.service__title{
  font-family:var(--content-font);
  font-size:24px;
  font-weight:700;
  color:var(--gold);
  line-height:1.35;
}
.service--left .service__body{text-align:left;}
.service--right{flex-direction:row-reverse;}
.service--right .service__body{text-align:center;}

/* ==========================================================================
   Home - team
   ========================================================================== */
.team{padding:60px 0 70px;}
.team .section-title{font-size:38px;}
/* Glass/gloss panel. The team section is transparent over the fixed storefront
   photo, so backdrop-filter has something real to refract. max-width is bumped
   from 900 to 940 so the new padding doesn't squeeze the content inside. */
.team__card{
  position:relative;
  overflow:hidden;
  max-width:940px;
  margin-inline:auto;
  display:flex;
  align-items:center;
  gap:44px;
  padding:34px 38px;
  border-radius:18px;
  background:linear-gradient(135deg,
    rgba(255,255,255,.14) 0%,
    rgba(255,255,255,.06) 42%,
    rgba(255,255,255,.02) 100%);
  -webkit-backdrop-filter:blur(14px) saturate(135%);
  backdrop-filter:blur(14px) saturate(135%);
  border:1px solid rgba(255,255,255,.17);
  box-shadow:
    0 20px 48px rgba(0,0,0,.42),
    inset 0 1px 0 rgba(255,255,255,.26);
  transition:box-shadow .45s ease,border-color .45s ease;
}
/* Angled highlight across the panel — the "gloss". Decorative only. */
.team__card::before{
  content:"";
  position:absolute;
  top:-70%;left:-35%;
  width:55%;height:240%;
  background:linear-gradient(90deg,
    transparent 0%,
    rgba(255,255,255,.11) 50%,
    transparent 100%);
  transform:rotate(18deg);
  pointer-events:none;
}
/* Warm gold bloom in the lower-right, so the glass isn't a flat grey wash. */
.team__card::after{
  content:"";
  position:absolute;
  right:-90px;bottom:-110px;
  width:300px;height:300px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(199,175,98,.2) 0%, transparent 68%);
  pointer-events:none;
}
.team__card:hover{
  border-color:rgba(199,175,98,.38);
  box-shadow:
    0 26px 58px rgba(0,0,0,.5),
    inset 0 1px 0 rgba(255,255,255,.32);
}
/* Keep the content above both decorative layers. */
.team__photo,.team__info{position:relative;z-index:1;}

/* Fallback for browsers without backdrop-filter (older Firefox): use a solid
   dark panel instead, or the text loses contrast against the photo behind. */
@supports not ((backdrop-filter:blur(1px)) or (-webkit-backdrop-filter:blur(1px))){
  .team__card{background:rgba(12,12,12,.86);}
}
.team__photo{flex:0 0 280px;}
.team__photo img{
  width:280px;
  height:420px;
  object-fit:cover;
  border-radius:4px;
  box-shadow:0 18px 40px rgba(0,0,0,.5);
}
.team__info{flex:1 1 auto;min-width:0;}
.team__name{
  font-family:var(--headline-font);
  font-size:32px;
  font-weight:600;
  letter-spacing:.32px;
  color:var(--white);
}
.team__role{
  font-family:var(--headline-font);
  font-size:18.4px;
  font-weight:500;
  letter-spacing:.736px;
  text-transform:uppercase;
  color:var(--gold);
  margin:6px 0 16px;
}
.team__bio{
  font-family:var(--content-font);
  font-size:16px;
  color:var(--white);
  max-width:52ch;
}
.team__cta{margin-top:26px;}
.team .btn{padding:10px 80px;}

/* ==========================================================================
   Home - products
   ========================================================================== */
.products{
  background:var(--cream);
  color:#111;
  padding:80px 20px;
}
.products__head{text-align:center;margin-bottom:44px;}
.products__eyebrow{
  font-family:var(--content-font);
  font-size:16px;
  font-weight:600;
  letter-spacing:3px;
  text-transform:uppercase;
  color:var(--gold-alt);
  margin-bottom:8px;
}
.products__title{
  font-family:var(--poppins-font);
  font-size:34px;
  font-weight:700;
  color:#111;
  line-height:1.25;
}
.products__grid{
  max-width:1000px;
  margin-inline:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
}
.product{text-align:center;}
.product__tag{
  font-family:var(--content-font);
  font-size:11px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  color:var(--gold-alt);
  min-height:32px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:10px;
}
.product__img{
  width:100%;
  height:180px;
  object-fit:contain;
  margin-bottom:14px;
}
.product__name{
  font-family:var(--content-font);
  font-size:16px;
  font-weight:700;
  letter-spacing:.5px;
  text-transform:uppercase;
  color:#111;
}
.product__desc{
  font-family:var(--content-font);
  font-size:13px;
  color:#4a4a4a;
  margin-top:4px;
}
.products__note{
  text-align:center;
  margin-top:44px;
  font-family:var(--content-font);
  font-size:15px;
  font-weight:600;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:#111;
}

/* ==========================================================================
   Home - testimonials
   ========================================================================== */
.testimonials{
  background:var(--black);
  padding:70px 0 80px;
}
.testimonials__title{
  font-family:var(--content-font);
  font-size:38px;
  font-weight:500;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--gold);
  text-align:center;
  margin-bottom:44px;
}
.testimonials__grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:36px;
}
.testimonial{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:14px;
}
.testimonial__photo{
  width:120px;
  height:150px;
  object-fit:cover;
  border-radius:3px;
}
.testimonial__quote{
  font-family:var(--headline-font);
  font-size:26px;
  font-weight:400;
  letter-spacing:-1px;
  line-height:1.3;
  color:var(--gold);
}
.testimonial__body{
  font-family:var(--content-font);
  font-size:16px;
  color:var(--white);
}
.testimonial__author{
  font-family:var(--content-font);
  font-size:16px;
  color:var(--white);
}
.testimonial__stars{width:120px;height:auto;margin-top:auto;}
.testimonials__cta{text-align:center;margin-top:48px;}

/* ==========================================================================
   Home - FAQ
   ========================================================================== */
.faq{
  background:var(--cream);
  color:#000;
  padding:70px 0 90px;
}
.faq__title{
  font-family:var(--content-font);
  font-size:56px;
  font-weight:500;
  letter-spacing:-1px;
  line-height:1.2;
  color:#000;
  text-align:center;
  margin-bottom:40px;
}
.faq__list{max-width:820px;margin-inline:auto;}
.faq__item{border-bottom:1px solid rgba(0,0,0,.15);}
.faq__q{
  width:100%;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  text-align:left;
  padding:20px 0;
  font-family:var(--inter-font);
  font-size:18px;
  font-weight:700;
  color:#000;
}
.faq__icon{
  flex:0 0 auto;
  width:20px;height:20px;
  margin-top:3px;
  transition:transform .3s ease;
}
.faq__q[aria-expanded="true"] .faq__icon{transform:rotate(45deg);}
.faq__a{
  overflow:hidden;
  max-height:0;
  transition:max-height .35s ease;
}
.faq__a p{
  font-family:var(--inter-font);
  font-size:16px;
  color:#000;
  padding:0 0 22px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{
  background:rgba(0,0,0,.55);
  padding:56px 0 28px;
  color:var(--white);
}
.footer__grid{
  display:grid;
  grid-template-columns:1.1fr 1fr 1fr 1.2fr;
  gap:36px;
  align-items:start;
}
.footer__logo img{width:120px;height:120px;object-fit:cover;}
.footer__heading{
  font-family:var(--headline-font);
  font-size:23px;
  font-weight:600;
  color:var(--gold);
  margin-bottom:16px;
}
.footer__links li+li{margin-top:10px;}
.footer__links a{
  font-family:var(--content-font);
  font-size:16px;
  color:var(--white);
  transition:color .2s ease;
}
.footer__links a:hover,.footer__links a:focus-visible{color:var(--gold);}
.footer__map img{
  width:100%;
  max-width:240px;
  height:auto;
  border-radius:4px;
}
.footer__address{
  font-family:var(--content-font);
  font-size:16px;
  color:var(--white);
  margin-top:12px;
  max-width:240px;
}
.footer__bottom{
  margin-top:44px;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.18);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:18px;
}
.socials{display:flex;gap:14px;}
.socials a{
  width:38px;height:38px;
  display:inline-flex;
  align-items:center;justify-content:center;
  border-radius:6px;
  background:var(--white);
  color:var(--black);
  transition:background-color .25s ease,color .25s ease,transform .25s ease;
}
.socials a:hover,.socials a:focus-visible{
  background:var(--gold);
  color:var(--white);
  transform:translateY(-3px);
}
.socials svg{width:20px;height:20px;fill:currentColor;}
.footer__copy{
  font-family:var(--content-font);
  font-size:14px;
  color:var(--white);
  text-align:center;
}

/* ==========================================================================
   About page
   ========================================================================== */
.about-hero{
  position:relative;
  min-height:552px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:80px 0;
  background:url("../assets/img/about-hero.png") center center / cover no-repeat;
}
.about-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.45);
}
.about-hero .container{position:relative;z-index:1;}

/* About: the header overlays the hero instead of sitting on a band above it.
   Now that the header is fixed, this is simply "don't reserve its space" —
   the hero starts at the top of the page and the header floats over it. The
   hero takes that height back as padding so its content is never hidden. */
.page-about{padding-top:0;}
.page-about .about-hero{
  padding-top:calc(80px + var(--nav-h));
  min-height:calc(552px + var(--nav-h));
}
.about-hero__title{
  font-family:var(--headline-font);
  font-size:32px;
  font-weight:700;
  color:var(--white);
}
.about-hero__subtitle{
  font-family:var(--headline-font);
  font-size:23px;
  font-weight:400;
  color:var(--white);
  margin:8px 0 20px;
}
.about-hero__text{
  font-family:var(--content-font);
  font-size:14px;
  font-weight:500;
  line-height:1.9;
  color:var(--white);
  max-width:900px;
  margin-inline:auto;
}

.campaigns{
  background:var(--white);
  color:#000;
  padding:64px 0;
  text-align:center;
}
.campaigns__title{
  font-family:var(--headline-font);
  font-size:32px;
  font-weight:700;
  color:#000;
}
.campaigns__subtitle{
  font-family:var(--headline-font);
  font-size:24px;
  font-weight:400;
  color:#000;
  margin:26px 0 12px;
}
.campaigns__text{
  font-family:var(--content-font);
  font-size:14px;
  font-weight:500;
  line-height:1.9;
  color:#000;
  max-width:760px;
  margin-inline:auto;
}
.video-wrap{
  position:relative;
  max-width:420px;
  margin:28px auto 0;
  border-radius:8px;
  overflow:hidden;
  background:#000;
  box-shadow:0 14px 34px rgba(0,0,0,.28);
}
.video-wrap video{width:100%;height:auto;display:block;}
.sound-toggle{
  position:absolute;
  left:12px;bottom:12px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(0,0,0,.6);
  color:var(--white);
  font-family:var(--content-font);
  font-size:13px;
  font-weight:500;
  transition:background-color .25s ease;
}
.sound-toggle:hover,.sound-toggle:focus-visible{background:rgba(0,0,0,.85);}
.sound-toggle svg{width:18px;height:18px;fill:currentColor;}

.care{
  background:var(--black);
  padding:64px 0 70px;
  text-align:center;
}
.care__title{
  font-family:var(--headline-font);
  font-size:32px;
  font-weight:700;
  color:var(--white);
}
.care__subtitle{
  font-family:var(--headline-font);
  font-size:23px;
  font-weight:400;
  color:var(--white);
  margin:8px 0 24px;
}
.care__list{max-width:860px;margin-inline:auto;}
.care__list li{
  font-family:var(--content-font);
  font-size:14px;
  font-weight:500;
  line-height:1.9;
  color:var(--white);
  padding:7px 0;
}
.care__outro{
  font-family:var(--headline-font);
  font-size:23px;
  font-weight:400;
  color:var(--white);
  margin-top:26px;
}

/* ==========================================================================
   Booking page
   ========================================================================== */
.booking{
  padding:70px 0 90px;
  min-height:60vh;
}
.booking__title{
  font-family:var(--headline-font);
  font-size:38px;
  font-weight:700;
  color:var(--white);
  text-align:center;
  text-shadow:0 3px 18px rgba(0,0,0,.6);
}
.booking__intro{
  font-family:var(--content-font);
  font-size:15px;
  color:var(--white);
  text-align:center;
  margin:14px auto 34px;
  max-width:620px;
  text-shadow:0 2px 12px rgba(0,0,0,.7);
}
.booking-form{
  max-width:720px;
  margin-inline:auto;
  background:rgba(0,0,0,.72);
  border:1px solid rgba(199,175,98,.35);
  border-radius:12px;
  padding:34px;
}
.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.field{display:flex;flex-direction:column;gap:7px;}
.field--full{grid-column:1 / -1;}
.field label{
  font-family:var(--content-font);
  font-size:13px;
  font-weight:600;
  letter-spacing:.6px;
  text-transform:uppercase;
  color:var(--gold);
}
.field input,.field select,.field textarea{
  width:100%;
  padding:12px 14px;
  border-radius:6px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.06);
  color:var(--white);
  font-family:var(--content-font);
  font-size:15px;
  transition:border-color .2s ease,background-color .2s ease;
}
.field input::placeholder,.field textarea::placeholder{color:rgba(255,255,255,.45);}
.field input:focus,.field select:focus,.field textarea:focus{
  outline:none;
  border-color:var(--gold);
  background:rgba(255,255,255,.1);
}
.field select option{background:#111;color:#fff;}
.field textarea{resize:vertical;min-height:110px;}
.field__error{
  font-family:var(--content-font);
  font-size:12px;
  color:#ff8a80;
  min-height:15px;
}
.field.has-error input,.field.has-error select,.field.has-error textarea{border-color:#ff8a80;}
.booking-form__actions{margin-top:24px;text-align:center;}
.booking-form__actions .btn{padding:14px 60px;cursor:pointer;}
.booking-form__hint{
  font-family:var(--content-font);
  font-size:12.5px;
  color:rgba(255,255,255,.65);
  text-align:center;
  margin-top:14px;
}
.form-status{
  margin-top:18px;
  padding:14px 16px;
  border-radius:8px;
  font-family:var(--content-font);
  font-size:14.5px;
  text-align:center;
  background:rgba(199,175,98,.15);
  border:1px solid var(--gold);
  color:var(--white);
}

/* ---------- Legal pages ---------- */
.legal{padding:70px 0 90px;min-height:50vh;}
.legal__title{
  font-family:var(--headline-font);
  font-size:34px;
  font-weight:700;
  color:var(--white);
  text-align:center;
  text-shadow:0 3px 18px rgba(0,0,0,.6);
}
.legal__updated{
  font-family:var(--content-font);
  font-size:13px;
  letter-spacing:.5px;
  text-transform:uppercase;
  color:var(--gold);
  text-align:center;
  margin-top:10px;
}
/* Dark panel so body copy stays readable over the storefront background. */
.legal__body{
  max-width:820px;
  margin:34px auto 0;
  background:rgba(0,0,0,.78);
  border:1px solid rgba(199,175,98,.3);
  border-radius:12px;
  padding:40px 44px;
}
.legal__body h2{
  font-family:var(--headline-font);
  font-size:20px;
  font-weight:600;
  color:var(--gold);
  margin:34px 0 12px;
}
.legal__body h2:first-child{margin-top:0;}
.legal__body p,
.legal__body li{
  font-family:var(--content-font);
  font-size:15px;
  line-height:1.85;
  color:rgba(255,255,255,.9);
}
.legal__body p{margin-bottom:14px;}
.legal__body ul{margin:0 0 16px;padding-left:0;}
.legal__body li{
  position:relative;
  padding-left:22px;
  margin-bottom:9px;
}
.legal__body li::before{
  content:"";
  position:absolute;
  left:2px;top:11px;
  width:6px;height:6px;
  border-radius:50%;
  background:var(--gold);
}
.legal__body a{color:var(--gold);text-decoration:underline;text-underline-offset:3px;}
.legal__body a:hover{color:var(--gold-alt);}
.legal__body strong{color:var(--white);}
/* Marks items the salon still needs to confirm before this goes live. */
.legal__note{
  margin:30px 0 0;
  padding:16px 18px;
  border-left:3px solid var(--gold);
  background:rgba(199,175,98,.11);
  border-radius:0 8px 8px 0;
}
.legal__note p{margin:0;font-size:14px;color:rgba(255,255,255,.85);}

/* ==========================================================================
   Micro-interactions & transitions
   ========================================================================== */

/* No page-level fade here, deliberately. Animating opacity on <body> means any
   context where the animation doesn't run leaves the whole page invisible —
   too big a failure for the payoff. Section-level motion is handled by
   scroll-fx.js, which degrades to plain visible content. */

/* --- Service rows --- */
.service{
  padding:10px 12px;
  border-radius:8px;
  transition:background-color .35s ease,transform .35s cubic-bezier(.4,0,.2,1);
}
.service:hover{background:rgba(199,175,98,.07);transform:translateX(5px);}
.service--right:hover{transform:translateX(-5px);}
.service__media{overflow:hidden;border-radius:3px;}
.service__media img{transition:transform .5s cubic-bezier(.4,0,.2,1);}
.service:hover .service__media img{transform:scale(1.09);}
.service__title{transition:color .3s ease;}
.service:hover .service__title{color:var(--gold-alt);}

/* --- Team --- */
.team__photo img{transition:transform .55s cubic-bezier(.4,0,.2,1),box-shadow .45s ease;}
.team__photo img:hover{transform:translateY(-6px);box-shadow:0 26px 52px rgba(0,0,0,.62);}

/* --- Products --- */
.product{
  padding:16px 12px;
  border-radius:10px;
  transition:transform .4s cubic-bezier(.4,0,.2,1),box-shadow .4s ease,background-color .4s ease;
}
.product:hover{
  transform:translateY(-8px);
  background:rgba(255,255,255,.65);
  box-shadow:0 18px 38px rgba(0,0,0,.13);
}
.product__img{transition:transform .5s cubic-bezier(.4,0,.2,1);}
.product:hover .product__img{transform:scale(1.07);}

/* --- Testimonials --- */
.testimonial__photo{transition:transform .5s cubic-bezier(.4,0,.2,1),box-shadow .4s ease;}
.testimonial:hover .testimonial__photo{transform:scale(1.05);box-shadow:0 14px 30px rgba(0,0,0,.5);}

/* --- FAQ --- */
.faq__a{transition:max-height .42s cubic-bezier(.4,0,.2,1);}
.faq__q{transition:color .25s ease;}
.faq__q:hover{color:var(--gold-alt);}
.faq__item{transition:border-color .3s ease;}
.faq__item:hover{border-color:rgba(199,175,98,.6);}

/* --- Footer --- */
.footer__links a{position:relative;display:inline-block;}
.footer__links a::after{
  content:"";
  position:absolute;
  left:0;bottom:-2px;
  width:0;height:1px;
  background:var(--gold);
  transition:width .28s ease;
}
.footer__links a:hover::after,.footer__links a:focus-visible::after{width:100%;}
.footer__map img{transition:transform .45s cubic-bezier(.4,0,.2,1),filter .45s ease;}
.footer__map:hover img{transform:scale(1.03);filter:brightness(1.12);}

/* --- Form --- */
.field label{transition:color .25s ease;}
.field:focus-within label{color:var(--gold-alt);}
.form-status{animation:statusIn .45s cubic-bezier(.4,0,.2,1);}
@keyframes statusIn{
  from{opacity:0;transform:translateY(10px);}
  to{opacity:1;transform:translateY(0);}
}

/* Anything the sticky header would otherwise cover when jumping to an anchor. */
[id]{scroll-margin-top:110px;}

@media (prefers-reduced-motion:reduce){
  body{animation:none;opacity:1;}
  .service:hover,.service--right:hover,.product:hover{transform:none;}
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width:1024px){
  :root{--nav-h:110px;}
  .hero__title{font-size:52px;}
  .faq__title{font-size:44px;}
  .footer__grid{grid-template-columns:1fr 1fr;gap:34px;}
  .footer__logo{grid-column:1 / -1;display:flex;justify-content:center;}
  .products__grid{grid-template-columns:repeat(2,1fr);gap:34px;}
  .testimonials__grid{grid-template-columns:1fr;max-width:560px;margin-inline:auto;gap:46px;}
  .team__card{gap:32px;}
  .team__photo{flex:0 0 240px;}
  .team__photo img{width:240px;height:360px;}
}

@media (max-width:860px){
  .nav-toggle{display:inline-flex;}
  /* Set the token rather than min-height directly: .page-about offsets its hero
     by var(--nav-h), so the two must never drift apart. */
  :root{--nav-h:88px;}
  .brand img{width:70px;height:70px;}

  /* The header goes solid while the menu is open, so an opaque panel never hangs
     off a transparent bar at the top of the page. */
  .site-header.nav-open{
    background:rgba(0,0,0,.96);
    box-shadow:0 2px 20px rgba(0,0,0,.5);
  }

  /* grid-template-rows 0fr -> 1fr animates to the menu's natural height, so the
     panel can never clip its own links the way a fixed max-height could. */
  .site-header nav{
    position:absolute;
    top:100%;left:0;right:0;
    display:grid;
    grid-template-rows:0fr;
    background:rgba(0,0,0,.96);
    box-shadow:0 18px 30px rgba(0,0,0,.45);
    transition:grid-template-rows .38s cubic-bezier(.4,0,.2,1);
  }
  .site-header.nav-open nav{grid-template-rows:1fr;}

  .nav-list{
    flex-direction:column;
    align-items:stretch;
    gap:0;
    min-height:0;
    overflow:hidden;
  }
  .nav-list li{border-top:1px solid rgba(255,255,255,.1);}
  .nav-list a{
    display:block;
    padding:17px 24px;
    font-size:17px;
    opacity:0;
    transform:translateY(-8px);
    transition:opacity .3s ease,transform .3s ease,color .2s ease,background-color .2s ease;
  }
  .nav-list a::after{display:none;}
  .nav-list a:active{background:rgba(199,175,98,.14);}

  /* Links fade in on a slight stagger once the panel has started opening. */
  .site-header.nav-open .nav-list a{opacity:1;transform:translateY(0);}
  .site-header.nav-open .nav-list li:nth-child(1) a{transition-delay:.08s;}
  .site-header.nav-open .nav-list li:nth-child(2) a{transition-delay:.14s;}
  .site-header.nav-open .nav-list li:nth-child(3) a{transition-delay:.2s;}

  .team__card{flex-direction:column;text-align:center;gap:24px;}
  .team__photo{flex:0 0 auto;}
  .team__bio{max-width:none;}
}

@media (max-width:640px){
  .hero{min-height:440px;padding:40px 0 70px;}
  .hero__title{font-size:38px;}
  .hero__subtitle{font-size:18px;}
  .hero .btn,.team .btn{padding:10px 46px;width:100%;max-width:300px;}

  .section-title{font-size:26px;}
  .team .section-title{font-size:30px;}
  .team__card{padding:26px 20px;border-radius:14px;}

  .service{flex-direction:row;gap:16px;align-items:center;}
  .service--right{flex-direction:row;}
  .service__title{font-size:19px;}
  .service--left .service__body,.service--right .service__body{text-align:left;}
  .service__media img{width:84px;height:100px;}

  .products{padding:56px 16px;}
  .products__title{font-size:26px;}
  .products__grid{grid-template-columns:repeat(2,1fr);gap:22px;}
  .product__img{height:140px;}
  .product__name{font-size:14px;}
  .product__tag{font-size:10px;}

  .testimonials__title{font-size:28px;}
  .testimonial__quote{font-size:21px;}

  .faq{padding:52px 0 64px;}
  .faq__title{font-size:30px;}
  .faq__q{font-size:16px;}

  .about-hero{min-height:auto;padding:60px 0;}
  /* Matches the specificity of the .page-about rule above so the desktop
     min-height doesn't leave a 640px hero on a phone. */
  .page-about .about-hero{
    min-height:auto;
    padding-top:calc(60px + var(--nav-h));
  }
  .about-hero__title{font-size:26px;}
  .about-hero__subtitle{font-size:19px;}
  .campaigns__title,.care__title{font-size:26px;}
  .campaigns__subtitle,.care__subtitle,.care__outro{font-size:19px;}

  .booking__title{font-size:28px;}
  .booking-form{padding:24px 18px;border-radius:10px;}
  .form-grid{grid-template-columns:1fr;}
  .booking-form__actions .btn{width:100%;padding:14px 20px;}

  .footer__grid{grid-template-columns:1fr;text-align:center;gap:30px;}
  .footer__logo{justify-content:center;}
  .footer__map img,.footer__address{margin-inline:auto;}
}

@media (max-width:380px){
  .hero__title{font-size:31px;}
  .products__grid{grid-template-columns:1fr;}
  .socials a{width:34px;height:34px;}
}

/* ---------- Motion preference ---------- */
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{
    animation-duration:.001ms !important;
    transition-duration:.001ms !important;
    scroll-behavior:auto !important;
  }
}

/* Agency credit link in the footer copyright line. */
.footer__credit{
  color:var(--gold);
  font-weight:600;
  transition:color .2s ease;
}
.footer__credit:hover,.footer__credit:focus-visible{
  color:var(--gold-alt);
  text-decoration:underline;
  text-underline-offset:3px;
}
