/* ============================================================
   Designs & Cabinets — v3 "Airy Greige" refresh
   Palette: greige / paper / muted tan / ink
   Type: Manrope (light display) + Inter (body)
   ============================================================ */

:root {
  --cream:        #F1EFEA;
  --cream-deep:   #E7E3DB;
  --paper:        #FCFBF9;
  --walnut:       #C9BBA6;
  --caramel:      #B0895A;
  --caramel-dark: #8C6A3E;
  --ink:          #26241F;
  --ink-soft:     #5C564C;
  --ink-faint:    #8C867A;
  --line:         #DED8CC;
  --white:        #FFFFFF;
  --whatsapp:     #1FAF54;

  --font-display: 'Manrope', 'Inter', system-ui, sans-serif;
  --font-body:    'Inter', -apple-system, 'Helvetica Neue', sans-serif;

  --wrap: 1180px;
  --radius: 6px;
  --shadow-soft: 0 20px 55px rgba(38, 36, 31, 0.10);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.14; letter-spacing: -0.02em; }
h1 { font-weight: 300; }
h1 em, h2 em { font-style: normal; font-weight: 600; color: inherit; }

.eyebrow {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: var(--caramel-dark);
  margin-bottom: 14px;
}

.lead { font-size: 18px; color: var(--ink-soft); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 30px;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.4px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.22s ease;
}
.btn svg { flex-shrink: 0; }
.btn-ink     { background: var(--ink); color: var(--cream); }
.btn-ink:hover { background: #443D33; transform: translateY(-1px); }
.btn-caramel { background: var(--caramel); color: #FBF7EF; }
.btn-caramel:hover { background: var(--caramel-dark); transform: translateY(-1px); }
.btn-outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: var(--cream); }
.btn-outline-light { border-color: rgba(255,255,255,0.85); color: #fff; background: transparent; }
.btn-outline-light:hover { background: rgba(255,255,255,0.14); }
.btn-light { background: var(--paper); color: var(--ink); }
.btn-light:hover { background: #fff; transform: translateY(-1px); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { background: #17903F; transform: translateY(-1px); }

.link-more {
  font-weight: 600;
  font-size: 15px;
  color: var(--caramel-dark);
  border-bottom: 1.5px solid var(--walnut);
  padding-bottom: 3px;
  transition: border-color 0.2s;
}
.link-more:hover { border-color: var(--caramel-dark); }

/* ── Top bar ─────────────────────────────────────────────── */
.topbar {
  background: var(--ink);
  color: #CFC6B6;
  font-size: 13px;
  padding: 7px 0;
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.topbar a { color: #EDE6D8; font-weight: 500; }
.topbar a:hover { color: var(--walnut); }
.topbar .tb-right { display: flex; gap: 18px; align-items: center; }
@media (max-width: 640px) { .topbar .tb-loc { display: none; } }

/* ── Header ──────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(244, 239, 230, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo-wordmark { display: flex; flex-direction: column; gap: 4px; line-height: 1.1; }
.logo-designs {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--ink);
}
.logo-designs .amp { color: var(--caramel); font-style: italic; }
.logo-sub {
  font-size: 10.5px;
  letter-spacing: 3.4px;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 600;
}

.nav-links { display: flex; gap: 24px; }
.nav-links a {
  font-size: 14.5px;
  white-space: nowrap;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); border-color: var(--caramel); }

.nav-right { display: flex; align-items: center; gap: 16px; }

.lang-toggle { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; }
.lang-toggle button {
  background: none; border: none; cursor: pointer;
  font: inherit; color: var(--ink-faint); padding: 4px 2px;
}
.lang-toggle button.active { color: var(--ink); border-bottom: 2px solid var(--caramel); }
.lang-sep { color: var(--line); }

.btn-nav {
  padding: 11px 20px;
  font-size: 13.5px;
}

.hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 6px;
}
.hamburger span { width: 24px; height: 2px; background: var(--ink); transition: 0.25s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 10px 24px 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 13px 0; font-size: 16px; font-weight: 500; border-bottom: 1px solid var(--cream-deep); }
.mobile-menu .mm-cta { margin-top: 16px; display: flex; flex-direction: column; gap: 14px; }
.mobile-menu .mm-cta .btn { display: flex; justify-content: center; text-align: center; width: 100%; }
/* Language switch pinned to the top of the menu, centered (most visitors are on phones) */
.mobile-menu .lang-toggle {
  justify-content: center; gap: 12px;
  padding: 2px 0 14px; margin-bottom: 4px;
  border-bottom: 1px solid var(--cream-deep);
}
.mobile-menu .lang-toggle button { font-size: 15px; padding: 6px 8px; }

@media (max-width: 920px) {
  .nav-links, .nav-right .btn-nav, .nav-right .lang-toggle { display: none; }
  .hamburger { display: flex; }
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow-x: clip;
  min-height: 86vh;
  display: flex;
  align-items: center;
  color: #fff;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(24,20,15,0.82) 0%, rgba(24,20,15,0.55) 48%, rgba(24,20,15,0.22) 100%);
}
.hero-content { max-width: var(--wrap); margin: 0 auto; padding: 110px 24px; width: 100%; }
.hero .eyebrow { color: var(--walnut); }
.hero h1 {
  font-size: clamp(40px, 6vw, 68px);
  max-width: 13ch;
  color: #FBF8F2;
  margin-bottom: 22px;
}
.hero-sub { font-size: 19px; max-width: 52ch; color: rgba(251,248,242,0.85); margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-trust {
  margin-top: 54px;
  display: flex; flex-wrap: wrap; gap: 34px;
  font-size: 13.5px; letter-spacing: 1px; text-transform: uppercase;
  color: rgba(251,248,242,0.72);
}
.hero-trust span { display: flex; align-items: center; gap: 9px; }
.hero-trust svg { color: var(--walnut); }

/* ── Page hero (interior pages) ──────────────────────────── */
.page-hero {
  position: relative; isolation: isolate; color: #fff;
  padding: 110px 0 90px;
}
.page-hero .hero-bg, .page-hero .hero-overlay { border-radius: 0; }
.page-hero h1 { font-size: clamp(34px, 5vw, 54px); color: #FBF8F2; }
.page-hero .lead { color: rgba(251,248,242,0.85); max-width: 60ch; margin-top: 14px; }
.page-hero .eyebrow { color: var(--walnut); }

/* ── Sections ────────────────────────────────────────────── */
.section { padding: 118px 0; }
.section-tight { padding: 72px 0; }
.bg-paper { background: var(--paper); }
.bg-ink { background: var(--ink); color: var(--cream); }
.bg-ink h2 { color: #FBF8F2; }
.bg-ink p { color: #B8AE9C; }

.section-head { max-width: 640px; margin-bottom: 54px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4vw, 42px); margin-bottom: 16px; }
.section-head p { color: var(--ink-soft); font-size: 17.5px; }

/* ── Split content (image + text) ────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split.reverse .split-text { order: 2; }
.split.reverse .split-img  { order: 1; }
.split-text h2 { font-size: clamp(28px, 3.6vw, 38px); margin-bottom: 18px; }
.split-text p { color: var(--ink-soft); margin-bottom: 16px; }
.split-text ul { list-style: none; margin: 20px 0 26px; }
.split-text li {
  padding-left: 30px; position: relative; margin-bottom: 11px;
  color: var(--ink-soft); font-size: 15.5px;
}
.split-text li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 15px; height: 8px;
  border-left: 2.5px solid var(--caramel);
  border-bottom: 2.5px solid var(--caramel);
  transform: rotate(-45deg);
}
.split-img { position: relative; }
.split-img img {
  width: 100%; aspect-ratio: 4/3.4; object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.split-img::after {
  content: ""; position: absolute; z-index: -1;
  inset: 26px -26px -26px 26px;
  border: 1.5px solid var(--walnut);
  border-radius: var(--radius);
}
.split.reverse .split-img::after { inset: 26px 26px -26px -26px; }

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 44px; }
  .split.reverse .split-text { order: 1; }
  .split.reverse .split-img  { order: 2; }
  .split-img::after, .split.reverse .split-img::after { inset: 16px -14px -16px 14px; }
}

/* ── Stats strip ─────────────────────────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 28px;
  text-align: center;
}
.stats .num {
  font-family: var(--font-display);
  font-size: 44px; font-weight: 700; color: var(--caramel);
  line-height: 1.1;
}
.stats .lbl { font-size: 13.5px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--ink-faint); margin-top: 6px; }
.bg-ink .stats .lbl { color: #9C937F; }

/* ── Service cards ───────────────────────────────────────── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.card img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.card-body { padding: 24px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { font-size: 21px; margin-bottom: 9px; }
.card-body p { font-size: 15px; color: var(--ink-soft); flex: 1; }
.card-body .link-more { margin-top: 18px; align-self: flex-start; }

/* ── Feature grid (icon features) ────────────────────────── */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.feature {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
}
.feature .f-ico {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--cream-deep); color: var(--caramel-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.feature h3 { font-size: 18.5px; margin-bottom: 8px; }
.feature p { font-size: 14.5px; color: var(--ink-soft); }

/* ── Testimonials ────────────────────────────────────────── */
.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.quote {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  position: relative;
}
.quote::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 64px; line-height: 1;
  color: var(--walnut);
  position: absolute; top: 14px; right: 22px;
}
.quote p { font-size: 15px; color: var(--ink-soft); font-style: italic; margin-bottom: 18px; }
.quote .q-stars { color: var(--caramel); letter-spacing: 3px; font-size: 14px; margin-bottom: 12px; }
.quote .q-name { font-weight: 600; font-size: 14.5px; }
.quote .q-role { font-size: 13px; color: var(--ink-faint); }

/* ── Gallery ─────────────────────────────────────────────── */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 10px 22px;
  border: 1.5px solid var(--line);
  border-radius: 99px;
  background: transparent;
  font: 600 13.5px var(--font-body);
  letter-spacing: 0.4px;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--caramel); color: var(--ink); }
.filter-btn.active { background: var(--ink); border-color: var(--ink); color: var(--cream); }

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 18px;
}
.g-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--cream-deep);
  cursor: pointer;
}
.g-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.g-item:hover img { transform: scale(1.045); }
.g-item .g-tag {
  position: absolute; left: 12px; bottom: 12px;
  background: rgba(24,20,15,0.72);
  color: #EDE6D8;
  font-size: 11.5px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 99px;
}
.g-item.hidden { display: none; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(24,20,15,0.93);
  display: none;
  align-items: center; justify-content: center;
  padding: 4vh 4vw;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 92vh; border-radius: var(--radius); }
.lightbox .lb-close {
  position: absolute; top: 20px; right: 26px;
  background: none; border: none; color: #EDE6D8;
  font-size: 38px; cursor: pointer; line-height: 1;
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq { max-width: 780px; margin: 0 auto; }
.faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  padding: 0 24px;
}
.faq summary {
  font-family: var(--font-display);
  font-size: 18.5px; font-weight: 600;
  padding: 19px 30px 19px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 26px; font-weight: 400; color: var(--caramel);
  transition: transform 0.2s;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { color: var(--ink-soft); font-size: 15.5px; padding-bottom: 20px; }

/* ── CTA banner ──────────────────────────────────────────── */
.cta-banner {
  position: relative; isolation: isolate;
  text-align: center; color: #fff;
  padding: 110px 0;
}
.cta-banner .eyebrow { color: var(--walnut); }
.cta-banner h2 { font-size: clamp(30px, 4.4vw, 46px); color: #FBF8F2; margin-bottom: 14px; }
.cta-banner p { color: rgba(251,248,242,0.82); max-width: 55ch; margin: 0 auto 32px; }
.cta-banner .hero-actions { justify-content: center; }
/* Darker overlay here so the copy stays legible over the photo */
.cta-banner .hero-overlay {
  background: linear-gradient(100deg, rgba(24,20,15,0.95) 0%, rgba(24,20,15,0.70) 48%, rgba(24,20,15,0.38) 100%);
}

/* ── Contact / form ──────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info h2 { font-size: 30px; margin-bottom: 16px; }
.contact-info .ci-row {
  display: flex; gap: 15px; align-items: flex-start;
  padding: 15px 0; border-bottom: 1px solid var(--cream-deep);
  font-size: 15.5px;
}
.contact-info .ci-row svg { color: var(--caramel); flex-shrink: 0; margin-top: 3px; }
.contact-info .ci-row a { font-weight: 600; }
.contact-info .ci-row a:hover { color: var(--caramel-dark); }
.ci-label { font-size: 12px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--ink-faint); display: block; }

.quote-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 34px;
  box-shadow: var(--shadow-soft);
}
.quote-form h3 { font-size: 24px; margin-bottom: 6px; }
.quote-form .qf-sub { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 14px; }
.field label {
  display: block; font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.8px; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font: 15px var(--font-body);
  color: var(--ink);
  transition: border-color 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--caramel);
}
.field textarea { resize: vertical; min-height: 110px; }
.quote-form .btn { width: 100%; justify-content: center; margin-top: 8px; }
.form-note { font-size: 13px; color: var(--ink-faint); margin-top: 14px; text-align: center; }
.form-status { margin-top: 14px; font-size: 14.5px; font-weight: 600; text-align: center; display: none; }
.form-status.ok { display: block; color: #2E7D46; }
.form-status.err { display: block; color: #B03A2E; }

/* ── Areas served ────────────────────────────────────────── */
.areas { display: flex; flex-wrap: wrap; gap: 10px; }
.areas span {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 8px 18px;
  font-size: 14px; color: var(--ink-soft);
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: #B8AE9C;
  padding: 72px 0 0;
  font-size: 14.5px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 44px;
  padding-bottom: 52px;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer .logo-designs { color: #F4EFE6; }
.site-footer .logo-sub { color: #8A8172; }
.footer-brand p { margin-top: 16px; max-width: 34ch; }
.site-footer h4 {
  font: 600 12.5px var(--font-body);
  letter-spacing: 2px; text-transform: uppercase;
  color: #EDE6D8; margin-bottom: 18px;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 10px; }
.site-footer a:hover { color: var(--walnut); }
.footer-contact div { margin-bottom: 12px; }
.footer-contact .ci-label { color: #8A8172; }
.footer-bottom {
  border-top: 1px solid rgba(237,230,216,0.14);
  padding: 22px 0;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  font-size: 13px; color: #8A8172;
}

/* ── Sticky mobile action bar ────────────────────────────── */
.mobile-bar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: var(--ink);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
  box-shadow: 0 -6px 24px rgba(24,20,15,0.28);
}
.mobile-bar a {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 8px;
  border-radius: var(--radius);
  font-size: 14px; font-weight: 700;
}
.mobile-bar .mb-call { background: var(--caramel); color: #FBF7EF; }
.mobile-bar .mb-wa { background: var(--whatsapp); color: #fff; }
@media (max-width: 860px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 68px; }
}

/* ── Reveal animation ────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── Utility ─────────────────────────────────────────────── */
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 32px; }
.center { text-align: center; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

/* ============================================================
   2026 refresh components
   ============================================================ */

/* ── Hero: cleaner + soft curved bottom ──────────────────── */
.hero-overlay {
  background: linear-gradient(100deg, rgba(24,20,15,0.72) 0%, rgba(24,20,15,0.42) 46%, rgba(24,20,15,0.12) 100%);
}
.hero::after {
  content: "";
  position: absolute; left: -8%; right: -8%; bottom: -1px;
  height: 72px; z-index: 2; pointer-events: none;
  background: var(--cream);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
.hero-quiet {
  display: inline-flex; align-items: center; gap: 8px;
  color: #FBF8F2; font-weight: 600; font-size: 14.5px;
  border-bottom: 1.5px solid rgba(251,248,242,0.55);
  padding-bottom: 3px;
}
.hero-quiet:hover { border-color: #fff; }
.hero { text-align: center; }
.hero .hero-content { max-width: 900px; }
.hero h1 { max-width: none; margin-left: auto; margin-right: auto; }
.hero-actions { align-items: center; }
.hero .hero-actions { justify-content: center; }

/* quote text reads cleaner un-italic in sans */
.quote p { font-style: normal; }

/* ── Approach: overlay card + icon row ───────────────────── */
.approach-top {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
}
.approach-img { position: relative; }
.approach-img img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--radius);
}
.approach-card {
  position: relative;
  z-index: 2;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 42px 40px;
  margin-right: -64px;
  box-shadow: var(--shadow-soft);
}
.approach-card h2 { font-size: clamp(26px, 3.2vw, 38px); margin-bottom: 16px; }
.approach-card p { color: var(--ink-soft); margin-bottom: 20px; }
.approach-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 72px;
}
.approach-icons .feature { background: transparent; border: 0; padding: 0; text-align: center; }
.approach-icons .f-ico { margin: 0 auto 16px; }
@media (max-width: 820px) {
  .approach-top { grid-template-columns: 1fr; gap: 0; }
  .approach-img { order: -1; }
  .approach-card { margin: -48px 16px 0; }
  .approach-icons { grid-template-columns: 1fr; gap: 26px; margin-top: 48px; text-align: center; }
}

/* ── Projects accordion (hover-expand) ───────────────────── */
.accordion {
  display: flex;
  gap: 10px;
  height: 460px;
}
.acc-panel {
  position: relative;
  flex: 1;
  min-width: 0;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  transition: flex 0.55s cubic-bezier(.4,0,.2,1);
  text-decoration: none;
}
.acc-img {
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  height: 100%; width: 720px; max-width: none;
  object-fit: cover; object-position: center;
  z-index: 0;
}
.acc-panel::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(24,20,15,0.72), rgba(24,20,15,0) 55%);
  transition: background 0.4s;
}
.acc-panel:hover, .acc-panel:focus-visible { flex: 3.4; outline: none; }
.acc-label {
  position: relative; z-index: 2;
  color: #fff; padding: 24px 22px;
  font-family: var(--font-display); font-weight: 500; font-size: 21px;
  letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 10px;
  white-space: nowrap;
}
.acc-label svg { opacity: 0; transform: translateX(-6px); transition: 0.35s; }
.acc-panel:hover .acc-label svg, .acc-panel:focus-visible .acc-label svg { opacity: 1; transform: none; }
@media (max-width: 760px) {
  .accordion { flex-direction: column; height: auto; }
  .acc-panel { height: 128px; flex: auto; }
  .acc-panel:hover, .acc-panel:focus-visible { flex: auto; }
  .acc-label svg { opacity: 1; transform: none; }
}

/* ── Photo carousel ──────────────────────────────────────── */
.carousel { position: relative; }
.carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-item {
  flex: 0 0 auto;
  width: clamp(260px, 34vw, 420px);
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-deep);
}
.carousel-item img { width: 100%; aspect-ratio: 3/2; object-fit: cover; display: block; }
.carousel-nav { display: flex; gap: 10px; justify-content: flex-end; margin-top: 18px; }
.carousel-nav button {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1.5px solid var(--line); background: var(--paper);
  color: var(--ink); cursor: pointer; font-size: 20px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.carousel-nav button:hover { border-color: var(--caramel); color: var(--caramel-dark); }

/* ── Testimonials slider + drifting dots ─────────────────── */
.testimonials-sec { position: relative; overflow: hidden; background: var(--cream-deep); }
.tdrift {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(var(--walnut) 1.6px, transparent 1.8px);
  background-size: 36px 36px;
  opacity: 0.4;
  animation: tdrift 26s linear infinite;
}
@keyframes tdrift { from { background-position: 0 0; } to { background-position: 360px 180px; } }
.testimonials-sec .wrap { position: relative; z-index: 1; }
.tslider { display: flex; align-items: center; gap: 18px; max-width: 900px; margin: 0 auto; }
.tviewport { overflow: hidden; flex: 1; }
.ttrack { display: flex; transition: transform 0.5s cubic-bezier(.4,0,.2,1); }
.tquote {
  flex: 0 0 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px 46px;
  text-align: center;
}
.tquote .q-stars { color: var(--caramel); letter-spacing: 3px; font-size: 15px; margin-bottom: 14px; }
.tquote p { font-size: 19px; line-height: 1.55; color: var(--ink); margin-bottom: 20px; }
.tquote .q-name { font-weight: 600; }
.tquote .q-role { font-size: 13.5px; color: var(--ink-faint); }
.tarrow {
  flex: 0 0 auto;
  width: 48px; height: 48px; border-radius: 50%;
  border: 1.5px solid var(--line); background: var(--paper);
  color: var(--ink); cursor: pointer; font-size: 22px; line-height: 1;
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.tarrow:hover { border-color: var(--caramel); color: var(--caramel-dark); }
.tdots-nav { display: flex; gap: 9px; justify-content: center; margin-top: 26px; }
.tdots-nav button {
  width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0;
  background: var(--walnut); opacity: 0.5; cursor: pointer; transition: 0.2s;
}
.tdots-nav button.active { opacity: 1; background: var(--caramel); transform: scale(1.25); }
@media (max-width: 620px) {
  .tarrow { display: none; }
  .tquote { padding: 34px 26px; }
  .tquote p { font-size: 17px; }
}
@media (prefers-reduced-motion: reduce) {
  .tdrift { animation: none; }
  .ttrack { transition: none; }
}

/* ── Section divider: slim dark band with brand mark ─────── */
.strip-divider {
  height: clamp(92px, 11vw, 132px);
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}
.strip-mark {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: rgba(241, 239, 234, 0.26);
}
.strip-mark .amp { color: var(--caramel); }

/* ── Legal / privacy page ────────────────────────────────── */
.legal { max-width: 760px; }
.legal h1 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 6px; }
.legal-updated { color: var(--ink-faint); font-size: 14px; margin-bottom: 30px; }
.legal h2 { font-size: 20px; margin: 34px 0 10px; }
.legal p { color: var(--ink-soft); margin-bottom: 14px; }
.legal ul { margin: 0 0 14px 20px; color: var(--ink-soft); }
.legal li { margin-bottom: 7px; }
.legal a { color: var(--caramel-dark); border-bottom: 1.5px solid var(--walnut); }
.legal a:hover { border-color: var(--caramel-dark); }
.legal-note { font-size: 13.5px; color: var(--ink-faint); margin-top: 26px; }
.footer-bottom a { color: #8A8172; }
.footer-bottom a:hover { color: var(--walnut); }
.footer-credit {
  text-align: center; padding: 0 0 22px;
  font-size: 12.5px; color: #6f675b;
}
.footer-credit a { color: #9a9080; border-bottom: 1px solid rgba(237,230,216,0.22); }
.footer-credit a:hover { color: var(--walnut); }
