/* The Kape — editorial modest luxury
   Palette: travertine + espresso, restrained gold hairlines only.
*/

:root {
  --bg: #FAF6EF;
  --surface: #FFFFFF;
  --text: #18140F;
  --muted: #8C8170;
  --primary: #18140F;
  --secondary: #6E5A43;
  --accent: #B08D57;
  --border: #E7DFD2;
  --focus: #6E5A43;

  --font-display: "Cormorant Garamond", "Cormorant", "EB Garamond", Georgia, serif;
  --font-body: "Inter", "Helvetica Neue", system-ui, sans-serif;

  --max: 1440px;
  --gutter: 32px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--text); }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
}
img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--focus); outline-offset: 3px; border-radius: 1px;
}

/* ── Typography ───────────────────────────── */
.display { font-family: var(--font-display); font-weight: 500; line-height: 1.02; letter-spacing: -0.01em; }
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
}
.lede { font-family: var(--font-display); font-size: 26px; line-height: 1.35; color: var(--text); font-weight: 400; font-style: italic; }

/* ── Layout ───────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: 88px 0; }
.section--lg { padding: 120px 0; }

/* ── Nav ───────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: saturate(1.1) blur(10px);
  -webkit-backdrop-filter: saturate(1.1) blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-bar {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  height: 76px;
}
.nav-links { display: flex; gap: 28px; }
.nav-link {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500;
  padding: 8px 0; position: relative;
  color: var(--text);
}
.nav-link[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--accent);
}
.nav-link:hover { color: var(--secondary); }
.nav-wordmark { font-family: var(--font-display); font-size: 22px; letter-spacing: 0.35em; font-weight: 500; }
.nav-right { display: flex; justify-content: flex-end; align-items: center; gap: 18px; }
.nav-utility { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.nav-utility:hover { color: var(--text); }

/* ── Buttons ───────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500;
  border: 1px solid var(--text);
  background: var(--text); color: var(--bg);
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .15s ease;
}
.btn:hover { background: var(--secondary); border-color: var(--secondary); }
.btn:active { transform: translateY(1px); }
.btn--ghost { background: transparent; color: var(--text); }
.btn--ghost:hover { background: var(--text); color: var(--bg); }
.btn--sm { padding: 10px 18px; font-size: 10px; }
.btn .arrow { font-family: var(--font-display); font-size: 14px; line-height: 1; transform: translateY(-1px); }

.linkish {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--text);
}
.linkish:hover { color: var(--secondary); border-color: var(--secondary); }

/* ── Hero ───────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
}
.hero-image {
  position: relative;
  background: var(--border);
  overflow: hidden;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 70%, rgba(24,20,15,0.05));
}
.hero-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 88px;
  position: relative;
}
.hero-text h1 {
  font-size: clamp(54px, 6vw, 96px);
  margin: 24px 0 28px;
  font-style: italic;
}
.hero-text h1 .roman { font-style: normal; }
.hero-text p { max-width: 460px; color: var(--secondary); margin-bottom: 40px; font-size: 16px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta {
  position: absolute; bottom: 36px; left: 88px; right: 88px;
  display: flex; justify-content: space-between; align-items: end;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
}
.hero-meta-r { text-align: right; }

/* ── Strip (current collections) ───────────────────────────── */
.strip {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.strip-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.strip-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-right: 1px solid var(--border);
  background: var(--border);
}
.strip-card:last-child { border-right: 0; }
.strip-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s ease; }
.strip-card:hover img { transform: scale(1.04); }
.strip-card-inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px;
  color: #fff;
  background: linear-gradient(to top, rgba(24,20,15,0.7) 0%, rgba(24,20,15,0.0) 55%);
}
.strip-card .eyebrow { color: rgba(255,255,255,0.85); margin-bottom: 8px; }
.strip-card h3 { font-family: var(--font-display); font-size: 28px; line-height: 1.1; font-weight: 500; }

