:root {
  --slate: #3f4e4f;
  --slate-deep: #2b3536;
  --slate-ink: #1c2324;
  --copper: #a27b5c;
  --copper-soft: #b8916f;
  --copper-deep: #856244;
  --blue: #a3c1c4;
  --cream: #dcd7c9;
  --cream-soft: #e8e3d6;
  --paper: #f4f1ea;
  --paper-warm: #efebe1;
  --line: rgba(63, 78, 79, 0.14);
  --line-strong: rgba(63, 78, 79, 0.28);
  --shadow-soft: 0 1px 2px rgba(28, 35, 36, 0.04), 0 24px 60px -24px rgba(28, 35, 36, 0.18);
  --shadow-card: 0 1px 2px rgba(28, 35, 36, 0.05), 0 30px 70px -30px rgba(28, 35, 36, 0.25);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body {
  background: var(--paper);
  color: var(--slate-ink);
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ── Typography ── */
.serif { font-family: "Montserrat", sans-serif; font-weight: 300; letter-spacing: -0.02em; }
.display { font-family: "Montserrat", sans-serif; font-weight: 200; line-height: 1; letter-spacing: -0.03em; }
.display i, h1 i, h2 i, h3 i, h4 i {
  font-family: "Caveat", cursive;
  font-style: normal;
  color: var(--copper);
  font-weight: 500;
  letter-spacing: 0;
}
.eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--copper);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before { content: ""; width: 24px; height: 1px; background: currentColor; display: inline-block; }
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }
.eyebrow.center::after, .eyebrow.flank::after { content: ""; width: 24px; height: 1px; background: currentColor; display: inline-block; }
.eyebrow.flank::before { content: ""; width: 24px; height: 1px; background: currentColor; display: inline-block; }
.lede { font-size: 18px; line-height: 1.55; color: rgba(28, 35, 36, 0.7); max-width: 54ch; }
.small { font-size: 13px; letter-spacing: 0.02em; color: rgba(28, 35, 36, 0.55); }

