/* YONDBLANC 漾柏医美 — Shared Design System */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@300;400;500;600;700&family=Noto+Sans+SC:wght@300;400;500&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

/* ── Variables ─────────────────────────────── */
:root {
  --navy:        #0d1b2a;
  --navy-mid:    #162635;
  --navy-light:  #1e3448;
  --gold:        #c9a055;
  --gold-light:  #e4c07a;
  --gold-pale:   #f5e8cc;
  --gold-dim:    #9a7840;
  --cream:       #faf8f3;
  --cream-dark:  #f0ebe0;
  --ink:         #1a1a2e;
  --text:        #2d2d3a;
  --text-mid:    #4a4a5a;
  --gray:        #8a8a9a;
  --gray-light:  #d5d0c8;
  --white:       #ffffff;

  --font-serif:  'Noto Serif SC', 'Songti SC', serif;
  --font-sans:   'Noto Sans SC', 'PingFang SC', sans-serif;
  --font-en:     'Cormorant Garamond', Georgia, serif;

  --radius:      2px;
  --radius-lg:   6px;
  --transition:  0.3s ease;
  --shadow:      0 4px 24px rgba(13,27,42,0.08);
  --shadow-lg:   0 12px 48px rgba(13,27,42,0.14);
}

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

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

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.75;
  -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, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.35;
  color: var(--navy);
}

.en-heading {
  font-family: var(--font-en);
  font-weight: 300;
  letter-spacing: 0.12em;
  font-style: italic;
}

.gold-text    { color: var(--gold); }
.cream-text   { color: var(--cream); }
.gray-text    { color: var(--gray); }

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

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px;
}

section { padding: 80px 0; }

/* ── Navigation ─────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,27,42,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,160,85,0.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 40px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-en {
  font-family: var(--font-en);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--gold);
}

.nav-logo-cn {
  font-family: var(--font-serif);
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.55);
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
  font-family: var(--font-sans);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-phone {
  font-size: 0.8rem;
  color: var(--gold);
  font-family: var(--font-en);
  letter-spacing: 0.08em;
  border: 1px solid rgba(201,160,85,0.4);
  padding: 6px 14px;
  border-radius: 1px;
  transition: all var(--transition);
}

.nav-phone:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ── Hero ────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}

.hero-ink {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='600'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='800' height='600' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 400px 300px;
}

.hero-line-left, .hero-line-right {
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,160,85,0.15), transparent);
}
.hero-line-left  { left: 12%; }
.hero-line-right { right: 12%; }

.hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 20px;
}

.hero-overline {
  font-family: var(--font-en);
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.hero-overline::before,
.hero-overline::after {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  line-height: 1.15;
}

.hero-title-en {
  font-family: var(--font-en);
  font-size: clamp(1.1rem, 3vw, 1.9rem);
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.3em;
  margin-bottom: 28px;
  display: block;
}

.hero-tagline {
  font-size: 0.88rem;
  color: rgba(250,248,243,0.55);
  letter-spacing: 0.22em;
  margin-bottom: 52px;
  font-family: var(--font-serif);
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Buttons ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  font-family: var(--font-sans);
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  font-weight: 500;
}
.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 0 24px rgba(201,160,85,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(250,248,243,0.3);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ── Section Headers ─────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  font-family: var(--font-en);
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-title.light { color: var(--cream); }

.section-divider {
  width: 48px; height: 1px;
  background: var(--gold);
  margin: 0 auto 20px;
}

.section-desc {
  color: var(--text-mid);
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.85;
}

.section-desc.light { color: rgba(250,248,243,0.65); }

/* ── Cards ───────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-gold {
  border-top: 3px solid var(--gold);
}

/* ── Brand Cards ─────────────────────────────── */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.brand-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.brand-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.brand-card-header {
  padding: 40px 36px 28px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.brand-card-header::before {
  content: '';
  position: absolute;
  right: -30px; top: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(201,160,85,0.15);
}

.brand-card-header::after {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(201,160,85,0.08);
}

.brand-label {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  font-family: var(--font-en);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.brand-name-cn {
  font-size: 2.2rem;
  font-family: var(--font-serif);
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 4px;
}

.brand-name-en {
  font-family: var(--font-en);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  color: rgba(250,248,243,0.45);
}

.brand-card-body {
  padding: 32px 36px 36px;
}

.brand-desc {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.9;
  margin-bottom: 24px;
}

.brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

.tag-gold {
  background: var(--gold-pale);
  color: var(--gold-dim);
}

.tag-navy {
  background: rgba(13,27,42,0.06);
  color: var(--navy);
}

/* ── Differentiator Grid ─────────────────────── */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.diff-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow);
}