/* ── Product grid ───────────────────────────── */
.products-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px 28px;
}
.products-grid--3 { grid-template-columns: repeat(3, 1fr); }
.product-card {
  display: block; cursor: pointer;
  text-align: left;
}
.product-card .ph {
  aspect-ratio: 3/4; background: var(--border); overflow: hidden; margin-bottom: 16px;
}
.product-card .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.product-card:hover .ph img { transform: scale(1.03); }
.product-card .title { font-family: var(--font-display); font-size: 20px; font-weight: 500; line-height: 1.2; }
.product-card .meta { font-size: 12px; color: var(--muted); margin-top: 4px; letter-spacing: 0.04em; }
.product-card .price { font-size: 13px; margin-top: 8px; color: var(--text); letter-spacing: 0.04em; }

/* ── Section header ───────────────────────────── */
.section-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: end;
  margin-bottom: 56px; padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.section-head h2 {
  font-family: var(--font-display); font-weight: 500; font-size: clamp(40px, 4.6vw, 64px); line-height: 1.05;
}
.section-head h2 em { font-style: italic; color: var(--secondary); }
.section-head .eyebrow { margin-bottom: 16px; display: block; }
.section-head p { color: var(--secondary); max-width: 480px; font-size: 15px; }
.section-head .right { display: flex; justify-content: flex-end; align-items: end; }

/* ── Craft teaser ───────────────────────────── */
.craft-teaser {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center;
}
.craft-teaser-img { aspect-ratio: 4/5; background: var(--border); overflow: hidden; }
.craft-teaser-img img { width: 100%; height: 100%; object-fit: cover; }
.craft-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 40px; margin-top: 40px; }
.craft-pillar h4 { font-family: var(--font-display); font-size: 22px; margin-bottom: 6px; font-weight: 500; }
.craft-pillar p { font-size: 14px; color: var(--secondary); }
.craft-pillar .num {
  font-family: var(--font-display); font-size: 13px; color: var(--accent);
  display: block; margin-bottom: 6px;
}

/* ── Showroom band ───────────────────────────── */
.showroom {
  background: var(--text); color: var(--bg);
  display: grid; grid-template-columns: 1.1fr 1fr;
}
.showroom-left { padding: 96px 88px; }
.showroom-left h2 { font-family: var(--font-display); font-size: clamp(40px, 4.6vw, 64px); line-height: 1.05; margin-bottom: 24px; font-weight: 500; }
.showroom-left h2 em { font-style: italic; color: rgba(176, 141, 87, 0.95); }
.showroom-left p { color: rgba(250, 246, 239, 0.75); margin-bottom: 28px; max-width: 440px; }
.showroom-meta { font-size: 13px; line-height: 1.9; color: rgba(250, 246, 239, 0.85); letter-spacing: 0.04em; margin-bottom: 32px; }
.showroom-meta strong { color: var(--bg); font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; font-size: 11px; display: block; margin-bottom: 4px; }
.showroom-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.btn--inv { background: var(--bg); color: var(--text); border-color: var(--bg); }
.btn--inv:hover { background: var(--accent); border-color: var(--accent); color: var(--bg); }
.btn--inv-ghost { background: transparent; color: var(--bg); border-color: var(--bg); }
.btn--inv-ghost:hover { background: var(--bg); color: var(--text); }
.showroom-right { background: var(--border); position: relative; overflow: hidden; }
.showroom-right .map {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(110,90,67,0.12), rgba(24,20,15,0.05)),
    repeating-linear-gradient(0deg, transparent 0 39px, rgba(140,129,112,0.18) 39px 40px),
    repeating-linear-gradient(90deg, transparent 0 39px, rgba(140,129,112,0.18) 39px 40px),
    #EFE7D8;
}
.map-pin {
  position: absolute; left: 56%; top: 48%;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 6px rgba(176,141,87,0.18), 0 0 0 14px rgba(176,141,87,0.08);
}
.map-label {
  position: absolute; left: 58%; top: 38%;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  background: var(--bg); color: var(--text); padding: 8px 14px; border: 1px solid var(--border);
}

