/* ============================================================
   SIGNATURE KITCHENS — Design System v2 (Black & Gold)
   Palette: near-black ground, champagne gold accent, warm ivory text
   Type: Fraunces (display) + Instrument Sans (body/utility)
   Signature motif: the oak slat rhythm — now rendered in gold —
   used as section dividers, nav underline, and hover states,
   echoing the client's own most-repeated joinery detail.
   ============================================================ */

:root{
  --bg: #0F0E0C;
  --bg-alt: #17150F;
  --bg-panel: #1D1B15;
  --charcoal: #0B0A09;
  --ink: #F3EEE1;
  --ink-soft: #B7AF9C;
  --gold: #C9A24A;
  --gold-bright: #E6C976;
  --gold-deep: #9C7B31;
  --stone: #2A2720;
  --stone-line: rgba(230, 201, 118, 0.18);
  --white: #FFFFFF;

  --font-display: Tahoma, Geneva, Verdana, sans-serif;
  --font-body: Tahoma, Geneva, Verdana, sans-serif;

  --container: 1240px;
  --gutter: clamp(20px, 5vw, 64px);

  /* Height of the fixed site header. Hero padding is derived from this,
     so changing it here keeps everything else in sync. */
  --header-h: 84px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
/* The closed mobile menu is parked off-canvas at translateX(100%), so clip the
   horizontal axis to stop it creating a sideways scrollbar on narrow phones.
   'clip' (not 'hidden') is used so position:sticky still works inside. */
html, body{
  overflow-x: hidden;
  overflow-x: clip;
}
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.6;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 .4em;
  color: var(--white);
  letter-spacing: -0.005em;
}
p{ margin: 0 0 1em; color: var(--ink-soft); }
.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible{
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* ---------- Slat motif (the signature element) ---------- */
.slat-rule{
  height: 22px;
  background-image: repeating-linear-gradient(
    to right,
    var(--gold) 0 2px,
    transparent 2px 14px
  );
  opacity: .55;
  width: 100%;
}
.slat-divider{
  display:flex;
  align-items:center;
  gap: 18px;
  margin: 0 0 28px;
}
.slat-divider .marks{ display:flex; gap:5px; }
.slat-divider .marks span{
  width:3px; height:22px; background: var(--gold); display:block; opacity:.8;
}
.slat-divider .marks span:nth-child(2n){ height:14px; align-self:flex-end; opacity:.5;}
.slat-divider .label{
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12.5px;
  color: var(--ink-soft);
  white-space: nowrap;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 15px 30px;
  font-family: var(--font-body);
  font-size: 14.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor:pointer;
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.btn-primary{
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: var(--charcoal);
  font-weight: 600;
}
.btn-primary:hover{ filter: brightness(1.08); box-shadow: 0 6px 22px rgba(201,162,74,.28); }
.btn-outline{
  background: transparent;
  border-color: rgba(243,238,225,.35);
  color: var(--ink);
}
.btn-outline:hover{ border-color: var(--gold); color: var(--gold-bright); }

/* ---------- Header / Nav ---------- */
.site-header{
  position: fixed;
  top:0; left:0; right:0;
  z-index: 100;
  background: rgba(15,14,12,.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--stone-line);
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.site-header.on-hero{
  background: transparent;
  border-bottom-color: transparent;
}
.nav-wrap{
  display:flex;
  align-items:center;
  justify-content: space-between;
  height: var(--header-h);
}
.logo{
  font-family: var(--font-display);
  font-size: 26px;
  font-style: italic;
  font-weight: 500;
  color: var(--white);
  display: inline-flex;
  align-items: center;
}
.logo img{
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}
footer .logo img{ height: 46px; }
.logo small{
  display:block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 10.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top:-4px;
}
.nav-links{
  display:flex;
  gap: clamp(20px, 2.6vw, 38px);
  list-style:none;
  margin:0; padding:0;
}
.nav-links a{
  font-size: 14px;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--ink);
  position:relative;
  padding-bottom: 6px;
}
.nav-links a::after{
  content:"";
  position:absolute; left:0; bottom:0;
  width:100%; height:2px;
  background: repeating-linear-gradient(to right, var(--gold) 0 2px, transparent 2px 6px);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after{ transform: scaleX(1); }
.nav-links a:hover, .nav-links a.active{ color: var(--gold-bright); }
.nav-cta{ display:flex; align-items:center; gap: clamp(12px, 1.6vw, 22px); }
/* The nav CTA label is long ("Get Your Free, No-Obligation Quote"), so it
   scales down on narrower desktops instead of colliding with the nav links. */
.nav-cta .btn-outline{
  padding: 13px clamp(14px, 1.6vw, 26px);
  font-size: clamp(11.5px, 1.05vw, 14px);
  letter-spacing: .03em;
  white-space: nowrap;
}
.nav-toggle{ display:none; }

@media (max-width: 1024px){
  /* NOTE: .site-header uses backdrop-filter, which makes it a containing block
     for position:fixed children. So this panel is positioned against the HEADER
     (absolute, top:100%) rather than the viewport — using fixed + inset here
     collapses the panel to ~0 height and the links spill over the page. */
  .nav-links{
    position: absolute;
    top: 100%; left: 0; right: 0;
    height: calc(100vh - var(--header-h));
    height: calc(100svh - var(--header-h));
    background: var(--bg);
    border-top: 1px solid var(--stone-line);
    flex-direction: column;
    padding: 40px var(--gutter);
    gap: 26px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    transition: transform .35s var(--ease);
  }
  .nav-links.open{ transform: translateX(0); }
  .nav-links a{ font-size: 20px; }

  /* The bar itself must go solid while the menu is open, otherwise the
     transparent-on-hero state leaves the logo and burger unreadable. */
  .site-header.nav-open,
  .site-header.on-hero.nav-open{
    background: var(--bg);
    backdrop-filter: none;
    border-bottom-color: var(--stone-line);
  }

  .nav-cta .btn-outline{ display:none; }
  .nav-toggle{
    display:flex; flex-direction:column; gap:5px;
    width:28px; background:none; border:none; cursor:pointer; padding:8px;
    position:relative; z-index:2;
  }
  .nav-toggle span{
    height:2px; width:100%; background: var(--ink);
    transition: transform .3s var(--ease), opacity .2s var(--ease);
  }
  /* Burger morphs into an X so the open state is obvious */
  .site-header.nav-open .nav-toggle span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .site-header.nav-open .nav-toggle span:nth-child(2){ opacity:0; }
  .site-header.nav-open .nav-toggle span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
}

/* Lock the page behind the open menu so it can't scroll away underneath */
body.nav-open{ overflow: hidden; }

/* Phones: the CTA label is long, so let it wrap and go full-width rather
   than running off the side of the screen. */
@media (max-width: 620px){
  .btn{
    white-space: normal;
    text-align: center;
    justify-content: center;
    padding: 14px 20px;
    font-size: 13.5px;
    line-height: 1.3;
  }
  .hero-actions{ gap: 12px; }
  .hero-actions .btn{ width: 100%; }
}

/* ---------- Hero ---------- */
.hero{
  position:relative;
  /* min-height, not height: the hero grows if the copy needs more room,
     so a long h1 can never be clipped behind the fixed header. */
  height: auto;
  min-height: 660px;
  min-height: max(660px, 100vh);
  min-height: max(660px, 100svh);
  display:flex;
  align-items:flex-end;
  color: var(--white);
  overflow:hidden;
}
.hero img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  transform: scale(1.02);
  filter: saturate(0.92) brightness(0.86);
}
.hero::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(10,9,7,.35) 0%, rgba(10,9,7,.35) 35%, rgba(8,7,6,.92) 100%);
}
.hero-content{
  position:relative; z-index:2;
  padding-bottom: 84px;
  padding-top: calc(var(--header-h) + 20px);
  max-width: 780px;
  width: 100%;
}
.hero-eyebrow{
  display:flex; align-items:center; gap:16px;
  text-transform:uppercase; letter-spacing:.3em; font-size:13.5px; font-weight:700;
  margin-bottom: 26px; color: var(--gold-bright);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(230,201,118,.28);
}
.hero-eyebrow .marks{ display:flex; gap:4px; }
.hero-eyebrow .marks span{ width:2px; height:16px; background: var(--gold); display:block;}
.hero h1{
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 4.1rem);
  margin-bottom: 18px;
}
.hero h1 em{ color: var(--gold-bright); font-style: italic; }
.hero p.lede{
  color: rgba(243,238,225,.78);
  font-size: 16.5px;
  line-height: 1.55;
  max-width: 600px;
  margin-bottom: 18px;
}
.hero p.tagline-short{
  color: var(--white);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: .03em;
  margin-bottom: 12px;
}
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; }
.hero-page{
  height: auto;
  min-height: max(380px, 56vh);
  align-items:center;
  text-align:left;
}
/* Extra top padding = header height, so the visible band stays optically
   centred while the h1 always clears the nav bar. */
