  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Helvetica Neue', 'Pretendard', 'Noto Sans KR', sans-serif;
    color: #0f0f0f;
    background: #ffffff;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
  }
  a { color: inherit; text-decoration: none; }

  /* ---------- NAV ---------- */
  .nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid #f0e8e0;
  }
  .partner-strip {
    background: #0f0f0f;
    color: #ffffff;
    font-size: 12px;
    padding: 8px 32px;
    text-align: center;
    letter-spacing: 0.02em;
  }
  .partner-strip a {
    color: #FF6B35;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.15s;
  }
  .partner-strip a:hover {
    border-bottom-color: #FF6B35;
  }
  @media (max-width: 560px) {
    .partner-strip { font-size: 11px; padding: 7px 16px; }
  }
  .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .logo { display: inline-flex; align-items: baseline; gap: 4px; }
  .logo .latin { font-size: 22px; font-weight: 700; letter-spacing: -0.03em; }
  .logo .dash { color: #FF6B35; }
  .logo .hangul { font-size: 14px; color: #FF6B35; font-weight: 500; margin-left: 8px; }
  .nav-links { display: flex; align-items: center; gap: 32px; font-size: 14px; font-weight: 500; }
  .nav-links a { color: #0f0f0f; transition: color 0.15s; }
  .nav-links a:hover { color: #FF6B35; }
  .nav-cta {
    background: #FF6B35;
    color: #ffffff !important;
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 600;
    transition: background 0.15s, transform 0.15s;
  }
  .nav-cta:hover { background: #E5582A; transform: translateY(-1px); }
  .nav-lang {
    font-size: 13px;
    color: #8a8275;
    padding-left: 20px;
    border-left: 1px solid #f0e8e0;
    cursor: pointer;
  }
  .nav-lang .active { color: #0f0f0f; font-weight: 600; }
  .lang-link { font-size: 13px; color: #8a8275; transition: color 0.15s; }
  .lang-link:hover { color: #FF6B35; }
  .lang-link.active { color: #0f0f0f; font-weight: 600; }
  .menu-toggle { display: none; background: none; border: none; cursor: pointer; font-size: 24px; }

  /* ---------- HERO ---------- */
  .hero {
    background: linear-gradient(180deg, #FFF7F2 0%, #FFEBDA 100%);
    padding: 80px 32px 100px;
    position: relative;
    overflow: hidden;
  }
  .hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #FF6B35;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 24px;
    border: 1px solid #FFE4D4;
  }
  .hero-eyebrow .dot {
    width: 8px;
    height: 8px;
    background: #FF6B35;
    border-radius: 50%;
  }
  .hero h1 {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.0;
    margin-bottom: 24px;
  }
  .hero h1 .orange { color: #FF6B35; }
  .hero-body {
    font-size: 18px;
    color: #4a4640;
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 520px;
  }
  .hero-cta-row {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }
  .btn-primary {
    display: inline-block;
    background: #FF6B35;
    color: #ffffff;
    padding: 18px 36px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.25);
  }
  .btn-primary:hover { background: #E5582A; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255, 107, 53, 0.35); }
  .btn-secondary {
    display: inline-block;
    color: #0f0f0f;
    padding: 18px 12px;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 2px solid #0f0f0f;
    transition: color 0.15s, border-color 0.15s;
  }
  .btn-secondary:hover { color: #FF6B35; border-color: #FF6B35; }

  .hero-trust {
    display: flex;
    gap: 32px;
    padding-top: 28px;
    border-top: 1px solid #f0e8e0;
    font-size: 13px;
    color: #4a4640;
    font-weight: 500;
    flex-wrap: wrap;
  }
  .hero-trust span strong { color: #FF6B35; font-weight: 700; margin-right: 4px; }

  /* Booking card */
  .booking-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  }
  .doctor-row { display: flex; align-items: center; gap: 16px; padding-bottom: 24px; border-bottom: 1px solid #f0e8e0; margin-bottom: 24px; }
  .doctor-avatar {
    width: 56px; height: 56px;
    background: #FFE4D4;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #C04015;
    font-size: 18px;
    font-weight: 700;
  }
  .doctor-name { font-size: 17px; font-weight: 600; }
  .doctor-cred { font-size: 12px; color: #8a8275; margin-top: 2px; }
  .available-pill {
    background: #E8F5EE;
    color: #2D7A55;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 6px;
  }
  .available-pill .dot { width: 6px; height: 6px; background: #4FB286; border-radius: 50%; }
  .booking-label {
    font-size: 11px;
    color: #8a8275;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
    font-weight: 600;
  }
  .slot {
    background: #FFF7F2;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s, transform 0.15s;
  }
  .slot:hover { background: #FFEBDA; transform: translateX(2px); }
  .slot.primary { background: #FF6B35; color: #ffffff; }
  .slot.primary:hover { background: #E5582A; }
  .slot strong { font-weight: 600; }
  .booking-foot {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #f0e8e0;
    text-align: center;
    font-size: 13px;
    color: #4a4640;
    font-weight: 500;
  }
  .booking-foot strong { color: #FF6B35; font-weight: 700; }

  /* ---------- HOW IT WORKS ---------- */
  .section { padding: 100px 32px; }
  .section-inner { max-width: 1200px; margin: 0 auto; }
  .section-head { text-align: center; margin-bottom: 64px; }
  .section-eyebrow {
    font-size: 13px;
    color: #FF6B35;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 12px;
  }
  .section-title {
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 16px;
  }
  .section-title .orange { color: #FF6B35; }
  .section-lead {
    font-size: 17px;
    color: #4a4640;
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto;
  }

  .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .step-card {
    background: #FFF7F2;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: left;
    position: relative;
  }
  .step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #FF6B35;
    color: #ffffff;
    border-radius: 50%;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  .step-title {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
  }
  .step-body {
    font-size: 15px;
    color: #4a4640;
    line-height: 1.6;
  }
  .step-time {
    display: inline-block;
    margin-top: 16px;
    font-size: 11px;
    color: #FF6B35;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  /* ---------- WHAT YOU GET ---------- */
  .docs-section { background: #0f0f0f; color: #ffffff; }
  .docs-section .section-title { color: #ffffff; }
  .docs-section .section-lead { color: rgba(255, 255, 255, 0.7); }
  .docs-section .section-eyebrow { color: #FF6B35; }

  .docs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
  }
  .doc-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    transition: transform 0.2s, border-color 0.2s;
  }
  .doc-card:hover { transform: translateY(-4px); border-color: #FF6B35; }
  .doc-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 107, 53, 0.15);
    color: #FF6B35;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  .doc-title {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
  }
  .doc-body {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 14px;
  }
  .doc-tag {
    display: inline-block;
    font-size: 11px;
    color: #FF6B35;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 10px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 999px;
  }

  /* ---------- DOCTOR ---------- */
  .doctor-section { background: #FFF7F2; }
  .doctor-stage {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
  }
  .doctor-photo {
    background: linear-gradient(135deg, #FFE4D4 0%, #FF6B35 100%);
    border-radius: 24px;
    aspect-ratio: 4/5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 80px;
    font-weight: 700;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.25);
  }
  .doctor-info h3 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-bottom: 16px;
  }
  .doctor-info p {
    font-size: 16px;
    color: #4a4640;
    line-height: 1.7;
    margin-bottom: 16px;
  }
  .doctor-creds {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #f0e8e0;
  }
  .doctor-cred-row {
    display: flex;
    gap: 12px;
    font-size: 14px;
    color: #4a4640;
  }
  .doctor-cred-row strong { color: #0f0f0f; font-weight: 600; min-width: 100px; }

  /* ---------- PRICING ---------- */
  .pricing-section { text-align: center; }
  .price-card {
    max-width: 480px;
    margin: 48px auto 0;
    background: #ffffff;
    border: 2px solid #FF6B35;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.12);
  }
  .price-tag {
    display: inline-block;
    background: #FFE4D4;
    color: #C04015;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .price-num {
    font-size: 64px;
    font-weight: 700;
    color: #0f0f0f;
    letter-spacing: -0.035em;
    line-height: 1;
  }
  .price-num .currency { font-size: 32px; color: #FF6B35; vertical-align: top; margin-right: 4px; }
  .price-num .period { font-size: 18px; color: #8a8275; font-weight: 500; }
  .price-includes {
    list-style: none;
    margin: 28px 0;
    text-align: left;
    display: inline-block;
  }
  .price-includes li {
    font-size: 15px;
    color: #4a4640;
    margin-bottom: 10px;
    padding-left: 28px;
    position: relative;
  }
  .price-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FF6B35;
    font-weight: 700;
  }
  .price-foot {
    font-size: 13px;
    color: #8a8275;
    margin-top: 16px;
  }

  /* ---------- FAQ ---------- */
  .faq-section { background: #FFF7F2; }
  .faq-list { max-width: 800px; margin: 48px auto 0; }
  .faq-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px 28px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: box-shadow 0.15s;
  }
  .faq-item:hover { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06); }
  .faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
  }
  .faq-toggle { color: #FF6B35; font-size: 22px; font-weight: 700; transition: transform 0.2s; }
  .faq-item.open .faq-toggle { transform: rotate(45deg); }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, margin-top 0.3s;
    font-size: 15px;
    color: #4a4640;
    line-height: 1.7;
  }
  .faq-item.open .faq-a { max-height: 300px; margin-top: 16px; }

  /* ---------- CTA STRIP ---------- */
  .cta-strip {
    background: #FF6B35;
    color: #ffffff;
    padding: 80px 32px;
    text-align: center;
  }
  .cta-strip h2 {
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 16px;
  }
  .cta-strip p {
    font-size: 17px;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }
  .cta-strip .btn-primary {
    background: #ffffff;
    color: #FF6B35;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  }
  .cta-strip .btn-primary:hover { background: #FFF7F2; color: #E5582A; }

  /* ---------- FOOTER ---------- */
  .footer {
    background: #0f0f0f;
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 32px 32px;
  }
  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }
  .footer .logo .latin { color: #ffffff; }
  .footer-tagline {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.6;
    max-width: 280px;
  }
  .footer-col h4 {
    color: #ffffff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 16px;
    font-weight: 700;
  }
  .footer-col a {
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.15s;
  }
  .footer-col a:hover { color: #FF6B35; }
  .footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    flex-wrap: wrap;
    gap: 16px;
  }
  .footer-bottom .reg { color: rgba(255, 255, 255, 0.5); }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 900px) {
    .hero { padding: 60px 24px 80px; }
    .hero-inner { grid-template-columns: 1fr; gap: 48px; }
    .nav-inner { padding: 16px 24px; }
    .nav-links { display: none; }
    .menu-toggle { display: block; }
    .nav-links.open {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: #ffffff;
      padding: 24px;
      gap: 20px;
      border-bottom: 1px solid #f0e8e0;
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }
    .section { padding: 64px 24px; }
    .steps-grid { grid-template-columns: 1fr; }
    .docs-grid { grid-template-columns: 1fr; }
    .doctor-stage { grid-template-columns: 1fr; gap: 40px; }
    .doctor-photo { max-width: 300px; margin: 0 auto; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
    .hero-trust { gap: 16px; font-size: 12px; }
  }
  @media (max-width: 560px) {
    .footer-inner { grid-template-columns: 1fr; }
    .hero h1 { font-size: 44px; }
    .booking-card { padding: 24px; }
    .price-num { font-size: 48px; }
    .price-num .currency { font-size: 24px; }
  }

/* ============================================================ */
/* PAGE-SPECIFIC STYLES                                          */
/* For sub-pages: how-it-works, dr-kwon, services, pricing, etc. */
/* ============================================================ */

/* Page hero (shorter than home hero) */
.page-hero {
  background: linear-gradient(180deg, #FFF7F2 0%, #FFEBDA 100%);
  padding: 80px 32px 60px;
}
.page-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #FF6B35;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 24px;
  border: 1px solid #FFE4D4;
}
.page-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.page-hero h1 .orange { color: #FF6B35; }
.page-hero p {
  font-size: 18px;
  color: #4a4640;
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
}

/* Content wrapper for prose-heavy pages */
.content {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 32px;
}
.content h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 56px 0 20px;
}
.content h2:first-child { margin-top: 0; }
.content h2 .orange { color: #FF6B35; }
.content h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 32px 0 12px;
}
.content p {
  font-size: 16px;
  color: #4a4640;
  line-height: 1.7;
  margin-bottom: 16px;
}
.content p strong { color: #0f0f0f; font-weight: 600; }
.content ul, .content ol {
  margin: 16px 0 24px 24px;
  font-size: 16px;
  color: #4a4640;
  line-height: 1.7;
}
.content li { margin-bottom: 8px; }
.content .lead {
  font-size: 18px;
  color: #0f0f0f;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 28px;
}

/* Highlighted callout box */
.callout {
  background: #FFF7F2;
  border-left: 4px solid #FF6B35;
  padding: 24px 28px;
  border-radius: 4px;
  margin: 28px 0;
}
.callout p:last-child { margin-bottom: 0; }
.callout-title {
  font-size: 14px;
  font-weight: 700;
  color: #FF6B35;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* Two-column stage (e.g. doctor bio, services) */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
  margin: 48px 0;
}
.two-col-flipped {
  grid-template-columns: 1.4fr 1fr;
}
.two-col .col-image {
  background: linear-gradient(135deg, #FFE4D4 0%, #FF6B35 100%);
  border-radius: 16px;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 64px;
  font-weight: 700;
  box-shadow: 0 16px 48px rgba(255, 107, 53, 0.18);
  position: sticky;
  top: 100px;
}

/* Services grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 32px 0;
}
.service-card {
  background: #ffffff;
  border: 1px solid #f0e8e0;
  border-radius: 12px;
  padding: 28px;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.service-card:hover {
  border-color: #FF6B35;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255, 107, 53, 0.08);
}
.service-icon {
  width: 48px;
  height: 48px;
  background: #FFE4D4;
  color: #C04015;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}
.service-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
}
.service-card p {
  font-size: 14px;
  color: #4a4640;
  line-height: 1.6;
  margin: 0;
}

/* Credentials table style */
.cred-table {
  background: #FFF7F2;
  border-radius: 12px;
  padding: 28px;
  margin: 28px 0;
}
.cred-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(240, 232, 224, 0.6);
  font-size: 15px;
}
.cred-row:last-child { border-bottom: none; }
.cred-row strong { color: #0f0f0f; font-weight: 600; }
.cred-row span { color: #4a4640; }

/* FAQ groups with categories (for full FAQ page) */
.faq-category {
  margin-top: 48px;
}
.faq-category h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #FF6B35;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #FFE4D4;
}

/* Contact form */
.contact-form {
  max-width: 560px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #f0e8e0;
  border-radius: 16px;
  padding: 40px;
}
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #0f0f0f;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #f0e8e0;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  color: #0f0f0f;
  background: #ffffff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: #FF6B35;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.12);
}
.form-row textarea { resize: vertical; min-height: 120px; }
.form-row .hint { font-size: 12px; color: #8a8275; margin-top: 6px; }

/* Booking placeholder card */
.booking-placeholder {
  background: #FFF7F2;
  border: 2px dashed #FF6B35;
  border-radius: 16px;
  padding: 48px 32px;
  text-align: center;
  margin: 40px 0;
}
.booking-placeholder h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}
.booking-placeholder p {
  font-size: 15px;
  color: #4a4640;
  margin-bottom: 0;
}

/* Contact info parent (vertical list of .contact-row items) */
.contact-info h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}
.contact-info > p {
  font-size: 15px;
  color: #4a4640;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Responsive */
@media (max-width: 900px) {
  .two-col, .two-col-flipped {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .two-col .col-image {
    max-width: 320px;
    margin: 0 auto;
    position: static;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .cred-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .contact-info {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 28px;
  }
  .page-hero {
    padding: 60px 24px 50px;
  }
  .content {
    padding: 0 24px;
  }
}

/* ============================================================ */
/* COMPATIBILITY STYLES - for sub-page class names               */
/* ============================================================ */

/* Subhero (alias for page-hero used on sub-pages) */
.subhero {
  background: linear-gradient(180deg, #FFF7F2 0%, #FFEBDA 100%);
  padding: 80px 32px 64px;
}
.subhero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.subhero-eyebrow {
  display: inline-block;
  color: #FF6B35;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
  padding: 6px 14px;
  background: #ffffff;
  border-radius: 999px;
  border: 1px solid #FFE4D4;
}
.subhero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.subhero h1 .orange { color: #FF6B35; }
.subhero-lead {
  font-size: 18px;
  color: #4a4640;
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
}

/* Service title/body (used inside .service-card) */
.service-card .service-title,
.service-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.service-card .service-body,
.service-body {
  font-size: 14px;
  color: #4a4640;
  line-height: 1.6;
  margin: 0;
}

/* Prose container - alternate to .content */
.prose {
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 32px;
}
.prose h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 48px 0 16px;
}
.prose h2:first-child { margin-top: 0; }
.prose h2 .orange { color: #FF6B35; }
.prose h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 28px 0 10px;
}
.prose p {
  font-size: 16px;
  color: #4a4640;
  line-height: 1.7;
  margin-bottom: 16px;
}
.prose p strong { color: #0f0f0f; font-weight: 600; }
.prose .lead {
  font-size: 18px;
  color: #0f0f0f;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 28px;
}
.prose ul, .prose ol {
  margin: 16px 0 24px 24px;
  font-size: 16px;
  color: #4a4640;
  line-height: 1.7;
}
.prose li { margin-bottom: 8px; }

/* Info box callout */
.info-box {
  background: #FFF7F2;
  border-left: 4px solid #FF6B35;
  padding: 24px 28px;
  border-radius: 4px;
  margin: 28px 0;
}
.info-box p:last-child { margin-bottom: 0; }
.info-box-title {
  font-size: 13px;
  font-weight: 700;
  color: #FF6B35;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Form (sub-page form classes) */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #0f0f0f;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #f0e8e0;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  color: #0f0f0f;
  background: #ffffff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: #FF6B35;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.12);
}
.form-textarea { resize: vertical; min-height: 120px; }

/* Contact grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 32px;
  align-items: start;
}
.contact-row {
  padding: 18px 0;
  border-bottom: 1px solid #f0e8e0;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-row:first-child { padding-top: 0; }
.contact-row:last-child { border-bottom: none; }
.contact-icon {
  width: 40px;
  height: 40px;
  background: #FFE4D4;
  color: #C04015;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.contact-label {
  font-size: 12px;
  color: #8a8275;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-value {
  font-size: 15px;
  color: #0f0f0f;
  line-height: 1.5;
}
.contact-value a { color: #FF6B35; }

/* Booking embed placeholder */
.booking-embed {
  background: #FFF7F2;
  border: 2px dashed #FFB592;
  border-radius: 16px;
  padding: 56px 32px;
  text-align: center;
  margin: 32px 0;
}
.ph-eyebrow {
  display: inline-block;
  font-size: 11px;
  color: #FF6B35;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
  background: #FFE4D4;
  padding: 4px 12px;
  border-radius: 999px;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 24px;
  }
  .prose {
    padding: 48px 24px;
  }
  .subhero {
    padding: 56px 24px 44px;
  }
}
