/* =============================================================================
   THE HOME PLACE — website styles
   Brand: Charcoal · Terracotta · Olive · Taupe · Cream
   ========================================================================== */

/* ---------- 1. Design tokens ---------- */
:root {
  /* Brand palette */
  --charcoal: #1D1E1B;
  --charcoal-tint: #33352E;
  --terracotta: #9A6547;
  --terracotta-soft: #BC8D6D;
  --olive: #66715D;
  --olive-soft: #96A08A;
  --taupe: #B7ADA3;
  --taupe-soft: #CFC8C0;
  --cream:  #F6F5F2;
  --cream-warm: #EFEAE2;
  --ink: #2A2A26;
  --ink-soft: #5C5B55;
  --white:  #FFFFFF;
  --line:   rgba(29,30,27,0.12);
  --shadow-sm: 0 2px 8px rgba(29,30,27,0.06);
  --shadow-md: 0 10px 30px rgba(29,30,27,0.10);

  /* Typography */
  --font-display: "Poppins", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing */
  --step-1: 8px;
  --step-2: 16px;
  --step-3: 24px;
  --step-4: 32px;
  --step-5: 48px;
  --step-6: 64px;
  --step-7: 96px;
  --step-8: 128px;

  /* Layout */
  --container: 1200px;
  --container-narrow: 880px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 999px;
}

/* ---------- 2. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--charcoal); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--terracotta); }
button { font: inherit; cursor: pointer; }
ul, ol { margin: 0; padding-left: 1.25rem; }
li + li { margin-top: 6px; }
p { margin: 0 0 1em; }

/* ---------- 3. Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 var(--step-3);
}
h1 { font-size: clamp(2.3rem, 4.5vw + 1rem, 3.8rem); font-weight: 600; letter-spacing: -0.015em; }
h2 { font-size: clamp(1.8rem, 2.3vw + 1rem, 2.5rem); }
h3 { font-size: clamp(1.25rem, 1vw + 1rem, 1.5rem); }
h4 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase; color: var(--terracotta); }
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: var(--step-2);
  display: inline-block;
}
.lead { font-size: 1.2rem; color: var(--ink-soft); max-width: 42rem; }
blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.4vw + 1rem, 1.8rem);
  font-weight: 500;
  font-style: normal;
  color: var(--charcoal);
  border-left: 3px solid var(--terracotta);
  padding-left: var(--step-4);
  margin: var(--step-5) 0;
  line-height: 1.4;
}
blockquote cite {
  display: block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-style: normal;
  color: var(--ink-soft);
  margin-top: var(--step-2);
  letter-spacing: 0.05em;
}

/* ---------- 4. Layout primitives ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--step-3); }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--step-3); }
section { padding: var(--step-7) 0; }
@media (max-width: 640px) { section { padding: var(--step-6) 0; } }
.section-cream { background: var(--cream); }
.section-dark { background: var(--charcoal); color: var(--cream); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--cream); }
.section-dark .eyebrow { color: var(--terracotta-soft); }
.section-dark .lead { color: rgba(246,245,242,0.75); }
.section-dark a { color: var(--terracotta-soft); }

.grid { display: grid; gap: var(--step-4); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
.stack > * + * { margin-top: var(--step-3); }
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  transition: all .2s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary { background: var(--charcoal); color: var(--cream); border-color: var(--charcoal); }
.btn-primary:hover { background: var(--charcoal-tint); color: var(--white); }
.btn-secondary { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn-secondary:hover { background: var(--charcoal); color: var(--cream); }
.btn-terracotta { background: var(--terracotta); color: var(--white); border-color: var(--terracotta); }
.btn-terracotta:hover { background: var(--terracotta-soft); color: var(--charcoal); }
.btn-ghost { background: transparent; color: var(--cream); border-color: rgba(246,245,242,0.4); }
.btn-ghost:hover { background: var(--cream); color: var(--charcoal); border-color: var(--cream); }
.btn-lg { padding: 16px 34px; font-size: 1rem; }

/* ---------- 6. Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(1.4) blur(8px);
  -webkit-backdrop-filter: saturate(1.4) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  color: var(--charcoal);
  text-decoration: none;
  line-height: 1;
}
.brand .brand-icon {
  width: 20px;
  height: 27px;
  flex-shrink: 0;
  color: var(--charcoal);
}
.brand .brand-wordmark { display: flex; flex-direction: column; gap: 2px; }
.brand .brand-mark {
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  font-weight: 600;
  text-transform: uppercase;
}
.brand .brand-tag {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.brand:hover { color: var(--charcoal); }
.brand:hover .brand-icon { color: var(--terracotta); }
.brand:hover .brand-icon-circle { border-color: var(--terracotta); }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--step-4);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links li { margin: 0; }
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--terracotta); }
.nav-links a.active { color: var(--charcoal); }
.nav-links a.active::after {
  content: "";
  display: block;
  height: 2px;
  background: var(--terracotta);
  margin-top: 4px;
}
.nav-cta { margin-left: var(--step-3); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--charcoal);
  font-size: 1.6rem;
  padding: 8px;
}

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 78px;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: var(--step-3) var(--step-3) var(--step-5);
    gap: var(--step-3);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    transition: transform .3s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { font-size: 1.1rem; padding: 8px 0; }
  .nav-cta { margin-left: 0; margin-top: var(--step-2); }
  .nav-cta .btn { width: 100%; }
}

/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  padding: clamp(80px, 12vw, 160px) 0 clamp(80px, 12vw, 140px);
  background:
    linear-gradient(180deg, rgba(246,245,242,0.4) 0%, rgba(246,245,242,0) 60%),
    var(--white);
  overflow: hidden;
}
.hero-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--step-3);
  text-align: center;
}
.hero h1 { margin-bottom: var(--step-4); }
.hero .lead { margin: 0 auto var(--step-5); font-size: clamp(1.05rem, 0.5vw + 1rem, 1.3rem); }
.hero-cta { display: inline-flex; gap: var(--step-2); flex-wrap: wrap; justify-content: center; }
.hero-decorative {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at top left, rgba(154,101,71,0.08), transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(102,113,93,0.10), transparent 60%);
}

.hero-alt {
  padding: clamp(60px, 8vw, 120px) 0 var(--step-6);
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.hero-alt .hero-inner { text-align: left; max-width: var(--container); }
.hero-alt h1 { max-width: 20ch; }
.hero-alt .lead { margin: 0; max-width: 46ch; }

/* ---------- 8. Trust bar ---------- */
.trust-bar {
  background: var(--cream);
  padding: var(--step-4) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--step-3) var(--step-6);
  list-style: none;
  padding: 0;
  margin: 0;
}
.trust-list li {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--charcoal);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.trust-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--terracotta);
  border-radius: 50%;
  display: inline-block;
}