.hero-page .hero-content{
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 40px;
}
.hero-page h1{ font-size: clamp(2.2rem, 4.4vw, 3.4rem); }

/* Phones: headings wrap to more lines, so tighten the band and trim
   the padding rather than letting the copy run off the screen. */
@media (max-width: 600px){
  .hero{ min-height: max(560px, 100svh); }
  .hero-content{ padding-bottom: 64px; }
  .hero-page{ min-height: max(300px, 46vh); }
  .hero-page .hero-content{
    padding-top: calc(var(--header-h) + 28px);
    padding-bottom: 32px;
  }
}

/* ---------- Sections ---------- */
section{ padding: 108px 0; }
/* Stop the fixed header covering the top of anchor-linked sections */
section[id], h2[id], h3[id]{ scroll-margin-top: calc(var(--header-h) + 24px); }
.section-tight{ padding: 70px 0; }
.section-dark{ background: var(--charcoal); }
.section-stone{ background: var(--bg-alt); }

.eyebrow{
  display:flex; align-items:center; gap:14px;
  margin-bottom: 18px;
}
.eyebrow .marks{ display:flex; gap:4px; }
.eyebrow .marks span{ width:2px; height:16px; background:var(--gold); display:block;}
.eyebrow span.txt{
  text-transform:uppercase; letter-spacing:.22em; font-size:12.5px; color: var(--gold);
  font-weight:600;
}

