/* ═══════════════════════════════════════════════
   TOKENS & RESET
═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* palette */
  --cream:        #F7F2EA;
  --cream-2:      #EDE5D6;
  --cream-3:      #D9CEB8;
  --ink:          #1A1410;
  --ink-2:        #5C544C;
  --ink-3:        #9A9088;
  --ink-4:        #C4BAB0;
  --copper:       #B5612A;
  --copper-lt:    #D0773A;
  --copper-bg:    rgba(181,97,42,.08);
  --copper-bdr:   rgba(181,97,42,.22);
  --dark:         #110F0C;
  --dark-2:       #1E1A16;
  --dark-3:       #2A2420;
  --dark-bdr:     rgba(255,255,255,.08);
  --dark-bdr2:    rgba(255,255,255,.14);

  /* type */
  --serif:        'Cormorant Garamond', Georgia, serif;
  --sans:         'Plus Jakarta Sans', system-ui, sans-serif;

  /* motion */
  --spring:       cubic-bezier(0.32, 0.72, 0, 1);
  --expo:         cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:     cubic-bezier(0.0, 0.0, 0.2, 1);

  /* layout */
  --max:          1240px;
  --nav-h:        68px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 1rem);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

img   { display: block; max-width: 100%; height: auto; }
a     { color: inherit; text-decoration: none; }
ul,ol { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; }

/* grain — fixed, pointer-events-none, no scroll repaint */
body::before {
  content: '';
  position: fixed; inset: 0;
  z-index: 9999; pointer-events: none;
  opacity: .022;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ═══════════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════════ */
.skip-link {
  position: absolute; top: -200%; left: 1rem;
  padding: .5rem 1rem; background: var(--copper); color: #fff;
  font-weight: 600; border-radius: 6px; z-index: 9999;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }

.container {
  width: min(var(--max), 100% - 3rem);
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .7rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--copper);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: ''; display: block;
  width: 22px; height: 1px; background: var(--copper); flex-shrink: 0;
}
.eyebrow--light { color: var(--copper-lt); }
.eyebrow--light::before { background: var(--copper-lt); }

.display-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -.01em;
  color: var(--ink);
  text-wrap: balance;
}

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--copper); color: #fff;
  font-size: .88rem; font-weight: 600;
  padding: .78rem .78rem .78rem 1.5rem;
  border-radius: 100px;
  transition: background .22s var(--expo), transform .22s var(--expo), box-shadow .22s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--copper-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(181,97,42,.28);
}
.btn-primary:active { transform: scale(.97); }
.btn-primary:focus-visible { outline: 2px solid var(--copper); outline-offset: 3px; }

.btn-arrow {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .22s var(--expo);
}
.btn-primary:hover .btn-arrow { transform: translate(1px,-1px) scale(1.1); }
.btn-arrow--dark { background: rgba(0,0,0,.12); }

.btn-text {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .88rem; font-weight: 600; color: var(--ink-2);
  transition: color .2s, gap .2s;
}
.btn-text:hover { color: var(--copper); gap: .6rem; }

/* ═══════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════ */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 100;
  height: var(--nav-h);
  background: rgba(26,18,12,.82);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: background .35s, box-shadow .35s;
}
.nav.scrolled {
  background: rgba(22,15,9,.97);
  box-shadow: 0 1px 28px rgba(0,0,0,.35);
}

.nav-inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  width: min(var(--max), 100% - 3rem);
  margin-inline: auto;
}

.nav-logo img { height: 28px; width: auto; }

.nav-links {
  display: flex; align-items: center; gap: .15rem;
}
.nav-links a {
  font-size: .82rem; font-weight: 500; color: rgba(247,242,234,.65);
  padding: .45rem .75rem; border-radius: 100px;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: rgba(247,242,234,.95); background: rgba(255,255,255,.07); }

