/* ==========================================================================
   THIRD VISION STUDIOS — DESIGN SYSTEM
   Charcoal / warm off-white canvas, amber-gold + forest-green accents.
   Primary font: Montserrat across display, body and labels
   Signature motif: the sprocket-hole "filmstrip" rule + slate-frame placeholders.
   ========================================================================== */

:root{
  /* ---- Real brand palette, sampled from logo / rollup banner / rate cards ---- */
  --charcoal:#120A09;       /* brand black */
  --charcoal-2:#1B100E;
  --offwhite:#F5F1E8;       /* warm off-white, brand-matched */
  --paper:#EFE9DA;
  --gold:#D4C40E;           /* brand gold — the star color */
  --gold-light:#E4D64A;
  --gold-deep:#8C7A0A;      /* darkened gold, for text on light backgrounds */
  --teal:#17A3AD;           /* secondary accent from rate cards — used sparingly */
  --teal-light:#3FC2CB;
  --ivory:#F2EEE3;
  --ink:#17110D;
  --bronze:#3A3226;
  --bronze-40: rgba(58,50,38,.4);

  /* Back-compat aliases so existing component rules referencing --green still work,
     now mapped to the teal accent instead of the invented forest-green. */
  --green:#146F76;
  --green-light:#17A3AD;

  --font-display: "Montserrat", -apple-system, Segoe UI, sans-serif;
  --font-body: "Montserrat", -apple-system, Segoe UI, sans-serif;
  --font-mono: "Montserrat", -apple-system, Segoe UI, sans-serif;

  --container: 1180px;
  --radius: 3px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; overflow-x:hidden; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}

body{
  margin:0;
  background:var(--offwhite);
  color:var(--ink);
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
.site-skip-link{
  position:fixed; left:16px; top:-80px; z-index:500;
  background:var(--gold); color:var(--charcoal); padding:10px 14px; font-weight:800;
}
.site-skip-link:focus{ top:16px; }

img,svg{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font:inherit; cursor:pointer; }
input,select,textarea{ font:inherit; }
:focus-visible{ outline:3px solid var(--teal-light); outline-offset:3px; }

h1,h2,h3,h4{
  font-family:var(--font-display);
  font-weight:800;
  line-height:1.14;
  margin:0 0 .5em;
  letter-spacing:0;
  color:inherit;
  text-transform:none;
}
h1{ font-size:clamp(2.3rem,5.6vw,4rem); font-weight:800; letter-spacing:0; }
h2{ font-size:clamp(1.8rem,3.8vw,2.5rem); }
h3{ font-size:1.2rem; font-weight:700; }
p{ margin:0 0 1em; }

.container{ max-width:var(--container); margin:0 auto; padding:0 24px; }
.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--font-display);
  font-weight:800;
  font-size:.74rem;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--gold-deep);
  margin-bottom:18px;
}
.section-dark .eyebrow, .cta-band .eyebrow, .page-header .eyebrow, .hero .eyebrow{ color:var(--gold); }
.eyebrow::before{
  content:"";
  width:22px; height:1px;
  background:var(--gold);
  display:inline-block;
}

/* ---------------- Buttons ---------------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:14px 26px;
  border-radius:var(--radius);
  font-weight:600;
  font-size:.95rem;
  letter-spacing:.01em;
  border:1px solid transparent;
  transition:transform .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
  white-space:nowrap;
}
.btn-primary{ background:var(--gold); color:var(--charcoal); }
.btn-primary:hover{ background:var(--gold-light); transform:translateY(-1px); }
.btn-outline-dark{ border-color:rgba(237,234,226,.4); color:var(--ivory); }
.btn-outline-dark:hover{ border-color:var(--gold); color:var(--gold-light); }
.btn-outline-light{ border-color:var(--ink); color:var(--ink); }
.btn-outline-light:hover{ border-color:var(--green); color:var(--green); }
.btn-block{ width:100%; }
.btn-row{ display:flex; flex-wrap:wrap; gap:14px; }

/* ---------------- Filmstrip divider (signature motif) ---------------- */
.filmstrip{
  height:14px;
  background-image:
    radial-gradient(circle, var(--bronze) 2px, transparent 2.4px);
  background-size:22px 14px;
  background-position:center;
  background-repeat:repeat-x;
  opacity:.55;
}
.filmstrip.on-dark{ opacity:.35; }
.filmstrip.on-light{
  background-image: radial-gradient(circle, rgba(28,28,26,.28) 2px, transparent 2.4px);
}