.section-head{
  max-width: 640px;
  margin-bottom: 56px;
}
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size: clamp(1.9rem, 3.4vw, 2.7rem); }

/* ---------- Intro / split ---------- */
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items:center;
}
@media (max-width: 860px){ .split{ grid-template-columns:1fr; gap:40px; } }
.split img{ width:100%; height:100%; object-fit:cover; }
.split-img-frame{
  position:relative;
  border-radius: 2px;
  overflow:hidden;
  border: 1px solid var(--stone-line);
}
.split-img-frame::before{
  content:"";
  position:absolute; left:-18px; top:24px; bottom:-24px; width:14px;
  background-image: repeating-linear-gradient(to bottom, var(--gold) 0 2px, transparent 2px 12px);
  opacity:.65;
  display:none;
}
@media(min-width:861px){ .split-img-frame.tick::before{ display:block; } }

/* ---------- Services grid ---------- */
.services-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--stone-line);
}
@media (max-width: 900px){ .services-grid{ grid-template-columns: repeat(2,1fr);} }
@media (max-width: 620px){ .services-grid{ grid-template-columns: 1fr;} }
.service-card{
  background: var(--bg);
  padding: 42px 34px;
  position:relative;
  transition: background .3s var(--ease);
}
.service-card:hover{ background: var(--bg-panel); }
.service-card .num{
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-deep);
  font-size: 15px;
  margin-bottom: 22px;
  display:block;
}
.service-card h3{ font-size: 1.32rem; margin-bottom:10px; }
.service-card p{ font-size: 14.5px; margin-bottom: 18px; }
.service-card a.more{
  font-size: 13px; text-transform:uppercase; letter-spacing:.08em;
  color: var(--gold); font-weight:600;
  display:inline-flex; align-items:center; gap:8px;
}
.service-card a.more .arrow{ transition: transform .25s var(--ease); }
.service-card:hover a.more .arrow{ transform: translateX(4px); }

