/* =========================================================
   Popular Interiors — stylesheet
   Concept: "As-built drawing" — the visual language of a
   construction blueprint (dimension lines, registration
   marks, plan-view furniture icons) rendered in warm brown
   and gold instead of blue, since the brand is interiors +
   construction. No stock photography is used; every plate
   is built from CSS/SVG so it stays specific to this brand.
   ========================================================= */

:root {
  --espresso: #241810;
  --espresso-2: #35271b;
  --espresso-3: #43301f;
  --cream: #f6efe2;
  --paper: #fffcf6;
  --gold: #c79a3d;
  --gold-deep: #93701f;
  --gold-pale: #e7cf9a;
  --ink: #241810;
  --ink-soft: #5c4c3c;
  --line: #e2d5bd;
  --line-dark: rgba(231, 207, 154, 0.25);

  --display: "Fraunces", "Iowan Old Style", serif;
  --sans: "Work Sans", "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", monospace;

  --max: 1180px;
  --radius: 2px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

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

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 4.6vw, 4rem); line-height: 1.04; font-weight: 500; }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); line-height: 1.12; font-weight: 500; }
h3 { font-size: 1.3rem; line-height: 1.3; }

p { margin: 0 0 1em; max-width: 62ch; }
p.lede { font-size: 1.15rem; color: var(--ink-soft); }

:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-gold { background: var(--gold); color: var(--espresso); }
.btn-gold:hover { background: var(--gold-deep); color: var(--paper); }
.btn-line { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-line:hover { border-color: var(--gold-deep); color: var(--gold-deep); }
.btn-line-light { background: transparent; color: var(--gold-pale); border-color: var(--line-dark); }
.btn-line-light:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- top strip ---------- */
.topstrip {
  background: var(--espresso);
  color: var(--gold-pale);
  font-size: 0.82rem;
}
.topstrip .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 9px;
  padding-bottom: 9px;
  gap: 20px;
}
.topstrip .contacts { display: flex; gap: 24px; flex-wrap: wrap; }
.topstrip a:hover { color: var(--gold); }

/* ---------- header / nav ---------- */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 40;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 44px; width: 44px; border-radius: 8px; }
.brand .brand-type { line-height: 1.1; }
.brand .brand-type strong {
  display: block;
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: 0.01em;
}
.brand .brand-type span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--gold-deep);
  text-transform: uppercase;
}

.main-nav ul { display: flex; gap: 30px; }
.main-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}
.main-nav a:hover,
.main-nav a.is-active { border-bottom-color: var(--gold-deep); color: var(--gold-deep); }

.header-cta { display: flex; align-items: center; gap: 18px; }
.header-cta .phone { font-weight: 600; font-size: 0.95rem; white-space: nowrap; }
.header-cta .phone small { display: block; font-weight: 400; color: var(--ink-soft); font-size: 0.72rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  width: 42px;
  height: 38px;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  margin: 5px auto;
}

/* ---------- registration marks (blueprint corner marks) ---------- */
.plate {
  position: relative;
  border: 1px solid var(--line);
}
.plate::before, .plate::after,
.plate .corner-tl, .plate .corner-br { display: none; }
.plate-dark { border-color: var(--line-dark); }

.crop {
  position: absolute;
  width: 14px;
  height: 14px;
  pointer-events: none;
}
.crop.tl { top: -1px; left: -1px; border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.crop.br { bottom: -1px; right: -1px; border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); }

/* ---------- hero ---------- */
.hero {
  background: var(--cream);
  padding: 76px 0 100px;
  overflow: hidden;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-eyebrow {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--gold-deep);
  letter-spacing: 0.02em;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--gold-deep); display: inline-block; }
.hero h1 { margin-bottom: 22px; }
.hero h1 em { font-style: italic; color: var(--gold-deep); }
.hero-actions { display: flex; gap: 16px; margin: 30px 0 40px; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 36px; border-top: 1px solid var(--line); padding-top: 22px; }
.hero-stats div strong { display: block; font-family: var(--display); font-size: 1.6rem; color: var(--ink); }
.hero-stats div span { font-size: 0.8rem; color: var(--ink-soft); }

