/* ============================================================
   pocitos2bedroom.com — Shared Stylesheet
   Accent: Soft Coral / Warm Terracotta #C4785A
   Base: Navy #0D1B2A, Sand #C9A96E, White
   Fonts: Playfair Display + Inter
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: #1a2a3a;
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: #0D1B2A;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }

p { margin-bottom: 1rem; color: #3a4a5a; }
p:last-child { margin-bottom: 0; }

/* ---------- Colour tokens ---------- */
:root {
  --navy:    #0D1B2A;
  --navy-80: rgba(13,27,42,0.80);
  --sand:    #C9A96E;
  --coral:   #C4785A;
  --coral-light: #f5ece7;
  --coral-mid:   #e8c4b4;
  --white:   #ffffff;
  --off-white: #faf8f5;
  --gray-100: #f4f4f4;
  --gray-200: #e8e8e8;
  --gray-500: #7a8a9a;
  --text-dark: #0D1B2A;
  --text-body: #3a4a5a;
  --text-muted: #6a7a8a;
}

/* ---------- Layout ---------- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section--alt { background: var(--off-white); }
.section--navy { background: var(--navy); }
.section--coral-light { background: var(--coral-light); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 4px;
  padding: 14px 28px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn--primary {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}
.btn--primary:hover {
  background: #b06648;
  border-color: #b06648;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196,120,90,0.35);
}

.btn--outline {
  background: transparent;
  color: var(--coral);
  border-color: var(--coral);
}
.btn--outline:hover {
  background: var(--coral);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--off-white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,255,255,0.2);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--navy:hover {
  background: #162840;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(13,27,42,0.25);
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,27,42,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: box-shadow 0.3s;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav__logo-mark {
  width: 36px;
  height: 36px;
  background: var(--coral);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav__logo-mark svg { width: 20px; height: 20px; }

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav__logo-text span:first-child {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav__logo-text span:last-child {
  font-size: 0.65rem;
  color: var(--coral);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
  text-decoration: none;
}

.nav__links a:hover,
.nav__links a.active { color: var(--coral); }

.nav__cta {
  padding: 10px 22px;
  font-size: 0.8rem;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--navy);
  padding: 20px 24px 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.nav__mobile a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
  transition: color 0.2s;
}

.nav__mobile a:hover { color: var(--coral); }
.nav__mobile .btn { margin-top: 20px; text-align: center; justify-content: center; }

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile.open { display: flex; }
}

/* ---------- Hero (internal pages) ---------- */
.hero-inner {
  background: linear-gradient(135deg, var(--navy) 0%, #1e3a5f 60%, #2a4a70 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(196,120,90,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(201,169,110,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner__content { position: relative; z-index: 1; }

.hero-inner__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 20px;
}

.hero-inner__eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--coral);
}

.hero-inner h1 { color: var(--white); margin-bottom: 16px; }

.hero-inner__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin-bottom: 0;
}

/* ---------- Hero Home (with form) ---------- */
.hero-home {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3455 55%, #2a4a6a 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 55% at 70% 45%, rgba(196,120,90,0.15) 0%, transparent 65%),
    radial-gradient(ellipse 35% 50% at 5% 85%, rgba(201,169,110,0.08) 0%, transparent 55%);
  pointer-events: none;
}

.hero-home__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-home__left {}

.hero-home__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 20px;
}

.hero-home__eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--coral);
}

.hero-home h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.hero-home__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 32px;
  line-height: 1.65;
}

.hero-home__stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat__num {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
}

.hero-stat__label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ---------- Hero Form ---------- */
.hero-form {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 32px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}

.hero-form__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.hero-form__sub {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.form-step { display: none; }
.form-step.active { display: block; }

.form-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
}

.form-progress__dot {
  height: 4px;
  border-radius: 2px;
  flex: 1;
  background: var(--gray-200);
  transition: background 0.3s;
}