/* ---------- Process ---------- */
.process{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}
@media (max-width: 980px){ .process{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .process{ grid-template-columns: 1fr; } }
.process-3col{ grid-template-columns: repeat(3, 1fr); }
@media (max-width: 760px){ .process-3col{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .process-3col{ grid-template-columns: 1fr; } }
.process-step .step-index{
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--gold);
  margin-bottom: 14px;
}
.process-step h4{ color: var(--white); font-size: 1.1rem; margin-bottom:8px;}
.process-step p{ font-size: 14px; margin:0; }

/* ---------- Gallery / Portfolio ---------- */
.filter-bar{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-bottom: 46px;
}
.filter-btn{
  padding: 10px 20px;
  font-size: 13px;
  text-transform:uppercase;
  letter-spacing: .06em;
  border: 1px solid var(--stone-line);
  background: transparent;
  color: var(--ink-soft);
  cursor:pointer;
  transition: all .2s var(--ease);
  border-radius: 2px;
}
.filter-btn:hover{ border-color: var(--gold); color: var(--ink); }
.filter-btn.active{
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
  font-weight:600;
}
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px){ .gallery-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .gallery-grid{ grid-template-columns: 1fr; } }
.gallery-item{
  position:relative;
  overflow:hidden;
  aspect-ratio: 4/5;
  cursor:pointer;
  background: var(--stone);
  border: 1px solid var(--stone-line);
}
.gallery-item img{
  width:100%; height:100%; object-fit:cover;
  transition: transform .5s var(--ease);
}
.gallery-item:hover img{ transform: scale(1.06); }
.gallery-item .tag{
  position:absolute; left:14px; bottom:14px;
  background: rgba(10,9,7,.85);
  color: var(--gold-bright);
  font-size: 11px; letter-spacing:.1em; text-transform:uppercase;
  padding: 7px 12px;
  opacity:0; transform: translateY(6px);
  transition: all .25s var(--ease);
  border: 1px solid var(--stone-line);
}
.gallery-item:hover .tag{ opacity:1; transform:translateY(0); }
.gallery-item.hide{ display:none; }

.lightbox{
  position:fixed; inset:0; z-index:1000;
  background: rgba(6,6,5,.96);
  display:none;
  align-items:center; justify-content:center;
  padding: 40px;
}
.lightbox.open{ display:flex; }
.lightbox img{ max-height: 88vh; max-width: 88vw; object-fit:contain; }
.lightbox .close{
  position:absolute; top:24px; right:32px;
  color:var(--ink); font-size:16px; letter-spacing:.1em; text-transform:uppercase;
  cursor:pointer; background:none; border:1px solid rgba(230,201,118,.4); padding:10px 18px;
}
.lightbox .close:hover{ border-color: var(--gold); color: var(--gold-bright); }
.lightbox .nav-btn{
  position:absolute; top:50%; transform:translateY(-50%);
  background:none; border:none; color:var(--ink); font-size:32px; cursor:pointer;
  padding: 10px 18px;
}
.lightbox .nav-btn:hover{ color: var(--gold-bright); }
.lightbox .prev{ left:8px; }
.lightbox .next{ right:8px; }

/* ---------- Quote strip ---------- */
.quote-strip{
  border-top: 1px solid var(--stone-line);
  border-bottom: 1px solid var(--stone-line);
  padding: 64px 0;
  text-align:center;
}
.quote-strip blockquote{
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  color: var(--white);
  max-width: 820px;
  margin: 0 auto 20px;
}
.quote-strip cite{
  font-family: var(--font-body);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12.5px;
  color: var(--gold);
}