.hero-art {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--espresso);
  border-radius: var(--radius);
}
.hero-art svg { width: 100%; height: 100%; }
.hero-tag {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--gold);
  color: var(--espresso);
  padding: 16px 20px;
  border-radius: var(--radius);
  font-family: var(--display);
  max-width: 190px;
  box-shadow: 0 12px 26px rgba(36, 24, 16, 0.22);
}
.hero-tag strong { display: block; font-size: 1.7rem; line-height: 1; }
.hero-tag span { font-family: var(--sans); font-size: 0.78rem; font-weight: 500; }

/* ---------- section scaffolding ---------- */
section { padding: 92px 0; }
.section-dark { background: var(--espresso); color: var(--gold-pale); }
.section-dark h2, .section-dark h3 { color: var(--paper); }
.section-dark p { color: rgba(246, 239, 226, 0.72); }
.section-mid { background: var(--paper); }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 52px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 26px;
}
.section-dark .section-head { border-color: var(--line-dark); }
.section-head .index {
  font-family: var(--mono);
  color: var(--gold-deep);
  font-size: 0.8rem;
}
.section-dark .section-head .index { color: var(--gold); }

/* ---------- offerings list (services teaser) ---------- */
.offer-list { border-top: 1px solid var(--line); }
.offer-row {
  display: grid;
  grid-template-columns: 60px 1.3fr 1.6fr auto;
  gap: 24px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.15s ease;
}
.offer-row:hover { background: rgba(199, 154, 61, 0.06); }
.offer-mark {
  width: 46px;
  height: 46px;
  border: 1px solid var(--gold-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offer-mark svg { width: 22px; height: 22px; stroke: var(--gold-deep); }
.offer-row h3 { font-size: 1.2rem; }
.offer-row p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }
.offer-go {
  width: 38px; height: 38px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.15s ease, background 0.15s ease;
}
.offer-row:hover .offer-go { background: var(--ink); }
.offer-row:hover .offer-go svg { stroke: var(--paper); }
.offer-go svg { width: 15px; height: 15px; stroke: var(--ink); }

/* ---------- process (legit sequence -> numbered) ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.process-step {
  padding: 0 26px;
  border-left: 1px solid var(--line-dark);
  position: relative;
}
.process-step:first-child { border-left: none; padding-left: 0; }
.process-num {
  font-family: var(--mono);
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 18px;
  display: block;
}
.process-step h3 { margin-bottom: 10px; }

/* ---------- plan-view furniture icon cards (grid) ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

.feature-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 32px;
  position: relative;
}
.feature-card .icon { width: 40px; height: 40px; margin-bottom: 22px; stroke: var(--gold-deep); }
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 0; }

/* ---------- portfolio plates ---------- */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.portfolio-filters { display: flex; gap: 10px; flex-wrap: wrap; }
.portfolio-filters button {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 9px 18px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  color: var(--ink-soft);
}
.portfolio-filters button.is-on,
.portfolio-filters button:hover { border-color: var(--gold-deep); color: var(--gold-deep); }

.plot {
  position: relative;
  background: var(--espresso-2);
  aspect-ratio: 4/3.2;
  overflow: hidden;
}
.plot svg { width: 100%; height: 100%; }
.plot-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--gold-pale);
  border: 1px solid var(--line-dark);
  padding: 4px 9px;
  border-radius: 999px;
}
.plot-info { padding: 20px 4px 0; }
.plot-info .cat { font-size: 0.78rem; color: var(--gold-deep); font-weight: 600; margin-bottom: 6px; display: block; }
.plot-info h3 { font-size: 1.1rem; margin-bottom: 4px; }
.plot-info span.loc { font-size: 0.85rem; color: var(--ink-soft); }

/* ---------- testimonials ---------- */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote-card {
  border: 1px solid var(--line-dark);
  padding: 30px;
  background: var(--espresso-2);
}
.quote-card .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 16px; font-size: 0.9rem; }
.quote-card p { color: var(--gold-pale); font-size: 0.98rem; }
.quote-card .who { margin-top: 18px; font-family: var(--display); color: var(--paper); font-size: 1rem; }
.quote-card .who span { display: block; font-family: var(--sans); font-size: 0.78rem; color: rgba(246,239,226,.55); }