/* ── Layout ── */
.wrap { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
section { position: relative; }
.section { padding: 140px 0; }
.section-tight { padding: 96px 0; }
.grid { display: grid; gap: 24px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}
.btn .arr {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.12;
  position: relative;
  transition: all 0.35s var(--ease);
}
.btn .arr::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 18 18%27 fill=%27none%27 stroke=%27currentColor%27 stroke-width=%271.4%27 stroke-linecap=%27round%27><path d=%27M6 9h6M9.5 6.5L12 9l-2.5 2.5%27/></svg>") center / 12px no-repeat;
  opacity: 1;
}
.btn:hover .arr { opacity: 0.18; transform: translateX(2px); }
.btn svg { vertical-align: middle; margin-right: 6px; }
.btn-primary { background: var(--slate-ink); color: var(--paper); }
.btn-primary:hover { background: #000; }
.btn-copper { background: var(--copper); color: #fff; }
.btn-copper:hover { background: var(--copper-deep); }
.btn-ghost { background: transparent; color: var(--paper); border-color: rgba(244, 241, 234, 0.35); }
.btn-ghost:hover { background: rgba(244, 241, 234, 0.08); border-color: rgba(244, 241, 234, 0.6); }
.btn-outline { background: transparent; color: var(--slate-ink); border-color: var(--line-strong); }
.btn-outline:hover { border-color: var(--slate-ink); background: var(--slate-ink); color: var(--paper); }

/* ── Navbar ── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 60; transition: all 0.4s var(--ease); }
.nav-inner {
  margin: 18px auto;
  max-width: 1320px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px 14px 26px;
  background: rgba(244, 241, 234, 0.85);
  backdrop-filter: saturate(160%) blur(20px);
  -webkit-backdrop-filter: saturate(160%) blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 20px 50px -20px rgba(0, 0, 0, 0.18);
}
.nav.dark .nav-inner { background: rgba(28, 35, 36, 0.4); border-color: rgba(255, 255, 255, 0.08); }
.nav.dark { color: var(--paper); }
.nav.scrolled .nav-inner { background: rgba(244, 241, 234, 0.85); }
.brand { display: flex; align-items: center; gap: 12px; font-family: "Montserrat", sans-serif; font-weight: 500; font-size: 18px; letter-spacing: -0.005em; }
.brand-mark { width: 36px; height: 36px; border-radius: 8px; display: block; object-fit: contain; flex-shrink: 0; background: var(--slate-ink); padding: 3px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text b { font-weight: 600; font-size: 16px; letter-spacing: -0.005em; }
.brand-text span { font-family: "Inter", sans-serif; font-size: 9px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--copper); margin-top: 4px; font-weight: 500; }
.brand-logo { height: 40px; width: auto; max-width: 200px; display: block; object-fit: contain; }
.brand-logo-mobile { display: none; }
.nav.dark .brand-text b { color: var(--paper); }
.nav-links { display: flex; gap: 6px; align-items: center; }
.nav-links a { font-size: 13px; font-weight: 400; letter-spacing: 0.02em; padding: 8px 14px; border-radius: 999px; transition: all 0.25s var(--ease); opacity: 0.78; }
.nav-links a:hover { opacity: 1; background: rgba(63, 78, 79, 0.06); }
.nav.dark .nav-links a:hover { background: rgba(255, 255, 255, 0.08); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-phone { font-size: 13px; opacity: 0.7; display: flex; align-items: center; gap: 8px; }
.nav-phone .dot { width: 6px; height: 6px; border-radius: 50%; background: #6ad28a; box-shadow: 0 0 0 4px rgba(106, 210, 138, 0.18); }
.nav .btn { padding: 11px 18px; font-size: 13px; }

/* ── Nav dropdown ── */
.nav-dd-wrap { position: relative; }
.nav-dd-trigger { display: inline-flex; align-items: center; gap: 8px; }
.nav-dd-trigger .chev { width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 5px solid currentColor; opacity: 0.55; transition: transform 0.3s var(--ease); }
.nav-dd-wrap:hover .nav-dd-trigger .chev,
.nav-dd-wrap:focus-within .nav-dd-trigger .chev { transform: rotate(180deg); }
.nav-dd {
  display: none;
  position: fixed;
  left: 50%;
  top: 78px;
  transform: translateX(-50%) translateY(-8px);
  width: min(880px, 92vw);
  background: rgba(244, 241, 234, 0.92);
  backdrop-filter: saturate(180%) blur(28px);
  -webkit-backdrop-filter: saturate(180%) blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), 0 30px 70px -20px rgba(0, 0, 0, 0.25);
  padding: 28px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.45s var(--ease), visibility 0s linear 0.35s;
  z-index: 65;
  color: var(--slate-ink);
}
.nav-dd-wrap:hover .nav-dd,
.nav-dd-wrap:focus-within .nav-dd {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s, 0s, 0s;
}
.nav.dark .nav-dd { background: rgba(28, 35, 36, 0.85); border-color: rgba(255, 255, 255, 0.08); color: var(--paper); }
.nav-dd-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; padding: 0 6px; }
.nav-dd-all { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--copper); font-weight: 500; display: inline-flex; gap: 8px; align-items: center; transition: gap 0.25s var(--ease); }
.nav-dd-all:hover { gap: 14px; }
.nav-dd-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; }
.nav-dd-item { display: flex; flex-direction: column; gap: 6px; padding: 14px 14px 16px; border-radius: 14px; transition: background 0.25s var(--ease), transform 0.35s var(--ease); position: relative; opacity: 0; transform: translateY(8px); }
.nav-dd-wrap:hover .nav-dd-item,
.nav-dd-wrap:focus-within .nav-dd-item { opacity: 1; transform: none; }
.nav-dd-item:nth-child(1) { transition-delay: 0.05s; }
.nav-dd-item:nth-child(2) { transition-delay: 0.09s; }
.nav-dd-item:nth-child(3) { transition-delay: 0.13s; }
.nav-dd-item:nth-child(4) { transition-delay: 0.17s; }
.nav-dd-item:nth-child(5) { transition-delay: 0.21s; }
.nav-dd-item:nth-child(6) { transition-delay: 0.25s; }
.nav-dd-item:nth-child(7) { transition-delay: 0.29s; }
.nav-dd-item:nth-child(8) { transition-delay: 0.33s; }
.nav-dd-item:nth-child(9) { transition-delay: 0.37s; }
.nav-dd-item:nth-child(10) { transition-delay: 0.41s; }
.nav-dd-item:hover { background: rgba(63, 78, 79, 0.06); }
.nav.dark .nav-dd-item:hover { background: rgba(255, 255, 255, 0.06); }
.swatch-mini { width: 100%; aspect-ratio: 5 / 3; border-radius: 8px; display: block; margin-bottom: 6px; box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06); transition: transform 0.35s var(--ease); }
.nav-dd-item:hover .swatch-mini { transform: scale(1.04); }
.nav-dd-item b { font-family: "Montserrat", sans-serif; font-weight: 500; font-size: 15px; letter-spacing: -0.005em; line-height: 1.1; }
.nav-dd-item .sm { font-size: 11px; letter-spacing: 0.04em; opacity: 0.6; line-height: 1.3; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--slate-ink);
  color: var(--paper);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
  transition: transform 12s var(--ease);
}
.hero-bg.loaded { transform: scale(1); }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 90% 70% at 30% 75%, rgba(162, 123, 92, 0.18), transparent 70%),
    linear-gradient(180deg, rgba(28, 35, 36, 0.55) 0%, rgba(28, 35, 36, 0.35) 35%, rgba(28, 35, 36, 0.85) 100%);
}
.hero-content { position: relative; z-index: 2; padding-top: 200px; }
.hero-eyebrow { display: flex; align-items: center; gap: 14px; font-family: "Inter", sans-serif; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(244, 241, 234, 0.7); margin-bottom: 36px; }
.hero-eyebrow .pill { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 999px; background: rgba(244, 241, 234, 0.08); border: 1px solid rgba(244, 241, 234, 0.12); backdrop-filter: blur(8px); }
.hero-eyebrow .pip { width: 6px; height: 6px; border-radius: 50%; background: var(--copper); }
.hero h1 { font-family: "Montserrat", sans-serif; font-weight: 200; font-size: clamp(44px, 5vw, 72px); line-height: 1; letter-spacing: -0.035em; color: var(--paper); max-width: 14ch; }
.hero h1 i { font-style: italic; color: var(--cream); position: relative; }
.hero h1 i::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0.08em; height: 1px; background: linear-gradient(90deg, transparent, var(--copper), transparent); }
.hero-bottom { display: flex; justify-content: space-between; align-items: flex-end; gap: 48px; margin-top: 48px; border-top: 1px solid rgba(244, 241, 234, 0.18); padding-top: 32px; }
.hero-sub { font-size: 17px; line-height: 1.55; max-width: 42ch; color: rgba(244, 241, 234, 0.78); }
.hero-ctas { display: flex; gap: 12px; flex-shrink: 0; }
.hero-meta { display: flex; gap: 48px; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(244, 241, 234, 0.55); }
.hero-meta b { display: block; font-family: "Montserrat", sans-serif; font-weight: 300; font-size: 36px; letter-spacing: -0.025em; color: var(--paper); text-transform: none; line-height: 1; margin-bottom: 6px; }
.hero-meta b i { font-style: italic; color: var(--copper); }
.scroll-hint { position: absolute; left: 50%; bottom: 24px; z-index: 3; transform: translateX(-50%); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(244, 241, 234, 0.5); display: flex; flex-direction: column; align-items: center; gap: 10px; }
.scroll-hint::after { content: ""; width: 1px; height: 36px; background: linear-gradient(180deg, rgba(244, 241, 234, 0.5), transparent); animation: drip 2.2s var(--ease) infinite; }
@keyframes drip {
  0%   { transform: scaleY(0.2); transform-origin: top; }
  50%  { transform: scaleY(1);   transform-origin: top; }
  51%  { transform: scaleY(1);   transform-origin: bottom; }
  100% { transform: scaleY(0);   transform-origin: bottom; }
}

