/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 18px; }

/* ===== DESIGN TOKENS — higher contrast, larger text ===== */
:root {
  --jade-dark:   #0E2219;
  --jade:        #1A3D2B;
  --jade-mid:    #255240;
  --jade-bright: #336B54;
  --gold:        #D4A843;
  --gold-hi:     #EEC95A;
  --gold-lo:     #A07820;
  --copper:      #C07A3A;

  /* TEXT — all hex, no opacity trickery */
  --text-1: #F9F3E8;   /* primary — near-white cream */
  --text-2: #D4C9AA;   /* secondary — warm tan, very readable */
  --text-3: #9E9278;   /* muted — labels, captions */
  --text-4: #6A6050;   /* dimmed — fine print */

  /* SURFACE */
  --surface-card:  rgba(26,61,43,0.55);
  --surface-inset: rgba(14,34,25,0.65);

  --radius: 2px;
}

body {
  font-family: 'Nunito Sans', sans-serif;
  background: var(--jade-dark);
  color: var(--text-1);
  line-height: 1.75;
  overflow-x: hidden;
  font-size: 1rem; /* = 17px */
  font-weight: 400;
}

a { color: inherit; text-decoration: none; }
strong { font-weight: 600; color: var(--text-1); }
em { font-style: italic; }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 52px; }
@media (max-width: 768px) { .container { padding: 0 24px; } }

/* ===== ANNOUNCE BAR ===== */
#announce {
  background: var(--gold);
  color: var(--jade-dark);
  text-align: center;
  padding: 12px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
#announce a { color: var(--jade-dark); text-decoration: underline; font-weight: 700; }

/* ===== NAV ===== */
#nav {
  background: rgba(14,34,25,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212,168,67,0.25);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  position: sticky; top: 0; z-index: 1000;
  transition: box-shadow 0.3s;
}
#nav.scrolled { box-shadow: 0 4px 40px rgba(0,0,0,0.5); }

.nav-logo-wrap { display: flex; align-items: center; gap: 14px; text-decoration: none; flex-shrink: 0; }
.nav-logo-img { width: 52px; height: 52px; object-fit: contain; background: white; padding: 4px; border-radius: 3px; flex-shrink: 0; }
.nav-logo-text { font-family: 'EB Garamond', serif; font-size: 20px; font-weight: 500; color: var(--text-1); line-height: 1.15; }
.nav-logo-text small { display: block; font-size: 0.72rem; font-family: 'Nunito Sans', sans-serif; font-weight: 400; color: var(--text-3); letter-spacing: 0.16em; text-transform: uppercase; }

.nav-links { display: flex; gap: 20px; list-style: none; align-items: center; }
.nav-links > li > a { font-size: 0.94rem; color: var(--text-2); letter-spacing: 0.02em; font-weight: 500; transition: color 0.2s; white-space: nowrap; }
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--gold); }

/* Dropdowns — controlled by JS .open class with delay, not pure :hover */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%);
  background: var(--jade);
  border: 1px solid rgba(212,168,67,0.22);
  min-width: 230px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.18s; z-index: 200;
  padding: 4px 0;
}
.nav-dropdown.open .nav-dropdown-menu { opacity: 1; pointer-events: all; }
.nav-dropdown-menu a {
  display: block; padding: 12px 20px;
  font-size: 0.88rem; color: var(--text-2);
  border-bottom: 1px solid rgba(212,168,67,0.08);
  transition: all 0.15s; font-weight: 400;
}
.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover { background: rgba(212,168,67,0.1); color: var(--gold); }

.nav-book {
  flex-shrink: 0;
  background: transparent; border: 1.5px solid var(--gold);
  color: var(--gold); padding: 11px 24px;
  font-size: 0.88rem; letter-spacing: 0.07em; font-weight: 600;
  font-family: 'Nunito Sans', sans-serif;
  transition: all 0.25s; white-space: nowrap; cursor: pointer;
}
.nav-book:hover { background: var(--gold); color: var(--jade-dark); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--text-1); font-size: 24px; }
.mobile-menu { display: none; }
.mobile-menu.open {
  display: flex; flex-direction: column;
  background: var(--jade-dark);
  position: fixed; top: 84px; left: 0; right: 0; bottom: 0;
  z-index: 999; padding: 32px; gap: 4px; overflow-y: auto;
}
.mobile-menu a {
  font-size: 1.05rem; color: var(--text-1); padding: 14px 0;
  border-bottom: 1px solid rgba(212,168,67,0.1); font-weight: 400;
}
.mobile-menu a:hover { color: var(--gold); }