/* ---------- Mission / Signature statement ---------- */
.mission{
  text-align:center;
  max-width: 780px;
  margin: 0 auto;
}
.mission .tagline{
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  color: var(--gold-bright);
  margin-top: 26px;
}

/* ---------- Founders / About ---------- */
.founder-block{
  display:grid; grid-template-columns: .85fr 1.15fr; gap: 64px; align-items:center;
}
@media (max-width:860px){ .founder-block{ grid-template-columns:1fr; } }
.founder-quote{
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--white);
  margin: 20px 0;
}
.pillars{ display:grid; gap:22px; margin-top: 30px; }
.pillar{ display:flex; gap:16px; }
.pillar .mk{ width:3px; background: var(--gold); flex:none; }
.pillar h4{ font-size:1rem; margin-bottom:4px; text-transform:uppercase; letter-spacing:.05em; color:var(--white); }
.pillar p{ font-size:14.5px; margin:0; }

/* ---------- Contact ---------- */
.contact-grid{
  display:grid; grid-template-columns: 1fr 1.3fr; gap: 64px;
}
@media (max-width:900px){ .contact-grid{ grid-template-columns:1fr; } }
.contact-info dl{ margin:0; }
.contact-info dt{
  text-transform:uppercase; letter-spacing:.1em; font-size:12px; color:var(--gold);
  margin-top: 26px; font-weight:600;
}
.contact-info dt:first-child{ margin-top:0; }
.contact-info dd{ margin: 6px 0 0; font-size: 16px; color: var(--ink); }
.contact-info dd a{ border-bottom:1px solid var(--stone-line); }
.contact-info dd a:hover{ border-color: var(--gold); color: var(--gold-bright); }