/* ── Marquee ── */
.marquee { background: var(--slate-ink); color: var(--paper); border-top: 1px solid rgba(244, 241, 234, 0.08); border-bottom: 1px solid rgba(244, 241, 234, 0.08); padding: 22px 0; overflow: hidden; position: relative; }
.marquee-track { display: flex; gap: 64px; animation: slide 38s linear infinite; width: max-content; font-family: "Cormorant Garamond", serif; font-size: 22px; letter-spacing: -0.005em; align-items: center; color: rgba(244, 241, 234, 0.85); }
.marquee-track .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--copper); flex-shrink: 0; }
.marquee-track i { font-style: italic; color: var(--copper); }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Section head ── */
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 48px; margin-bottom: 72px; flex-wrap: wrap; }
.section-head h2 { font-family: "Montserrat", sans-serif; font-weight: 300; font-size: clamp(38px, 5vw, 68px); line-height: 1.05; letter-spacing: -0.03em; max-width: 14ch; }
.section-head h2 i { font-style: italic; color: var(--copper); }
.section-head .right { max-width: 38ch; color: rgba(28, 35, 36, 0.62); font-size: 16px; line-height: 1.6; }

/* ── Services ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 24px; overflow: hidden; }
.service { background: var(--paper); padding: 48px 36px 40px; transition: all 0.5s var(--ease); position: relative; cursor: pointer; min-height: 340px; display: flex; flex-direction: column; }
.service::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 2px; background: var(--copper); transform: scaleX(0); transform-origin: left; transition: transform 0.55s var(--ease); }
.service:hover { background: #fbf9f3; }
.service:hover::before { transform: scaleX(1); }
.service-num { font-family: "Caveat", cursive; color: var(--copper); font-size: 24px; font-weight: 600; margin-bottom: auto; }
.service-icon { width: 56px; height: 56px; color: var(--slate); margin: 0 0 28px; transition: color 0.4s var(--ease); }
.service:hover .service-icon { color: var(--copper); }
.service h3 { font-family: "Montserrat", sans-serif; font-weight: 500; font-size: 24px; letter-spacing: -0.015em; line-height: 1.15; margin-bottom: 14px; }
.service p { font-size: 14.5px; line-height: 1.6; color: rgba(28, 35, 36, 0.65); margin-bottom: 22px; }
.service .more { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--slate); font-weight: 500; display: inline-flex; align-items: center; gap: 10px; transition: color 0.3s var(--ease); }
.service .more::after { content: "→"; transition: transform 0.3s var(--ease); }
.service:hover .more { color: var(--copper); }
.service:hover .more::after { transform: translateX(4px); }

/* ── Extra service cards ── */
.services-extra { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 24px; }
.service-extra { position: relative; display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center; padding: 34px 36px; border-radius: 22px; border: 1px solid var(--line-strong); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.35s var(--ease); color: var(--slate-ink); }
.card-snake { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; overflow: visible; }
@keyframes snake-coil { from { stroke-dashoffset: 0; } to { stroke-dashoffset: -1100; } }
.card-snake rect { fill: none; stroke: rgba(255, 255, 255, 0.8); stroke-width: 4; stroke-dasharray: 110 990; stroke-linecap: round; animation: snake-coil 3.8s linear infinite; }
.service-extra--bonus .card-snake rect { stroke: rgba(255, 210, 170, 0.9); animation-delay: -1.6s; }
.service-extra--alt { background: var(--copper); color: var(--paper); }
.service-extra--alt:hover { background: var(--copper-deep); transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.service-extra--alt .se-label { color: rgba(244, 241, 234, 0.72); }
.service-extra--alt .se-body p { color: rgba(244, 241, 234, 0.72); }
.service-extra--bonus { background: var(--copper-deep); border-color: rgba(162, 123, 92, 0.3); color: var(--paper); }
.service-extra--bonus::before { content: ""; position: absolute; right: 0; top: 0; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.18), transparent 60%); pointer-events: none; }
.service-extra--bonus:hover { transform: translateY(-4px); box-shadow: 0 30px 70px -28px rgba(100, 55, 20, 0.5); }
.se-icon { width: 64px; height: 64px; border-radius: 16px; display: grid; place-items: center; background: rgba(255, 255, 255, 0.55); color: var(--slate); flex-shrink: 0; position: relative; z-index: 1; }
.service-extra--bonus .se-icon { background: rgba(255, 255, 255, 0.2); color: var(--paper); }
.se-body { position: relative; z-index: 1; }
.se-label { font-family: "Inter", sans-serif; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; color: var(--copper); display: block; margin-bottom: 8px; }
.service-extra--bonus .se-label { color: rgba(244, 241, 234, 0.7); opacity: 1; }
.se-body h3 { font-family: "Montserrat", sans-serif; font-weight: 500; font-size: 22px; letter-spacing: -0.018em; line-height: 1.18; margin-bottom: 8px; }
.se-body p { font-family: "Inter", sans-serif; font-size: 14.5px; line-height: 1.6; color: rgba(28, 35, 36, 0.7); max-width: 52ch; }
.service-extra--bonus .se-body p { color: rgba(244, 241, 234, 0.72); }
.bonus-badge { position: absolute; top: -12px; left: 32px; z-index: 2; background: var(--slate-ink); color: var(--paper); font-family: "Inter", sans-serif; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; padding: 7px 14px; border-radius: 999px; font-weight: 600; }
.se-arrow { font-size: 22px; color: var(--copper); font-family: "Montserrat", sans-serif; font-weight: 300; transition: transform 0.35s var(--ease); flex-shrink: 0; position: relative; z-index: 1; }
.service-extra:hover .se-arrow { transform: translateX(5px); }
.service-extra--alt .se-arrow,
.service-extra--bonus .se-arrow { color: var(--paper); }