/* ===== PAGE HEADER (used on inner pages) ===== */
.page-header {
  background: var(--jade-dark);
  padding: 80px 0 64px;
  position: relative; overflow: hidden;
  border-bottom: 1px solid rgba(212,168,67,0.12);
}
.page-header-cjk {
  position: absolute; right: 48px; top: 50%; transform: translateY(-50%);
  font-family: 'Noto Serif SC', serif; font-size: 120px; font-weight: 300;
  color: rgba(212,168,67,0.06); writing-mode: vertical-rl;
  pointer-events: none; user-select: none; letter-spacing: 10px;
}
.page-header-eyebrow {
  font-size: 0.76rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px; font-weight: 600;
  display: flex; align-items: center; gap: 12px;
}
.page-header-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.page-header h1 {
  font-family: 'EB Garamond', serif;
  font-size: clamp(42px, 5vw, 68px); font-weight: 400;
  color: var(--text-1); line-height: 1.08; margin-bottom: 20px;
}
.page-header h1 em { color: var(--gold); font-style: italic; }
.page-header-sub {
  font-size: 1.06rem; color: var(--text-2); max-width: 580px; line-height: 1.8;
}
.breadcrumb {
  font-size: 0.88rem; color: var(--text-3); margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: var(--text-4); }

/* ===== SECTION ANATOMY ===== */
.section-kicker { margin-bottom: 52px; }
.section-kicker.center { text-align: center; }
.kicker-cjk { font-family: 'Noto Serif SC', serif; font-size: 0.88rem; color: var(--gold-lo); letter-spacing: 0.22em; margin-bottom: 10px; font-weight: 400; }
.kicker-h2 { font-family: 'EB Garamond', serif; font-size: clamp(36px, 4vw, 54px); font-weight: 400; color: var(--text-1); line-height: 1.1; }
.kicker-h2 em { font-style: italic; color: var(--gold); }
.kicker-h3 { font-family: 'EB Garamond', serif; font-size: clamp(26px, 3vw, 36px); font-weight: 400; color: var(--text-1); line-height: 1.15; }
.kicker-h3 em { font-style: italic; color: var(--gold); }
.kicker-line { width: 56px; height: 1px; background: var(--gold); margin-top: 18px; }
.section-kicker.center .kicker-line { margin-left: auto; margin-right: auto; }

.section-body { font-size: 1.1rem; color: var(--text-2); line-height: 1.85; margin-bottom: 20px; }
.section-body + .section-body { margin-top: 16px; }

/* ===== GOLD DIVIDER ===== */
.gold-divider { height: 1px; background: rgba(212,168,67,0.14); position: relative; }
.gold-divider::before { content: '✦'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); background: inherit; color: var(--gold); font-size: 13px; padding: 0 18px; }
.gd-jade { background-color: var(--jade); }
.gd-jade::before { background-color: var(--jade); }
.gd-jade-mid { background-color: var(--jade-mid); }
.gd-jade-mid::before { background-color: var(--jade-mid); }
.gd-dark { background-color: var(--jade-dark); }
.gd-dark::before { background-color: var(--jade-dark); }

/* ===== BUTTONS ===== */
.btn-gold { display: inline-block; background: var(--gold); color: var(--jade-dark); padding: 14px 40px; font-size: 0.88rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; transition: background 0.2s; cursor: pointer; border: none; font-family: 'Nunito Sans', sans-serif; }
.btn-gold:hover { background: var(--gold-hi); }
.btn-outline { display: inline-block; background: transparent; color: var(--text-2); border: 1px solid rgba(212,168,67,0.4); padding: 14px 40px; font-size: 0.88rem; letter-spacing: 0.06em; font-weight: 500; transition: all 0.2s; cursor: pointer; font-family: 'Nunito Sans', sans-serif; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost-gold { display: inline-block; color: var(--gold); font-size: 0.88rem; letter-spacing: 0.1em; text-transform: uppercase; border-bottom: 1px solid rgba(212,168,67,0.4); padding-bottom: 3px; font-weight: 500; transition: all 0.2s; }
.btn-ghost-gold:hover { border-color: var(--gold); opacity: 0.85; }

/* ===== FORMS ===== */
.form-label { display: block; font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-3); margin-bottom: 8px; font-weight: 600; }
.form-input, .form-select {
  width: 100%;
  background: rgba(14,34,25,0.8);
  border: 1px solid rgba(212,168,67,0.22);
  color: var(--text-1);
  padding: 13px 16px;
  font-size: 0.94rem;
  font-family: 'Nunito Sans', sans-serif; font-weight: 400;
  outline: none; transition: border-color 0.2s; appearance: none;
}
.form-input:focus, .form-select:focus { border-color: var(--gold); }
.form-input::placeholder { color: var(--text-3); }
.form-select option { background: var(--jade); color: var(--text-1); }
.form-row { margin-bottom: 18px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  background: var(--gold); color: var(--jade-dark);
  border: none; padding: 15px 40px;
  font-size: 0.94rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 700; cursor: pointer; font-family: 'Nunito Sans', sans-serif;
  transition: background 0.2s; width: 100%; margin-top: 8px;
}
.form-submit:hover { background: var(--gold-hi); }