/* ---------- stat bar ---------- */
.stat-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.stat-bar div {
  padding: 30px 20px;
  text-align: center;
  border-left: 1px solid var(--line-dark);
}
.stat-bar div:first-child { border-left: none; }
.stat-bar strong { display: block; font-family: var(--display); font-size: 2.1rem; color: var(--gold); }
.stat-bar span { font-size: 0.8rem; color: rgba(246,239,226,.7); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--gold);
  color: var(--espresso);
  padding: 56px 0;
}
.cta-banner .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--espresso); font-size: clamp(1.6rem, 3vw, 2.2rem); max-width: 520px; }
.cta-banner .btn-line { border-color: var(--espresso); }
.cta-banner .btn-line:hover { background: var(--espresso); color: var(--gold); }

/* ---------- pricing (services page) ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 34px;
  display: flex;
  flex-direction: column;
}
.price-card.is-popular { border-color: var(--gold); background: var(--espresso); color: var(--gold-pale); position: relative; }
.price-card.is-popular h3, .price-card.is-popular .amount { color: var(--paper); }
.price-card .badge {
  position: absolute; top: -13px; left: 34px;
  background: var(--gold); color: var(--espresso);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 5px 12px; border-radius: 999px;
}
.price-card .amount { font-family: var(--display); font-size: 2.4rem; margin: 14px 0 4px; }
.price-card .amount sub { font-family: var(--sans); font-size: 0.85rem; font-weight: 500; }
.price-card ul { margin: 22px 0 28px; display: flex; flex-direction: column; gap: 10px; font-size: 0.92rem; }
.price-card ul li { display: flex; gap: 10px; align-items: flex-start; }
.price-card ul li svg { width: 16px; height: 16px; stroke: var(--gold-deep); margin-top: 3px; flex-shrink: 0; }
.price-card.is-popular ul li svg { stroke: var(--gold); }
.price-card .btn { margin-top: auto; justify-content: center; }

/* ---------- FAQ (accordion, no JS framework needed) ---------- */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--display);
  font-size: 1.1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; color: var(--gold-deep); }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { padding-bottom: 22px; color: var(--ink-soft); }