@keyframes pulse-alt {
    0%, 100% { box-shadow: 0 0 0 0 rgba(160, 90, 20, 0); }
    50%       { box-shadow: 0 0 0 14px rgba(160, 90, 20, 0.55); }
}
@keyframes pulse-bonus {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 190, 120, 0); }
    50%       { box-shadow: 0 0 0 14px rgba(255, 190, 120, 0.4); }
}
.service-extra--alt   { animation: pulse-alt   2s ease-in-out infinite; }
.service-extra--bonus { animation: pulse-bonus 2s ease-in-out infinite 1s; }
.service-extra--alt:hover,
.service-extra--bonus:hover { animation-play-state: paused; }

/* ── About ── */
.about { background: var(--paper-warm); }
.about-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 96px; align-items: center; }
.about-text h2 { font-family: "Montserrat", sans-serif; font-weight: 300; font-size: clamp(36px, 4.6vw, 60px); line-height: 1.08; letter-spacing: -0.028em; margin-bottom: 32px; }
.about-text h2 i { font-style: italic; color: var(--copper); }
.about-text p { font-size: 17px; line-height: 1.65; color: rgba(28, 35, 36, 0.72); margin-bottom: 20px; max-width: 46ch; }
.about-text p.first::first-letter { font-family: "Caveat", cursive; font-size: 84px; float: left; line-height: 0.78; padding: 8px 14px 0 0; color: var(--copper); font-weight: 600; }
.signature { margin-top: 36px; display: flex; align-items: center; gap: 20px; }
.signature-line { font-family: "Caveat", cursive; font-size: 38px; color: var(--slate); font-weight: 500; line-height: 1; }
.signature-meta { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(28, 35, 36, 0.5); line-height: 1.6; }
.signature-meta b { color: var(--slate); font-weight: 500; }
.about-img { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 4 / 5; box-shadow: var(--shadow-card); }
.about-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.6s var(--ease); }
.about-img:hover img { transform: scale(1.04); }
.about-tag { position: absolute; left: 24px; bottom: 24px; right: 24px; background: rgba(28, 35, 36, 0.65); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); color: var(--paper); border-radius: 14px; padding: 18px 22px; display: flex; align-items: center; gap: 18px; border: 1px solid rgba(255, 255, 255, 0.08); }
.about-tag svg { flex-shrink: 0; color: var(--copper); }
.about-tag b { display: block; font-family: "Montserrat", sans-serif; font-weight: 500; font-size: 17px; letter-spacing: -0.005em; }
.about-tag span { font-size: 12px; opacity: 0.7; letter-spacing: 0.02em; }