.nav-social {
  display: flex; align-items: center; gap: .1rem;
  margin-inline: .4rem;
  padding-inline: .5rem;
  border-left: 1px solid rgba(255,255,255,.12);
  border-right: 1px solid rgba(255,255,255,.12);
}
.nav-social a {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  color: rgba(247,242,234,.5);
  transition: color .2s, background .2s;
  padding: 0 !important;
}
.nav-social a:hover { color: rgba(247,242,234,.95) !important; background: rgba(255,255,255,.08) !important; }

.nav-quote {
  background: var(--copper) !important;
  color: #fff !important;
  margin-left: .35rem;
  transition: background .22s, transform .22s, box-shadow .22s !important;
}
.nav-quote:hover {
  background: var(--copper-lt) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 16px rgba(181,97,42,.25) !important;
}

.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  padding: .5rem; transition: background .2s;
}
.nav-burger:hover { background: rgba(255,255,255,.16); }
.nav-burger span {
  display: block; height: 1.5px; width: 16px; margin: auto;
  background: #fff; transform-origin: center;
  transition: transform .28s var(--spring), opacity .2s;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.75px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-6.75px) rotate(-45deg); }

/* mobile overlay */
.menu-overlay {
  position: fixed; inset: 0; z-index: 90;
  background: var(--dark);
  display: flex; flex-direction: column; justify-content: center;
  padding: 3rem 2.5rem 2.5rem;
  opacity: 0; pointer-events: none;
  transition: opacity .35s var(--expo);
}
.menu-overlay.open { opacity: 1; pointer-events: all; }
.menu-close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  transition: background .2s, color .2s;
}
.menu-close:hover { background: rgba(255,255,255,.14); color: #fff; }

.menu-nav { display: flex; flex-direction: column; gap: .15rem; }
.menu-link {
  font-family: var(--serif); font-size: clamp(2.5rem, 9vw, 4.5rem);
  font-weight: 300; color: rgba(247,242,234,.85);
  padding: .4rem 0; border-bottom: 1px solid rgba(255,255,255,.07);
  opacity: 0; transform: translateY(16px);
  transition: opacity .5s var(--expo), transform .5s var(--expo), color .2s;
}
.menu-link:last-child { border-bottom: none; color: var(--copper-lt); }
.menu-link:hover { color: #fff; }
.menu-overlay.open .menu-link { opacity: 1; transform: none; }
.menu-overlay.open .menu-link:nth-child(1) { transition-delay: .04s; }
.menu-overlay.open .menu-link:nth-child(2) { transition-delay: .08s; }
.menu-overlay.open .menu-link:nth-child(3) { transition-delay: .12s; }
.menu-overlay.open .menu-link:nth-child(4) { transition-delay: .16s; }
.menu-contact {
  position: absolute; bottom: 2.5rem; left: 2.5rem;
  display: flex; flex-direction: column; gap: .35rem;
  opacity: 0; transition: opacity .5s var(--expo) .25s;
}
.menu-overlay.open .menu-contact { opacity: 1; }
.menu-contact a { font-size: .82rem; color: rgba(247,242,234,.4); transition: color .2s; }
.menu-contact a:hover { color: rgba(247,242,234,.75); }

/* ═══════════════════════════════════════════════
   HERO — full-screen fade slider
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--dark);
}

/* ─ slides ─ */
.hero-slides {
  position: absolute; inset: 0;
  z-index: 0;
}
.slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.slide.active { opacity: 1; }
.slide img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transform: scale(1.06);
  transition: transform 6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.slide.active img { transform: scale(1); }

/* ─ gradient overlay ─ */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: rgba(17,15,12,.55);
}

/* ─ content ─ */
.hero-content {
  position: relative; z-index: 2;
  padding-bottom: 6rem;
  padding-top: calc(var(--nav-h) + 4rem);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-text { max-width: 680px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: .75rem;
  font-size: .68rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--copper-lt);
  margin-bottom: 1.25rem;
}
.badge-line {
  display: block; width: 48px; height: 1px;
  background: var(--copper-lt); flex-shrink: 0; opacity: .8;
}

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300; line-height: 1.05;
  letter-spacing: -.01em;
  color: rgba(247,242,234,.97);
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: .97rem; color: rgba(247,242,234,.78);
  line-height: 1.8; max-width: 52ch; margin-bottom: 2.25rem;
}