/* ---------- 9. Feature / Value cards ---------- */
.feature-card {
  background: var(--white);
  padding: var(--step-5);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-card .icon {
  position: relative;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--terracotta);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: var(--step-3);
  font-family: var(--font-display);
  font-weight: 500;
}
.icon-number {
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
}
.feature-card h3 { margin-bottom: var(--step-2); font-size: 1.25rem; }
.feature-card p { color: var(--ink-soft); margin: 0; font-size: 0.98rem; }

.service-card {
  background: var(--cream);
  padding: var(--step-5);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid transparent;
  transition: all .25s ease;
}
.service-card:hover { border-color: var(--terracotta); background: var(--white); box-shadow: var(--shadow-sm); }
.service-card .price {
  font-family: var(--font-display);
  color: var(--terracotta);
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: var(--step-1);
}
.service-card h3 { margin-bottom: var(--step-2); }
.service-card ul { list-style: none; padding: 0; margin: var(--step-3) 0 var(--step-4); font-size: 0.95rem; color: var(--ink-soft); }
.service-card li { position: relative; padding-left: 22px; }
.service-card li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: var(--olive);
  font-weight: 700;
}
.service-card .card-cta { margin-top: auto; padding-top: var(--step-3); }

/* ---------- 10. Timeline / Process steps ---------- */
.steps { list-style: none; padding: 0; margin: 0; counter-reset: step; }
.steps li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: var(--step-4);
  align-items: flex-start;
  padding: var(--step-4) 0;
  border-top: 1px solid var(--line);
  counter-increment: step;
  margin: 0;
}
.steps li:first-child { border-top: 0; padding-top: 0; }
.steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  color: var(--terracotta);
  font-size: 2rem;
  line-height: 1;
  font-weight: 400;
}
.steps li h3 { margin-bottom: var(--step-1); font-size: 1.2rem; }
.steps li p { margin: 0; color: var(--ink-soft); }