/* ── Journey ── */
.journey { background: var(--paper-warm); padding: 0 0 140px; border-bottom: 1px solid var(--line); }
.journey-card { background: var(--paper); border: 1px solid var(--line); border-radius: 24px; padding: 48px 56px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 48px; box-shadow: var(--shadow-soft); }
.journey-end { display: flex; flex-direction: column; align-items: center; gap: 10px; flex-shrink: 0; }
.journey-end .flag { width: 54px; height: 54px; border-radius: 50%; background: var(--cream-soft); display: grid; place-items: center; font-family: "Montserrat", sans-serif; font-weight: 600; font-size: 14px; letter-spacing: 0.04em; color: var(--slate); border: 1px solid var(--line); }
.journey-end small { font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(28, 35, 36, 0.55); }
.journey-end b { font-family: "Montserrat", sans-serif; font-weight: 500; font-size: 16px; color: var(--slate); letter-spacing: -0.005em; }
.journey-line { position: relative; height: 60px; display: flex; align-items: center; }
.journey-line::before { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: linear-gradient(90deg, transparent, var(--line-strong) 12%, var(--line-strong) 88%, transparent); }
.journey-line .stops { position: relative; width: 100%; display: flex; justify-content: space-between; }
.journey-line .stop { width: 8px; height: 8px; border-radius: 50%; background: var(--cream-soft); border: 1px solid var(--line-strong); position: relative; }
.journey-line .stop.major { width: 10px; height: 10px; background: var(--copper); border-color: var(--copper); }
.journey-line .stop label { position: absolute; top: 18px; left: 50%; transform: translateX(-50%); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(28, 35, 36, 0.5); white-space: nowrap; }
.journey-truck { position: absolute; left: 32%; top: -8px; transition: left 0.6s var(--ease); color: var(--slate); }

/* ── Process ── */
.process { background: var(--slate-ink); color: var(--paper); }
.process .section-head h2 { color: var(--paper); }
.process .section-head .right { color: rgba(244, 241, 234, 0.65); }
.timeline { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 24px; }
.timeline::before { content: ""; position: absolute; top: 42px; left: 6%; right: 6%; height: 1px; background: linear-gradient(90deg, transparent, rgba(244, 241, 234, 0.2) 8%, rgba(244, 241, 234, 0.2) 92%, transparent); }
.step { position: relative; padding: 0 16px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.step-num { font-family: "Caveat", cursive; font-size: 20px; font-weight: 600; color: var(--copper); margin-bottom: 6px; line-height: 1; }
.step-dot { width: 84px; height: 84px; border-radius: 50%; background: var(--slate-ink); border: 1px solid rgba(244, 241, 234, 0.18); display: grid; place-items: center; color: var(--cream); position: relative; z-index: 2; transition: all 0.4s var(--ease); }
.step:hover .step-dot { background: var(--copper); border-color: var(--copper); color: #fff; transform: translateY(-3px); }
.step-dot svg { width: 30px; height: 30px; }
.step h4 { font-family: "Montserrat", sans-serif; font-weight: 500; font-size: 20px; margin-top: 24px; letter-spacing: -0.015em; }
.step p { font-size: 13.5px; color: rgba(244, 241, 234, 0.6); margin-top: 8px; line-height: 1.55; max-width: 22ch; }

/* ── Projects ── */
.projects { background: var(--paper); }
.filter-row { display: flex; gap: 10px; margin-bottom: 48px; flex-wrap: wrap; }
.filter-row .chip { padding: 9px 18px; border-radius: 999px; border: 1px solid var(--line-strong); font-size: 12.5px; letter-spacing: 0.04em; color: rgba(28, 35, 36, 0.7); cursor: pointer; transition: all 0.25s var(--ease); background: transparent; }
.filter-row .chip:hover { border-color: var(--slate); color: var(--slate); }
.filter-row .chip.active { background: var(--slate-ink); border-color: var(--slate-ink); color: var(--paper); }
.masonry { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; grid-auto-rows: 80px; }
.tile { position: relative; overflow: hidden; border-radius: 18px; background: var(--cream-soft); cursor: pointer; }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease), filter 0.6s var(--ease); }
.tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(28, 35, 36, 0.75) 100%); opacity: 0.7; transition: opacity 0.4s var(--ease); }
.tile:hover img { transform: scale(1.06); }
.tile:hover::after { opacity: 0.95; }
.tile .meta { position: absolute; left: 24px; right: 24px; bottom: 22px; z-index: 2; color: var(--paper); display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; transform: translateY(6px); opacity: 0.92; transition: all 0.4s var(--ease); }
.tile:hover .meta { transform: translateY(0); opacity: 1; }
.tile .meta h5 { font-family: "Montserrat", sans-serif; font-weight: 500; font-size: 19px; line-height: 1.15; letter-spacing: -0.005em; }
.tile .meta small { font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.75; display: block; margin-top: 6px; }
.tile .view { flex-shrink: 0; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; padding: 9px 14px; border-radius: 999px; background: rgba(244, 241, 234, 0.14); backdrop-filter: blur(8px); border: 1px solid rgba(244, 241, 234, 0.2); opacity: 0; transform: translateY(8px); transition: all 0.4s var(--ease); }
.tile:hover .view { opacity: 1; transform: translateY(0); }
.t-a { grid-column: span 7; grid-row: span 6; }
.t-b { grid-column: span 5; grid-row: span 6; }
.t-c { grid-column: span 4; grid-row: span 5; }
.t-d { grid-column: span 4; grid-row: span 5; }
.t-e { grid-column: span 4; grid-row: span 5; }