/* ===== CARD STYLES ===== */
.card {
  background: var(--surface-card);
  border: 1px solid rgba(212,168,67,0.18);
  padding: 32px 28px;
}
.card-inset {
  background: var(--surface-inset);
  border: 1px solid rgba(212,168,67,0.18);
  padding: 32px 28px;
}
.card-title { font-family: 'EB Garamond', serif; font-size: 1.35rem; font-weight: 500; color: var(--text-1); margin-bottom: 10px; }
.card-sub { font-size: 1rem; color: var(--text-2); line-height: 1.7; }

/* ===== SERVICES GRID ===== */
.services-grid, .services-row2 {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(212,168,67,0.15);
}
.svc-card {
  padding: 44px 28px;
  border-right: 1px solid rgba(212,168,67,0.1);
  text-align: center; transition: background 0.3s; cursor: pointer;
}
.svc-card:last-child { border-right: none; }
.svc-card:hover { background: rgba(51,107,84,0.25); }
.svc-glyph { font-family: 'Noto Serif SC', serif; font-size: 42px; color: var(--gold); margin-bottom: 18px; opacity: 0.7; display: block; }
.svc-name { font-family: 'EB Garamond', serif; font-size: 1.45rem; font-weight: 500; color: var(--text-1); margin-bottom: 12px; }
.svc-body { font-size: 1.05rem; color: var(--text-2); line-height: 1.8; }
.svc-link { display: inline-block; margin-top: 18px; font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); border-bottom: 1px solid rgba(212,168,67,0.35); padding-bottom: 2px; font-weight: 600; transition: opacity 0.2s; }
.svc-link:hover { opacity: 0.8; }
.services-row2 { border-top: none; }

/* ===== CONDITIONS TABS ===== */
.conditions-tabs { display: flex; gap: 0; border-bottom: 1px solid rgba(212,168,67,0.2); overflow-x: auto; margin-bottom: 32px; }
.ctab { padding: 14px 24px; font-size: 0.88rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-3); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; font-weight: 500; transition: all 0.2s; white-space: nowrap; }
.ctab.active { color: var(--gold); border-bottom-color: var(--gold); }
.ctab:hover:not(.active) { color: var(--text-1); }
.conditions-panel { display: none; }
.conditions-panel.active { display: flex; flex-wrap: wrap; gap: 10px; }
.ctag { font-size: 0.96rem; color: var(--text-2); border: 1px solid rgba(212,168,67,0.2); padding: 9px 18px; font-weight: 400; cursor: pointer; transition: all 0.2s; }
.ctag:hover, .ctag a:hover { background: rgba(212,168,67,0.1); border-color: var(--gold); color: var(--gold); }
.ctag a { color: inherit; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.testimonial-card { background: var(--surface-card); border: 1px solid rgba(212,168,67,0.16); padding: 32px 28px; transition: border-color 0.25s; }
.testimonial-card:hover { border-color: rgba(212,168,67,0.42); }
.tc-stars { font-size: 1rem; color: var(--gold); margin-bottom: 16px; letter-spacing: 2px; }
.tc-body { font-family: 'EB Garamond', serif; font-size: 1.2rem; font-style: italic; color: var(--text-1); line-height: 1.75; margin-bottom: 20px; }
.tc-author { font-size: 0.88rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-lo); font-weight: 600; }
.tc-condition { font-size: 0.88rem; color: var(--text-3); margin-top: 4px; }

/* ===== FAQ ===== */
.faq-item { border-bottom: 1px solid rgba(212,168,67,0.12); }
.faq-q { width: 100%; background: none; border: none; text-align: left; padding: 24px 0; font-family: 'EB Garamond', serif; font-size: 1.25rem; font-weight: 500; color: var(--text-1); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; transition: color 0.2s; }
.faq-q:hover { color: var(--gold); }
.faq-icon { font-size: 1.25rem; color: var(--gold); transition: transform 0.3s; flex-shrink: 0; font-family: 'Nunito Sans', sans-serif; font-weight: 300; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 24px; font-size: 1.1rem; color: var(--text-2); line-height: 1.85; }
.faq-item.open .faq-a { display: block; }