.diff-icon {
  width: 44px; height: 44px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.diff-content h3 {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--navy);
}

.diff-content p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── Awards Strip ────────────────────────────── */
.awards-strip {
  background: var(--navy);
  padding: 52px 0;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(201,160,85,0.15);
}

.award-item {
  background: var(--navy);
  padding: 36px 28px;
  text-align: center;
}

.award-year {
  font-family: var(--font-en);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.award-name {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  color: var(--cream);
  line-height: 1.6;
}

/* ── Partner Logos ───────────────────────────── */
.partners-strip {
  background: var(--cream-dark);
  padding: 52px 0;
  overflow: hidden;
}

.partners-row {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.partner-item {
  padding: 20px 36px;
  text-align: center;
  border-right: 1px solid var(--gray-light);
}

.partner-item:last-child { border-right: none; }

.partner-name {
  font-size: 0.8rem;
  color: var(--text-mid);
  letter-spacing: 0.08em;
  font-family: var(--font-en);
  font-weight: 400;
}

.partner-cn {
  font-size: 0.7rem;
  color: var(--gray);
  letter-spacing: 0.05em;
  margin-top: 2px;
  font-family: var(--font-sans);
}

.partner-badge {
  font-size: 0.6rem;
  color: var(--gold-dim);
  background: var(--gold-pale);
  padding: 2px 6px;
  border-radius: 2px;
  margin-top: 4px;
  display: inline-block;
}

/* ── Treatment Grid ──────────────────────────── */
.treatment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.treatment-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.treatment-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.treatment-card-top {
  background: var(--navy);
  padding: 32px 28px 24px;
  position: relative;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.treatment-number {
  position: absolute;
  top: 16px; right: 20px;
  font-family: var(--font-en);
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(201,160,85,0.12);
  line-height: 1;
}

.treatment-name-cn {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 4px;
}

.treatment-name-en {
  font-family: var(--font-en);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.treatment-card-body {
  padding: 24px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.treatment-desc {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.85;
  flex: 1;
  margin-bottom: 20px;
}

.treatment-link {
  font-size: 0.78rem;
  color: var(--gold-dim);
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
  font-family: var(--font-en);
}

.treatment-link:hover { color: var(--gold); }

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

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(13,27,42,0.05);
}

.faq-question {
  width: 100%;
  padding: 20px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--navy);
  font-weight: 500;
  transition: background var(--transition);
  gap: 16px;
}

.faq-question:hover { background: var(--cream-dark); }
.faq-question.open { background: var(--navy); color: var(--cream); }

.faq-icon {
  width: 22px; height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  opacity: 0.7;
  transition: transform var(--transition);
}

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

.faq-answer {
  display: none;
  padding: 0 28px 20px;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.9;
  border-top: 1px solid var(--cream-dark);
}

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

/* ── Page Hero (inner pages) ─────────────────── */
.page-hero {
  background: var(--navy);
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(201,160,85,0.06) 0%, transparent 70%);
}

.page-hero-label {
  font-family: var(--font-en);
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 20px;
}

.page-hero-desc {
  font-size: 0.92rem;
  color: rgba(250,248,243,0.6);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.85;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: rgba(250,248,243,0.4);
  margin-bottom: 28px;
  font-family: var(--font-en);
  letter-spacing: 0.06em;
}

.breadcrumb a { color: rgba(201,160,85,0.7); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { opacity: 0.4; }

/* ── Timeline ────────────────────────────────── */
.timeline { position: relative; padding-left: 32px; }

.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.timeline-item {
  position: relative;
  padding-bottom: 36px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -36px; top: 6px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,160,85,0.2);
}

.timeline-year {
  font-family: var(--font-en);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 6px;
  font-weight: 500;
}

.timeline-text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.timeline-text strong {
  color: var(--navy);
  font-weight: 500;
}

/* ── Philosophy Grid ─────────────────────────── */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gray-light);
}