/* ── Stats ── */
.stats { background: var(--cream-soft); padding: 120px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { background: var(--paper); border-radius: 20px; padding: 36px 32px 32px; border: 1px solid var(--line); position: relative; overflow: hidden; transition: all 0.4s var(--ease); }
.stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--copper-soft); }
.stat .num { font-family: "Montserrat", sans-serif; font-weight: 200; font-size: 80px; line-height: 0.95; letter-spacing: -0.045em; color: var(--slate-ink); }
.stat .num sup { font-size: 30px; color: var(--copper); font-family: "Caveat", cursive; font-weight: 600; vertical-align: top; line-height: 1; margin-left: 0; }
.stat .num .plus { font-size: 30px; color: var(--copper); font-family: "Caveat", cursive; font-weight: 600; vertical-align: top; line-height: 0.9; margin-left: 4px; }
.stat h6 { font-family: "Inter", sans-serif; font-weight: 500; font-size: 14px; letter-spacing: 0.02em; color: var(--slate-ink); margin-top: 18px; }
.stat p { font-size: 13px; color: rgba(28, 35, 36, 0.6); margin-top: 6px; line-height: 1.55; }
.stat::before { content: ""; position: absolute; top: 24px; right: 24px; width: 30px; height: 1px; background: var(--copper); }

/* ── Materials ── */
.materials { background: var(--paper); padding: 80px 0; border-top: 1px solid var(--line); }
.materials-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 42px; }
.materials-head h3 { font-family: "Montserrat", sans-serif; font-weight: 300; font-size: 32px; letter-spacing: -0.025em; line-height: 1.05; }
.materials-head h3 i { font-style: italic; color: var(--copper); }
.swatches { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.swatch { aspect-ratio: 1; border-radius: 14px; position: relative; overflow: hidden; cursor: pointer; transition: transform 0.4s var(--ease); }
.swatch:hover { transform: translateY(-3px); }
.swatch .surface { position: absolute; inset: 0; }
.swatch .label { position: absolute; left: 14px; right: 14px; bottom: 14px; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; display: flex; justify-content: space-between; align-items: center; text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4); }
.swatch.dark .label { color: var(--paper); }
.swatch.light .label { color: var(--slate-ink); text-shadow: none; }
.swatch .label b { font-family: "Montserrat", sans-serif; font-weight: 500; font-size: 15px; letter-spacing: -0.005em; text-transform: none; }