/* ---------- team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { text-align: left; }
.team-plate {
  aspect-ratio: 3/3.6;
  background: var(--espresso-2);
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.team-plate svg { width: 100%; height: 100%; }
.team-card h3 { font-size: 1.05rem; margin-bottom: 2px; }
.team-card span { font-size: 0.82rem; color: var(--gold-deep); }

/* ---------- values / timeline (about) ---------- */
.value-row { display: grid; grid-template-columns: 1fr 2fr; gap: 24px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.value-row h3 { font-family: var(--mono); font-size: 0.95rem; text-transform: none; color: var(--gold-deep); }

/* ---------- contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.contact-info-list { display: flex; flex-direction: column; gap: 22px; margin-top: 30px; }
.contact-info-list div { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-list svg { width: 22px; height: 22px; stroke: var(--gold-deep); flex-shrink: 0; margin-top: 3px; }
.contact-info-list strong { display: block; font-family: var(--display); font-size: 1.02rem; }
.contact-info-list span { color: var(--ink-soft); font-size: 0.92rem; }

.map-plate { aspect-ratio: 16/9; background: var(--espresso-2); margin-top: 30px; position: relative; overflow: hidden; }
.map-plate svg { width: 100%; height: 100%; }

form.card-form {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 36px;
}
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--cream);
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 0.95rem;
  border-radius: var(--radius);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold-deep);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 0.82rem; color: var(--ink-soft); margin-top: 14px; }
.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  margin-bottom: 22px;
}
.alert-success { background: #eaf3e6; color: #3a5c2c; border: 1px solid #c8dfc0; }
.alert-error { background: #f7e7e3; color: #7a3320; border: 1px solid #edc6ba; }

/* ---------- footer ---------- */
.site-footer { background: var(--espresso); color: rgba(246,239,226,.75); padding-top: 76px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand .brand-type strong { color: var(--paper); }
.site-footer h4 { color: var(--paper); font-size: 0.95rem; margin-bottom: 18px; font-family: var(--sans); font-weight: 600; }
.site-footer ul { display: flex; flex-direction: column; gap: 11px; font-size: 0.92rem; }
.site-footer ul a:hover { color: var(--gold); }
.footer-newsletter form { display: flex; margin-top: 14px; border-bottom: 1px solid var(--line-dark); padding-bottom: 10px; }
.footer-newsletter input {
  background: none; border: none; color: var(--paper); flex: 1; font-family: var(--sans); font-size: 0.92rem;
}
.footer-newsletter input:focus { outline: none; }
.footer-newsletter button { background: none; border: none; color: var(--gold); font-weight: 600; cursor: pointer; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 34px; height: 34px; border: 1px solid var(--line-dark); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.footer-social svg { width: 15px; height: 15px; stroke: var(--gold-pale); }
.footer-social a:hover { border-color: var(--gold); }

/* ---------- page header (inner pages) ---------- */
.page-header {
  background: var(--espresso);
  color: var(--paper);
  padding: 64px 0 54px;
}
.page-header .crumb { font-family: var(--mono); font-size: 0.8rem; color: var(--gold); margin-bottom: 14px; display: block; }
.page-header h1 { color: var(--paper); font-size: clamp(2rem, 4vw, 2.9rem); }
.page-header p { color: rgba(246,239,226,.72); margin-top: 14px; }

/* ---------- misc ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.dim-line { display: flex; align-items: center; gap: 8px; color: var(--ink-soft); font-family: var(--mono); font-size: 0.75rem; }
.dim-line::before, .dim-line::after { content: ""; flex: 1; height: 1px; background: var(--line); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-art { max-width: 460px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .process-step { border-left: none; padding-left: 0; }
  .grid-3, .portfolio-grid, .quote-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .stat-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-bar div:nth-child(3) { border-left: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-grid, .two-col { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .topstrip { display: none; }
  .main-nav { display: none; }
  .header-cta .phone { display: none; }
  .nav-toggle { display: block; }
  .offer-row { grid-template-columns: 44px 1fr; }
  .offer-row p { grid-column: 2 / 3; }
  .offer-go { display: none; }
  .grid-3, .grid-2, .portfolio-grid, .quote-grid, .team-grid { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 10px; }
  .field-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-banner .wrap { flex-direction: column; align-items: flex-start; }
  .stat-bar { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   Homepage v2 — photo-style hero + overlapping panels
   (photo areas are rendered as SVG plates, since real
   photography isn't available; swap the <img>/SVG in each
   .photo-plate for a real photo whenever one is ready)
   ========================================================= */

.hero-photo {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--paper);
}
.hero-photo .photo-plate { position: absolute; inset: 0; z-index: 0; }
.hero-photo .photo-plate svg { width: 100%; height: 100%; }
.hero-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(36,24,16,0.15) 0%, rgba(36,24,16,0.55) 65%, rgba(36,24,16,0.86) 100%);
  z-index: 1;
}
.hero-photo .wrap { position: relative; z-index: 2; padding-top: 90px; padding-bottom: 150px; }
.hero-photo .hero-eyebrow { color: var(--gold-pale); }
.hero-photo .hero-eyebrow::before { background: var(--gold-pale); }
.hero-photo h1 { color: var(--paper); max-width: 13ch; }
.hero-photo h1 em { color: var(--gold); font-style: normal; }
.hero-photo p.lede { color: rgba(246,239,226,.85); max-width: 46ch; }