/* ---------- 11. Forms ---------- */
form { margin: 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--step-3); }
.form-full { grid-column: 1 / -1; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.field label .req { color: var(--terracotta); margin-left: 3px; }
.field input,
.field textarea,
.field select {
  font: inherit;
  font-size: 1rem;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(154,101,71,0.15);
}
.field textarea { resize: vertical; min-height: 140px; }
.field .helper { font-size: 0.85rem; color: var(--ink-soft); margin-top: 2px; }

.form-card {
  background: var(--white);
  padding: clamp(var(--step-4), 3vw, var(--step-6));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.form-submit { display: flex; align-items: center; justify-content: space-between; gap: var(--step-3); flex-wrap: wrap; margin-top: var(--step-4); }
.form-submit .fine { font-size: 0.82rem; color: var(--ink-soft); max-width: 32ch; }

/* ---------- 12. Quotes / testimonials placeholder ---------- */
.pull-quote {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.pull-quote::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--terracotta);
  margin: 0 auto var(--step-3);
}

/* ---------- 13. Contact info block ---------- */
.contact-info { display: flex; flex-direction: column; gap: var(--step-3); }
.contact-info h3 { font-size: 1.15rem; margin-bottom: var(--step-1); color: var(--charcoal); }
.contact-info p { margin: 0; color: var(--ink-soft); font-size: 0.98rem; }
.contact-info a { color: var(--charcoal); border-bottom: 1px solid var(--terracotta); }
.contact-info a:hover { color: var(--terracotta); }

/* ---------- 14. Footer ---------- */
.site-footer {
  background: var(--charcoal);
  color: rgba(246,245,242,0.8);
  padding: var(--step-7) 0 var(--step-4);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--step-5);
  margin-bottom: var(--step-6);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 {
  color: var(--terracotta-soft);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--step-3);
}
.footer-grid ul { list-style: none; padding: 0; }
.footer-grid li { margin: 0 0 8px; }
.footer-grid a { color: rgba(246,245,242,0.8); font-size: 0.95rem; }
.footer-grid a:hover { color: var(--terracotta-soft); }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: var(--step-2);
}
.footer-brand .brand-icon { width: 18px; height: 24px; color: var(--cream); flex-shrink: 0; }
.footer-tag { max-width: 32ch; font-size: 0.95rem; line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(246,245,242,0.15);
  padding-top: var(--step-3);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--step-2);
  font-size: 0.85rem;
  color: rgba(246,245,242,0.6);
}

/* ---------- 15. Utility / misc ---------- */
.divider { height: 1px; background: var(--line); border: 0; margin: var(--step-6) 0; }
.rule-terracotta { width: 60px; height: 3px; background: var(--terracotta); border: 0; margin: 0 0 var(--step-3); }
.mx-auto-block { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.mt-lg { margin-top: var(--step-5); }
.mt-md { margin-top: var(--step-3); }
.mb-md { margin-bottom: var(--step-3); }
.max-prose { max-width: 65ch; }

/* Image placeholder used until real photography lands */
.photo-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(135deg, var(--cream-warm) 0%, var(--cream) 60%, var(--olive-soft) 100%);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.photo-frame.landscape { aspect-ratio: 16 / 10; }
.photo-frame.square { aspect-ratio: 1 / 1; }
.photo-frame.tone-terracotta { background: linear-gradient(135deg, var(--cream-warm) 0%, var(--taupe-soft) 55%, var(--terracotta-soft) 100%); }
.photo-frame.tone-olive { background: linear-gradient(135deg, var(--cream) 0%, var(--olive-soft) 70%, var(--olive) 100%); }
.photo-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 64'%3E%3Crect x='10' y='6' width='28' height='52' rx='5' ry='5' fill='none' stroke='%231D1E1B' stroke-width='2' opacity='0.16'/%3E%3Ccircle cx='30.5' cy='34' r='2.2' fill='%239A6547' opacity='0.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 64px 85px;
}
.photo-frame::after {
  content: "The Home Place";
  position: absolute;
  bottom: 14px;
  right: 16px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(29,30,27,0.32);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--step-6);
  align-items: center;
}
@media (max-width: 820px) { .split { grid-template-columns: 1fr; gap: var(--step-4); } }

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: var(--cream);
  color: var(--charcoal);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Skip link for accessibility */
.skip {
  position: absolute; left: -9999px;
  background: var(--charcoal); color: var(--cream);
  padding: 8px 16px; border-radius: 4px;
  z-index: 1000;
}
.skip:focus { left: 16px; top: 16px; }