.philosophy-item {
  background: var(--cream);
  padding: 40px 28px;
  text-align: center;
}

.philosophy-num {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold-pale);
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}

.philosophy-item h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--navy);
}

.philosophy-item p {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ── Commitment List ─────────────────────────── */
.commitment-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.commitment-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(201,160,85,0.05);
  border-radius: var(--radius);
  border: 1px solid rgba(201,160,85,0.15);
}

.commitment-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 8px;
  flex-shrink: 0;
}

.commitment-item p {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ── Info Box ────────────────────────────────── */
.info-box {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  color: var(--cream);
}

.info-box h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.info-box p {
  font-size: 0.88rem;
  color: rgba(250,248,243,0.7);
  line-height: 1.9;
}

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

.location-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
}

.location-type {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  font-family: var(--font-en);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.location-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 14px;
}

.location-address {
  font-size: 0.83rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 12px;
}

.location-transit {
  font-size: 0.78rem;
  color: var(--gray);
  padding-left: 12px;
  border-left: 2px solid var(--gold-pale);
}

/* ── Media / Press Cards ─────────────────────── */
.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.press-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.press-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.press-year {
  font-family: var(--font-en);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.press-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.5;
}

.press-desc {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ── CTA Section ─────────────────────────────── */
.cta-section {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,160,85,0.05) 0%, transparent 70%);
}

.cta-section .section-title { color: var(--cream); }

/* ── Footer ──────────────────────────────────── */
.site-footer {
  background: #080f18;
  color: rgba(250,248,243,0.5);
  padding: 64px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-name {
  font-family: var(--font-en);
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 4px;
}

.footer-brand-cn {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  color: rgba(250,248,243,0.4);
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.78rem;
  color: rgba(250,248,243,0.35);
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-phone {
  font-family: var(--font-en);
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.footer-col h4 {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: rgba(250,248,243,0.6);
  margin-bottom: 20px;
  font-family: var(--font-en);
  text-transform: uppercase;
  font-weight: 400;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col a {
  font-size: 0.8rem;
  color: rgba(250,248,243,0.4);
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(250,248,243,0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: rgba(250,248,243,0.25);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-badges {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-badge {
  font-size: 0.65rem;
  padding: 3px 8px;
  border: 1px solid rgba(201,160,85,0.25);
  color: rgba(201,160,85,0.6);
  border-radius: 2px;
  letter-spacing: 0.05em;
}

/* ── Highlight Callout ───────────────────────── */
.highlight-callout {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--cream);
  border-left: 3px solid var(--gold);
  margin: 32px 0;
}

.highlight-callout h3 {
  color: var(--gold);
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.highlight-callout p {
  font-size: 0.88rem;
  color: rgba(250,248,243,0.75);
  line-height: 1.9;
}

/* ── Certification Badge ─────────────────────── */
.cert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(201,160,85,0.3);
  border-radius: 2px;
  background: rgba(201,160,85,0.05);
}

.cert-badge-icon { color: var(--gold); font-size: 1rem; }

.cert-badge-text {
  font-size: 0.78rem;
  color: var(--text-mid);
  letter-spacing: 0.05em;
}

/* ── Mobile Hamburger ────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  width: 22px; height: 1px;
  background: var(--cream);
  transition: all var(--transition);
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 1024px) {
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .diff-grid { grid-template-columns: 1fr; }
  .treatment-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }
  .container { padding: 0 20px; }
  .container-narrow { padding: 0 20px; }

  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--navy);
    padding: 24px 40px;
    gap: 20px;
    border-top: 1px solid rgba(201,160,85,0.15);
  }
  .nav-hamburger { display: flex; }

  .brand-grid { grid-template-columns: 1fr; }
  .treatment-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .press-grid { grid-template-columns: 1fr; }
  .philosophy-grid { grid-template-columns: repeat(2, 1fr); }
  .commitment-list { grid-template-columns: 1fr; }
  .awards-grid { grid-template-columns: 1fr 1fr; }
  .partners-row .partner-item { padding: 14px 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-cta-group { flex-direction: column; align-items: center; }
}