.form-progress__dot.done { background: var(--coral); }

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(196,120,90,0.12);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-group--radio {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.radio-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 20px;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text-body);
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}

.radio-pill:has(input:checked) {
  border-color: var(--coral);
  background: var(--coral-light);
  color: var(--coral);
}

.radio-pill input { position: absolute; opacity: 0; width: 0; height: 0; }

.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  gap: 12px;
}

.form-nav--end { justify-content: flex-end; }

.btn--form-next,
.btn--form-back,
.btn--form-submit {
  font-size: 0.85rem;
  padding: 12px 24px;
}

.btn--form-back {
  background: transparent;
  color: var(--text-muted);
  border: none;
  padding-left: 0;
  font-weight: 500;
  cursor: pointer;
}

.btn--form-back:hover { color: var(--text-dark); }

.form-step-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ---------- Icon Badge ---------- */
.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--coral-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-badge svg {
  width: 24px;
  height: 24px;
  stroke: var(--coral);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-badge--navy {
  background: rgba(255,255,255,0.1);
}
.icon-badge--navy svg { stroke: rgba(255,255,255,0.8); }

.icon-badge--sand {
  background: rgba(201,169,110,0.15);
}
.icon-badge--sand svg { stroke: var(--sand); }

.icon-badge--lg {
  width: 64px;
  height: 64px;
  border-radius: 16px;
}
.icon-badge--lg svg { width: 30px; height: 30px; }

/* ---------- Feature Cards ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.feature-card__icon { margin-bottom: 18px; }

.feature-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.feature-card__text {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.65;
  margin: 0;
}

/* ---------- 2-col content ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.two-col--reverse { direction: rtl; }
.two-col--reverse > * { direction: ltr; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--coral);
}

/* ---------- Stat blocks ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
}

.stat-card__num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card__label {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.stat-card__source {
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.stat-card__source a {
  color: var(--coral);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---------- Buyer profiles ---------- */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.profile-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: box-shadow 0.2s;
}

.profile-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.07); }

.profile-card__body {}

.profile-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.profile-card__text {
  font-size: 0.85rem;
  color: var(--text-body);
  margin: 0;
  line-height: 1.6;
}

/* ---------- How it works ---------- */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step-item {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-200);
}

.step-item:last-child { border-bottom: none; }

.step-num {
  width: 44px;
  height: 44px;
  background: var(--coral);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-item__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.step-item__text {
  font-size: 0.88rem;
  color: var(--text-body);
  margin: 0;
  line-height: 1.6;
}

/* ---------- Checklist ---------- */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.55;
}

.checklist li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: var(--coral-light);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23C4785A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='4 10 8 14 16 6'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ---------- Comparison Table ---------- */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.comparison-table th {
  background: var(--navy);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 16px 20px;
  text-align: left;
}

.comparison-table td {
  padding: 14px 20px;
  font-size: 0.88rem;
  color: var(--text-body);
  border-bottom: 1px solid var(--gray-200);
  background: var(--white);
}

.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table td:first-child { font-weight: 600; color: var(--navy); }
.comparison-table tr:nth-child(even) td { background: var(--off-white); }

/* ---------- FAQ Accordion ---------- */
.faq-list { display: flex; flex-direction: column; gap: 8px; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  gap: 16px;
  transition: background 0.2s;
}

.faq-question:hover { background: var(--off-white); }

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--coral);
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.7;
}

.faq-answer a { color: var(--coral); text-decoration: underline; text-underline-offset: 2px; }