form.enquiry{ display:grid; gap: 20px; }
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap:20px; }
@media (max-width:560px){ .form-row{ grid-template-columns:1fr; } }
label{
  display:block; font-size: 12.5px; text-transform:uppercase; letter-spacing:.08em;
  color: var(--ink-soft); margin-bottom: 8px;
}
input, select, textarea{
  width:100%;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 14px;
  border: 1px solid var(--stone-line);
  background: var(--bg-panel);
  color: var(--ink);
  border-radius: 2px;
}
input::placeholder, textarea::placeholder{ color: rgba(183,175,156,.55); }
input:focus, select:focus, textarea:focus{ border-color: var(--gold); }
select option{ background: var(--bg-panel); color: var(--ink); }
textarea{ resize: vertical; min-height: 120px; }
.field-note{ font-size:12.5px; color:var(--ink-soft); margin-top:6px; }
.form-status{ font-size: 14px; margin-top: 6px; }
.form-status.ok{ color:#D9C87E; }
.form-status.err{ color:#E39A8C; }

/* ---------- Map ---------- */
.map-frame{ border:0; width:100%; height:380px; filter: grayscale(30%) invert(0.92) contrast(0.9) brightness(0.95) hue-rotate(180deg); }

/* ---------- Footer ---------- */
footer{
  background: var(--charcoal);
  color: var(--ink-soft);
  padding: 74px 0 30px;
  border-top: 1px solid var(--stone-line);
}
.footer-grid{
  display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 46px;
  padding-bottom: 46px;
  border-bottom: 1px solid var(--stone-line);
}
@media (max-width:860px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width:520px){ .footer-grid{ grid-template-columns: 1fr; } }
footer h5{
  color: var(--gold); text-transform:uppercase; letter-spacing:.1em; font-size:12.5px;
  margin-bottom: 18px; font-family: var(--font-body); font-weight:600;
}
footer .logo{ color: var(--white); margin-bottom: 16px; }
footer p{ color: var(--ink-soft); font-size:14px; }
footer ul{ list-style:none; margin:0; padding:0; display:grid; gap:10px; }
footer ul a{ color: var(--ink-soft); font-size:14.5px; }
footer ul a:hover{ color: var(--gold-bright); }
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center;
  padding-top: 26px; font-size: 12.5px; color: rgba(183,175,156,.55);
  flex-wrap:wrap; gap:12px;
}
.footer-bottom a{ color: rgba(183,175,156,.7); }

/* ---------- Misc utility ---------- */
.reveal{ opacity:0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in{ opacity:1; transform:none; }
.text-center{ text-align:center; }
.mt-0{ margin-top:0; }
.small-caps{ text-transform:uppercase; letter-spacing:.14em; font-size:12.5px; color:var(--gold); }
.stat-row{ display:flex; gap:52px; flex-wrap:wrap; margin-top:12px; }
.stat b{ font-family: var(--font-display); font-size:2.1rem; display:block; color:var(--white); }
.stat span{ font-size:13px; color:var(--ink-soft); text-transform:uppercase; letter-spacing:.05em; }

/* ---------- Logo showcase ---------- */
.logo-showcase{
  background: var(--charcoal);
  padding: 70px 0;
  text-align:center;
  border-bottom: 1px solid var(--stone-line);
}
.logo-showcase img{
  max-width: 420px;
  width: 60%;
  margin: 0 auto;
}

/* ---------- Trust bar ---------- */
.trust-bar{
  background: var(--bg-panel);
  border-top: 1px solid var(--stone-line);
  border-bottom: 1px solid var(--stone-line);
  padding: 26px 0;
}
.trust-list{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap: 14px 40px;
  list-style:none;
  margin:0; padding:0;
}
.trust-list li{
  display:flex; align-items:center; gap:10px;
  font-size: 13px;
  text-transform:uppercase;
  letter-spacing:.05em;
  color: var(--ink-soft);
  white-space:nowrap;
}
.trust-list li::before{
  content:"";
  width:6px; height:6px;
  background: var(--gold);
  display:block;
  transform: rotate(45deg);
  flex:none;
}

/* ---------- Above-fold CTA row (hero) ---------- */
.hero-actions .btn-whatsapp{
  background: #1E8B57;
  color: var(--white);
  border-color: #1E8B57;
}
.hero-actions .btn-whatsapp:hover{ background:#186f45; }

/* ---------- Floating WhatsApp button ---------- */
.wa-float{
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display:flex;
  align-items:center;
  gap:10px;
  background:#1E8B57;
  color:#fff;
  padding: 13px 20px 13px 16px;
  border-radius: 40px;
  font-size: 13.5px;
  text-transform:uppercase;
  letter-spacing:.04em;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.wa-float:hover{ transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0,0,0,.5); }
.wa-float svg{ width:20px; height:20px; flex:none; }
@media (max-width:560px){
  .wa-float span{ display:none; }
  .wa-float{ padding:14px; border-radius:50%; }
}

/* ---------- Breadcrumb / keyword strip ---------- */
.kw-strip{
  font-size:12.5px; text-transform:uppercase; letter-spacing:.12em; color: var(--ink-soft);
  margin-bottom: 18px;
}
.kw-strip a{ color: var(--gold); }
.kw-strip a:hover{ color: var(--gold-bright); }

/* ---------- Benefit list (service/location pages) ---------- */
.benefit-list{ list-style:none; margin:24px 0; padding:0; display:grid; gap:14px; }
.benefit-list li{ display:flex; gap:12px; align-items:flex-start; color:var(--ink); font-size:15px; }
.benefit-list li::before{
  content:"";
  width:7px; height:7px; margin-top:7px;
  background: var(--gold); flex:none;
  transform: rotate(45deg);
}

/* ---------- Card grid (services index / locations index) ---------- */
.card-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 22px;
}
.card-tile{
  border: 1px solid var(--stone-line);
  background: var(--bg-panel);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.card-tile:hover{ border-color: var(--gold); transform: translateY(-3px); }
.card-tile img{ aspect-ratio: 4/3; object-fit:cover; }
.card-tile .card-body{ padding: 22px 24px 26px; flex:1; display:flex; flex-direction:column; }
.card-tile h3{ font-size:1.15rem; margin-bottom:8px; }
.card-tile p{ font-size:14px; margin-bottom:16px; flex:1; }
.card-tile a.more{ font-size:12.5px; text-transform:uppercase; letter-spacing:.08em; color:var(--gold); font-weight:600; }
.card-tile a.more:hover{ color:var(--gold-bright); }

/* ---------- Location chips ---------- */
.location-chips{ display:flex; flex-wrap:wrap; gap:10px; }
.location-chips a{
  border:1px solid var(--stone-line);
  padding: 9px 18px;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.04em;
  color: var(--ink-soft);
  transition: all .2s var(--ease);
}
.location-chips a:hover{ border-color: var(--gold); color: var(--gold-bright); }

/* ---------- FAQ accordion ---------- */
.faq-list{ border-top:1px solid var(--stone-line); }
.faq-item{ border-bottom:1px solid var(--stone-line); }
.faq-q{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  background:none;
  border:none;
  text-align:left;
  padding: 24px 4px;
  cursor:pointer;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.15rem;
}
.faq-q .plus{
  font-family: var(--font-body);
  font-size: 22px;
  color: var(--gold);
  transition: transform .3s var(--ease);
  flex:none;
}
.faq-item.open .faq-q .plus{ transform: rotate(45deg); }
.faq-a{
  max-height:0;
  overflow:hidden;
  transition: max-height .35s var(--ease);
}
.faq-a p{ padding: 0 4px 24px; margin:0; }
.faq-item.open .faq-a{ max-height: 400px; }

/* ---------- Footer service/area columns (mega footer support) ---------- */
.footer-grid.mega{ grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr; }
@media (max-width:1080px){ .footer-grid.mega{ grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width:700px){ .footer-grid.mega{ grid-template-columns: 1fr 1fr; } }
@media (max-width:480px){ .footer-grid.mega{ grid-template-columns: 1fr; } }

/* ---------- Legal pages (privacy policy) ---------- */
.legal{ max-width: 820px; }
.legal h2{
  font-size: 1.5rem;
  margin: 46px 0 14px;
  padding-top: 22px;
  border-top: 1px solid var(--stone-line);
}
.legal h2:first-of-type{ margin-top: 34px; }
.legal h3{
  font-family: var(--font-body);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold);
  margin: 26px 0 10px;
}
.legal p{ margin: 0 0 16px; }
.legal ul{ margin: 0 0 18px; padding-left: 20px; }
.legal li{ margin-bottom: 9px; color: var(--ink-soft); line-height: 1.7; }
.legal a{ color: var(--gold-bright); text-decoration: underline; text-underline-offset: 3px; }
.legal a:hover{ color: var(--gold); }
.legal strong{ color: var(--ink); font-weight: 600; }
.legal-meta{
  font-size: 13px; text-transform: uppercase; letter-spacing: .1em;
  color: var(--ink-soft); padding-bottom: 26px;
}
.legal-contact{ list-style: none; padding-left: 0; }
.legal-table{
  width: 100%; border-collapse: collapse; margin: 0 0 22px;
  font-size: 14.5px;
}
.legal-table th, .legal-table td{
  text-align: left; padding: 12px 14px;
  border: 1px solid var(--stone-line); vertical-align: top;
}
.legal-table th{
  background: rgba(243,238,225,.04);
  text-transform: uppercase; letter-spacing: .08em; font-size: 12.5px; color: var(--gold);
}
.legal-table td{ color: var(--ink-soft); }
@media (max-width: 620px){
  .legal-table, .legal-table thead, .legal-table tbody,
  .legal-table tr, .legal-table th, .legal-table td{ display:block; width:100%; }
  .legal-table thead{ display:none; }
  .legal-table tr{ margin-bottom: 14px; border:1px solid var(--stone-line); }
  .legal-table td{ border:none; border-bottom:1px solid var(--stone-line); }
  .legal-table td:last-child{ border-bottom:none; font-style: italic; }
}

/* Consent line beneath the enquiry form */
.form-consent{
  font-size: 13px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 14px 0 0;
  max-width: 560px;
}
.form-consent a{ color: var(--gold-bright); text-decoration: underline; text-underline-offset: 2px; }