.hero-btns {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  flex-wrap: wrap; margin-bottom: 2.75rem;
}

/* Pulsating CTA button */
.btn-quote-pulse {
  display: inline-flex; align-items: center;
  padding: .85rem 2rem;
  font-family: var(--sans); font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: #fff; border: none; cursor: pointer;
  text-decoration: none;
  border-radius: 2px;
  animation: btn-color-cycle 4s ease-in-out infinite;
  position: relative;
}
.btn-quote-pulse::after {
  content: ''; position: absolute; inset: -3px; border-radius: 4px;
  animation: btn-ring-pulse 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes btn-color-cycle {
  0%   { background: #B5612A; }
  25%  { background: #c47a1e; }
  50%  { background: #2a7ab5; }
  75%  { background: #2ab57a; }
  100% { background: #B5612A; }
}
@keyframes btn-ring-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(181,97,42,.55); }
  30%  { box-shadow: 0 0 0 10px rgba(181,97,42,0); }
  50%  { box-shadow: 0 0 0 0 rgba(42,122,181,.55); }
  80%  { box-shadow: 0 0 0 10px rgba(42,122,181,0); }
  100% { box-shadow: 0 0 0 0 rgba(181,97,42,.55); }
}

/* Outlined hero buttons */
.btn-outline-hero {
  display: inline-flex; align-items: center;
  padding: .82rem 1.6rem;
  font-family: var(--sans); font-size: .72rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(247,242,234,.85);
  border: 1px solid rgba(247,242,234,.35);
  border-radius: 2px; text-decoration: none;
  transition: background .25s, border-color .25s, color .25s;
}
.btn-outline-hero:hover {
  background: rgba(247,242,234,.08);
  border-color: rgba(247,242,234,.65);
  color: #fff;
}

.hero-trust {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  justify-content: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-trust li {
  display: flex; align-items: center; gap: .5rem;
  font-size: .76rem; font-weight: 500;
  color: rgba(247,242,234,.8);
}
.hero-trust svg { color: var(--copper-lt); flex-shrink: 0; }

/* ─ dot indicators ─ */
.hero-dots {
  position: absolute; bottom: 2.5rem; right: 3rem;
  z-index: 3; display: flex; gap: .55rem; align-items: center;
}
.hero-dot {
  width: 28px; height: 3px; border-radius: 2px;
  background: rgba(255,255,255,.25);
  border: none; padding: 0; cursor: pointer;
  transition: background .3s, width .35s var(--spring);
}
.hero-dot.active {
  background: var(--copper-lt);
  width: 48px;
}
.hero-dot:focus-visible { outline: 2px solid var(--copper-lt); outline-offset: 3px; }

/* ─ scroll hint ─ */
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: .62rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(247,242,234,.3);
  animation: scroll-bob 2.4s ease-in-out infinite;
}
@keyframes scroll-bob {
  0%,100% { transform: translateX(-50%) translateY(0); opacity: .3; }
  50%      { transform: translateX(-50%) translateY(5px); opacity: .6; }
}

/* ═══════════════════════════════════════════════
   SERVICES — expanding panels
═══════════════════════════════════════════════ */
.services {
  background: var(--cream);
  padding-top: 6rem;
  border-top: 1px solid var(--cream-2);
}

.services-head {
  margin-bottom: 3rem;
}
.services-head-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  align-items: end;
}
.services-sub {
  font-size: .96rem; color: var(--ink-2); line-height: 1.75; max-width: 44ch;
  padding-bottom: .25rem;
}

/* the panel strip */
.panels {
  display: flex;
  height: 620px;
  overflow: hidden;
  cursor: pointer;
}

.panel {
  flex: 1;
  min-width: 52px;
  position: relative;
  overflow: hidden;
  transition: flex .65s var(--spring);
  outline: none;
}
.panel:focus-visible { outline: 2px solid var(--copper); outline-offset: -2px; }
.panel.active, .panel:hover { flex: 5.5; }

.panel img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform .65s var(--spring);
  pointer-events: none;
}
.panel.active img, .panel:hover img { transform: scale(1.04); }

/* dim overlay */
.panel-dim {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(17,15,12,.85) 0%,
    rgba(17,15,12,.3) 45%,
    rgba(17,15,12,.15) 100%
  );
  transition: opacity .4s;
}
.panel:not(.active):not(:hover) .panel-dim {
  background: linear-gradient(to top,
    rgba(17,15,12,.6) 0%,
    rgba(17,15,12,.55) 100%
  );
}

/* vertical label — visible when collapsed */
.panel-vert-label {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%) rotate(-90deg);
  transform-origin: center center;
  white-space: nowrap;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(247,242,234,.6);
  transition: opacity .3s;
  pointer-events: none;
}
.panel.active .panel-vert-label,
.panel:hover .panel-vert-label { opacity: 0; }