/* ===== INFO LIST ===== */
.info-list { list-style: none; }
.info-list li { padding: 10px 0; border-bottom: 1px solid rgba(212,168,67,0.08); font-size: 1.05rem; color: var(--text-2); display: flex; align-items: center; gap: 10px; line-height: 1.6; }
.info-list li:last-child { border-bottom: none; }
.info-list li::before { content: '✦'; font-size: 0.55rem; color: var(--gold); flex-shrink: 0; }

/* ===== BLOG CARDS ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.blog-card { background: var(--surface-card); border: 1px solid rgba(212,168,67,0.14); padding: 28px; transition: border-color 0.25s; cursor: pointer; }
.blog-card:hover { border-color: rgba(212,168,67,0.4); }
.blog-tag { font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; font-weight: 600; }
.blog-title { font-family: 'EB Garamond', serif; font-size: 1.25rem; font-weight: 500; color: var(--text-1); line-height: 1.3; margin-bottom: 12px; }
.blog-excerpt { font-size: 1.05rem; color: var(--text-3); line-height: 1.75; }
.blog-read { display: inline-block; margin-top: 16px; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); border-bottom: 1px solid rgba(212,168,67,0.3); padding-bottom: 2px; font-weight: 600; }

/* ===== CONTACT STRIP ===== */
.contact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.contact-label { font-size: 0.76rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-3); margin-bottom: 14px; font-weight: 600; }
.contact-value { font-family: 'EB Garamond', serif; font-size: 1.35rem; font-weight: 500; color: var(--text-1); line-height: 1.3; margin-bottom: 4px; }
.contact-sub { font-size: 1rem; color: var(--text-3); }