/* ---------------- Header / Nav ---------------- */
.site-header{
  position:sticky; top:0; z-index:100;
  background:rgba(18,19,15,.82);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
  transition:background .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled{
  background:rgba(18,19,15,.96);
  box-shadow:0 1px 0 var(--bronze-40);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:18px 24px;
  max-width:var(--container); margin:0 auto;
}
.logo{
  display:flex; align-items:center; gap:10px;
  font-family:var(--font-display);
  font-size:1.15rem; font-weight:600;
  color:var(--ivory);
  letter-spacing:.01em;
}
.logo-mark{ width:34px; height:40px; flex:none; object-fit:contain; }
.logo small{ display:block; font-family:var(--font-mono); font-size:.6rem; letter-spacing:.18em; color:var(--gold); font-weight:400; text-transform:uppercase; }

.nav-desktop{ display:flex; align-items:center; gap:34px; }
.nav-desktop a{
  font-size:.92rem; color:var(--ivory); opacity:.85;
  position:relative; padding:4px 0;
}
.nav-desktop a:hover{ opacity:1; color:var(--gold-light); }
.nav-cta{ display:flex; align-items:center; gap:14px; }

.nav-toggle{
  display:none;
  width:44px; height:44px; flex:none;
  align-items:center; justify-content:center;
  background:none; border:none; padding:0;
  flex-direction:column; gap:4px;
  cursor:pointer;
  touch-action:manipulation;
}
.nav-toggle span{
  width:19px; height:1.5px;
  background:var(--ivory);
  display:block;
  opacity:.9;
}

.mobile-nav{
  display:none;
  position:fixed; inset:0; z-index:200;
  background:var(--charcoal);
  padding:24px;
  flex-direction:column;
}
.mobile-nav.open{ display:flex; }
.mobile-nav-top{ display:flex; align-items:center; justify-content:space-between; margin-bottom:40px; }
.mobile-nav-close{
  width:44px; height:44px;
  display:grid; place-items:center;
  background:none; border:none; padding:0;
  color:var(--ivory);
  font-size:1.35rem; line-height:1;
  cursor:pointer;
}
.mobile-nav a{
  display:block; padding:16px 0;
  font-family:var(--font-display); font-size:1.6rem;
  color:var(--ivory);
  border-bottom:1px solid var(--bronze-40);
}
.mobile-nav .btn{ margin-top:28px; }

/* ---------------- Hero ---------------- */
.hero{
  position:relative;
  min-height:92vh;
  display:flex; align-items:flex-end;
  color:var(--ivory);
  overflow:hidden;
  background:var(--charcoal);
}
.hero-bg{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(18,19,15,.35) 0%, rgba(18,19,15,.55) 45%, rgba(18,19,15,.96) 100%),
    repeating-linear-gradient(115deg, #23261d 0px, #23261d 2px, #1a1c15 2px, #1a1c15 4px);
}
.hero-bg .frame-tag{ bottom:24px; right:24px; }
.hero-inner{
  position:relative; z-index:2;
  padding:120px 24px 64px;
  max-width:var(--container); margin:0 auto;
  width:100%;
}
.hero h1{ max-width:14ch; margin-bottom:.3em; }
.hero .lede{ max-width:46ch; font-size:1.12rem; color:var(--ivory); opacity:.88; margin-bottom:32px; }
.hero-stats{
  display:flex; flex-wrap:wrap; gap:28px;
  margin-top:40px; padding-top:24px;
  border-top:1px solid var(--bronze-40);
  font-family:var(--font-mono); font-size:.78rem; letter-spacing:.05em;
  color:var(--ivory); opacity:.75;
}
.hero-stats strong{ color:var(--gold-light); font-family:var(--font-body); font-weight:700; }

.page-header{
  position:relative;
  background:var(--charcoal); color:var(--ivory);
  padding:150px 0 70px;
  overflow:hidden;
}
.page-header::before{
  content:""; position:absolute; inset:0;
  background:repeating-linear-gradient(115deg, #23261d 0px, #23261d 2px, #1a1c15 2px, #1a1c15 4px);
  opacity:.6;
}
.page-header .container{ position:relative; z-index:2; }
.page-header .lede{ max-width:60ch; opacity:.85; font-size:1.05rem; }

/* ---------------- Sections ---------------- */
.section{ padding:88px 0; }
.section-dark{ background:var(--charcoal); color:var(--ivory); }
.section-paper{ background:var(--paper); }
.section-head{ max-width:640px; margin-bottom:48px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }

/* ---------------- Placeholder "slate frame" media blocks ---------------- */
.frame{
  position:relative;
  overflow:hidden;
  border-radius:var(--radius);
  background:
    linear-gradient(160deg, #2b2d22 0%, #1a1b15 100%);
  aspect-ratio: var(--ar, 4/5);
  display:flex; align-items:flex-end;
}
.frame::before{
  content:"";
  position:absolute; inset:0;
  background-image:
    repeating-linear-gradient(45deg, rgba(237,234,226,.035) 0 2px, transparent 2px 14px);
}
.frame.tone-gold{ background:linear-gradient(160deg,#4a3a1f 0%,#211a10 100%); }
.frame.tone-green{ background:linear-gradient(160deg,#2c3b30 0%,#151c17 100%); }
.frame.tone-ink{ background:linear-gradient(160deg,#33322c 0%,#17161a 100%); }
.frame.ar-video{ --ar:16/9; }
.frame.ar-square{ --ar:1/1; }
.frame.ar-wide{ --ar:3/2; }
.frame-tag{
  position:relative; z-index:2;
  margin:16px;
  padding:9px 12px;
  background:rgba(18,19,15,.72);
  border:1px solid rgba(237,234,226,.18);
  font-family:var(--font-mono);
  font-size:.68rem;
  letter-spacing:.06em;
  color:var(--ivory);
  text-transform:uppercase;
  max-width:calc(100% - 32px);
}
.frame-tag .slate-no{ color:var(--gold-light); margin-right:6px; }
.frame.has-photo{ background:var(--charcoal-2); }
.frame.has-photo::before{
  background-image:none;
  background:linear-gradient(180deg, rgba(18,10,9,0) 45%, rgba(18,10,9,.8) 100%);
  z-index:1;
}
.frame.has-photo img{
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; object-position:center;
  z-index:0;
}
.frame.has-photo .frame-tag{ z-index:2; }
.frame .play{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:56px; height:56px; border-radius:50%;
  background:rgba(245,242,236,.14);
  border:1px solid rgba(245,242,236,.4);
  display:flex; align-items:center; justify-content:center;
  z-index:2;
}
.frame .play::after{
  content:""; width:0; height:0;
  border-left:14px solid var(--ivory);
  border-top:9px solid transparent; border-bottom:9px solid transparent;
  margin-left:3px;
}

/* ---------------- Services grid ---------------- */
.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:1px;
  background:var(--bronze-40);
  border:1px solid var(--bronze-40);
}
.section-dark .services-grid{ background:rgba(237,234,226,.1); border-color:rgba(237,234,226,.1); }
.service-card{
  background:var(--charcoal-2);
  min-width:0;
  display:flex;
  flex-direction:column;
  transition:background .2s var(--ease);
}
.service-card:hover{ background:#20221a; }
.service-card:not(.has-media){ padding:32px 26px; }
.service-card-media{
  aspect-ratio:16/9;
  overflow:hidden;
  background:var(--charcoal);
  border-bottom:1px solid rgba(242,238,227,.12);
}
.service-card-media img{
  width:100%; height:100%; object-fit:cover;
  transition:transform .3s var(--ease);
}
.service-card:hover .service-card-media img{ transform:scale(1.025); }
.service-card-body{
  padding:26px 24px 28px;
  display:flex;
  flex:1;
  flex-direction:column;
  align-items:flex-start;
}
.service-card .num{ font-family:var(--font-mono); font-size:.72rem; color:var(--gold); letter-spacing:.08em; }
.service-card h3{ color:var(--ivory); margin:14px 0 10px; font-size:1.2rem; }
.service-card p{ color:var(--ivory); opacity:.72; font-size:.92rem; margin-bottom:16px; }
.service-card .tags{ display:flex; flex-wrap:wrap; gap:6px; margin-bottom:14px; }
.service-card .tags span{
  font-family:var(--font-mono); font-size:.66rem; letter-spacing:.03em;
  color:var(--green-light); border:1px solid var(--green); padding:3px 8px; border-radius:20px;
}
.service-card a{ font-size:.85rem; color:var(--gold-light); font-weight:600; margin-top:auto; }
.service-card a:hover{ text-decoration:underline; }

/* ---------------- Why-us pillars ---------------- */
.pillars{ display:grid; grid-template-columns:repeat(auto-fit,minmax(230px,1fr)); gap:36px; }
.pillar .index{ font-family:var(--font-mono); color:var(--gold); font-size:.78rem; letter-spacing:.08em; margin-bottom:10px; display:block; }
.pillar h3{ margin-bottom:8px; }
.pillar p{ color:inherit; opacity:.78; font-size:.95rem; }

/* ---------------- Gallery grid ---------------- */
.filter-bar{
  display:flex; gap:10px; flex-wrap:nowrap;
  overflow-x:auto; padding:4px 0 18px;
  scrollbar-width:none;
}
.filter-bar::-webkit-scrollbar{ display:none; }
.filter-chip{
  flex:none;
  padding:9px 18px;
  border:1px solid var(--bronze-40);
  border-radius:20px;
  font-family:var(--font-mono);
  font-size:.72rem; letter-spacing:.05em; text-transform:uppercase;
  color:var(--ink); background:transparent;
}
.filter-chip.active{ background:var(--charcoal); color:var(--gold-light); border-color:var(--charcoal); }
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}
.gallery-grid .frame{ cursor:default; }
.gallery-grid .frame.hidden{ display:none; }

/* ---------------- Video work ---------------- */
.video-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:22px;
}
.video-card{
  min-width:0;
  background:var(--charcoal-2);
  border:1px solid rgba(242,238,227,.12);
}
.video-media{
  position:relative;
  display:block;
  aspect-ratio:16/9;
  overflow:hidden;
  background:#000;
}
.video-media img,.video-media video{ width:100%; height:100%; object-fit:cover; display:block; }
.video-media .play{ position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); }
.video-card-body{ padding:22px; }
.video-card-body h3{ color:var(--ivory); margin:7px 0 8px; }
.video-card-body p{ color:rgba(242,238,227,.72); font-size:.9rem; }
.video-category{ color:var(--gold); font-size:.7rem; font-weight:800; text-transform:uppercase; }
.video-link{ color:var(--gold-light); font-weight:700; font-size:.86rem; }

/* ---------------- Profile, clients and community ---------------- */
.profile-showcase{ border:1px solid var(--bronze-40); background:var(--offwhite); }
.profile-showcase img{ width:100%; height:auto; }
.client-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
  gap:1px;
  background:var(--bronze-40);
  border:1px solid var(--bronze-40);
}
.client-logo{
  min-height:132px;
  padding:20px;
  background:#fff;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:12px;
  text-align:center;
  font-size:.75rem;
  font-weight:700;
}
.client-logo img{ max-width:130px; max-height:64px; object-fit:contain; }
.community-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:20px;
}
.community-card{ background:var(--offwhite); border:1px solid var(--bronze-40); }
.community-media{ aspect-ratio:16/10; overflow:hidden; background:var(--charcoal-2); }
.community-media img{ width:100%; height:100%; object-fit:cover; }
.community-card-body{ padding:22px; }
.community-meta{ color:var(--gold-deep); font-size:.72rem; font-weight:800; text-transform:uppercase; }
.community-card-body a{ color:var(--green); font-weight:700; }

/* ---------------- Testimonials ---------------- */
.testi-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:28px; }
.testi-card{
  background:var(--offwhite); border:1px solid var(--bronze-40);
  padding:32px 28px; position:relative;
}
.section-dark .testi-card{ background:var(--charcoal-2); border-color:rgba(237,234,226,.12); }
.testi-card .quote-mark{ font-family:var(--font-display); font-size:2.6rem; color:var(--gold); line-height:1; display:block; margin-bottom:8px; }
.testi-card p.quote{ font-size:1rem; font-style:italic; margin-bottom:20px; }
.testi-person{ display:flex; align-items:center; gap:12px; }
.testi-avatar{
  width:42px; height:42px; border-radius:50%; flex:none;
  background:linear-gradient(160deg,#2b2d22,#1a1b15);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-mono); font-size:.6rem; color:var(--gold-light); text-align:center;
}
.testi-person .who strong{ display:block; font-size:.9rem; }
.testi-person .who span{ font-size:.78rem; opacity:.65; }

/* ---------------- FAQ accordion ---------------- */
.faq-item{ border-bottom:1px solid var(--bronze-40); }
.faq-q{
  width:100%; background:none; border:none; text-align:left;
  display:flex; align-items:center; justify-content:space-between; gap:20px;
  padding:22px 0; color:inherit;
  font-family:var(--font-display); font-size:1.08rem;
}
.faq-q .icon{ font-family:var(--font-mono); font-size:1.1rem; color:var(--gold); flex:none; transition:transform .25s var(--ease); }
.faq-item.open .faq-q .icon{ transform:rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .3s var(--ease); }
.faq-a p{ padding-bottom:20px; opacity:.78; max-width:60ch; font-size:.95rem; }

/* ---------------- Steps ---------------- */
.steps{ display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:30px; counter-reset:step; }
.step{ position:relative; padding-top:8px; }
.step::before{
  counter-increment:step; content:counter(step,decimal-leading-zero);
  font-family:var(--font-mono); font-size:.78rem; color:var(--gold);
  display:block; margin-bottom:10px; letter-spacing:.08em;
}

/* ---------------- Contact ---------------- */
.contact-grid{ display:grid; grid-template-columns:1.1fr .9fr; gap:60px; align-items:start; }
.contact-cards{ display:grid; gap:1px; background:var(--bronze-40); border:1px solid var(--bronze-40); margin-bottom:40px; }
.contact-card{ background:var(--offwhite); padding:22px 24px; display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; }
.contact-card h4{ font-family:var(--font-body); font-weight:700; font-size:.95rem; margin:0 0 4px; }
.contact-card p{ margin:0; font-size:.9rem; opacity:.75; }

.form-group{ margin-bottom:20px; }
.form-group label{ display:block; font-size:.82rem; font-weight:600; margin-bottom:7px; letter-spacing:.01em; }
.form-fieldset{ border:0; padding:0; min-width:0; }
.form-fieldset legend{ display:block; width:100%; font-size:.82rem; font-weight:600; margin-bottom:7px; }
.form-group input,.form-group select,.form-group textarea{
  width:100%; padding:13px 14px;
  border:1px solid var(--bronze-40); background:var(--offwhite);
  border-radius:var(--radius); color:var(--ink);
}
.form-group textarea{ min-height:110px; resize:vertical; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.hp-field{ position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }
.checkbox-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:10px; }
.checkbox-grid label{ display:flex; align-items:center; gap:8px; font-size:.86rem; font-weight:400; }
.checkbox-grid input{ width:auto; }
.form-note{ font-size:.82rem; opacity:.6; margin-top:14px; }
.consent-check{
  display:flex; align-items:flex-start; gap:10px;
  margin:4px 0 18px; font-size:.82rem; line-height:1.55; color:rgba(23,17,13,.78);
}
.consent-check input{ width:auto; margin-top:4px; flex:none; }
.consent-check a{ color:var(--green); font-weight:700; text-decoration:underline; text-underline-offset:2px; }
.form-success{
  display:none; padding:18px 20px; background:var(--green); color:var(--ivory);
  border-radius:var(--radius); font-size:.92rem; margin-bottom:20px;
}
.form-success.show{ display:block; }
.form-success.error{ background:#8a2f25; color:var(--ivory); }
.btn[disabled]{ opacity:.6; cursor:not-allowed; transform:none; }

/* ---------------- Rate card downloads ---------------- */
.ratecards{ display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:1px; background:var(--bronze-40); border:1px solid var(--bronze-40); }
.ratecard{ background:var(--charcoal-2); padding:30px 26px; display:flex; flex-direction:column; gap:14px; }
.ratecard .rc-icon{
  width:40px; height:40px; border-radius:50%;
  background:rgba(23,163,173,.14); border:1px solid var(--teal);
  display:flex; align-items:center; justify-content:center;
  color:var(--teal-light); font-size:1.1rem;
}
.ratecard h3{ color:var(--ivory); margin-bottom:2px; }
.ratecard p{ color:var(--ivory); opacity:.7; font-size:.88rem; margin-bottom:4px; }
.ratecard a{
  display:inline-flex; align-items:center; gap:8px;
  font-weight:700; font-size:.85rem; color:var(--gold-light);
  border-top:1px solid rgba(237,234,226,.12); padding-top:12px; margin-top:auto;
}
.ratecard a:hover{ color:var(--gold); }
.ratecard .package-enquire{ color:var(--ivory); font-size:.8rem; }

/* teal tag used for price/package callouts, matching the rate-card accent */
.tag-teal{
  display:inline-block; font-family:var(--font-display); font-weight:700;
  font-size:.72rem; letter-spacing:.04em; text-transform:uppercase;
  background:var(--teal); color:#052326; padding:5px 12px; border-radius:20px;
}

/* ---------------- CTA band ---------------- */
.cta-band{
  background:var(--charcoal); color:var(--ivory);
  padding:70px 0; text-align:center;
  border-top:1px solid var(--bronze-40); border-bottom:1px solid var(--bronze-40);
}
.cta-band h2{ margin-bottom:14px; }
.cta-band p{ opacity:.85; max-width:52ch; margin:0 auto 30px; }
.cta-band .btn-row{ justify-content:center; }

/* ---------------- Footer ---------------- */
.site-footer{ background:var(--charcoal); color:var(--ivory); padding:64px 0 24px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:40px; margin-bottom:48px; }
.footer-grid h5{ font-family:var(--font-mono); font-size:.72rem; letter-spacing:.12em; text-transform:uppercase; color:var(--gold-light); margin-bottom:16px; }
.footer-grid li{ margin-bottom:10px; font-size:.9rem; opacity:.8; }
.footer-grid a:hover{ color:var(--gold-light); opacity:1; }
.footer-brand p{ opacity:.7; font-size:.88rem; max-width:32ch; }
.footer-socials{ display:flex; gap:14px; margin-top:16px; }
.footer-socials a{
  width:40px; height:40px; border:1px solid rgba(237,234,226,.25); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:transparent; font-size:0;
  background-position:center;
  background-repeat:no-repeat;
  background-size:18px;
}
.footer-socials a:hover{ border-color:var(--gold); color:var(--gold-light); }
.footer-socials a[aria-label="Facebook"]{ background-image:url("../img/icons/facebook.png"); }
.footer-socials a[aria-label="Instagram"]{ background-image:url("../img/icons/instagram.png"); }
.footer-socials a[aria-label="YouTube"]{ background-image:url("../img/icons/youtube.png"); }
.footer-bottom{
  border-top:1px solid var(--bronze-40); padding-top:22px;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
  font-size:.8rem; opacity:.6;
}
.footer-legal{
  width:100%; display:flex; flex-wrap:wrap; gap:10px 18px; margin-top:4px;
}
.footer-legal a,.footer-legal button{
  color:inherit; background:none; border:0; padding:0; font:inherit; opacity:1;
}
.footer-legal a:hover,.footer-legal button:hover{ color:var(--gold-light); }

/* ---------------- Legal pages ---------------- */
.legal-page{ background:var(--offwhite); }
.legal-intro{ max-width:760px; }
.legal-updated{ color:var(--green); font-size:.84rem; font-weight:700; margin-top:18px; }
.legal-layout{ display:grid; grid-template-columns:minmax(190px,260px) minmax(0,760px); gap:64px; align-items:start; }
.legal-nav{ position:sticky; top:112px; border-top:2px solid var(--gold); padding-top:18px; }
.legal-nav strong{ display:block; margin-bottom:12px; }
.legal-nav a{ display:block; padding:7px 0; font-size:.86rem; color:rgba(23,17,13,.7); }
.legal-nav a:hover{ color:var(--green); }
.legal-content section{ scroll-margin-top:120px; padding-bottom:28px; margin-bottom:28px; border-bottom:1px solid var(--bronze-40); }
.legal-content section:last-child{ border-bottom:0; }
.legal-content h2{ font-size:1.45rem; margin-bottom:12px; }
.legal-content h3{ font-size:1rem; margin:20px 0 8px; }
.legal-content p,.legal-content li{ color:rgba(23,17,13,.78); }
.legal-content ul,.legal-content ol{ margin:0 0 16px; padding-left:22px; }
.legal-content ul{ list-style:disc; }
.legal-content li{ margin-bottom:8px; }
.legal-callout{ border-left:3px solid var(--gold); background:var(--paper); padding:18px 20px; margin-bottom:28px; }

/* ---------------- Cookie consent ---------------- */
.cookie-overlay{
  position:fixed; inset:0; z-index:290; background:rgba(18,10,9,.48);
}
.cookie-banner{
  position:fixed; z-index:300; left:50%; bottom:24px; transform:translateX(-50%);
  width:min(920px,calc(100vw - 32px)); background:var(--ivory); color:var(--ink);
  border:1px solid var(--bronze-40); box-shadow:0 18px 60px rgba(18,10,9,.28);
  padding:24px; display:grid; grid-template-columns:minmax(0,1fr) auto; gap:28px; align-items:end;
}
.cookie-banner[hidden],.cookie-overlay[hidden]{ display:none; }
.cookie-banner h2{ font-size:1.35rem; margin-bottom:8px; }
.cookie-banner p{ margin-bottom:8px; max-width:68ch; font-size:.9rem; color:rgba(23,17,13,.76); }
.cookie-banner a{ color:var(--green); font-size:.84rem; font-weight:700; text-decoration:underline; text-underline-offset:2px; }
.cookie-kicker{ font-size:.7rem!important; font-weight:800; text-transform:uppercase; letter-spacing:.12em; color:var(--gold-deep)!important; }
.cookie-actions{ display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end; }
.cookie-secondary{ background:transparent; color:var(--ink); border-color:var(--bronze-40); }

/* ---------------- Floating WhatsApp + mobile bar ---------------- */
.wa-float{
  position:fixed; right:20px; bottom:20px; z-index:150;
  width:56px; height:56px; border-radius:50%;
  background:#25D366; color:#0b0b0a;
  background-image:url("../img/icons/whatsapp.png");
  background-repeat:no-repeat;
  background-position:center;
  background-size:28px;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 6px 18px rgba(0,0,0,.3);
  font-size:0;
}
.mobile-cta-bar{
  display:none;
  position:fixed; left:0; right:0; bottom:0; z-index:140;
  background:var(--charcoal); border-top:1px solid var(--bronze-40);
  width:100vw;
  max-width:100vw;
  overflow:hidden;
  grid-template-columns:repeat(3,minmax(0,1fr));
  transition:transform .3s var(--ease);
}
.mobile-cta-bar a{
  display:flex; flex-direction:column; align-items:center; gap:3px;
  padding:10px 0 12px; color:var(--ivory); font-size:.68rem;
  font-family:var(--font-mono); letter-spacing:.04em; text-transform:uppercase;
  min-width:0;
  overflow:hidden;
}
.mobile-cta-bar .ic{ font-size:1.05rem; }
.mobile-cta-bar.hide-bar{ transform:translateY(100%); }

/* ---------------- Utility ---------------- */
.mt-0{ margin-top:0; }
.text-center{ text-align:center; }
.grid-2{ display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center; }
.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:32px; }
.grid-4{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.tag-grid{ display:flex; flex-wrap:wrap; gap:10px; }
.tag-grid span{
  font-family:var(--font-mono); font-size:.76rem; letter-spacing:.03em;
  padding:9px 16px; border:1px solid var(--bronze-40); border-radius:20px;
}
.section-dark .tag-grid span{ border-color:rgba(237,234,226,.2); color:var(--ivory); }
.map-embed{ width:100%; height:320px; border:1px solid var(--bronze-40); background:var(--paper); }
.map-consent{
  width:100%; min-height:320px; margin-bottom:28px; border:1px solid var(--bronze-40);
  background:var(--paper); display:grid; place-items:center; padding:28px; text-align:center;
}
.map-consent > div{ max-width:520px; }
.map-consent strong{ display:block; font-size:1.05rem; margin-bottom:8px; }
.map-consent p{ color:rgba(23,17,13,.72); font-size:.88rem; }
.map-consent .btn{ margin:0 auto; }
.frame video{width:100%;height:100%;object-fit:cover;display:block;background:#000}

/* ---------------- CMS-rendered content ---------------- */
.cms-price{
  margin-top:16px;
  color:var(--gold-light);
  font-weight:800;
  font-size:.9rem;
}
.cms-offers{
  background:var(--paper);
  border-bottom:1px solid var(--bronze-40);
  padding:28px 0;
}
.cms-offer-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:18px;
}
.cms-offer{
  background:var(--ivory);
  border:1px solid var(--bronze-40);
  padding:24px;
}
.cms-offer h3{
  margin:0 0 10px;
  font-size:1.25rem;
}
.cms-offer p{
  margin:0 0 14px;
  color:rgba(26,24,20,.78);
}
.cms-offer span{
  display:block;
  margin-bottom:16px;
  color:var(--green);
  font-weight:700;
  font-size:.9rem;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width:960px){
  .nav-desktop, .nav-cta .btn{ display:none; }
  .nav-toggle{ display:flex; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .contact-grid{ grid-template-columns:1fr; }
  .grid-2{ grid-template-columns:1fr; }
  .grid-3{ grid-template-columns:1fr 1fr; }
  .gallery-grid{ grid-template-columns:repeat(2,1fr); }
  .video-grid{ grid-template-columns:1fr; }
  .legal-layout{ grid-template-columns:1fr; gap:28px; }
  .legal-nav{ position:static; }
}
@media (max-width:640px){
  .header-inner{ padding:12px 16px; }
  .logo{ font-size:1rem; }
  .logo-mark{ width:30px; height:34px; }
  .section{ padding:60px 0; }
  .hero{ min-height:88vh; }
  .hero-inner{ padding:110px 20px 100px; }
  .hero h1{ max-width:100%; font-size:clamp(2.05rem,11vw,3rem); }
  .hero .lede{ width:100%; max-width:min(32ch, calc(100vw - 40px)); font-size:1rem; overflow-wrap:break-word; }
  .hero-stats{ display:grid; grid-template-columns:1fr; gap:10px; }
  .services-grid{ grid-template-columns:1fr; }
  .grid-3, .grid-4{ grid-template-columns:1fr; }
  .gallery-grid{ grid-template-columns:1fr; }
  .form-row, .checkbox-grid{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; gap:30px; }
  .mobile-cta-bar{ display:grid; }
  .mobile-cta-bar{ grid-template-columns:repeat(2,minmax(0,1fr)); }
  .mobile-cta-bar a:nth-child(3){ display:none; }
  .mobile-cta-bar a{ min-width:0; padding-inline:4px; }
  .wa-float{ display:none; }
  .btn-row{ flex-direction:column; align-items:stretch; }
  .btn{ width:100%; white-space:normal; text-align:center; }
  body{ padding-bottom:64px; }
  .cta-band .btn-row{ align-items:stretch; }
  .cookie-banner{ bottom:76px; grid-template-columns:1fr; gap:16px; padding:20px; max-height:calc(100vh - 100px); overflow:auto; }
  .cookie-actions{ justify-content:stretch; }
  .cookie-actions{ flex-direction:column; min-width:0; }
  .cookie-actions .btn{ flex:0 0 auto; width:100%; min-width:0; }
  .footer-legal{ flex-direction:column; gap:8px; }
}