/* ── Press band ───────────────────────────── */
.press-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.press-row { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.press-row .eyebrow { white-space: nowrap; }
.press-logos { display: flex; gap: 48px; align-items: center; flex-wrap: wrap; }
.press-logo { font-family: var(--font-display); font-size: 18px; letter-spacing: 0.04em; color: var(--secondary); font-style: italic; }

/* ── Footer ───────────────────────────── */
.footer {
  background: var(--bg);
  padding: 96px 0 32px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border);
}
.footer-brand .footer-wm { font-family: var(--font-display); font-size: 36px; letter-spacing: 0.3em; font-weight: 500; margin-bottom: 24px; }
.footer-brand p { color: var(--muted); max-width: 320px; font-size: 14px; }
.footer-col h5 { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; color: var(--text); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--secondary); }
.footer-col a:hover { color: var(--text); }
.footer-bot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; font-size: 12px; color: var(--muted); letter-spacing: 0.04em;
}

/* ── Floating WhatsApp ───────────────────────────── */
.wa-fab {
  position: fixed; right: 28px; bottom: 28px; z-index: 60;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(24,20,15,0.18);
  transition: transform .2s ease;
}
.wa-fab:hover { transform: translateY(-2px); }

/* ── Page hero (non-home) ───────────────────────────── */
.page-hero {
  padding: 96px 0 64px;
  border-bottom: 1px solid var(--border);
}
.page-hero .eyebrow { margin-bottom: 18px; display: block; }
.page-hero h1 { font-size: clamp(56px, 7vw, 112px); font-family: var(--font-display); font-weight: 500; line-height: 0.98; letter-spacing: -0.01em; }
.page-hero h1 em { font-style: italic; color: var(--secondary); }
.page-hero p { margin-top: 28px; color: var(--secondary); max-width: 560px; font-size: 18px; }

/* ── Filters ───────────────────────────── */
.filters {
  display: flex; gap: 8px; flex-wrap: wrap; padding: 24px 0 8px;
  border-bottom: 1px solid var(--border); margin-bottom: 40px;
}
.filter-chip {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
  padding: 10px 16px; border: 1px solid var(--border); color: var(--secondary);
  transition: all .2s ease;
}
.filter-chip:hover { border-color: var(--text); color: var(--text); }
.filter-chip[aria-pressed="true"] { background: var(--text); border-color: var(--text); color: var(--bg); }
.filter-meta { margin-left: auto; font-size: 12px; color: var(--muted); letter-spacing: 0.06em; align-self: center; }

/* ── Product detail ───────────────────────────── */
.pd {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px;
  padding: 64px 0 96px;
}
.pd-gallery { display: grid; gap: 12px; }
.pd-gallery .main { aspect-ratio: 3/4; background: var(--border); overflow: hidden; }
.pd-gallery .main img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.pd-thumb { aspect-ratio: 1/1; background: var(--border); overflow: hidden; cursor: pointer; opacity: 0.6; transition: opacity .2s ease; }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumb[aria-pressed="true"] { opacity: 1; outline: 1px solid var(--text); outline-offset: 2px; }
.pd-thumb:hover { opacity: 1; }

.pd-info { padding-top: 8px; }
.pd-info .breadcrumbs { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 28px; }
.pd-info .breadcrumbs a { color: var(--muted); }
.pd-info .breadcrumbs a:hover { color: var(--text); }
.pd-info h1 { font-family: var(--font-display); font-size: 48px; font-weight: 500; line-height: 1.05; margin-bottom: 12px; }
.pd-info .family-line { color: var(--secondary); font-size: 14px; margin-bottom: 28px; letter-spacing: 0.06em; }
.pd-info .price { font-size: 22px; font-family: var(--font-display); margin-bottom: 36px; }
.pd-info .desc { color: var(--secondary); line-height: 1.65; margin-bottom: 36px; max-width: 460px; }

.option-block { margin-bottom: 28px; }
.option-block-label { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; display: flex; justify-content: space-between; }
.option-block-label a { color: var(--accent); }
.option-row { display: flex; gap: 8px; flex-wrap: wrap; }
.option {
  min-width: 56px; padding: 12px 14px;
  border: 1px solid var(--border); font-size: 12px; letter-spacing: 0.06em;
  background: transparent; color: var(--text);
  transition: all .15s ease;
}
.option:hover { border-color: var(--text); }
.option[aria-pressed="true"] { border-color: var(--text); background: var(--text); color: var(--bg); }