/* ── CTA ── */
.cta { background: var(--slate-ink); color: var(--paper); position: relative; overflow: hidden; padding: 160px 0; }
.cta::before { content: ""; position: absolute; inset: 0; background-image: var(--cta-bg); background-size: cover; background-position: center; opacity: 0.22; mix-blend-mode: luminosity; }
.cta::after { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(162, 123, 92, 0.22), transparent 70%); }
.cta-inner { position: relative; z-index: 1; text-align: center; max-width: 900px; margin: 0 auto; }
.cta h2 { font-family: "Montserrat", sans-serif; font-weight: 200; font-size: clamp(44px, 6.4vw, 96px); line-height: 1.02; letter-spacing: -0.035em; color: var(--paper); margin: 24px 0 28px; }
.cta h2 i { font-style: italic; color: var(--copper); }
.cta p { font-size: 17px; color: rgba(244, 241, 234, 0.72); max-width: 48ch; margin: 0 auto 44px; line-height: 1.55; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.cta-foot { display: flex; justify-content: center; gap: 48px; margin-top: 72px; padding-top: 32px; border-top: 1px solid rgba(244, 241, 234, 0.12); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(244, 241, 234, 0.5); }
.cta-foot b { display: block; font-family: "Montserrat", sans-serif; font-weight: 500; font-size: 18px; color: var(--paper); letter-spacing: -0.005em; text-transform: none; margin-bottom: 4px; }

/* ── Footer ── */
footer { background: var(--paper); color: rgba(28, 35, 36, 0.7); padding: 96px 0 32px; }
.foot-grid { display: grid; grid-template-columns: 1fr; gap: 64px; margin-bottom: 80px; }
.foot-brand .brand { font-size: 24px; }
.foot-brand .brand-text b { font-size: 22px; color: var(--slate-ink); }
.foot-brand p { font-size: 14px; line-height: 1.65; color: rgba(28, 35, 36, 0.55); margin-top: 24px; max-width: 36ch; }
.foot-h { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--copper); margin-bottom: 20px; font-weight: 500; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-col a { font-size: 14px; color: rgba(28, 35, 36, 0.7); transition: color 0.25s var(--ease); }
.foot-col a:hover { color: var(--copper); }
.foot-bottom { border-top: 1px solid rgba(28, 35, 36, 0.12); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 18px; font-size: 12px; color: rgba(28, 35, 36, 0.45); letter-spacing: 0.04em; }
.socials { display: flex; gap: 10px; }
.socials a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(28, 35, 36, 0.16); display: grid; place-items: center; color: rgba(28, 35, 36, 0.65); transition: all 0.25s var(--ease); }
.socials a:hover { background: var(--copper); border-color: var(--copper); color: #fff; transform: translateY(-2px); }

/* ── Contact Page ── */
.contact-hero { background: var(--slate-ink); color: var(--paper); padding: 160px 0 120px; position: relative; overflow: hidden; }
.contact-hero::before { content: ""; position: absolute; inset: 0; background-image: var(--contact-hero-bg); background-size: cover; background-position: center; opacity: 0.22; mix-blend-mode: luminosity; }
.contact-hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(162, 123, 92, 0.22), transparent 70%); }
.contact-hero-inner { position: relative; z-index: 1; text-align: center; max-width: 860px; margin: 0 auto; }
.contact-hero h1 { font-family: "Montserrat", sans-serif; font-weight: 200; font-size: clamp(44px, 6.4vw, 96px); line-height: 1.02; letter-spacing: -0.035em; color: var(--paper); margin: 24px 0 28px; }
.contact-hero h1 i { font-style: italic; color: var(--copper); }
.contact-hero p { font-size: 17px; color: rgba(244, 241, 234, 0.72); max-width: 48ch; margin: 0 auto; line-height: 1.55; }
.contact-body { padding: 120px 0; background: var(--paper); }
.contact-info-only { display: grid; grid-template-columns: repeat(3, 1fr); gap: 64px; }
.contact-block .eyebrow { font-family: "Inter", sans-serif; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; display: block; margin-bottom: 12px; }
.contact-value { font-family: "Montserrat", sans-serif; font-weight: 300; font-size: 22px; letter-spacing: -0.01em; color: var(--slate-ink); display: block; margin-bottom: 6px; transition: color 0.25s var(--ease); }
a.contact-value:hover { color: var(--copper); }
.contact-block p { font-size: 14px; color: rgba(28, 35, 36, 0.55); line-height: 1.6; margin: 0; }
.contact-form-wrap { background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 56px; }
.contact-form { display: flex; flex-direction: column; gap: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-family: "Inter", sans-serif; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; color: var(--slate-ink); }
.form-opt { font-weight: 400; text-transform: none; letter-spacing: 0; color: rgba(28, 35, 36, 0.4); font-size: 11px; }
.form-group input,
.form-group textarea,
.form-group select { font-family: "Inter", sans-serif; font-size: 15px; color: var(--slate-ink); background: var(--paper); border: 1px solid var(--line-strong); border-radius: 10px; padding: 14px 18px; outline: none; transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease); resize: none; width: 100%; box-sizing: border-box; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(28, 35, 36, 0.35); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--copper); box-shadow: 0 0 0 3px rgba(162, 123, 92, 0.12); }
.form-error { font-size: 13px; color: #c0392b; margin: 4px 0 0; }
.form-group--half { flex: 1 1 calc(50% - 10px); }
.form-group--submit { margin-top: 8px; }
.form-notice { font-size: 14px; color: rgba(28, 35, 36, 0.5); }
.form-success { padding: 40px; text-align: center; }
.form-success p { font-size: 17px; color: var(--slate-ink); line-height: 1.6; }
.contact-form { display: flex; flex-wrap: wrap; gap: 20px; }

/* ── Cookie banner ── */
.cookie-banner {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(28, 35, 36, 0.72);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s var(--ease);
}
.cookie-banner.visible { opacity: 1; pointer-events: auto; }
.cookie-banner-bar {
  background: var(--slate-deep);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 36px 40px;
  max-width: 680px;
  width: 100%;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}
.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text p { font-size: 14px; line-height: 1.6; color: rgba(244, 241, 234, 0.78); margin: 0; max-width: 64ch; }
.cookie-text strong { color: var(--paper); }
.cookie-text a { color: var(--copper); text-decoration: underline; text-underline-offset: 3px; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; align-items: center; }
.cookie-decline {
  background: transparent;
  color: rgba(244, 241, 234, 0.7);
  border: 1px solid rgba(244, 241, 234, 0.22);
  font-size: 13px;
  padding: 11px 20px;
}
.cookie-decline:hover { background: rgba(244, 241, 234, 0.08); color: var(--paper); border-color: rgba(244, 241, 234, 0.5); }
.cookie-banner .btn { font-size: 13px; padding: 11px 20px; }

/* ── Footer legal links & cookie settings ── */
.foot-legal { display: flex; align-items: center; gap: 10px; font-size: 12px; color: rgba(28, 35, 36, 0.5); }
.foot-legal a { color: rgba(28, 35, 36, 0.5); transition: color 0.2s var(--ease); }
.foot-legal a:hover { color: var(--copper); }
.foot-cookie-btn {
  background: none; border: none; cursor: pointer; padding: 0;
  font-family: inherit; font-size: 12px;
  color: rgba(28, 35, 36, 0.5); letter-spacing: 0.04em;
  transition: color 0.2s var(--ease);
}
.foot-cookie-btn:hover { color: var(--copper); }

/* ── Reveal animation ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }

/* ── Mobile nav ── */
.nav-burger { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 40px; height: 40px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: currentColor; border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile { position: fixed; inset: 0; z-index: 59; background: rgba(28, 35, 36, 0.97); backdrop-filter: blur(12px); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 36px; opacity: 0; pointer-events: none; transition: opacity 0.3s var(--ease); }
.nav-mobile.open { opacity: 1; pointer-events: auto; }
.nav-mobile a { font-family: "Montserrat", sans-serif; font-weight: 300; font-size: 32px; letter-spacing: -0.02em; color: var(--paper); text-decoration: none; transition: color 0.2s var(--ease); }
.nav-mobile a:hover { color: var(--copper); }
.nav-mobile .btn { font-size: 16px; padding: 14px 28px; margin-top: 8px; }

/* ── Page Banner (Why Us and similar inner pages) ── */
.page-banner {
  background: var(--slate-ink);
  color: var(--paper);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 30% 80%, rgba(162, 123, 92, 0.15), transparent 70%);
  pointer-events: none;
}
.page-banner-inner { position: relative; z-index: 1; }
.page-banner h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 200;
  font-size: clamp(44px, 6vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--paper);
  margin: 24px 0 28px;
  max-width: 16ch;
}
.page-banner h1 i { font-style: italic; color: var(--copper); }
.page-banner p { font-size: 18px; color: rgba(244, 241, 234, 0.72); max-width: 54ch; line-height: 1.6; }