/* ===== FOOTER ===== */
#footer { background: #081510; border-top: 1px solid rgba(212,168,67,0.2); padding: 52px 52px 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo-mark { width: 40px; height: 40px; border: 1px solid rgba(212,168,67,0.4); display: flex; align-items: center; justify-content: center; font-family: 'Noto Serif SC', serif; font-size: 20px; color: var(--gold); }
.footer-brand-name { font-family: 'EB Garamond', serif; font-size: 1.1rem; font-weight: 500; color: var(--text-1); }
.footer-tagline { font-size: 1rem; color: var(--text-2); line-height: 1.75; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.footer-social a { width: 38px; height: 38px; border: 1px solid rgba(212,168,67,0.22); display: flex; align-items: center; justify-content: center; font-size: 0.94rem; color: var(--text-3); transition: all 0.2s; }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col-title { font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; font-weight: 600; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { font-size: 1rem; color: var(--text-3); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { max-width: 1200px; margin: 36px auto 0; padding-top: 22px; border-top: 1px solid rgba(212,168,67,0.1); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 0.82rem; color: var(--text-3); }
.footer-seo { font-size: 0.76rem; color: var(--text-4); text-align: right; max-width: 560px; line-height: 1.6; }

/* ===== QUOTE BLOCK ===== */
.quote-block { border-left: 3px solid var(--gold); padding: 22px 26px; background: rgba(14,34,25,0.45); }
.quote-block p { font-family: 'EB Garamond', serif; font-size: 1.15rem; font-style: italic; color: var(--text-1); line-height: 1.7; }
.quote-block cite { display: block; margin-top: 12px; font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); font-style: normal; font-weight: 600; }

/* ===== DETAIL ROWS ===== */
.detail-row { display: flex; gap: 12px; padding: 13px 0; border-bottom: 1px solid rgba(212,168,67,0.08); font-size: 1.05rem; color: var(--text-2); }
.detail-row:last-child { border-bottom: none; }
.detail-label { font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); min-width: 100px; padding-top: 2px; font-weight: 600; flex-shrink: 0; }

/* ===== HERO (homepage) ===== */
.hero {
  min-height: 94vh; display: flex; flex-direction: column; justify-content: center;
  padding: 110px 52px 80px; position: relative; overflow: hidden;
  background: var(--jade-dark);
}
.hero-geo-1 { position: absolute; top: -100px; right: -80px; width: 600px; height: 600px; border-radius: 50%; background: rgba(51,107,84,0.09); pointer-events: none; }
.hero-geo-2 { position: absolute; bottom: -80px; left: -60px; width: 420px; height: 420px; border-radius: 50%; background: rgba(212,168,67,0.05); pointer-events: none; }
.hero-cjk { position: absolute; right: 60px; top: 50%; transform: translateY(-50%); font-family: 'Noto Serif SC', serif; font-size: 100px; font-weight: 300; color: rgba(212,168,67,0.06); writing-mode: vertical-rl; letter-spacing: 12px; pointer-events: none; user-select: none; line-height: 1; }
.hero-inner { max-width: 1200px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; position: relative; z-index: 2; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(212,168,67,0.1); border: 1px solid rgba(212,168,67,0.3); color: var(--gold); padding: 8px 18px; font-size: 0.76rem; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 26px; font-weight: 600; }
.hero-h1 { font-family: 'EB Garamond', serif; font-size: clamp(50px, 5.5vw, 80px); font-weight: 400; line-height: 1.06; margin-bottom: 26px; color: var(--text-1); }
.hero-h1 .gold-italic { color: var(--gold); font-style: italic; display: block; }
.hero-desc { font-size: 1.15rem; line-height: 1.9; color: var(--text-2); max-width: 500px; margin-bottom: 40px; }
.hero-cta-row { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 0; margin-top: 56px; border-top: 1px solid rgba(212,168,67,0.18); padding-top: 36px; grid-column: 1 / -1; }
.hero-stat { flex: 1; padding-right: 40px; border-right: 1px solid rgba(212,168,67,0.12); }
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child { border-right: none; }
.stat-val { font-family: 'EB Garamond', serif; font-size: 54px; font-weight: 400; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.stat-lbl { font-size: 0.82rem; color: var(--text-3); line-height: 1.5; letter-spacing: 0.04em; font-weight: 400; }

/* ===== BOOKING CARD ===== */
.booking-card { background: rgba(26,61,43,0.7); border: 1px solid rgba(212,168,67,0.28); backdrop-filter: blur(8px); padding: 36px 32px; }
.booking-card-title { font-family: 'EB Garamond', serif; font-size: 1.6rem; font-weight: 500; color: var(--text-1); margin-bottom: 6px; }
.booking-card-sub { font-size: 1rem; color: var(--text-3); margin-bottom: 28px; }
.booking-note { font-size: 0.82rem; color: var(--text-3); text-align: center; margin-top: 12px; }

/* ===== SERVICE DETAIL PAGE ===== */
.service-detail-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 72px; align-items: start; }
.benefit-item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid rgba(212,168,67,0.08); }
.benefit-item:last-child { border-bottom: none; }
.benefit-icon { font-size: 1.05rem; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.benefit-text { font-size: 1.05rem; color: var(--text-2); line-height: 1.75; }
.benefit-text strong { color: var(--text-1); font-weight: 600; }

/* ===== CONDITION PAGE ===== */
.condition-intro { font-size: 1.15rem; color: var(--text-2); line-height: 1.9; margin-bottom: 20px; }
.condition-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 40px; }
.condition-card { background: var(--surface-card); border: 1px solid rgba(212,168,67,0.15); padding: 24px 20px; transition: border-color 0.2s; }
.condition-card:hover { border-color: rgba(212,168,67,0.4); }
.condition-card-name { font-family: 'EB Garamond', serif; font-size: 1.15rem; font-weight: 500; color: var(--text-1); margin-bottom: 8px; }
.condition-card-desc { font-size: 1rem; color: var(--text-3); line-height: 1.7; }

/* ===== CTA STRIP ===== */
.cta-strip { background: var(--jade-mid); padding: 64px 0; text-align: center; }
.cta-strip h2 { font-family: 'EB Garamond', serif; font-size: clamp(28px, 3.5vw, 42px); font-weight: 400; color: var(--text-1); margin-bottom: 16px; }
.cta-strip p { font-size: 1.1rem; color: var(--text-2); margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ===== INSURANCE GRID ===== */
.ins-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border: 1px solid rgba(212,168,67,0.15); }
.ins-col { padding: 36px 32px; border-right: 1px solid rgba(212,168,67,0.1); }
.ins-col:last-child { border-right: none; }
.ins-col-title { font-size: 0.76rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid rgba(212,168,67,0.2); font-weight: 600; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid, .services-row2 { grid-template-columns: repeat(2,1fr); }
  .svc-card { border-bottom: 1px solid rgba(212,168,67,0.1); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-links, .nav-book { display: none; }
  .nav-toggle { display: block; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-cjk { display: none; }
  .testimonials-grid, .blog-grid, .condition-cards { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .ins-grid, .contact-grid { grid-template-columns: 1fr; }
  .ins-col { border-right: none; border-bottom: 1px solid rgba(212,168,67,0.1); }
  .form-grid-2 { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; }
  .hero-stat { min-width: 45%; margin-bottom: 24px; }
}
@media (max-width: 600px) {
  .hero { padding: 100px 24px 60px; }
  .services-grid, .services-row2 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}