/* bottom content — visible when expanded */
.panel-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2rem 2.25rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .45s var(--expo) .1s, transform .45s var(--expo) .1s;
  pointer-events: none;
}
.panel.active .panel-body,
.panel:hover .panel-body {
  opacity: 1; transform: none;
  pointer-events: all;
}

.panel-meta {
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: .6rem;
}
.panel-num {
  font-size: .66rem; font-weight: 700; letter-spacing: .1em;
  color: var(--copper-lt);
}
.panel-tag {
  font-size: .66rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(247,242,234,.4);
}

.panel-name {
  font-family: var(--serif);
  font-size: 2rem; font-weight: 300; color: rgba(247,242,234,.95);
  line-height: 1; margin-bottom: .75rem; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}
.panel-desc {
  font-size: .83rem; color: rgba(247,242,234,.55);
  line-height: 1.65; max-width: 36ch;
  margin-bottom: 1.25rem;
}
.panel-cta {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .8rem; font-weight: 700; color: var(--copper-lt);
  letter-spacing: .02em;
  transition: gap .2s, color .2s;
}
.panel-cta:hover { gap: .65rem; color: #fff; }

/* ═══════════════════════════════════════════════
   QUOTE SECTION — dark
═══════════════════════════════════════════════ */
.quote-section {
  background: var(--dark);
  padding-block: 8rem;
  text-align: center;
}
.quote-section .eyebrow { color: var(--copper-lt); }
.quote-section .eyebrow::before { background: var(--copper-lt); }
.quote-section .container { display: flex; flex-direction: column; align-items: center; }

.big-quote {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5.5vw, 5.5rem);
  font-weight: 300; font-style: italic;
  line-height: 1.15; letter-spacing: -.01em;
  color: rgba(247,242,234,.92);
  margin-bottom: 2rem; text-wrap: balance;
}
.quote-by {
  font-size: .75rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(247,242,234,.3);
}

/* ═══════════════════════════════════════════════
   ABOUT — cream
═══════════════════════════════════════════════ */
.about {
  background: var(--cream-2);
  padding-block: 7rem;
  border-top: 1px solid var(--cream-3);
  border-bottom: 1px solid var(--cream-3);
}

.about-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 5rem; align-items: end;
  margin-bottom: 5rem;
}
.about-r {}
.about-p {
  font-size: .98rem; color: var(--ink-2); line-height: 1.82;
  max-width: 52ch; margin-bottom: 2rem;
}

.features-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem;
}

.feature {
  padding-top: 1.5rem;
  border-top: 1px solid var(--cream-3);
}
.feature-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--copper-bg); border: 1px solid var(--copper-bdr);
  display: flex; align-items: center; justify-content: center;
  color: var(--copper); margin-bottom: 1rem;
}
.feature h4 {
  font-size: .9rem; font-weight: 700; color: var(--ink);
  letter-spacing: -.01em; margin-bottom: .45rem; line-height: 1.3;
}
.feature p { font-size: .82rem; color: var(--ink-2); line-height: 1.7; }