/* ---------- 16. Circular brand mark (header/footer) ---------- */
.brand-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--terracotta);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color .2s ease;
}
.brand-icon-circle .brand-icon { width: 15px; height: 20px; }
.footer-brand-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(246,245,242,0.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-brand-circle .brand-icon { width: 14px; height: 19px; }

/* ---------- 17. Icon badges (door mark, reused everywhere) ---------- */
.feature-card .icon svg,
.icon-badge svg { width: 17px; height: 23px; }
.icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-badge.on-cream { background: var(--white); color: var(--terracotta); border: 1px solid var(--line); }
.icon-badge.on-white { background: var(--cream); color: var(--terracotta); }
.icon-badge.on-dark { background: rgba(246,245,242,0.08); color: var(--terracotta-soft); border: 1px solid rgba(246,245,242,0.25); }
.icon-badge.terracotta { background: var(--terracotta); color: var(--white); }
.icon-badge.olive { background: var(--olive); color: var(--white); }

/* ---------- 18. Numbered step badges ---------- */
.steps li::before {
  content: counter(step, decimal-leading-zero);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
}
.section-dark .steps li { border-top-color: rgba(246,245,242,0.15); }
.section-dark .steps li::before { background: rgba(246,245,242,0.1); color: var(--terracotta-soft); border: 1px solid rgba(246,245,242,0.25); }

/* ---------- 19. Highlight rail (Instagram-highlight-style quick nav) ---------- */
.highlight-rail {
  display: flex;
  gap: clamp(var(--step-3), 4vw, var(--step-6));
  justify-content: center;
  flex-wrap: wrap;
  padding: var(--step-6) 0 0;
}
.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  width: 82px;
}
.highlight-circle {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s ease, background .2s ease;
}
.highlight-circle svg { width: 21px; height: 28px; color: var(--charcoal); transition: color .2s ease; }
.highlight-item:hover .highlight-circle { border-color: var(--terracotta); background: var(--cream); }
.highlight-item:hover .highlight-circle svg { color: var(--terracotta); }
.highlight-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- 20. Editorial tile grid ---------- */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.tile {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--step-3);
  overflow: hidden;
}
.tile-cream { background: var(--cream-warm); color: var(--charcoal); }
.tile-terracotta { background: var(--terracotta); color: var(--white); }
.tile-olive { background: var(--olive); color: var(--white); }
.tile-charcoal { background: var(--charcoal); color: var(--cream); display: flex; align-items: center; justify-content: center; text-align: center; }
.tile-photo {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 64'%3E%3Crect x='10' y='6' width='28' height='52' rx='5' ry='5' fill='none' stroke='%231D1E1B' stroke-width='2' opacity='0.14'/%3E%3Ccircle cx='30.5' cy='34' r='2.2' fill='%239A6547' opacity='0.35'/%3E%3C/svg%3E") center / 44px 58px no-repeat,
    linear-gradient(135deg, var(--cream-warm) 0%, var(--cream) 55%, var(--olive-soft) 100%);
}
.tile-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.88);
  color: var(--charcoal);
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
}
.tile-charcoal .tile-badge { background: rgba(246,245,242,0.15); color: var(--cream); }
.tile h4 { margin: 0 0 4px; font-size: 0.92rem; font-weight: 600; letter-spacing: 0; text-transform: none; color: inherit; }
.tile p { margin: 0; font-size: 0.8rem; opacity: 0.85; line-height: 1.4; }
.tile-icon { width: 24px; height: 24px; border-radius: 50%; border: 1.5px solid rgba(246,245,242,0.5); display: flex; align-items: center; justify-content: center; margin: 0 auto var(--step-2); }
.tile-icon svg { width: 10px; height: 13px; color: var(--cream); }
.tile-wordmark { font-family: var(--font-display); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.tile-wordmark-tag { font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--terracotta-soft); margin-top: 4px; }
@media (max-width: 700px) { .tile-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- 21. Essence & Promise cards ---------- */
.ep-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--step-4); }
@media (max-width: 700px) { .ep-grid { grid-template-columns: 1fr; } }
.ep-card { background: var(--cream); border-radius: var(--radius-md); padding: clamp(var(--step-4), 3vw, var(--step-5)); }
.ep-card h4 { color: var(--terracotta); margin-bottom: var(--step-3); }
.ep-card ul { list-style: none; padding: 0; margin: 0; }
.ep-card li {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--charcoal);
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

/* ---------- 22. Language switcher ---------- */
.nav-lang { margin-left: var(--step-2); }
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.lang-switch span,
.lang-switch a {
  padding: 4px 9px;
  border-radius: 999px;
  line-height: 1;
}
.lang-switch span {
  background: var(--charcoal);
  color: var(--cream);
}
.lang-switch a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color .2s ease, background .2s ease;
}
.lang-switch a:hover { background: var(--cream); color: var(--terracotta); }
@media (max-width: 900px) {
  .nav-lang { margin: var(--step-2) 0 0; }
  .lang-switch { display: inline-flex; }
}
.ep-card li:last-child { border-bottom: 0; }