.pd-actions { display: grid; gap: 12px; margin-top: 8px; }
.pd-actions .btn { justify-content: center; padding: 18px 24px; }
.pd-aux { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.pd-details {
  border-top: 1px solid var(--border); padding-top: 32px; margin-top: 40px;
}
.pd-details details { padding: 18px 0; border-bottom: 1px solid var(--border); }
.pd-details summary {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; list-style: none;
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
}
.pd-details summary::-webkit-details-marker { display: none; }
.pd-details summary::after { content: "+"; font-family: var(--font-display); font-size: 22px; color: var(--secondary); transition: transform .2s ease; }
.pd-details details[open] summary::after { content: "−"; }
.pd-details details p, .pd-details details ul { padding-top: 14px; color: var(--secondary); font-size: 14px; line-height: 1.7; }
.pd-details details ul { padding-left: 18px; }

/* ── Craft page ───────────────────────────── */
.craft-hero-img {
  margin: 0; padding: 0; aspect-ratio: 21/9; overflow: hidden; background: var(--border);
}
.craft-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.craft-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  padding: 96px 0; border-bottom: 1px solid var(--border);
}
.craft-block.reverse { direction: rtl; }
.craft-block.reverse > * { direction: ltr; }
.craft-block .img { aspect-ratio: 4/5; background: var(--border); overflow: hidden; }
.craft-block .img img { width: 100%; height: 100%; object-fit: cover; }
.craft-block .text .num {
  font-family: var(--font-display); color: var(--accent); font-size: 16px; letter-spacing: 0.04em; display: block; margin-bottom: 16px;
}
.craft-block .text h3 { font-family: var(--font-display); font-size: 48px; font-weight: 500; line-height: 1.05; margin-bottom: 24px; }
.craft-block .text p { color: var(--secondary); font-size: 16px; line-height: 1.7; margin-bottom: 16px; }
.craft-block .text p:last-of-type { margin-bottom: 0; }
.kicker {
  font-family: var(--font-display); font-style: italic; font-size: 22px; color: var(--text);
  border-left: 1px solid var(--accent); padding-left: 24px; margin: 28px 0;
}

/* ── The House ───────────────────────────── */
.house-hero { padding: 120px 0 80px; }
.house-hero .lede { max-width: 720px; }
.house-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 96px;
  padding: 0 0 96px;
}
.house-grid .img { aspect-ratio: 4/5; background: var(--border); overflow: hidden; }
.house-grid .img img { width: 100%; height: 100%; object-fit: cover; }
.house-grid .text h3 { font-family: var(--font-display); font-size: 36px; margin-bottom: 18px; font-weight: 500; }
.house-grid .text p { color: var(--secondary); margin-bottom: 14px; font-size: 15px; line-height: 1.7; }
.house-grid .attr { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-top: 16px; display: block; }
.timeline {
  background: var(--text); color: var(--bg); padding: 88px 0;
}
.timeline-row {
  display: grid; grid-template-columns: 100px 1fr 1fr;
  gap: 32px; padding: 28px 0;
  border-bottom: 1px solid rgba(250,246,239,0.12);
  align-items: baseline;
}
.timeline-row:last-child { border-bottom: 0; }
.timeline-row .year { font-family: var(--font-display); font-size: 30px; color: var(--accent); font-style: italic; }
.timeline-row h4 { font-family: var(--font-display); font-size: 26px; font-weight: 500; margin-bottom: 6px; }
.timeline-row p { color: rgba(250,246,239,0.7); font-size: 14px; }

/* ── Appointments ───────────────────────────── */
.appt {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 96px;
  padding: 80px 0 120px;
}
.appt-aside h3 { font-family: var(--font-display); font-size: 28px; margin-bottom: 18px; font-weight: 500; }
.appt-aside p { color: var(--secondary); margin-bottom: 16px; font-size: 15px; }
.appt-meta-list { list-style: none; margin: 32px 0; padding: 0; border-top: 1px solid var(--border); }
.appt-meta-list li { padding: 20px 0; border-bottom: 1px solid var(--border); display: grid; grid-template-columns: 130px 1fr; gap: 16px; font-size: 14px; }
.appt-meta-list .lbl { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }
.appt-aside .img { aspect-ratio: 4/5; overflow: hidden; background: var(--border); margin-top: 32px; }
.appt-aside .img img { width: 100%; height: 100%; object-fit: cover; }