/* ═══════════════════════════════════════════════
   STATS — dark
═══════════════════════════════════════════════ */
.stats {
  position: relative;
  padding-block: 5.5rem;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: url('images/outdoor.webp') center/cover no-repeat;
  transform: scale(1.04);
}
.stats::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: rgba(17,15,12,.72);
}
.stats .container { position: relative; z-index: 2; }

.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2rem;
}

.stat {
  padding: 0 2rem 0 0;
  border-right: 1px solid var(--dark-bdr);
}
.stat:last-child { border-right: none; }

.stat-n {
  display: block;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 5vw, 5.5rem);
  font-weight: 300; line-height: 1;
  color: rgba(247,242,234,.9);
  letter-spacing: -.03em;
  margin-bottom: .5rem;
}
.stat-n small {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.5vw, 2.8rem);
  color: var(--copper-lt);
  vertical-align: baseline;
}

.stat-l {
  display: block;
  font-size: .74rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(247,242,234,.3);
}

/* ═══════════════════════════════════════════════
   PARTNERS — cream
═══════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════
   REVIEWS
═══════════════════════════════════════════════ */
.reviews {
  position: relative;
  padding-block: 6rem;
  overflow: hidden;
}
.reviews::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: url('images/kitchen2.jpg') center/cover no-repeat;
  transform: scale(1.04);
}
.reviews::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: rgba(17,15,12,.78);
}
.reviews .container { position: relative; z-index: 2; }
.reviews-head { margin-bottom: 3.5rem; }
.reviews .display-title { color: rgba(247,242,234,.95); }
.reviews .eyebrow { color: var(--copper-lt); }
.btn-outline-dark {
  color: rgba(247,242,234,.85) !important;
  border-color: rgba(247,242,234,.3) !important;
}
.btn-outline-dark:hover { border-color: var(--copper-lt) !important; color: var(--copper-lt) !important; }
.reviews-title-row {
  display: flex; align-items: flex-start;
  justify-content: space-between; flex-wrap: wrap; gap: 1.5rem;
}
.reviews-rating-badge {
  display: flex; align-items: center; gap: .85rem;
  background: rgba(255,255,255,.1); border-radius: 12px;
  border: 1px solid rgba(255,255,255,.15);
  padding: .9rem 1.25rem;
  flex-shrink: 0;
}
.reviews-stars { color: #fbbc05; font-size: 1.1rem; line-height: 1; }
.reviews-rating-badge > div span {
  font-size: .72rem; color: rgba(247,242,234,.65); font-weight: 500;
}
.reviews-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.review-card {
  background: #fff; border-radius: 12px;
  padding: 1.5rem; display: flex; flex-direction: column; gap: .85rem;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  transition: box-shadow .25s, transform .25s;
}
.review-card:hover {
  box-shadow: 0 6px 28px rgba(0,0,0,.1);
  transform: translateY(-3px);
}
.review-top {
  display: flex; align-items: center; gap: .75rem;
}
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .95rem; color: #fff;
  flex-shrink: 0;
}
.review-meta { flex: 1; }
.review-meta strong { display: block; font-size: .85rem; font-weight: 600; color: var(--ink); line-height: 1.3; }
.review-meta span { font-size: .72rem; color: var(--ink-3); line-height: 1; }
.review-g { margin-left: auto; flex-shrink: 0; }
.review-stars { color: #fbbc05; font-size: .95rem; line-height: 1; letter-spacing: .05em; }
.review-text {
  font-size: .88rem; color: var(--ink-2); line-height: 1.7;
  flex: 1;
}
.reviews-cta { text-align: center; }
.btn-outline-dark {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 2rem;
  font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink); border: 1.5px solid var(--ink-3); border-radius: 2px;
  text-decoration: none; transition: border-color .2s, color .2s;
}
.btn-outline-dark:hover { border-color: var(--copper); color: var(--copper); }

