:root {
  --accent: #7e6540;
  --accent-dark: #6a5433;
  --ink: #1d1b18;
  --cream: #f4efe7;
  --cream-2: #ece5d8;
  --muted: #5c574e;
  --muted-2: #6b645b;
  --line: #e7e0d2;
  --maxw: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--accent); color: #fff; }
img { max-width: 100%; }
.page { position: relative; overflow-x: hidden; background: var(--cream); }
.container { max-width: var(--maxw); margin: 0 auto; padding-left: clamp(20px, 5vw, 72px); padding-right: clamp(20px, 5vw, 72px); }
.accent { color: var(--accent); }
.muted { color: var(--muted-2); }
.view[hidden] { display: none; }

/* ---------- Accessibility ---------- */
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 300; background: var(--ink); color: #fff; padding: 10px 18px; border-radius: 4px; font-size: 14px; font-weight: 600; text-decoration: none; transition: top .15s ease; }
.skip-link:focus { top: 12px; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 2px; }
.btn:focus-visible, .btn-accent:focus-visible, .btn-submit:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
[tabindex="-1"]:focus { outline: none; }

@keyframes llRise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes llFade { from { opacity: 0; } to { opacity: 1; } }

/* ---------- Shared typography ---------- */
.eyebrow {
  margin: 0 0 16px;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.eyebrow-light { color: #e7d9bf; }
.section-title {
  margin: 0;
  font-family: 'Marcellus', serif;
  font-weight: 400;
  font-size: clamp(28px, 3.8vw, 42px);
  line-height: 1.12;
  color: var(--ink);
}
.section-lead {
  margin: 18px 0 0;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--muted);
}
.section-head { max-width: 680px; margin-bottom: 54px; }
.section-head.center { text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; }
.section-lead.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-lead.narrow { max-width: 600px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 2px;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}
.btn-accent { background: var(--accent); color: #fff; font-size: 14px; letter-spacing: 0.02em; padding: 11px 22px; }
.btn-accent:hover { background: var(--accent-dark); }
.btn-lg { font-size: 15.5px; padding: 16px 30px; }
.btn-lg:hover { transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 239, 231, 0.9);
  backdrop-filter: saturate(130%) blur(12px);
  -webkit-backdrop-filter: saturate(130%) blur(12px);
  border-bottom: 1px solid #e3dccd;
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px clamp(18px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.brand-mark { height: 40px; width: auto; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: 'Marcellus', serif; font-size: 22px; letter-spacing: 0.16em; color: var(--ink); }
.brand-name.light { color: #fff; font-size: 20px; }
.brand-tag { font-size: 9px; letter-spacing: 0.34em; color: #6f665a; margin-top: 4px; }
.brand-tag.dark { color: #8a8170; font-size: 8.5px; letter-spacing: 0.32em; }

.nav-desktop { display: flex; align-items: center; gap: 34px; }
.nav-link { text-decoration: none; color: #4a463f; font-size: 14.5px; font-weight: 500; cursor: pointer; transition: color .2s; }
.nav-link:hover { color: var(--ink); }
.nav-link.active { color: var(--accent); font-weight: 700; }
.header-cta { display: flex; align-items: center; gap: 20px; }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid #d8d1c2;
  border-radius: 2px;
  cursor: pointer;
  color: var(--ink);
}
.mobile-panel { display: flex; flex-direction: column; gap: 2px; padding: 8px 18px 20px; border-top: 1px solid #e3dccd; background: var(--cream); }
.mobile-panel[hidden] { display: none; }
.mobile-link { text-decoration: none; color: var(--ink); font-size: 16px; padding: 13px 6px; border-bottom: 1px solid #ece5d7; cursor: pointer; }
.mobile-cta { justify-content: center; text-align: center; margin-top: 12px; font-size: 15px; padding: 14px; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: min(86vh, 820px); display: flex; align-items: center; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0; transition: opacity .8s ease; }
.hero-slide.is-active { opacity: 1; }
.hero-scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,18,15,0.7) 0%, rgba(20,18,15,0.32) 58%, rgba(20,18,15,0.08) 100%); }
.hero-content { position: relative; z-index: 2; max-width: var(--maxw); width: 100%; margin: 0 auto; padding: clamp(60px, 9vw, 120px) clamp(20px, 5vw, 72px); }
.hero-copy { max-width: 640px; }
.hero-copy .eyebrow { animation: llFade .8s ease both; }
.hero-title { margin: 0; font-family: 'Marcellus', serif; font-weight: 400; color: #fff; font-size: clamp(34px, 5.4vw, 62px); line-height: 1.06; letter-spacing: -0.01em; animation: llRise .9s ease both; }
.hero-sub { margin: 26px 0 0; max-width: 520px; font-size: clamp(16px, 1.5vw, 19px); line-height: 1.6; color: #ece6da; animation: llRise 1s ease .08s both; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; animation: llRise 1.05s ease .16s both; }
.hero-badge { display: flex; align-items: center; gap: 10px; margin-top: 26px; font-size: 13.5px; color: #e7d9bf; animation: llFade 1.2s ease .3s both; }
.hero-dots { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 9px; }
.hero-dot { width: 10px; height: 10px; border-radius: 50%; border: none; cursor: pointer; padding: 0; background: rgba(255,255,255,0.4); transition: background .2s; }
.hero-dot.active { background: #fff; }

/* ---------- Trust band ---------- */
.trust { background: var(--ink); color: var(--cream); }
.trust-inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(40px, 5vw, 58px) clamp(20px, 5vw, 72px); display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 30px 24px; }
.trust-item { text-align: center; }
.trust-num { font-family: 'Marcellus', serif; font-size: clamp(36px, 4.4vw, 52px); color: #fff; line-height: 1; }
.trust-label { margin-top: 10px; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: #b6ad9c; }

/* ---------- Products ---------- */
.products { padding: clamp(64px, 8vw, 120px) 0; scroll-margin-top: 90px; }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.product-card { background: #fff; border: 1px solid var(--line); border-radius: 4px; overflow: hidden; display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s; }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 22px 50px -28px rgba(29,27,24,0.4); }
.product-media { height: 150px; overflow: hidden; background: var(--cream-2); }
.product-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.product-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.product-title { margin: 0 0 8px; font-family: 'Marcellus', serif; font-weight: 400; font-size: 20px; color: var(--ink); }
.product-desc { margin: 0 0 12px; font-size: 14px; line-height: 1.5; color: var(--muted); flex: 1; }
.product-benefit { display: flex; align-items: center; gap: 9px; padding-top: 12px; border-top: 1px solid #efe9dc; font-size: 13.5px; font-weight: 600; color: var(--ink); }
.product-benefit svg { flex-shrink: 0; }
.product-cta { margin-top: 14px; justify-content: center; padding: 10px; font-size: 14px; }

/* ---------- How it works ---------- */
.how { background: var(--cream-2); }
.how .container { padding-top: clamp(64px, 8vw, 110px); padding-bottom: clamp(64px, 8vw, 110px); }
.how-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(18px, 2vw, 32px); max-width: 980px; margin: 0 auto; }
.how-step { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.how-num { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid var(--ink); color: var(--ink); font-family: 'Marcellus', serif; font-size: 20px; }
.how-label { font-size: 16px; font-weight: 600; color: var(--ink); }
.how-text { font-size: 14px; line-height: 1.5; color: var(--muted-2); max-width: 190px; }

/* ---------- Why ---------- */
.why { scroll-margin-top: 90px; }
.why-grid { padding-top: clamp(64px, 8vw, 110px); padding-bottom: clamp(64px, 8vw, 110px); display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(40px, 5vw, 72px); align-items: center; }
.why-media { border-radius: 4px; overflow: hidden; min-height: 380px; box-shadow: 0 30px 60px -34px rgba(29,27,24,0.5); }
.why-media img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; display: block; }
.why-lead { margin-bottom: 34px; max-width: 520px; font-size: 17px; }
.why-title { margin-bottom: 22px; }
.why-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 26px 28px; }
.why-feature-title { margin: 14px 0 7px; font-size: 17px; font-weight: 600; color: var(--ink); }
.why-feature-text { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--muted-2); }

/* ---------- Gallery ---------- */
.gallery { background: var(--cream-2); }
.gallery .container { padding-top: clamp(64px, 8vw, 110px); padding-bottom: clamp(64px, 8vw, 110px); }
.gallery .section-head { max-width: 640px; margin-bottom: 40px; }
.gallery-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; grid-auto-rows: 205px; gap: 14px; }
.gallery-item { border-radius: 4px; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform .4s; }
.gallery-item img:hover { transform: scale(1.04); }
.gallery-item img { cursor: zoom-in; }
.gallery-tall { grid-row: span 2; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: clamp(16px, 4vw, 56px); background: rgba(23, 21, 18, 0.94); opacity: 0; visibility: hidden; transition: opacity .28s ease, visibility .28s ease; }
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox-figure { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 16px; max-width: 100%; max-height: 100%; }
.lightbox-img { max-width: min(1100px, 92vw); max-height: 80vh; width: auto; height: auto; object-fit: contain; border-radius: 4px; box-shadow: 0 24px 70px rgba(0,0,0,0.5); transform: scale(.96); transition: transform .28s ease; }
.lightbox.is-open .lightbox-img { transform: scale(1); }
.lightbox-caption { margin: 0; font-size: 13px; letter-spacing: 0.04em; color: #cfc6b5; text-align: center; }
.lightbox-btn { position: absolute; display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,0.25); background: rgba(255,255,255,0.08); color: #f4efe7; border-radius: 50%; cursor: pointer; transition: background .2s, border-color .2s; }
.lightbox-btn:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.55); }
.lightbox-close { top: clamp(14px, 3vw, 28px); right: clamp(14px, 3vw, 28px); }
.lightbox-prev { left: clamp(10px, 3vw, 28px); top: 50%; transform: translateY(-50%); }
.lightbox-next { right: clamp(10px, 3vw, 28px); top: 50%; transform: translateY(-50%); }
body.lb-open { overflow: hidden; }

/* ---------- Services ---------- */
.services { padding: clamp(64px, 8vw, 120px) 0; scroll-margin-top: 90px; }
.service-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 18px; }
.service-card { background: #fff; border: 1px solid var(--line); border-radius: 4px; padding: 22px 20px; transition: border-color .2s; }
.service-card:hover { border-color: var(--accent); }
.service-title { margin: 14px 0 6px; font-family: 'Marcellus', serif; font-weight: 400; font-size: 18px; color: var(--ink); }
.service-text { margin: 0; font-size: 13px; line-height: 1.5; color: var(--muted-2); }
.cert-band { margin-top: 60px; padding-top: 42px; border-top: 1px solid #e3dccd; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(32px, 6vw, 80px); }
.cert-label { font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: #6f665a; }
.cert-item { display: flex; align-items: center; gap: 14px; }
.cert-item img { height: 46px; width: auto; opacity: 0.78; }
.cert-item span { font-size: 14px; color: var(--muted); font-weight: 500; }
.cert-band:has(.cert-text-item) { gap: 10px 18px; }
.cert-text-item { font-size: 14px; color: var(--ink); font-weight: 600; }
.cert-text-item:not(:first-child)::before { content: "·"; margin-right: 18px; color: #6f665a; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.cta-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,18,15,0.52), rgba(20,18,15,0.74)); }
.cta-content { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; text-align: center; padding: clamp(40px, 5vw, 68px) clamp(20px, 5vw, 40px); }
.cta-title { margin: 0; font-family: 'Marcellus', serif; font-weight: 400; color: #fff; font-size: clamp(28px, 4.4vw, 48px); line-height: 1.12; }
.cta-sub { margin: 20px auto 0; max-width: 560px; font-size: 17px; line-height: 1.6; color: #e6e0d4; }
.cta-content .btn-lg { margin-top: 34px; }
.cta-fineprint { margin: 18px 0 0; font-size: 12.5px; color: rgba(230,224,212,0.55); }

/* ---------- Contact ---------- */
.contact { padding: clamp(64px, 8vw, 120px) 0; scroll-margin-top: 90px; }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(40px, 5vw, 72px); align-items: start; }
.contact-lead { margin-bottom: 34px; max-width: 460px; font-size: 17px; }
.contact-methods { display: flex; flex-direction: column; gap: 20px; margin-bottom: 34px; }
.contact-method { display: flex; align-items: center; gap: 16px; text-decoration: none; color: var(--ink); }
.contact-method-static { cursor: default; align-items: flex-start; }
.contact-ic { display: flex; align-items: center; justify-content: center; width: 46px; height: 46px; border: 1px solid #e0d8ca; border-radius: 50%; flex-shrink: 0; }
.contact-k { display: block; font-size: 12.5px; color: #6f665a; letter-spacing: 0.04em; }
.contact-v { font-size: 17px; font-weight: 600; line-height: 1.4; }
.contact-addr { font-weight: 400; color: var(--muted-2); font-size: 14.5px; }
.contact-assurance { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--muted-2); }
.contact-assurance svg { flex-shrink: 0; }

/* ---------- Form ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: clamp(28px, 3.5vw, 44px); box-shadow: 0 30px 70px -42px rgba(29,27,24,0.45); }
.lead-form { display: flex; flex-direction: column; gap: 18px; }
.field-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 18px; }
.field label { display: block; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 7px; font-weight: 600; }
.field .optional { font-weight: 400; letter-spacing: 0; color: #a99f8c; }
.field input, .field textarea { width: 100%; padding: 13px 14px; border: 1px solid #d9d2c5; border-radius: 3px; background: #fdfcfa; font-family: inherit; font-size: 15px; color: var(--ink); outline: none; transition: border-color .15s ease; }
.field textarea { resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--accent); }
.field input.invalid, .field textarea.invalid { border-color: #b23b2e; }
.field-error { color: #b23b2e; font-size: 12.5px; margin-top: 5px; min-height: 1px; }
.consent { display: flex; gap: 11px; align-items: flex-start; font-size: 13.5px; color: var(--muted-2); line-height: 1.45; cursor: pointer; }
.consent input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--accent); flex-shrink: 0; }
.consent-error { color: #b23b2e; }
.form-submit-error { margin-top: 4px; padding: 11px 14px; border: 1px solid #e3b3ab; border-radius: 3px; background: #fbeeec; color: #8a2e23; font-size: 13.5px; line-height: 1.5; }
.btn-submit { margin-top: 6px; width: 100%; background: var(--ink); color: #fff; font-size: 16px; font-weight: 600; padding: 17px; border-radius: 3px; justify-content: center; transition: background .2s ease; }
.btn-submit:hover { background: var(--accent); }
.btn-submit:disabled { opacity: .65; cursor: not-allowed; }
.form-fineprint { margin: 12px 0 0; text-align: center; font-size: 12.5px; color: #a99f8c; }

/* ---------- Coverage ---------- */
.coverage { background: var(--cream-2); scroll-margin-top: 90px; }
.coverage-grid { padding-top: clamp(64px, 8vw, 110px); padding-bottom: clamp(64px, 8vw, 110px); display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(40px, 5vw, 64px); align-items: center; }
.coverage-lead { margin-bottom: 28px; max-width: 480px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.chip { font-size: 14px; color: var(--ink); background: #fff; border: 1px solid #e0d8ca; padding: 9px 16px; border-radius: 30px; }
.coverage-addr { display: flex; align-items: flex-start; gap: 14px; font-size: 15px; line-height: 1.55; color: var(--ink); }
.coverage-addr svg { flex-shrink: 0; margin-top: 2px; }
.coverage-addr strong { font-weight: 600; }
.map-frame { border-radius: 6px; overflow: hidden; box-shadow: 0 30px 60px -38px rgba(29,27,24,0.5); border: 1px solid #ddd5c6; }
.map-frame iframe { width: 100%; height: 420px; border: 0; display: block; filter: grayscale(0.2) contrast(1.02); }
.map-frame-sm iframe { height: 280px; }

/* ---------- About ---------- */
.about-hero { position: relative; overflow: hidden; background: var(--ink); }
.about-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.32; }
.about-hero-content { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; padding: clamp(70px, 9vw, 120px) clamp(20px, 5vw, 72px); }
.about-hero-title { margin: 0; font-family: 'Marcellus', serif; font-weight: 400; color: #fff; font-size: clamp(32px, 5vw, 56px); line-height: 1.08; max-width: 680px; }
.about-hero-sub { margin: 26px 0 0; max-width: 620px; font-size: clamp(16px, 1.5vw, 18px); line-height: 1.65; color: #ece6da; }
.about-feature { padding-top: clamp(64px, 8vw, 110px); padding-bottom: clamp(64px, 8vw, 110px); display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(40px, 5vw, 72px); align-items: center; }
.about-feature .section-title { margin-bottom: 22px; }
.about-feature .section-lead { margin-top: 0; max-width: 520px; font-size: 17px; }
.about-carousel { position: relative; border-radius: 6px; overflow: hidden; aspect-ratio: 9 / 16; width: 100%; max-width: calc(460px / 3 * 1.75); margin: 0 auto; box-shadow: 0 30px 60px -34px rgba(29,27,24,0.5); }
.about-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0; pointer-events: none; transition: opacity .8s ease; }
.about-slide.is-active { opacity: 1; pointer-events: auto; cursor: zoom-in; }
.about-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.85); border: 1px solid #d8d1c2; color: var(--ink); font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.about-prev { left: 14px; }
.about-next { right: 14px; }
.about-badges { background: var(--ink); color: var(--cream); }
.about-badges-inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(48px, 5vw, 64px) clamp(20px, 5vw, 72px); display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px 24px; }
.about-badge { text-align: center; }
.about-badge-t { font-family: 'Marcellus', serif; font-size: 18px; color: #fff; }
.about-badge-s { margin-top: 8px; font-size: 13px; color: #b6ad9c; }
.about-close { max-width: 900px; margin: 0 auto; padding: clamp(56px, 7vw, 90px) clamp(20px, 5vw, 72px); text-align: center; }
.about-close .section-title { margin-bottom: 18px; font-size: clamp(26px, 3.4vw, 38px); }
.about-close .btn-lg { margin-top: 34px; }

/* ---------- Thank you ---------- */
.thankyou { min-height: 60vh; display: flex; align-items: center; justify-content: center; padding: clamp(60px, 9vw, 120px) clamp(20px, 5vw, 40px); }
.thankyou-inner { max-width: 640px; text-align: center; }
.thankyou-check { display: inline-flex; align-items: center; justify-content: center; width: 84px; height: 84px; border-radius: 50%; border: 2px solid var(--accent); margin-bottom: 28px; }
.thankyou-title { margin: 0 0 14px; font-family: 'Marcellus', serif; font-weight: 400; font-size: clamp(28px, 4vw, 44px); line-height: 1.12; color: var(--ink); }
.thankyou-sub { margin: 0 auto 36px; max-width: 460px; font-size: 17px; line-height: 1.6; color: var(--muted); }
.thankyou-card { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 30px 28px; text-align: left; max-width: 440px; margin: 0 auto 34px; box-shadow: 0 20px 50px -36px rgba(29,27,24,0.4); }
.thankyou-card-label { margin: 0 0 18px; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: #6f665a; font-weight: 600; }
.thankyou-steps { display: flex; flex-direction: column; gap: 16px; }
.thankyou-step { display: flex; align-items: center; gap: 14px; }
.thankyou-step-n { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--accent); color: var(--accent); font-family: 'Marcellus', serif; font-size: 14px; flex-shrink: 0; }
.thankyou-step span:last-child { font-size: 15.5px; color: var(--ink); }
.thankyou-back { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; color: var(--ink); font-weight: 600; font-size: 15px; border-bottom: 1.5px solid var(--accent); padding-bottom: 4px; cursor: pointer; }

/* ---------- Privacy ---------- */
.privacy-inner { max-width: 820px; margin: 0 auto; padding: clamp(56px, 7vw, 100px) clamp(20px, 5vw, 40px); }
.privacy-title { margin: 0 0 8px; font-family: 'Marcellus', serif; font-weight: 400; font-size: clamp(30px, 4.4vw, 46px); color: var(--ink); }
.privacy-updated { margin: 0 0 44px; font-size: 14px; color: #6f665a; }
.privacy-intro { display: flex; flex-direction: column; gap: 14px; margin: 0 0 44px; }
.privacy-intro p { margin: 0; font-size: 16px; line-height: 1.7; color: var(--muted); }
.privacy-sections { display: flex; flex-direction: column; gap: 34px; }
.privacy-h { margin: 0 0 10px; font-family: 'Marcellus', serif; font-weight: 400; font-size: 21px; color: var(--ink); }
.privacy-sections p { margin: 0; font-size: 16px; line-height: 1.65; color: var(--muted); }
.privacy-body > * + * { margin-top: 14px; }
.privacy-body h3 { margin-top: 26px; margin-bottom: 0; font-family: 'Hanken Grotesk', sans-serif; font-weight: 700; font-size: 15px; letter-spacing: 0.01em; color: var(--ink); }
.privacy-body ul, .privacy-body ol { margin: 0; padding-left: 20px; display: flex; flex-direction: column; gap: 8px; }
.privacy-body li { font-size: 16px; line-height: 1.6; color: var(--muted); }
.privacy-body strong { color: var(--ink); font-weight: 600; }
.privacy-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.privacy-body a:hover { color: var(--accent-dark); }
.privacy-footer { margin-top: 44px; padding-top: 28px; border-top: 1px solid #e3dccd; font-size: 15px; line-height: 1.6; color: var(--muted-2); }
.privacy-footer a { color: var(--muted-2); text-decoration: underline; text-underline-offset: 2px; }
.privacy-footer a:hover { color: var(--accent); }

/* ---------- Contact page ---------- */
.contactpage { padding-top: clamp(56px, 7vw, 100px); padding-bottom: clamp(56px, 7vw, 100px); }
.contactpage-head { max-width: 560px; margin-bottom: 48px; }
.contactpage-title { margin: 0 0 16px; font-family: 'Marcellus', serif; font-weight: 400; font-size: clamp(30px, 4.4vw, 48px); line-height: 1.08; color: var(--ink); }
.contactpage-head .section-lead { margin-top: 0; font-size: 17px; }
.contactpage-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(40px, 5vw, 64px); align-items: start; }
.contactpage-aside { display: flex; flex-direction: column; gap: 24px; }
.contactpage-aside .contact-methods { margin-bottom: 0; }

/* ---------- Footer ---------- */
.site-footer { background: #161412; color: #cabfac; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(54px, 6vw, 80px) clamp(20px, 5vw, 72px) 40px; display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 44px 32px; }
.footer-brand { min-width: 220px; }
.footer-brand-row { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-mark { height: 38px; width: auto; }
.footer-blurb { margin: 0 0 18px; font-size: 14.5px; line-height: 1.6; color: #9a9080; max-width: 280px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.footer-contact a { text-decoration: none; color: #9a9080; transition: color .2s; }
.footer-contact a:hover { color: #fff; }
.footer-contact span { color: #9a9080; }
.footer-heading { margin: 0 0 18px; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: #fff; font-weight: 600; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { text-decoration: none; color: #9a9080; font-size: 14.5px; cursor: pointer; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #2a2620; }
.footer-bottom span { display: block; max-width: var(--maxw); margin: 0 auto; padding: 22px clamp(20px, 5vw, 72px); text-align: center; font-size: 13px; color: #7e7666; }

/* ---------- Cookie consent ---------- */
.cookie-consent { position: fixed; left: 0; right: 0; bottom: 0; z-index: 150; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 28px; padding: 16px clamp(20px, 5vw, 48px); background: rgba(29,27,24,0.97); box-shadow: 0 -6px 24px rgba(0,0,0,0.25); }
.cookie-text { margin: 0; max-width: 720px; font-size: 13.5px; line-height: 1.55; color: #e7e0d2; }
.cookie-text a { color: #d8c39a; text-decoration: underline; text-underline-offset: 2px; }
.cookie-text a:hover { color: #fff; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-consent .btn { padding: 10px 20px; font-size: 13.5px; }
.cookie-reject { background: transparent; color: #f4efe7; border: 1px solid rgba(255,255,255,0.4); }
.cookie-reject:hover { border-color: #fff; }
@media (max-width: 600px) { .cookie-actions { width: 100%; } .cookie-actions .btn { flex: 1; justify-content: center; } }

/* ---------- WhatsApp FAB ---------- */
.whatsapp-fab { position: fixed; bottom: 24px; right: 24px; z-index: 60; display: flex; align-items: center; justify-content: center; width: 60px; height: 60px; background: #25d366; border-radius: 50%; box-shadow: 0 4px 20px rgba(37,211,102,0.5), 0 2px 8px rgba(0,0,0,0.18); transition: transform .2s, box-shadow .2s; }
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.65), 0 4px 12px rgba(0,0,0,0.22); }

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .nav-desktop, .header-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .product-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 150px; }
  .gallery-tall { grid-row: span 2; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-copy .eyebrow, .hero-title, .hero-sub, .hero-actions, .hero-badge { animation: none; }
  .hero-slide, .about-slide { transition: none; }
  .lightbox, .lightbox-img { transition: opacity .01s; }
  .lightbox-img { transform: none; }
  .lightbox.is-open .lightbox-img { transform: none; }
}