.appt-form { background: var(--surface); border: 1px solid var(--border); padding: 56px; }
.appt-form h2 { font-family: var(--font-display); font-size: 36px; font-weight: 500; margin-bottom: 8px; }
.appt-form .form-lede { color: var(--secondary); margin-bottom: 32px; font-size: 14px; }
.form-row { margin-bottom: 22px; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-row label {
  display: block; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px; font-weight: 500;
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--border); background: var(--bg); color: var(--text);
  font-family: var(--font-body); font-size: 14px;
  transition: border-color .2s ease;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--text); }
.form-row textarea { min-height: 110px; resize: vertical; }
.form-row select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%238C8170' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 36px; }
.slot-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.slot {
  padding: 14px 8px; border: 1px solid var(--border); font-size: 12px; letter-spacing: 0.06em;
  background: transparent; transition: all .15s ease; text-align: center;
}
.slot:hover { border-color: var(--text); }
.slot[aria-pressed="true"] { background: var(--text); color: var(--bg); border-color: var(--text); }
.slot[disabled] { opacity: 0.35; cursor: not-allowed; }
.form-submit { margin-top: 28px; }
.form-submit .btn { width: 100%; justify-content: center; padding: 18px 24px; }
.form-note { font-size: 12px; color: var(--muted); margin-top: 14px; line-height: 1.6; }

.appt-success {
  background: var(--surface); border: 1px solid var(--accent);
  padding: 56px; text-align: left;
}
.appt-success .check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%;
  border: 1px solid var(--accent); color: var(--accent);
  font-family: var(--font-display); font-size: 28px; margin-bottom: 24px;
}
.appt-success h2 { font-family: var(--font-display); font-size: 36px; font-weight: 500; margin-bottom: 12px; }
.appt-success p { color: var(--secondary); margin-bottom: 12px; }
.appt-success .summary { background: var(--bg); border: 1px solid var(--border); padding: 24px; margin: 28px 0; font-size: 14px; }
.appt-success .summary div { padding: 6px 0; display: grid; grid-template-columns: 130px 1fr; gap: 16px; }
.appt-success .summary .lbl { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }

/* ── Locate Us ───────────────────────────── */
.locate {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 600px;
  border-top: 1px solid var(--border);
}
.locate-left { padding: 80px 88px; }
.locate-left h2 { font-family: var(--font-display); font-size: clamp(36px, 4vw, 56px); margin-bottom: 32px; font-weight: 500; }
.locate-section { padding: 24px 0; border-top: 1px solid var(--border); }
.locate-section:first-of-type { border-top: 0; padding-top: 0; }
.locate-section h4 { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; font-weight: 500; }
.locate-section p { font-size: 16px; line-height: 1.7; }
.locate-section a { color: var(--text); border-bottom: 1px solid var(--border); }
.locate-section a:hover { border-color: var(--text); }
.locate-cta { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }
.locate-right { background: var(--border); position: relative; overflow: hidden; }
.locate-right .map { position: absolute; inset: 0; }

/* ── Misc utility ───────────────────────────── */
.divider { border: 0; border-top: 1px solid var(--border); margin: 64px 0; }

/* ── Tweaks panel chrome lives outside; nothing here ───────────── */

/* ── Responsive (preview-friendly down to ~960) ───────────────────── */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image { aspect-ratio: 4/3; }
  .hero-text { padding: 64px 32px 80px; }
  .hero-meta { left: 32px; right: 32px; bottom: 24px; }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .craft-teaser { grid-template-columns: 1fr; gap: 48px; }
  .showroom { grid-template-columns: 1fr; }
  .showroom-left { padding: 64px 32px; }
  .showroom-right { min-height: 420px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .pd { grid-template-columns: 1fr; gap: 48px; padding: 32px 0 64px; }
  .craft-block { grid-template-columns: 1fr; gap: 48px; padding: 64px 0; }
  .house-grid { grid-template-columns: 1fr; gap: 48px; }
  .appt { grid-template-columns: 1fr; gap: 48px; padding: 48px 0 96px; }
  .locate { grid-template-columns: 1fr; }
  .locate-left { padding: 56px 32px; }
  .locate-right { min-height: 360px; }
  .nav-links { display: none; }
  .nav-bar { grid-template-columns: auto 1fr auto; }
}