/* ═══════════════════════════════════════════════
   SERVICE GALLERY DRAWER
═══════════════════════════════════════════════ */
.service-gallery {
  max-height: 0; overflow: hidden;
  transition: max-height .6s cubic-bezier(0.32,0.72,0,1), opacity .4s ease;
  opacity: 0;
  background: var(--dark);
}
.service-gallery.open {
  max-height: 800px;
  opacity: 1;
}
.sg-inner { padding-block: 2.5rem 3rem; }
.sg-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.5rem;
}
.sg-title {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 300;
  color: rgba(247,242,234,.9);
}
.sg-close {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: none; cursor: pointer;
  color: rgba(247,242,234,.7); display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
}
.sg-close:hover { background: rgba(255,255,255,.15); color: #fff; }
.sg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: .75rem;
}
.sg-grid img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: 4px; cursor: pointer;
  transition: transform .3s var(--spring), opacity .3s;
  opacity: 0; transform: scale(.96);
}
.sg-grid img.loaded { opacity: 1; transform: scale(1); }
.sg-grid img:hover { transform: scale(1.03); }

/* Lightbox */
.sg-lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
}
.sg-lightbox.open { opacity: 1; pointer-events: all; }
.sg-lightbox img {
  max-width: 92vw; max-height: 88vh;
  object-fit: contain; border-radius: 4px;
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
}
.sg-lb-close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: none; cursor: pointer;
  color: #fff; font-size: 1.2rem; display: flex; align-items: center; justify-content: center;
}
.sg-lb-prev, .sg-lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: none; cursor: pointer;
  color: #fff; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.sg-lb-prev { left: 1.25rem; }
.sg-lb-next { right: 1.25rem; }
.sg-lb-prev:hover, .sg-lb-next:hover { background: rgba(255,255,255,.22); }

@media (max-width: 768px) {
  .sg-grid { grid-template-columns: repeat(2, 1fr); gap: .5rem; }
  .service-gallery.open { max-height: 1400px; }
}

.partners {
  background: var(--cream);
  padding-block: 6rem;
  overflow: hidden;
}
.partners-head { margin-bottom: 3.5rem; }

.marquee-outer {
  position: relative; overflow: hidden;
}
.marquee-outer::before,
.marquee-outer::after {
  content: ''; position: absolute; top: 0; bottom: 0; z-index: 1;
  width: 8rem; pointer-events: none;
}
.marquee-outer::before {
  left: 0;
  background: linear-gradient(to right, var(--cream), transparent);
}
.marquee-outer::after {
  right: 0;
  background: linear-gradient(to left, var(--cream), transparent);
}

.marquee-track {
  display: flex; width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-row {
  display: flex; align-items: center; gap: 2rem;
  padding-inline: 1rem; white-space: nowrap;
}
.marquee-row span {
  font-size: .85rem; font-weight: 600;
  color: var(--ink-3); letter-spacing: .02em;
  transition: color .2s;
}
.marquee-row span:hover { color: var(--ink); }
.marquee-row b {
  color: var(--copper); font-size: .55rem; font-weight: 700;
}

/* ═══════════════════════════════════════════════
   CONTACT — dark
═══════════════════════════════════════════════ */
.contact {
  background: var(--dark);
  padding-block: 8rem;
  border-top: 1px solid rgba(255,255,255,.04);
}

.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 6rem; align-items: start;
}

.contact-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 300; line-height: 1.05;
  color: rgba(247,242,234,.92);
  letter-spacing: -.01em;
  margin-bottom: 1.25rem;
}
.contact-sub {
  font-size: .95rem; color: rgba(247,242,234,.4);
  line-height: 1.78; max-width: 40ch; margin-bottom: 2.5rem;
}

.contact-details { display: flex; flex-direction: column; gap: .9rem; }
.cdetail {
  display: flex; align-items: center; gap: .85rem;
  font-size: .88rem; color: rgba(247,242,234,.45);
  transition: color .2s;
}
a.cdetail:hover { color: rgba(247,242,234,.85); }
a.cdetail:hover .cdetail-icon {
  background: var(--copper-bg);
  border-color: var(--copper-bdr);
  color: var(--copper-lt);
}
.cdetail-icon {
  width: 34px; height: 34px; border-radius: 9px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(247,242,234,.3); flex-shrink: 0;
  transition: background .2s, border-color .2s, color .2s;
}