.feature-strip {
  position: relative;
  z-index: 3;
  margin-top: -92px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.feature-strip .feature-card { background: var(--paper); }
.feature-strip .feature-card .icon-box {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feature-strip .feature-card .icon-box svg { width: 24px; height: 24px; stroke: var(--gold-deep); }
.feature-strip .feature-card .go {
  margin-top: 16px;
  width: 32px; height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.feature-strip .feature-card .go svg { width: 13px; height: 13px; stroke: var(--ink); }

/* ---------- about split with collage + guarantee badge ---------- */
.about-split { padding-top: 150px; }
.collage { position: relative; }
.collage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.collage-grid .photo-plate { aspect-ratio: 3/3.6; background: var(--espresso-2); overflow: hidden; }
.collage-grid .photo-plate:nth-child(2) { margin-top: 34px; }
.collage .guarantee {
  position: absolute;
  left: -20px; bottom: -28px;
  background: var(--gold);
  color: var(--espresso);
  width: 118px; height: 118px;
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  box-shadow: 0 14px 28px rgba(36,24,16,.25);
}
.collage .guarantee strong { font-family: var(--display); font-size: 1.5rem; line-height: 1; }
.collage .guarantee span { font-size: 0.68rem; font-weight: 600; margin-top: 4px; line-height: 1.2; }

.about-copy .check-list { display: flex; flex-direction: column; gap: 12px; margin: 24px 0 34px; }
.about-copy .check-list div { display: flex; gap: 12px; align-items: center; font-weight: 500; }
.about-copy .check-list svg { width: 18px; height: 18px; stroke: var(--gold-deep); flex-shrink: 0; }

.badge-row { display: flex; gap: 30px; margin: 30px 0; }
.badge-circle { display: flex; align-items: center; gap: 16px; }
.badge-circle .ring {
  width: 66px; height: 66px;
  border-radius: 50%;
  border: 1px solid var(--gold-deep);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--gold-deep);
  flex-shrink: 0;
}
.badge-circle span { font-size: 0.88rem; color: var(--ink-soft); max-width: 12ch; }

.founder-sign { display: flex; align-items: center; gap: 14px; padding-top: 24px; border-top: 1px solid var(--line); }
.founder-sign .mark { font-family: var(--display); font-style: italic; font-size: 1.4rem; color: var(--gold-deep); }
.founder-sign span { font-size: 0.85rem; color: var(--ink-soft); }

/* ---------- tilted dark offer panel ---------- */
.offer-panel {
  background: var(--espresso);
  border-radius: 4px;
  padding: 60px 48px 70px;
  position: relative;
  color: var(--paper);
}
.offer-panel .section-head { border-color: var(--line-dark); margin-bottom: 44px; }
.offer-panel .index { color: var(--gold); }
.offer-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.offer-cards .oc {
  background: var(--paper);
  color: var(--ink);
  overflow: hidden;
}
.offer-cards .oc:nth-child(2) { transform: translateY(-22px); }
.offer-cards .photo-plate { aspect-ratio: 4/3.1; background: var(--espresso-2); }
.offer-cards .oc-body { padding: 22px 22px 26px; position: relative; }
.offer-cards .oc-num { font-family: var(--mono); font-size: 0.75rem; color: var(--gold-deep); }
.offer-cards .oc-body h3 { margin: 10px 0 8px; }
.offer-cards .oc-body p { font-size: 0.9rem; color: var(--ink-soft); margin: 0; }
.offer-cards .oc-arrow {
  position: absolute; top: -20px; right: 22px;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold); display: flex; align-items: center; justify-content: center;
}
.offer-cards .oc-arrow svg { width: 16px; height: 16px; stroke: var(--espresso); }

/* ---------- category marquee ---------- */
.marquee-band { overflow: hidden; padding: 30px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-track span {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: transparent;
  -webkit-text-stroke: 1px var(--line);
  display: flex; align-items: center; gap: 40px;
}
.marquee-track span.plus { color: var(--gold-deep); -webkit-text-stroke: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- faq split with plan-view plate ---------- */
.faq-split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.faq-split .photo-plate { aspect-ratio: 4/3.6; background: var(--espresso-2); }

/* ---------- gallery strip ---------- */
.gallery-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.gallery-strip .photo-plate { aspect-ratio: 3/3.2; background: var(--espresso-2); }

/* ---------- stat icons row ---------- */
.stat-icons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-icons div { padding: 10px; }
.stat-icons svg { width: 30px; height: 30px; stroke: var(--gold-deep); margin: 0 auto 14px; }
.stat-icons .n { display: block; font-family: var(--display); font-size: 2.4rem; color: var(--ink); }
.stat-icons .l { font-size: 0.85rem; color: var(--ink-soft); }

/* ---------- process with dotted connector (light) ---------- */
.process-dots { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; position: relative; }
.process-dots::before {
  content: "";
  position: absolute; top: 34px; left: 12.5%; right: 12.5%; height: 0;
  border-top: 2px dotted var(--line);
  z-index: 0;
}
.process-dots .pd { position: relative; z-index: 1; }
.process-dots .ring2 {
  width: 68px; height: 68px; margin: 0 auto 22px;
  border-radius: 50%; background: var(--paper);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
}
.process-dots .ring2 svg { width: 26px; height: 26px; stroke: var(--gold-deep); }
.process-dots .num { font-family: var(--mono); font-size: 0.72rem; color: var(--gold-deep); display: block; margin-bottom: 8px; }
.process-dots h3 { font-size: 1.05rem; margin-bottom: 8px; }
.process-dots p { font-size: 0.88rem; color: var(--ink-soft); margin: 0 auto; max-width: 22ch; }

/* ---------- pill CTA row ---------- */
.cta-pill-row {
  background: var(--espresso);
  border-radius: 4px;
  padding: 26px 34px;
  display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
  text-align: center;
}
.cta-pill-row p { margin: 0; color: rgba(246,239,226,.85); }
.cta-pill-row a.link-gold { color: var(--gold); font-weight: 600; border-bottom: 1px solid var(--gold); }

/* ---------- testimonial banner with photo + rating ---------- */
.testimonial-banner {
  background: var(--espresso);
  border-radius: 4px;
  padding: 60px 48px;
  color: var(--paper);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}
.testimonial-banner .rating { display: flex; align-items: center; gap: 14px; margin-top: 26px; }
.testimonial-banner .rating strong { font-family: var(--display); font-size: 2rem; color: var(--gold); }
.testimonial-banner .rating .stars { color: var(--gold); letter-spacing: 2px; }
.testimonial-banner .rating span { display: block; font-size: 0.78rem; color: rgba(246,239,226,.6); }

.tb-card-wrap { position: relative; }
.tb-photo { aspect-ratio: 16/11; background: var(--espresso-2); overflow: hidden; }
.tb-quote {
  position: absolute;
  bottom: -26px; left: -20px;
  background: var(--paper);
  color: var(--ink);
  padding: 22px 24px;
  max-width: 280px;
  box-shadow: 0 16px 30px rgba(0,0,0,.28);
}
.tb-quote .stars { color: var(--gold); letter-spacing: 2px; font-size: 0.85rem; margin-bottom: 10px; }
.tb-quote p { font-size: 0.92rem; margin-bottom: 12px; }
.tb-quote .who { font-family: var(--display); font-size: 0.95rem; }
.tb-quote .who span { display: block; font-family: var(--sans); font-size: 0.75rem; color: var(--ink-soft); }

.logo-strip { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 28px; margin-top: 76px; opacity: 0.75; }
.logo-strip .lw { display: flex; align-items: center; gap: 8px; font-family: var(--display); font-size: 1rem; color: var(--gold-pale); }
.logo-strip .lw svg { width: 22px; height: 22px; stroke: var(--gold-pale); }

/* ---------- blog cards ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card .photo-plate { aspect-ratio: 4/2.8; background: var(--espresso-2); margin-bottom: 20px; }
.blog-card .meta { font-size: 0.8rem; color: var(--gold-deep); font-weight: 600; margin-bottom: 10px; }
.blog-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.blog-card p { font-size: 0.9rem; color: var(--ink-soft); margin: 0; }

/* ---------- footer watermark ---------- */
.footer-watermark {
  text-align: center;
  padding: 10px 0 0;
  overflow: hidden;
}
.footer-watermark span {
  font-family: var(--display);
  font-size: clamp(3rem, 12vw, 8.5rem);
  color: transparent;
  -webkit-text-stroke: 1px var(--line-dark);
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

@media (max-width: 1024px) {
  .feature-strip { grid-template-columns: repeat(2, 1fr); margin-top: 30px; }
  .hero-photo .wrap { padding-bottom: 60px; }
  .about-split { padding-top: 90px; }
  .offer-cards { grid-template-columns: 1fr; }
  .offer-cards .oc:nth-child(2) { transform: none; }
  .faq-split { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-icons { grid-template-columns: repeat(2, 1fr); }
  .process-dots { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-dots::before { display: none; }
  .testimonial-banner { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .feature-strip { grid-template-columns: 1fr; }
  .collage-grid { grid-template-columns: 1fr; }
  .collage-grid .photo-plate:nth-child(2) { margin-top: 0; }
  .badge-row { flex-direction: column; gap: 16px; }
  .logo-strip { justify-content: flex-start; }
}

/* mobile nav drawer */
.main-nav.is-open {
  display: block;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 10px 32px 26px;
}
.main-nav.is-open ul { flex-direction: column; gap: 4px; }
.main-nav.is-open a { display: block; padding: 12px 0; border-bottom: 1px solid var(--line); }