.faq-item.open .faq-answer { display: block; }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3455 100%);
  border-radius: 16px;
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(196,120,90,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner__content { position: relative; z-index: 1; }

.cta-banner h2 { color: var(--white); margin-bottom: 12px; }

.cta-banner p { color: rgba(255,255,255,0.7); max-width: 520px; margin: 0 auto 28px; }

.cta-banner__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- Info panel ---------- */
.info-panel {
  background: var(--coral-light);
  border-left: 4px solid var(--coral);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin: 24px 0;
}

.info-panel p { font-size: 0.88rem; margin-bottom: 0; }

.info-panel a { color: var(--coral); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Source citation ---------- */
.source-inline {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.source-inline a { color: var(--coral); text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Timeline ---------- */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 28px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px; top: 12px; bottom: 12px;
  width: 2px;
  background: var(--coral-mid);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  padding: 0 0 28px 24px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--coral);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--coral-mid);
}

.timeline-item__year {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 4px;
}

.timeline-item__title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.timeline-item__text {
  font-size: 0.85rem;
  color: var(--text-body);
  margin: 0;
  line-height: 1.6;
}

/* ---------- Glossary ---------- */
.glossary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.glossary-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 18px 20px;
}

.glossary-item__term {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.glossary-item__def {
  font-size: 0.83rem;
  color: var(--text-body);
  margin: 0;
  line-height: 1.6;
}

/* ---------- Tax Table ---------- */
.tax-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  margin: 24px 0;
}

.tax-table th {
  background: var(--navy);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 18px;
  text-align: left;
}

.tax-table td {
  padding: 12px 18px;
  font-size: 0.86rem;
  color: var(--text-body);
  border-bottom: 1px solid var(--gray-200);
  background: var(--white);
}

.tax-table tr:last-child td { border-bottom: none; }
.tax-table tr:nth-child(even) td { background: var(--off-white); }

/* ---------- Footer ---------- */
.footer {
  background: var(--navy);
  padding: 64px 0 32px;
  color: rgba(255,255,255,0.7);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand {}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  text-decoration: none;
}

.footer__logo-mark {
  width: 32px;
  height: 32px;
  background: var(--coral);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__logo-mark svg { width: 18px; height: 18px; }

.footer__logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}

.footer__brand p {
  font-size: 0.82rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}

.footer__col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}

.footer__col a {
  display: block;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
  padding: 5px 0;
  transition: color 0.2s;
  text-decoration: none;
}

.footer__col a:hover { color: var(--coral); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.83rem;
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--coral);
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 12px;
}

.footer__legal {
  display: flex;
  gap: 20px;
}

.footer__legal a {
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
  text-decoration: none;
}

.footer__legal a:hover { color: var(--coral); }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}

.breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--coral); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ---------- Badge / Tag ---------- */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge--coral { background: var(--coral-light); color: var(--coral); }
.badge--navy { background: rgba(13,27,42,0.08); color: var(--navy); }
.badge--sand { background: rgba(201,169,110,0.15); color: #8a6a30; }

/* ---------- Page Section Headers ---------- */
.section-header { margin-bottom: 48px; }
.section-header--center { text-align: center; }
.section-header__title { margin-bottom: 12px; }
.section-header__sub {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 580px;
  line-height: 1.65;
}
.section-header--center .section-header__sub { margin: 0 auto; }

/* ---------- Divider ---------- */
.divider {
  width: 48px;
  height: 3px;
  background: var(--coral);
  border-radius: 2px;
  margin: 20px 0;
}
.divider--center { margin: 20px auto; }

/* ---------- Utilities ---------- */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.text-coral  { color: var(--coral) !important; }
.text-muted  { color: var(--text-muted) !important; }
.fw-600 { font-weight: 600; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid   { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .hero-home { min-height: auto; padding: 100px 0 56px; }
  .hero-home__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-home__stats { gap: 24px; }
  .two-col  { grid-template-columns: 1fr; gap: 40px; }
  .two-col--reverse { direction: ltr; }
  .profiles-grid { grid-template-columns: 1fr; }
  .glossary-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 24px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 540px) {
  .feature-grid { grid-template-columns: 1fr; }
  .stats-grid   { grid-template-columns: 1fr 1fr; }
  .form-row     { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

.form-honey { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { font-size: 0.85rem; color: var(--coral); margin-top: 12px; }
.form-status[hidden] { display: none; }
.form-status-error { color: #c0392b; }