/* form */
.contact-r form { display: flex; flex-direction: column; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { display: flex; flex-direction: column; gap: .38rem; margin-bottom: 1rem; }
.fg label {
  font-size: .7rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(247,242,234,.3);
}
.fg input,
.fg textarea {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px; color: rgba(247,242,234,.85);
  padding: .75rem 1rem; font-size: .9rem; outline: none;
  transition: border-color .22s var(--expo), box-shadow .22s var(--expo);
}
.fg input::placeholder, .fg textarea::placeholder { color: rgba(247,242,234,.2); }
.fg input:focus, .fg textarea:focus {
  border-color: var(--copper-bdr);
  box-shadow: 0 0 0 3px rgba(181,97,42,.12);
}
.fg textarea { resize: vertical; min-height: 110px; }

.sel-wrap { position: relative; }
.sel-wrap select {
  width: 100%; background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px; color: rgba(247,242,234,.85);
  padding: .75rem 2.5rem .75rem 1rem;
  font-size: .9rem; appearance: none; -webkit-appearance: none;
  outline: none; cursor: pointer;
  transition: border-color .22s;
}
.sel-wrap select:focus { border-color: var(--copper-bdr); }
.sel-caret {
  position: absolute; right: .9rem; top: 50%;
  transform: translateY(-50%); pointer-events: none;
  color: rgba(247,242,234,.3);
}
.sel-wrap select option { background: var(--dark-3); }

.ferr { font-size: .74rem; color: #e05252; min-height: 1em; }
.fg.has-error input, .fg.has-error textarea { border-color: #e05252; }

.btn-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  width: 100%; background: var(--copper); color: #fff;
  font-size: .9rem; font-weight: 600;
  padding: .9rem 1.5rem;
  border-radius: 12px;
  transition: background .22s, transform .22s var(--expo), box-shadow .22s;
  cursor: pointer; margin-top: .25rem;
}
.btn-submit:hover {
  background: var(--copper-lt);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(181,97,42,.28);
}
.btn-submit:active { transform: scale(.98); }
.btn-submit:disabled { opacity: .55; cursor: not-allowed; transform: none; }

.form-note {
  font-size: .75rem; color: rgba(247,242,234,.22);
  text-align: center; margin-top: .85rem;
}
.form-status {
  font-size: .82rem; text-align: center; margin-top: .9rem;
  padding: .7rem .9rem; border-radius: 10px; line-height: 1.4;
}
.form-status.is-success {
  color: #7fd196; background: rgba(127,209,150,.1);
  border: 1px solid rgba(127,209,150,.25);
}
.form-status.is-error {
  color: #ec8b8b; background: rgba(224,82,82,.1);
  border: 1px solid rgba(224,82,82,.28);
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.08);
  padding-block: 3rem 2.25rem;
}
.footer-inner {
  display: flex; flex-direction: column; gap: 1.5rem;
}
.footer-top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand {
  display: flex; align-items: center; gap: 1.25rem;
}
.footer-logo { height: 24px; width: auto; filter: brightness(0) invert(1); }
.footer-brand p {
  font-size: .8rem; font-style: italic; color: rgba(247,242,234,.45);
}
.footer-nav {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
}
.footer-nav a {
  font-size: .8rem; font-weight: 500; color: rgba(247,242,234,.55);
  transition: color .2s;
}
.footer-nav a:hover { color: var(--copper-lt); }
.footer-bottom {
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: .5rem;
  font-size: .72rem; color: rgba(247,242,234,.3);
  padding-top: 1.25rem;
}

/* ═══════════════════════════════════════════════
   MOBILE FLOATING CTA
═══════════════════════════════════════════════ */
.mobile-cta {
  display: none;
}
@media (max-width: 768px) {
  .mobile-cta {
    display: flex; align-items: center; justify-content: center; gap: .6rem;
    position: fixed; bottom: 1.25rem; left: 1rem; right: 1rem; z-index: 999;
    background: var(--copper);
    color: #fff; font-size: .82rem; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase;
    text-decoration: none;
    border-radius: 100px;
    padding: 1rem 1.5rem;
    box-shadow: 0 8px 28px rgba(181,97,42,.35);
    animation: cta-breathe 3.5s ease-in-out infinite;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }
  @keyframes cta-breathe {
    0%, 100% { box-shadow: 0 8px 28px rgba(181,97,42,.3), 0 0 0 0 rgba(181,97,42,0); background: var(--copper); }
    50%       { box-shadow: 0 8px 28px rgba(181,97,42,.5), 0 0 0 8px rgba(181,97,42,.12); background: var(--copper-lt); }
  }
  .mobile-cta:active { transform: scale(.97); }
}

/* ═══════════════════════════════════════════════
   SCROLL REVEALS
═══════════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity .7s var(--expo), transform .7s var(--expo);
}
.reveal.in { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr 1fr; }
  .hero-l { padding: 3rem 2.5rem 3rem 3rem; }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .reviews-grid { grid-template-columns: repeat(2,1fr); }
  .stat { border-right: none; border-bottom: 1px solid var(--dark-bdr); padding: 0 0 2rem 0; }
  .stat:nth-child(3), .stat:nth-child(4) { border-bottom: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 4rem; }
}

@media (max-width: 860px) {
  .services-head-row { grid-template-columns: 1fr; gap: 1rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }

  /* Extend the dark footer behind the floating CTA bar so no cream gap shows */
  .footer { padding-bottom: 7rem; }
  .footer-top { flex-direction: column; align-items: flex-start; gap: 1.25rem; }

  /* ── Hero ── */
  .hero { align-items: center; }
  .hero-content {
    padding-bottom: 6rem;
    padding-top: calc(var(--nav-h) + 2.5rem);
    align-items: center; text-align: center;
  }
  .hero-badge { justify-content: center; }
  .hero-h1 { font-size: clamp(2.2rem, 10vw, 3.4rem); }
  .hero-desc { font-size: .82rem; line-height: 1.65; max-width: 34ch; margin-inline: auto; }
  .hero-btns {
    flex-direction: column; align-items: stretch;
    width: 100%; max-width: 300px; margin-inline: auto;
    gap: .75rem;
  }
  .btn-quote-pulse, .btn-outline-hero {
    width: 100%; justify-content: center;
    padding: .95rem 1.5rem;
  }
  .hero-trust {
    flex-direction: column; align-items: center;
    gap: .65rem; padding-top: 1.5rem;
  }
  .hero-trust li { font-size: .78rem; }
  .hero-dots { right: auto; left: 50%; transform: translateX(-50%); bottom: 5.5rem; flex-direction: row; gap: .4rem; }

  /* ── Services panels ── */
  .panels { height: auto; flex-direction: column; }
  .panel { flex: none !important; height: 260px; min-width: 0; }
  .panel-vert-label {
    transform: none !important; bottom: auto; top: 1.25rem; left: 1.25rem;
    color: rgba(247,242,234,.75);
    opacity: 1 !important;
    writing-mode: horizontal-tb;
    font-size: .65rem;
  }
  .panel-body { opacity: 1 !important; transform: none !important; }
  .panel-desc { display: none; }

  /* ── Stats ── */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3), .stat:nth-child(4) { padding-top: 1.5rem; }

  /* ── Reviews ── */
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-title-row { flex-direction: column; gap: 1.25rem; }
  .reviews-rating-badge { align-self: flex-start; }

  /* ── Quote / About / Contact ── */
  .big-quote { font-size: clamp(1.9rem, 7.5vw, 3rem); }
  .quote-section { padding-block: 4.5rem; }
  .about { padding-block: 4.5rem; }
  .contact { padding-block: 4.5rem; }
  .features-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero-chip { left: 1rem; bottom: 1rem; }
}

@media (max-width: 540px) {
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-h1 { font-size: clamp(2rem, 9vw, 2.8rem); }
}