/* ── Page Banner compact variant (legal / default pages) ── */
.page-banner--compact { padding: 130px 0 56px; }
.page-banner--compact h1 {
  font-size: clamp(32px, 4vw, 56px);
  margin-bottom: 0;
}

/* ── Legal / Default page body ── */
.legal-body { padding: 72px 0 120px; background: var(--paper); }
.prose { max-width: 72ch; }
.prose h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 26px);
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--slate-ink);
  margin: 48px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.prose h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--slate-ink);
  margin: 32px 0 10px;
}
.prose p { font-size: 15.5px; line-height: 1.8; color: rgba(28, 35, 36, 0.72); margin-bottom: 18px; }
.prose ul, .prose ol { padding-left: 22px; margin-bottom: 18px; }
.prose li { font-size: 15.5px; line-height: 1.75; color: rgba(28, 35, 36, 0.72); margin-bottom: 8px; }
.prose ul li::marker { color: var(--copper); }
.prose ol li::marker { color: var(--copper); font-weight: 600; font-family: "Montserrat", sans-serif; }
.prose a { color: var(--copper); text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s var(--ease); }
.prose a:hover { color: var(--copper-deep); }
.prose strong { font-weight: 600; color: var(--slate-ink); }
.prose em { font-style: italic; }
.prose hr { border: none; border-top: 1px solid var(--line); margin: 40px 0; }
.prose > *:first-child { margin-top: 0; }
.prose > h2:first-child { margin-top: 0; }

/* ── Services Checklist (Why Us) ── */
.services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 56px;
}
.services-list-item {
  background: var(--paper);
  padding: 32px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: background 0.3s var(--ease);
  position: relative;
}
.services-list-item::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 2px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s var(--ease);
}
.services-list-item:hover { background: #fbf9f3; }
.services-list-item:hover::before { transform: scaleX(1); }
.sli-check {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(162, 123, 92, 0.08);
  display: grid; place-items: center;
  flex-shrink: 0;
  color: var(--copper);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.services-list-item:hover .sli-check { background: rgba(162, 123, 92, 0.16); transform: scale(1.08); }
.services-list-item span {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--slate-ink);
  line-height: 1.3;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-extra { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .swatches { grid-template-columns: repeat(3, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .timeline { grid-template-columns: repeat(5, 1fr); gap: 8px; }
  .timeline::before { display: none; }
  .services-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .wrap { padding: 0 22px; }
  .section { padding: 96px 0; }
  .nav-links, .nav-phone { display: none; }
  .nav-inner { padding: 10px 12px 10px 18px; }
  .nav-burger { display: flex; }
  .nav-wa-label { display: none; }
  .nav-wa-btn {
    background: none;
    border: none;
    padding: 6px;
    color: var(--copper);
    box-shadow: none;
  }
  .nav-wa-btn:hover { background: none; color: var(--copper); }
  .nav-wa-btn svg { width: 28px; height: 28px; }
  .brand-logo-desktop { display: none; }
  .brand-logo-mobile { display: block; height: 28px; }
  .hero-content { padding-top: 140px; }
  .hero-eyebrow { display: none; }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 32px; }
  .hero-meta { gap: 28px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .masonry { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 60px; }
  .t-a { grid-column: span 6; grid-row: span 5; }
  .t-b { grid-column: span 6; grid-row: span 4; }
  .t-c, .t-d, .t-e { grid-column: span 6; grid-row: span 4; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .stat { padding: 28px 22px; }
  .stat .num { font-size: 64px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-extra { grid-template-columns: auto 1fr; padding: 28px 22px; gap: 18px; }
  .service-extra .se-arrow { display: none; }
  .se-body h3 { font-size: 20px; }
  .bonus-badge { left: 22px; }
  .swatches { grid-template-columns: repeat(2, 1fr); }
  .journey-card { grid-template-columns: 1fr; gap: 32px; padding: 32px; }
  .foot-grid { grid-template-columns: 1fr; gap: 40px; }
  .section-head { flex-direction: column; align-items: flex-start; margin-bottom: 48px; }
  .cta-foot { flex-direction: column; gap: 24px; }
  .contact-info-only { grid-template-columns: 1fr; gap: 40px; }
  .cookie-banner-bar { padding: 28px 24px; border-radius: 12px; }
  .cookie-banner-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cookie-actions { width: 100%; }
  .foot-legal { flex-wrap: wrap; gap: 8px; }
  .page-banner { padding: 130px 0 60px; }
  .page-banner--compact { padding: 110px 0 40px; }
  .services-list { grid-template-columns: 1fr; }
}

