﻿:root {
  --ink: #221817;
  --soft-ink: #766863;
  --paper: #fffdfa;
  --ivory: #fbf7ef;
  --pearl: rgba(255, 255, 255, .68);
  --line: rgba(156, 118, 68, .18);
  --gold: #b98224;
  --gold-dark: #8d5d14;
  --champagne: #f6dfb8;
  --rose: #ead6cf;
  --shadow: 0 28px 80px rgba(76, 49, 22, .14);
  --blur: blur(22px) saturate(145%);
  --radius: 10px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body, "Noto Sans Thai", sans-serif);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(181, 137, 67, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(181, 137, 67, .045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 88%);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.ambient {
  position: fixed;
  z-index: -2;
  width: 44vw;
  height: 44vw;
  border-radius: 999px;
  filter: blur(90px);
  opacity: .42;
  pointer-events: none;
}
.ambient-one { top: -18vw; left: -12vw; background: #f4d29a; }
.ambient-two { right: -16vw; top: 18vh; background: #ead2cb; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 clamp(18px, 4vw, 64px);
  background: rgba(255, 253, 249, .74);
  border-bottom: 1px solid var(--line);
  backdrop-filter: var(--blur);
}
.brand { display: flex; align-items: center; gap: 13px; }
.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--font-display, "Trirong", "Noto Sans Thai", serif);
  font-size: 28px;
  font-style: italic;
  background: linear-gradient(145deg, #201614, #8d5d14 72%, #f5d089);
  border-radius: 50%;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.32), 0 18px 42px rgba(109, 71, 25, .24);
}
.brand strong {
  display: block;
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 600;
}
.brand small {
  display: block;
  margin-top: 5px;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 2.5px;
}
.main-nav { justify-self: center; display: flex; align-items: center; gap: 26px; }
.main-nav a, .nav-menu > button {
  position: relative;
  padding: 30px 0 28px;
  color: rgba(34, 24, 23, .82);
  border: 0;
  background: transparent;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}
.main-nav a.is-active, .nav-menu > button.is-active { color: var(--gold-dark); }
.main-nav a.is-active::after, .nav-menu > button.is-active::after {
  content: "";
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 20px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.nav-menu { position: relative; }
.nav-menu > button::after { content: "⌄"; margin-left: 7px; color: var(--gold); }
.nav-dropdown {
  position: absolute;
  top: 72px;
  left: -20px;
  width: 220px;
  display: none;
  padding: 10px;
  background: rgba(255,255,255,.84);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: var(--blur);
}
.nav-menu:hover .nav-dropdown { display: grid; }
.nav-dropdown a { padding: 12px 14px; border-radius: 8px; }
.nav-dropdown a:hover { background: rgba(246, 223, 184, .28); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.line-link {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #14be4f;
  border-radius: 50%;
  box-shadow: 0 14px 35px rgba(20, 190, 79, .24);
}
.nav-toggle { display: none; border: 0; background: transparent; font-size: 28px; }

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 20px 48px rgba(118, 77, 23, .2); }
.btn-gold { color: #fff; background: linear-gradient(135deg, #d4a343, #94610f); }
.btn-glass {
  color: var(--gold-dark);
  border-color: rgba(185, 130, 36, .3);
  background: rgba(255,255,255,.58);
  backdrop-filter: var(--blur);
}

.page { display: none; animation: pageIn .28s ease; }
.page.is-active { display: block; }
@keyframes pageIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.section {
  width: min(1680px, calc(100% - 56px));
  margin: 0 auto;
  padding: clamp(44px, 5vw, 84px) 0;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}
.kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: 0; }
p { color: var(--soft-ink); line-height: 1.86; }

.lux-hero {
  width: min(1800px, calc(100% - 40px));
  min-height: calc(100vh - 82px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(420px, .9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: clamp(36px, 6vw, 96px);
  padding: clamp(44px, 6vw, 98px) 0;
}
.hero-copy h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(48px, 5.8vw, 92px);
  line-height: 1.05;
}
.hero-copy p {
  max-width: 690px;
  font-size: clamp(18px, 1.4vw, 22px);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0; }
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 14px;
  max-width: 620px;
}
.hero-metrics article {
  padding: 20px;
  background: rgba(255,255,255,.5);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: var(--blur);
}
.hero-metrics b { display: block; font-size: 32px; color: var(--gold-dark); }
.hero-metrics span { color: var(--soft-ink); font-size: 13px; }

.hero-stage {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: end;
}
.clinic-window {
  position: absolute;
  inset: 5% 0 8% 16%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 42px 42px 160px 42px;
  box-shadow: var(--shadow);
}
.clinic-window::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,250,242,.92) 0 8%, transparent 40%),
    linear-gradient(180deg, transparent, rgba(255,250,242,.35));
}
.clinic-window img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 17%;
  transform: scale(1.08);
  filter: brightness(1.08) saturate(.82);
}
.hero-badge {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 4;
  width: min(310px, calc(100% - 56px));
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255,255,255,.72), rgba(255,255,255,.28));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.78), 0 22px 58px rgba(54,34,12,.16);
  backdrop-filter: var(--blur);
}
.hero-badge span {
  display: block;
  margin-bottom: 5px;
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.hero-badge b {
  display: block;
  font-size: 17px;
  line-height: 1.35;
}
.glass-card, .glass-panel {
  background: linear-gradient(145deg, rgba(255,255,255,.72), rgba(255,255,255,.34));
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: var(--shadow);
  backdrop-filter: var(--blur);
}
.doctor-portrait {
  position: relative;
  z-index: 2;
  width: min(430px, 74%);
  align-self: end;
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: 26px;
}
.doctor-portrait img {
  width: 128px;
  height: 150px;
  object-fit: cover;
  object-position: 50% 12%;
  border-radius: 18px;
}
.doctor-portrait small, .doctor-portrait span { display: block; color: var(--soft-ink); }
.doctor-portrait strong { display: block; margin: 4px 0; font-size: 18px; }
.hero-orbit {
  position: absolute;
  z-index: 3;
  right: 4%;
  top: 17%;
  width: 250px;
  padding: 22px;
  border-radius: 26px;
}
.hero-orbit b, .hero-orbit span { display: block; }
.hero-orbit span { margin-top: 8px; color: var(--soft-ink); font-size: 14px; }

.assurance {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 16px;
}
.assurance article, .treatment-card, .offer-card, .story-card, .journal-grid article, .philosophy-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.56);
  backdrop-filter: var(--blur);
  box-shadow: 0 16px 55px rgba(92, 58, 22, .08);
}
.assurance article { padding: 26px; }
.assurance span {
  display: block;
  margin-bottom: 38px;
  color: rgba(185, 130, 36, .48);
  font-size: 38px;
  font-family: var(--font-display, "Trirong", "Noto Sans Thai", serif);
}
.assurance b { display: block; margin-bottom: 8px; font-size: 20px; }
.assurance p { margin: 0; font-size: 15px; }

.intro-grid {
  display: grid;
  grid-template-columns: .64fr 1.36fr;
  gap: 36px;
  align-items: start;
}
.section-title { position: sticky; top: 112px; }
.section-title h2, .review-strip h2, .split-showcase h2, .page-heading h1 {
  font-size: clamp(34px, 4vw, 60px);
  line-height: 1.12;
}
.treatment-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.treatment-card {
  min-height: 420px;
  display: grid;
  overflow: hidden;
}
.treatment-card.featured { grid-row: span 2; }
.treatment-card > div:last-child { padding: 26px; }
.treatment-card span, .offer-card span, .journal-grid span, .philosophy-grid span {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.treatment-card h3 { margin: 8px 0 10px; font-size: 30px; }
.treatment-image {
  min-height: 250px;
  background-size: cover;
  background-position: center;
}
.featured .treatment-image { min-height: 460px; }
.image-ultra { background-image: linear-gradient(rgba(255,255,255,.1), rgba(255,250,242,.34)), url("assets/generated/ultraformer-lifting.png"); background-position: 52% 45%; }
.image-botox { background-image: linear-gradient(rgba(255,255,255,.08), rgba(255,250,242,.28)), url("assets/generated/botox-face-design.png"); background-position: 42% 42%; }
.image-filler { background-image: linear-gradient(rgba(255,255,255,.08), rgba(255,250,242,.28)), url("assets/generated/doctor-consultation.png"); background-position: 48% 48%; }
.image-skin { background-image: linear-gradient(rgba(255,255,255,.08), rgba(255,250,242,.28)), url("assets/generated/skin-booster-glow.png"); background-position: 50% 34%; }

.split-showcase {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 28px;
  align-items: stretch;
}
.glass-panel {
  padding: clamp(28px, 4vw, 54px);
  border-radius: 30px;
}
.check-list { list-style: none; padding-left: 0; margin: 22px 0 0; }
.check-list li {
  position: relative;
  margin-bottom: 14px;
  padding-left: 30px;
  color: var(--soft-ink);
  line-height: 1.7;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 14px;
  height: 1px;
  background: var(--gold);
}
.editorial-visual { position: relative; min-height: 560px; }
.editorial-img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  border-radius: 150px 30px 30px 30px;
  border: 1px solid rgba(255,255,255,.7);
  background-image:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,250,242,.58)),
    url("assets/generated/clinic-interior-luxury.png");
  background-size: cover;
  background-position: 66% 18%;
  box-shadow: var(--shadow);
}
.floating-note {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 280px;
  padding: 24px;
  border-radius: 24px;
}
.floating-note b, .floating-note span { display: block; }
.floating-note span { margin-top: 8px; color: var(--soft-ink); }

.review-strip {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 28px;
  align-items: start;
}
.review-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.review-cards article {
  min-height: 260px;
  padding: 26px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 54px rgba(75, 45, 14, .08);
}
.review-cards b { display: block; margin-bottom: 16px; font-size: 20px; line-height: 1.45; }
.review-cards span, .story-card span { color: #d7a22c; letter-spacing: 2px; }

.sub-hero, .page-heading, .contact-shell {
  width: min(1680px, calc(100% - 56px));
  margin: 0 auto;
}
.sub-hero {
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(420px, .82fr) minmax(520px, 1.18fr);
  align-items: center;
  gap: 42px;
  padding: clamp(54px, 7vw, 112px) 0 clamp(34px, 5vw, 72px);
}
.sub-hero h1, .contact-shell h1 {
  margin-bottom: 22px;
  font-size: clamp(44px, 5vw, 78px);
  line-height: 1.08;
}
.sub-hero p, .contact-shell p { font-size: 19px; }
.sub-visual {
  min-height: 540px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 38px 140px 38px 38px;
  box-shadow: var(--shadow);
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.sub-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(255,250,242,.38));
}
.botox-visual { background-image: url("assets/generated/botox-face-design.png"); background-position: 42% 42%; }
.ultra-visual { background-image: url("assets/generated/ultraformer-lifting.png"); background-position: 50% 45%; }
.clinic-visual { background-image: url("assets/generated/clinic-interior-luxury.png"); background-position: 50% 50%; }
.detail-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 24px;
}
.detail-layout.three { grid-template-columns: 1fr 1fr .8fr; }
.timeline { display: grid; gap: 14px; }
.timeline span {
  display: block;
  padding: 18px;
  background: rgba(255,255,255,.54);
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--soft-ink);
}
.timeline b { display: block; color: var(--gold-dark); font-size: 24px; }
.price-focus { display: grid; align-content: center; text-align: center; }
.price-focus b { display: block; margin: 10px 0 24px; color: var(--gold-dark); font-size: 56px; }

.page-heading {
  max-width: 1160px;
  text-align: center;
  padding-top: clamp(54px, 7vw, 112px);
  padding-bottom: 20px;
}
.page-heading .kicker { justify-content: center; }
.offer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 18px;
  padding-top: 28px;
}
.offer-card {
  min-height: 360px;
  padding: 32px;
  display: grid;
  align-content: end;
  position: relative;
  overflow: hidden;
}
.offer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 18%, rgba(246, 223, 184, .72), transparent 32%);
  pointer-events: none;
}
.offer-card > * { position: relative; z-index: 1; }
.offer-card h2 { font-size: 34px; }
.offer-card strong { color: var(--gold-dark); font-size: 38px; }
.hero-offer { min-height: 520px; color: #fff; background: linear-gradient(145deg, #2a1b17, #b98224); }
.hero-offer p, .hero-offer span, .hero-offer strong { color: rgba(255,255,255,.88); }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

/* Service support galleries (client-delivered photos) */
.service-gallery-section { display: grid; gap: 20px; }
.service-gallery-head .kicker { display: inline-block; margin-bottom: 6px; }
.service-gallery-head h2 { margin: 0; }
.service-shot { margin: 0; border-radius: 22px; overflow: hidden; background: #f6efe4; box-shadow: 0 18px 40px rgba(120, 80, 20, .12); }
.service-shot img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; transition: transform .5s ease; }
.service-shot:hover img { transform: scale(1.04); }
.story-card { padding: 16px; }
.story-img {
  height: 360px;
  margin-bottom: 18px;
  border-radius: 22px;
  background-size: cover;
  background-position: center;
}
.story-one { background-image: url("assets/generated/botox-face-design.png"); background-position: 40% 42%; }
.story-two { background-image: url("assets/generated/ultraformer-lifting.png"); background-position: 50% 45%; }
.story-three { background-image: url("assets/generated/skin-booster-glow.png"); background-position: 50% 34%; }
.story-card b { display: block; padding: 0 10px; font-size: 22px; }
.story-card p, .story-card span { display: block; padding: 0 10px 10px; }

.journal-grid, .philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.journal-grid article, .philosophy-grid article {
  min-height: 330px;
  padding: 34px;
}
.journal-grid h2, .philosophy-grid h2 { margin: 16px 0; font-size: 30px; line-height: 1.24; }

.doctor-page { grid-template-columns: .85fr 1.15fr; }
.doctor-large {
  min-height: 620px;
  display: grid;
  align-items: end;
  justify-items: center;
  border-radius: 40px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.2), rgba(246,223,184,.5));
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: var(--shadow);
}
.doctor-large img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: 50% 12%;
  filter: saturate(.9) brightness(1.05);
}

.contact-shell {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 32px;
  align-items: center;
  padding: clamp(54px, 7vw, 112px) 0;
}
.contact-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.contact-card p {
  padding: 14px 0;
  margin: 0;
  border-bottom: 1px solid var(--line);
}

.floating-book {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 45;
  display: grid;
  gap: 10px;
}
.floating-book a, .floating-book button {
  width: 52px;
  min-width: 52px;
  height: 52px;
  min-height: 52px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 18px 44px rgba(70, 42, 12, .2);
}
.floating-book a { display: grid; place-items: center; background: #14be4f; }
.floating-book button { background: linear-gradient(135deg, #d4a343, #94610f); }

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}
.booking-modal.is-open { display: block; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(34, 24, 23, .5);
  backdrop-filter: blur(8px);
}
.modal-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(960px, calc(100vw - 28px));
  max-height: calc(100vh - 28px);
  overflow: auto;
  transform: translate(-50%, -50%);
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 30px;
  background: rgba(255,253,249,.86);
  box-shadow: 0 36px 100px rgba(0,0,0,.24);
  backdrop-filter: var(--blur);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  font-size: 26px;
}
.modal-head { padding-right: 52px; }
.modal-head h2 { margin-bottom: 8px; font-size: 36px; }
.booking-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.booking-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}
.booking-form input, .booking-form select, .booking-form textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.72);
}
.booking-form textarea, .submit-booking { grid-column: 1 / -1; }
.booking-result {
  margin-top: 22px;
  padding: 22px;
  border: 1px solid rgba(20, 190, 79, .18);
  border-radius: 20px;
  background: rgba(241, 255, 245, .74);
}
.booking-result p { white-space: pre-line; }
.modal-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.queue-list {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.section-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.section-head button {
  color: var(--gold-dark);
  border: 0;
  background: transparent;
  font-weight: 800;
}
.queue-list ol { padding-left: 22px; }
.queue-list li { margin-bottom: 10px; color: var(--soft-ink); line-height: 1.65; }

@media (max-width: 1180px) {
  .site-header { grid-template-columns: auto auto 1fr; height: 74px; }
  .brand strong { font-size: 21px; }
  .nav-toggle { display: block; order: 3; justify-self: end; }
  .main-nav {
    position: fixed;
    top: 74px;
    left: 14px;
    right: 14px;
    display: none;
    padding: 18px 22px;
    background: rgba(255,253,249,.92);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    backdrop-filter: var(--blur);
  }
  .main-nav.is-open { display: grid; justify-items: start; gap: 2px; }
  .main-nav a, .nav-menu > button { padding: 12px 0; }
  .main-nav a.is-active::after, .nav-menu > button.is-active::after { display: none; }
  .nav-dropdown { position: static; display: grid; width: 100%; padding: 0 0 8px 16px; box-shadow: none; border: 0; background: transparent; }
  .header-actions { justify-self: end; }
  .header-actions .btn { display: none; }
  .lux-hero, .sub-hero, .contact-shell, .intro-grid, .split-showcase, .review-strip { grid-template-columns: 1fr; }
  .hero-stage { min-height: 560px; }
  .section-title { position: static; }
  .assurance, .treatment-grid, .detail-layout, .detail-layout.three, .offer-grid, .gallery-grid, .journal-grid, .philosophy-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-grid .hero-offer { grid-column: span 2; }
}

@media (max-width: 720px) {
  .site-header { padding: 0 14px; }
  .brand-mark { width: 42px; height: 42px; font-size: 24px; }
  .brand small { display: none; }
  .line-link { width: 42px; height: 42px; }
  .section, .sub-hero, .page-heading, .contact-shell, .lux-hero { width: min(100% - 28px, 1680px); }
  .hero-copy h1, .sub-hero h1, .contact-shell h1, .page-heading h1 { font-size: 39px; }
  .hero-actions, .contact-actions, .modal-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .hero-metrics, .assurance, .treatment-grid, .detail-layout, .detail-layout.three, .offer-grid, .gallery-grid, .journal-grid, .philosophy-grid, .review-cards { grid-template-columns: 1fr; }
  .offer-grid .hero-offer { grid-column: auto; }
  .hero-stage { min-height: 500px; }
  .clinic-window { inset: 0 0 18% 0; border-radius: 30px 30px 120px 30px; }
  .doctor-portrait {
    width: 92%;
    grid-template-columns: 96px 1fr;
    align-self: end;
  }
  .doctor-portrait img { width: 96px; height: 116px; }
  .hero-orbit { right: 8px; top: 12px; width: 220px; }
  .sub-visual, .doctor-large, .doctor-large img { min-height: 390px; height: 390px; }
  .editorial-visual, .editorial-img { min-height: 420px; }
  .floating-note { left: 18px; right: 18px; width: auto; }
  .booking-form { grid-template-columns: 1fr; }
  .floating-book { right: 12px; bottom: 12px; }
}

/* Premium glass refinement */
@font-face {
  font-family: "Noto Sans Thai";
  font-style: normal;
  font-weight: 100 900;
  font-display: block;
  src: url("assets/fonts/noto-sans-thai-variable.woff2") format("woff2");
  unicode-range: U+02D7, U+0303, U+0331, U+0E01-0E5B, U+200C-200D, U+25CC;
}

@font-face {
  font-family: "Noto Sans Thai";
  font-style: normal;
  font-weight: 100 900;
  font-display: block;
  src: url("assets/fonts/noto-sans-thai-latin-variable.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Trirong";
  font-style: normal;
  font-weight: 500;
  font-display: block;
  src: url("assets/fonts/trirong-latin-500.woff2") format("woff2");
}

@font-face {
  font-family: "Trirong";
  font-style: normal;
  font-weight: 600;
  font-display: block;
  src: url("assets/fonts/trirong-latin-600.woff2") format("woff2");
}

@font-face {
  font-family: "Trirong";
  font-style: normal;
  font-weight: 700;
  font-display: block;
  src: url("assets/fonts/trirong-latin-700.woff2") format("woff2");
}

:root {
  --glass-line: rgba(255, 255, 255, .74);
  --glass-fill: rgba(255, 255, 255, .42);
  --glass-fill-strong: rgba(255, 255, 255, .68);
  --shadow: 0 28px 80px rgba(76, 49, 22, .12);
  --shadow-soft: 0 18px 55px rgba(76, 49, 22, .08);
  --blur: blur(30px) saturate(175%);
  --radius: 18px;
  --mx: 50%;
  --my: 20%;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle 440px at var(--mx) var(--my), rgba(255,255,255,.62), transparent 62%),
    radial-gradient(circle 660px at calc(100% - var(--mx)) 18%, rgba(246,223,184,.22), transparent 58%);
  opacity: .78;
  transition: opacity .25s ease;
}

::selection {
  color: #fff;
  background: rgba(141, 93, 20, .86);
}

.site-header {
  height: 78px;
  background: linear-gradient(135deg, rgba(255,255,255,.74), rgba(255,250,243,.36));
  border-bottom: 1px solid rgba(255,255,255,.64);
  box-shadow: 0 14px 45px rgba(83, 53, 18, .07);
}

.brand strong { font-size: 23px; font-weight: 620; }
.main-nav { gap: 24px; }
.main-nav a, .nav-menu > button {
  font-size: 14px;
  font-weight: 650;
}

.nav-dropdown {
  background: linear-gradient(145deg, rgba(255,255,255,.84), rgba(255,255,255,.42));
  border: 1px solid var(--glass-line);
  border-radius: 18px;
}

h1, h2, h3 { font-weight: 680; }
p { line-height: 1.78; }

.kicker {
  font-size: 11px;
  font-weight: 760;
}

.hero-copy h1 {
  max-width: 760px;
  font-size: clamp(40px, 4.6vw, 76px);
  line-height: 1.12;
}

.hero-copy p {
  max-width: 660px;
  font-size: clamp(16px, 1.15vw, 19px);
}

.section-title h2,
.review-strip h2,
.split-showcase h2,
.page-heading h1 {
  font-size: clamp(30px, 3.25vw, 50px);
  line-height: 1.18;
}

.sub-hero h1,
.contact-shell h1 {
  font-size: clamp(36px, 4vw, 62px);
  line-height: 1.14;
}

.sub-hero p,
.contact-shell p { font-size: 17px; }

.treatment-card h3 { font-size: 26px; }
.offer-card h2 { font-size: 28px; }
.offer-card strong { font-size: 32px; }
.journal-grid h2,
.philosophy-grid h2 { font-size: 25px; line-height: 1.32; }

/* Sitemap page system */
.page-heading {
  max-width: 980px;
}

.page-heading p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 16px;
}

.review-group-list {
  display: grid;
  gap: 22px;
  padding-top: 10px;
}

.review-group,
.case-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.76), rgba(255,255,255,.3)),
    radial-gradient(circle at 12% 10%, rgba(255,255,255,.58), transparent 28%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.84), 0 20px 60px rgba(79, 51, 20, .1);
  backdrop-filter: var(--blur);
}

.review-group {
  padding: 24px;
}

.group-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.group-head h2,
.case-card h2 {
  margin-bottom: 8px;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.18;
}

.group-head p,
.case-card p {
  margin-bottom: 0;
  font-size: 15px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.mini-review,
.case-media {
  min-height: 260px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.72);
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.58);
}

.mini-review {
  position: relative;
  overflow: hidden;
}

.mini-review::after,
.case-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,250,242,.28)),
    radial-gradient(circle at 78% 18%, rgba(246,223,184,.24), transparent 26%);
}

.mini-review.is-hidden[hidden] {
  display: none;
}

.show-more {
  min-height: 44px;
  margin-top: 18px;
  padding: 0 18px;
  color: var(--gold-dark);
  border: 1px solid rgba(185, 130, 36, .22);
  border-radius: 999px;
  background: rgba(255,255,255,.66);
  font-size: 14px;
  font-weight: 760;
  box-shadow: 0 12px 28px rgba(93, 61, 18, .08);
}

.show-more:hover {
  transform: translateY(-1px);
}

.case-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.case-card {
  display: grid;
  grid-template-columns: minmax(220px, .95fr) minmax(0, 1.05fr);
  gap: 20px;
  align-items: center;
  padding: 20px;
}

.case-media {
  min-height: 320px;
}

.testimonial-stack {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.call-link {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--gold-dark);
  border: 1px solid rgba(255,255,255,.74);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,.84), rgba(255,255,255,.38));
  box-shadow: 0 14px 35px rgba(81, 52, 19, .1);
  backdrop-filter: var(--blur);
}

.btn-minimal {
  color: var(--ink);
  border-color: rgba(185, 130, 36, .16);
  background: rgba(255,255,255,.44);
  backdrop-filter: var(--blur);
}

.btn-minimal:hover {
  border-color: rgba(185, 130, 36, .3);
}

.floating-book {
  gap: 12px;
}

.floating-book a,
.floating-book button {
  width: 58px;
  min-width: 58px;
  height: 58px;
  min-height: 58px;
}

@media (max-width: 1180px) {
  .case-layout,
  .testimonial-stack {
    grid-template-columns: 1fr;
  }

  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 15px;
  }

  .page-heading p,
  .group-head p,
  .case-card p {
    font-size: 14px;
  }

  .review-group {
    padding: 18px;
  }

  .group-head {
    display: block;
    margin-bottom: 14px;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .mini-review,
  .case-media {
    min-height: 220px;
  }

  .floating-book a,
  .floating-book button,
  .call-link {
    width: 50px;
    min-width: 50px;
    height: 50px;
    min-height: 50px;
  }
}

/* Mockup-aligned navigation and page visuals */
.nav-menu {
  position: relative;
}

.nav-menu > button::after {
  content: "⌄";
  margin-left: 7px;
  color: var(--gold);
  font-size: 12px;
}

.nav-dropdown {
  top: calc(100% - 4px);
  left: 50%;
  width: 260px;
  display: none;
  transform: translateX(-50%);
}

.nav-menu.is-open .nav-dropdown {
  display: grid;
}

.nav-dropdown a {
  padding: 13px 16px;
}

.about-shell,
.botox-shell {
  align-items: stretch;
}

.about-visual {
  background-image:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,250,242,.22)),
    url("assets/generated/clinic-interior-luxury.png");
  background-position: center top;
}

.clinic-window img {
  object-position: center top;
}

.botox-visual {
  background-image:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,250,242,.18)),
    url("assets/generated/botox-face-design.png");
  background-position: center top;
}

.articles-heading,
.review-heading {
  padding-bottom: 8px;
}

.articles-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, .9fr) minmax(280px, .72fr);
  gap: 22px;
  align-items: start;
}

.article-feature,
.article-stack article,
.article-sidebar,
.review-hero-copy,
.review-hero-media,
.contact-shot {
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.76), rgba(255,255,255,.3)),
    radial-gradient(circle at 12% 8%, rgba(255,255,255,.58), transparent 28%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.82), 0 18px 50px rgba(85, 56, 20, .1);
  backdrop-filter: var(--blur);
}

.article-feature {
  overflow: hidden;
}

.article-media {
  min-height: 330px;
  background-size: cover;
  background-position: center top;
}

.articles-visual {
  background-image: url("assets/generated/skin-booster-glow.png");
}

.article-copy {
  padding: 22px 24px 24px;
}

.article-copy span,
.article-stack article span {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.article-copy h2,
.article-sidebar h2 {
  margin: 10px 0 12px;
  font-size: 32px;
  line-height: 1.16;
}

.article-stack {
  display: grid;
  gap: 18px;
}

.article-stack article {
  min-height: 196px;
  padding: 24px;
}

.article-stack article h2 {
  margin: 10px 0 12px;
  font-size: 24px;
  line-height: 1.24;
}

.article-sidebar {
  padding: 22px;
}

.rank-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.rank-list li {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(185, 130, 36, .12);
}

.rank-list li:last-child {
  border-bottom: 0;
}

.rank-list b {
  font-size: 17px;
}

.rank-list span {
  color: var(--soft-ink);
  font-size: 14px;
  line-height: 1.6;
}

.review-hero-card,
.testimonial-hero-card {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: 22px;
  align-items: stretch;
}

.testimonial-hero-card {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.review-hero-copy {
  padding: 30px;
}

.review-hero-copy h2 {
  margin: 10px 0 14px;
  font-size: clamp(28px, 2.4vw, 40px);
  line-height: 1.18;
}

.review-hero-media {
  min-height: 360px;
  background-size: cover;
  background-position: center top;
}

.review-rating-visual {
  background-image: url("assets/generated/clinic-interior-luxury.png");
}

.before-after-visual {
  background-image: url("assets/generated/botox-face-design.png");
  background-position: center;
}

.before-after-visual-alt {
  background-image: url("assets/generated/ultraformer-lifting.png");
  background-position: center;
}

.case-shell .case-card {
  min-height: 380px;
}

.contact-page-shell {
  align-items: start;
}

.contact-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 0;
}

.contact-shot {
  min-height: 280px;
  background-size: cover;
  background-position: center;
}

.contact-shot-one {
  background-image: url("assets/generated/clinic-interior-luxury.png");
  background-position: center;
}

.contact-shot-two {
  background-image: url("assets/generated/doctor-consultation.png");
  background-position: center;
}

.contact-shot-three {
  background-image: url("assets/generated/hero-luxury-clinic.png");
  background-position: center;
}

.site-footer {
  border-top: 1px solid rgba(185, 130, 36, .12);
  background: linear-gradient(180deg, rgba(255,252,247,.96), rgba(255,248,238,.94));
}

.footer-shell {
  padding-top: 28px;
  padding-bottom: 28px;
}

.footer-top,
.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand strong,
.footer-cta strong {
  display: block;
  margin-bottom: 6px;
  font-size: 22px;
}

.footer-brand p,
.footer-cta p {
  margin: 0;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--soft-ink);
  font-size: 15px;
}

.footer-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 22px 0;
}

.footer-cards article {
  padding: 20px;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.8), rgba(255,255,255,.38)),
    radial-gradient(circle at 12% 8%, rgba(255,255,255,.58), transparent 28%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.82), 0 14px 38px rgba(85,56,20,.08);
}

.footer-cards b {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.footer-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 1180px) {
  .nav-dropdown {
    position: static;
    width: 100%;
    display: none;
    transform: none;
  }

  .nav-menu.is-open .nav-dropdown {
    display: grid;
  }

  .articles-shell,
  .review-hero-card,
  .testimonial-hero-card,
  .contact-gallery,
  .footer-cards {
    grid-template-columns: 1fr;
  }

  .footer-top,
  .footer-cta {
    display: grid;
    justify-content: start;
  }
}

@media (max-width: 720px) {
  .article-copy h2,
  .article-sidebar h2,
  .review-hero-copy h2 {
    font-size: 26px;
  }

  .article-media,
  .review-hero-media,
  .contact-shot {
    min-height: 240px;
  }

  .footer-actions .btn {
    width: 100%;
  }
}
.review-cards b { font-size: 18px; font-weight: 680; }
.story-card b { font-size: 20px; font-weight: 680; }
.hero-metrics b { font-size: 28px; font-weight: 700; }
.timeline b { font-size: 21px; }
.price-focus b { font-size: 44px; }

.btn {
  position: relative;
  min-height: 46px;
  font-weight: 750;
  overflow: hidden;
  isolation: isolate;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease;
}

.icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  flex: 0 0 auto;
  background-color: currentColor;
  vertical-align: -3px;
}

.icon-line {
  width: 20px;
  height: 20px;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3C6.48 3 2 6.7 2 11.25c0 4.05 3.54 7.44 8.31 8.12.32.07.75.22.86.51.1.27.07.69.03.96l-.14.9c-.04.27-.2 1.06.87.58 1.07-.49 5.77-3.4 7.88-5.82C21.26 14.9 22 13.15 22 11.25 22 6.7 17.52 3 12 3Zm-4.2 10.5H5.55a.55.55 0 0 1-.55-.55V9.2a.55.55 0 0 1 1.1 0v3.2h1.7a.55.55 0 0 1 0 1.1Zm2.05-.55a.55.55 0 0 1-1.1 0V9.2a.55.55 0 0 1 1.1 0v3.75Zm4.6 0a.55.55 0 0 1-.99.33l-1.85-2.52v2.19a.55.55 0 1 1-1.1 0V9.2a.55.55 0 0 1 .99-.33l1.85 2.52V9.2a.55.55 0 0 1 1.1 0v3.75Zm3.55-2.15a.55.55 0 1 1 0 1.1h-1.7v.5H18a.55.55 0 1 1 0 1.1h-2.25a.55.55 0 0 1-.55-.55V9.2c0-.3.25-.55.55-.55H18a.55.55 0 1 1 0 1.1h-1.7v.5H18Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3C6.48 3 2 6.7 2 11.25c0 4.05 3.54 7.44 8.31 8.12.32.07.75.22.86.51.1.27.07.69.03.96l-.14.9c-.04.27-.2 1.06.87.58 1.07-.49 5.77-3.4 7.88-5.82C21.26 14.9 22 13.15 22 11.25 22 6.7 17.52 3 12 3Zm-4.2 10.5H5.55a.55.55 0 0 1-.55-.55V9.2a.55.55 0 0 1 1.1 0v3.2h1.7a.55.55 0 0 1 0 1.1Zm2.05-.55a.55.55 0 0 1-1.1 0V9.2a.55.55 0 0 1 1.1 0v3.75Zm4.6 0a.55.55 0 0 1-.99.33l-1.85-2.52v2.19a.55.55 0 1 1-1.1 0V9.2a.55.55 0 0 1 .99-.33l1.85 2.52V9.2a.55.55 0 0 1 1.1 0v3.75Zm3.55-2.15a.55.55 0 1 1 0 1.1h-1.7v.5H18a.55.55 0 1 1 0 1.1h-2.25a.55.55 0 0 1-.55-.55V9.2c0-.3.25-.55.55-.55H18a.55.55 0 1 1 0 1.1h-1.7v.5H18Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.icon-calendar {
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 2a1 1 0 0 1 1 1v1h8V3a1 1 0 1 1 2 0v1h1.25A2.75 2.75 0 0 1 22 6.75v11.5A2.75 2.75 0 0 1 19.25 21H4.75A2.75 2.75 0 0 1 2 18.25V6.75A2.75 2.75 0 0 1 4.75 4H6V3a1 1 0 0 1 1-1Zm13 8H4v8.25c0 .41.34.75.75.75h14.5c.41 0 .75-.34.75-.75V10ZM6.75 12.5h2.5v2.25h-2.5V12.5Zm4 0h2.5v2.25h-2.5V12.5Zm4 0h2.5v2.25h-2.5V12.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 2a1 1 0 0 1 1 1v1h8V3a1 1 0 1 1 2 0v1h1.25A2.75 2.75 0 0 1 22 6.75v11.5A2.75 2.75 0 0 1 19.25 21H4.75A2.75 2.75 0 0 1 2 18.25V6.75A2.75 2.75 0 0 1 4.75 4H6V3a1 1 0 0 1 1-1Zm13 8H4v8.25c0 .41.34.75.75.75h14.5c.41 0 .75-.34.75-.75V10ZM6.75 12.5h2.5v2.25h-2.5V12.5Zm4 0h2.5v2.25h-2.5V12.5Zm4 0h2.5v2.25h-2.5V12.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.icon-phone {
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.15 6.59 6.59l2.2-2.2c.3-.3.75-.4 1.14-.27 1.25.41 2.58.63 3.95.63.61 0 1.1.49 1.1 1.1v3.49c0 .61-.49 1.1-1.1 1.1C10.85 21.73 2.27 13.15 2.27 3.5c0-.61.49-1.1 1.1-1.1h3.5c.61 0 1.1.49 1.1 1.1 0 1.37.22 2.7.63 3.95.12.39.03.83-.28 1.14l-2.2 2.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.15 6.59 6.59l2.2-2.2c.3-.3.75-.4 1.14-.27 1.25.41 2.58.63 3.95.63.61 0 1.1.49 1.1 1.1v3.49c0 .61-.49 1.1-1.1 1.1C10.85 21.73 2.27 13.15 2.27 3.5c0-.61.49-1.1 1.1-1.1h3.5c.61 0 1.1.49 1.1 1.1 0 1.37.22 2.7.63 3.95.12.39.03.83-.28 1.14l-2.2 2.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.icon-copy {
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 3.5A2.5 2.5 0 0 1 10.5 1h7A2.5 2.5 0 0 1 20 3.5v10A2.5 2.5 0 0 1 17.5 16h-7A2.5 2.5 0 0 1 8 13.5v-10ZM5.5 6A2.5 2.5 0 0 0 3 8.5v12A2.5 2.5 0 0 0 5.5 23h9a2.5 2.5 0 0 0 2.45-2H5.5a.5.5 0 0 1-.5-.5v-12a.5.5 0 0 1 .5-.5V6Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 3.5A2.5 2.5 0 0 1 10.5 1h7A2.5 2.5 0 0 1 20 3.5v10A2.5 2.5 0 0 1 17.5 16h-7A2.5 2.5 0 0 1 8 13.5v-10ZM5.5 6A2.5 2.5 0 0 0 3 8.5v12A2.5 2.5 0 0 0 5.5 23h9a2.5 2.5 0 0 0 2.45-2H5.5a.5.5 0 0 1-.5-.5v-12a.5.5 0 0 1 .5-.5V6Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.line-link .icon-line,
.floating-book .icon-line {
  width: 24px;
  height: 24px;
}

.btn::after {
  content: "";
  position: absolute;
  inset: -1px auto -1px -38%;
  z-index: -1;
  width: 34%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.5), transparent);
  transform: skewX(-18deg);
  transition: left .55s ease;
}

.btn:hover::after { left: 115%; }

.btn-gold {
  background:
    linear-gradient(135deg, rgba(255,255,255,.22), transparent 34%),
    linear-gradient(135deg, #d7a849, #94610f);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.34), 0 15px 42px rgba(148, 97, 15, .22);
}

.btn-glass {
  border-color: rgba(255,255,255,.74);
  background: linear-gradient(135deg, rgba(255,255,255,.76), rgba(255,255,255,.28));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.76), 0 14px 35px rgba(76,49,22,.08);
}

.glass-card,
.glass-panel,
.hero-metrics article,
.assurance article,
.treatment-card,
.offer-card,
.story-card,
.journal-grid article,
.philosophy-grid article,
.review-cards article,
.timeline span,
.modal-panel,
.booking-form input,
.booking-form select,
.booking-form textarea,
.booking-result {
  border: 1px solid var(--glass-line);
  background:
    linear-gradient(145deg, rgba(255,255,255,.68), rgba(255,255,255,.24)),
    radial-gradient(circle at 12% 8%, rgba(255,255,255,.58), transparent 28%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.78), var(--shadow-soft);
  backdrop-filter: var(--blur);
}

.glass-card,
.glass-panel,
.assurance article,
.treatment-card,
.offer-card,
.story-card,
.journal-grid article,
.philosophy-grid article,
.review-cards article,
.timeline span {
  position: relative;
  overflow: hidden;
}

.glass-card::before,
.glass-panel::before,
.assurance article::before,
.treatment-card::before,
.offer-card::before,
.story-card::before,
.journal-grid article::before,
.philosophy-grid article::before,
.review-cards article::before,
.timeline span::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255,255,255,.56), transparent 28%, rgba(255,255,255,.14) 72%, transparent),
    radial-gradient(circle at 82% 12%, rgba(246,223,184,.34), transparent 22%);
}

.glass-card > *,
.glass-panel > *,
.assurance article > *,
.treatment-card > *,
.offer-card > *,
.story-card > *,
.journal-grid article > *,
.philosophy-grid article > *,
.review-cards article > * {
  position: relative;
  z-index: 1;
}

.assurance article,
.treatment-card,
.offer-card,
.story-card,
.journal-grid article,
.philosophy-grid article,
.review-cards article,
.hero-metrics article {
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.assurance article:hover,
.treatment-card:hover,
.offer-card:hover,
.story-card:hover,
.journal-grid article:hover,
.philosophy-grid article:hover,
.review-cards article:hover,
.hero-metrics article:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,.92);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 30px 90px rgba(92, 58, 22, .14);
}

.clinic-window,
.sub-visual,
.doctor-large,
.editorial-img {
  position: relative;
  border-color: rgba(255,255,255,.8);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55), var(--shadow);
}

.clinic-window::before,
.sub-visual::before,
.doctor-large::before,
.editorial-img::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,.46), transparent 22%),
    radial-gradient(circle at 18% 15%, rgba(255,255,255,.34), transparent 18%);
  mix-blend-mode: screen;
}

.clinic-window img,
.doctor-large img {
  position: relative;
  z-index: 1;
}

.treatment-image {
  transition: transform .5s ease, filter .5s ease;
}

.treatment-card:hover .treatment-image {
  transform: scale(1.035);
  filter: brightness(1.04) saturate(1.04);
}

.doctor-portrait,
.hero-orbit,
.floating-note {
  animation: floatCard 6.8s ease-in-out infinite;
}

.hero-orbit { animation-duration: 7.6s; }
.floating-note { animation-duration: 6.2s; }

.line-link,
.floating-book a {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.34), 0 14px 35px rgba(20, 190, 79, .24);
}

.floating-book a,
.floating-book button {
  backdrop-filter: var(--blur);
  transition: transform .24s ease, box-shadow .24s ease;
}

.floating-book a:hover,
.floating-book button:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 56px rgba(70, 42, 12, .24);
}

.page.is-active .hero-copy,
.page.is-active .section,
.page.is-active .sub-hero,
.page.is-active .page-heading,
.page.is-active .contact-shell {
  animation: premiumRise .55s ease both;
}

@keyframes premiumRise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 1180px) {
  .site-header { height: 74px; }
  .main-nav { top: 74px; }
  .brand strong { font-size: 21px; }
}

@media (max-width: 720px) {
  body { font-size: 15px; }
  .hero-copy h1,
  .sub-hero h1,
  .contact-shell h1,
  .page-heading h1 {
    font-size: 34px;
    line-height: 1.18;
  }
  .section-title h2,
  .review-strip h2,
  .split-showcase h2 {
    font-size: 29px;
    line-height: 1.2;
  }
  .hero-copy p,
  .sub-hero p,
  .contact-shell p {
    font-size: 16px;
  }
}

/* Final proportional CTA dock */
.call-link,
.line-link {
  width: 46px !important;
  height: 46px !important;
  min-width: 46px !important;
  display: grid;
  place-items: center;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  color: #fff;
  border: 1px solid rgba(255,255,255,.64);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.32), 0 14px 34px rgba(76,49,22,.12);
}

.call-link {
  background:
    linear-gradient(135deg, rgba(255,255,255,.18), transparent 34%),
    linear-gradient(135deg, #c99739, #8e5d12);
}

.line-link {
  background:
    linear-gradient(135deg, rgba(255,255,255,.18), transparent 34%),
    linear-gradient(135deg, #19cf5a, #0aa241);
}

.call-link .icon,
.line-link .icon {
  width: 21px;
  height: 21px;
}

.btn-minimal {
  color: var(--gold-dark);
  border-color: rgba(185,130,36,.2);
  background: rgba(255,255,255,.36);
  box-shadow: none;
}

.btn-minimal:hover {
  border-color: rgba(185,130,36,.38);
  background: rgba(255,255,255,.62);
}

.floating-book {
  right: 18px !important;
  bottom: 18px !important;
  z-index: 45;
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 8px !important;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(255,255,255,.66), rgba(255,255,255,.26));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.76), 0 18px 52px rgba(76,49,22,.14);
  backdrop-filter: blur(26px) saturate(170%);
}

.floating-book a,
.floating-book button {
  width: 44px !important;
  min-width: 44px !important;
  max-width: 44px !important;
  height: 44px !important;
  min-height: 44px !important;
  max-height: 44px !important;
  display: grid !important;
  place-items: center;
  padding: 0 !important;
  border: 0;
  border-radius: 50% !important;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.32), 0 10px 24px rgba(76,49,22,.12);
}

.floating-book a[href^="tel"] {
  background:
    linear-gradient(135deg, rgba(255,255,255,.18), transparent 34%),
    linear-gradient(135deg, #c99739, #8e5d12);
}

.floating-book a[href*="line.me"] {
  background:
    linear-gradient(135deg, rgba(255,255,255,.18), transparent 34%),
    linear-gradient(135deg, #19cf5a, #0aa241);
}

.floating-book button {
  background:
    linear-gradient(135deg, rgba(255,255,255,.18), transparent 34%),
    linear-gradient(135deg, #d6a348, #986411);
}

.floating-book .icon {
  width: 20px !important;
  height: 20px !important;
}

.floating-book .icon-line {
  width: 22px !important;
  height: 22px !important;
}

@media (max-width: 720px) {
  .header-actions {
    gap: 8px;
  }
  .call-link,
  .line-link {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
  }
  .header-actions .btn {
    display: none;
  }
  .floating-book {
    right: 12px !important;
    bottom: 12px !important;
    padding: 7px;
  }
  .floating-book a,
  .floating-book button {
    width: 42px !important;
    min-width: 42px !important;
    max-width: 42px !important;
    height: 42px !important;
    min-height: 42px !important;
    max-height: 42px !important;
  }
}

/* Clean premium CTA/icon pass */
.doctor-portrait,
.hero-orbit,
.floating-note {
  display: none !important;
}

.hero-stage {
  min-height: 620px;
}

.clinic-window {
  isolation: isolate;
}

.clinic-window::after {
  z-index: 3;
  background:
    linear-gradient(180deg, transparent 58%, rgba(35, 24, 20, .22)),
    linear-gradient(135deg, rgba(255,255,255,.18), transparent 42%);
}

.clinic-window .hero-badge {
  z-index: 5;
}

.clinic-window .hero-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,.62), transparent 44%, rgba(246,223,184,.18));
}

.hero-badge > * {
  position: relative;
  z-index: 1;
}

.clinic-window::marker {
  display: none;
}

.clinic-window {
  --sweep: linear-gradient(115deg, transparent 0 42%, rgba(255,255,255,.38) 48%, transparent 55% 100%);
}

.clinic-window:hover img,
.sub-visual:hover,
.editorial-img:hover {
  filter: brightness(1.06) saturate(.98);
}

.line-link {
  position: relative;
  overflow: hidden;
}

.line-link::after,
.floating-book a::after,
.floating-book button::after {
  content: "";
  position: absolute;
  inset: -1px auto -1px -46%;
  width: 42%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.52), transparent);
  transform: skewX(-18deg);
  transition: left .5s ease;
}

.line-link:hover::after,
.floating-book a:hover::after,
.floating-book button:hover::after {
  left: 120%;
}

.floating-book {
  gap: 12px;
}

.floating-book a,
.floating-book button {
  display: grid;
  place-items: center;
  overflow: hidden;
}

.floating-book button {
  background:
    linear-gradient(135deg, rgba(255,255,255,.2), transparent 34%),
    linear-gradient(135deg, #d7a849, #94610f);
}

.floating-book .icon {
  width: 23px;
  height: 23px;
}

.btn .icon {
  margin-left: -2px;
}

.header-actions .btn {
  padding: 0 20px;
}

.hero-actions .btn,
.contact-actions .btn {
  gap: 9px;
}

@media (max-width: 720px) {
  .hero-badge {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    padding: 15px 16px;
  }
  .hero-badge b {
    font-size: 15px;
  }
}

/* Expert layout pass: disciplined luxury editorial composition */
:root {
  --container: min(1420px, calc(100% - 72px));
  --container-wide: min(1540px, calc(100% - 72px));
  --radius-xl: 34px;
}

.site-header {
  height: 76px;
  grid-template-columns: minmax(230px, auto) minmax(0, 1fr) auto;
  padding: 0 clamp(28px, 4vw, 64px);
}

.brand { min-width: 230px; }
.brand-mark {
  width: 46px;
  height: 46px;
  font-size: 26px;
}
.brand strong { font-size: 24px; }
.brand small {
  font-size: 10px;
  letter-spacing: 2.8px;
}

.main-nav {
  justify-self: center;
  gap: clamp(20px, 2vw, 34px);
}
.main-nav a,
.nav-menu > button {
  padding: 26px 0 24px;
  font-size: 14px;
  line-height: 1;
}
.main-nav a.is-active::after,
.nav-menu > button.is-active::after {
  bottom: 12px;
}
.header-actions {
  min-width: 210px;
  justify-content: flex-end;
}
.line-link {
  width: 48px;
  height: 48px;
}
.header-actions .btn {
  min-width: 112px;
}

.lux-hero {
  width: var(--container-wide);
  min-height: calc(100vh - 76px);
  grid-template-columns: minmax(460px, .82fr) minmax(560px, 1.18fr);
  gap: clamp(44px, 5.6vw, 88px);
  align-items: center;
  padding: clamp(54px, 7vh, 92px) 0 clamp(46px, 7vh, 82px);
}

.hero-copy {
  max-width: 650px;
  padding-top: 8px;
}

.hero-copy .kicker {
  margin-bottom: 22px;
}

.hero-copy h1 {
  max-width: 640px;
  margin-bottom: 22px;
  font-size: clamp(42px, 4.15vw, 66px);
  line-height: 1.13;
  font-weight: 690;
}

.hero-copy p {
  max-width: 610px;
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.85;
}

.hero-actions {
  gap: 16px;
  margin: 32px 0 26px;
}
.hero-actions .btn {
  width: auto;
  min-width: 190px;
}

.hero-metrics {
  max-width: 560px;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.hero-metrics article {
  min-height: 92px;
  padding: 16px 18px;
  border-radius: 22px;
}
.hero-metrics b {
  font-size: 25px;
  line-height: 1;
}
.hero-metrics span {
  display: block;
  margin-top: 8px;
  line-height: 1.35;
}

.hero-stage {
  min-height: 620px;
  align-items: center;
}

.clinic-window {
  position: relative;
  inset: auto;
  width: 100%;
  height: clamp(520px, 58vh, 660px);
  border-radius: 42px;
  overflow: hidden;
}

.clinic-window::after {
  background:
    linear-gradient(90deg, rgba(255,250,242,.12), transparent 34%),
    linear-gradient(180deg, transparent 52%, rgba(35,24,20,.16));
}

.clinic-window img {
  object-position: 52% 50%;
  transform: scale(1.01);
  filter: brightness(1.03) saturate(.94);
}

.doctor-portrait {
  position: absolute;
  top: 34px;
  left: -34px;
  z-index: 4;
  width: min(430px, 58%);
  grid-template-columns: 118px 1fr;
  padding: 16px;
  border-radius: 26px;
  animation: none;
}

.doctor-portrait img {
  width: 118px;
  height: 126px;
  object-position: 42% 48%;
  border-radius: 18px;
}

.doctor-portrait small {
  font-size: 13px;
  line-height: 1.2;
}
.doctor-portrait strong {
  margin: 8px 0 5px;
  font-size: 18px;
  line-height: 1.35;
}
.doctor-portrait span {
  font-size: 14px;
  line-height: 1.35;
}

.hero-orbit {
  top: auto;
  right: auto;
  left: 36px;
  bottom: 34px;
  z-index: 4;
  width: min(330px, 48%);
  padding: 22px 24px;
  border-radius: 24px;
  animation: none;
}
.hero-orbit b {
  font-size: 17px;
  line-height: 1.25;
}
.hero-orbit span {
  font-size: 13px;
  line-height: 1.35;
}

.floating-book {
  right: 18px;
  bottom: 18px;
}
.floating-book a,
.floating-book button {
  min-width: 86px;
  min-height: 44px;
  font-size: 14px;
}

.section,
.sub-hero,
.page-heading,
.contact-shell {
  width: var(--container);
}

.section {
  padding: clamp(56px, 6vw, 92px) 0;
}

.assurance {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-top: 22px;
}
.assurance article {
  min-height: 220px;
  padding: 28px;
}
.assurance span {
  margin-bottom: 30px;
  font-size: 32px;
}
.assurance b {
  font-size: 18px;
  line-height: 1.35;
}
.assurance p {
  font-size: 14px;
}

.intro-grid {
  grid-template-columns: minmax(360px, .48fr) minmax(0, 1fr);
  gap: 42px;
}
.section-title {
  top: 104px;
}
.section-title h2,
.review-strip h2,
.split-showcase h2,
.page-heading h1 {
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.2;
  font-weight: 680;
}

.treatment-grid {
  gap: 20px;
}
.treatment-card {
  min-height: 390px;
  border-radius: 28px;
}
.treatment-card.featured {
  min-height: 620px;
}
.featured .treatment-image {
  min-height: 390px;
}
.treatment-image {
  min-height: 220px;
}
.treatment-card > div:last-child {
  padding: 24px 26px 28px;
}
.treatment-card h3 {
  font-size: 24px;
  line-height: 1.2;
}
.treatment-card p {
  font-size: 15px;
}

.split-showcase {
  grid-template-columns: minmax(420px, .9fr) minmax(0, 1.1fr);
  gap: 30px;
}
.glass-panel {
  border-radius: 30px;
  padding: clamp(30px, 3.4vw, 48px);
}
.editorial-visual,
.editorial-img {
  min-height: 520px;
}
.editorial-img {
  border-radius: 42px;
  background-position: 50% 50%;
}
.floating-note {
  right: 24px;
  bottom: 24px;
  animation: none;
}

.review-strip {
  grid-template-columns: minmax(360px, .58fr) minmax(0, 1.42fr);
  gap: 34px;
}
.review-cards {
  gap: 18px;
}
.review-cards article {
  min-height: 230px;
  padding: 24px;
}

.sub-hero {
  min-height: 620px;
  grid-template-columns: minmax(440px, .78fr) minmax(560px, 1.22fr);
  gap: 46px;
  padding: clamp(62px, 8vh, 104px) 0 clamp(38px, 6vh, 72px);
}
.sub-hero h1,
.contact-shell h1 {
  font-size: clamp(36px, 3.55vw, 56px);
  line-height: 1.16;
}
.sub-visual {
  min-height: 520px;
  border-radius: 38px;
}

.detail-layout {
  gap: 22px;
}
.detail-layout .glass-panel {
  min-height: 300px;
}

.page-heading {
  max-width: 980px;
}
.offer-grid {
  grid-template-columns: minmax(360px, 1.18fr) repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.offer-card {
  min-height: 330px;
  border-radius: 28px;
}
.hero-offer {
  min-height: 470px;
}

.gallery-grid,
.journal-grid,
.philosophy-grid {
  gap: 22px;
}
.story-card {
  border-radius: 28px;
  padding: 14px;
}
.story-img {
  height: 330px;
  border-radius: 22px;
}

.doctor-page {
  grid-template-columns: minmax(420px, .8fr) minmax(560px, 1.2fr);
}
.doctor-large {
  min-height: 560px;
  border-radius: 38px;
}
.doctor-large img {
  height: 560px;
  object-position: 50% 50%;
}

.contact-shell {
  min-height: calc(100vh - 76px);
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 42px;
}

@media (min-width: 1181px) and (max-width: 1360px) {
  :root {
    --container: min(1260px, calc(100% - 56px));
    --container-wide: min(1320px, calc(100% - 56px));
  }
  .main-nav { gap: 18px; }
  .hero-copy h1 {
    font-size: clamp(38px, 4vw, 58px);
  }
  .lux-hero {
    grid-template-columns: minmax(400px, .82fr) minmax(500px, 1.18fr);
    gap: 46px;
  }
  .doctor-portrait {
    left: -18px;
    width: min(390px, 60%);
  }
}

@media (max-width: 1180px) {
  :root {
    --container: min(100% - 40px, 900px);
    --container-wide: min(100% - 40px, 900px);
  }
  .site-header {
    height: 74px;
    grid-template-columns: auto auto 1fr;
  }
  .main-nav {
    top: 74px;
  }
  .lux-hero,
  .sub-hero,
  .split-showcase,
  .review-strip,
  .intro-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    max-width: 720px;
  }
  .hero-copy h1 {
    max-width: 720px;
  }
  .hero-stage {
    min-height: auto;
  }
  .clinic-window {
    height: 560px;
  }
  .doctor-portrait {
    left: 24px;
    top: 24px;
  }
  .hero-orbit {
    left: 24px;
    bottom: 24px;
  }
  .assurance,
  .treatment-grid,
  .detail-layout,
  .detail-layout.three,
  .offer-grid,
  .gallery-grid,
  .journal-grid,
  .philosophy-grid,
  .review-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .offer-grid .hero-offer {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100% - 28px, 620px);
    --container-wide: min(100% - 28px, 620px);
  }
  .site-header {
    height: 68px;
    padding: 0 14px;
  }
  .main-nav {
    top: 68px;
  }
  .brand {
    min-width: 0;
    gap: 10px;
  }
  .brand-mark {
    width: 42px;
    height: 42px;
  }
  .brand strong {
    font-size: 18px;
  }
  .header-actions {
    min-width: 0;
  }
  .hero-copy h1,
  .sub-hero h1,
  .contact-shell h1,
  .page-heading h1 {
    font-size: 34px;
    line-height: 1.18;
  }
  .hero-copy p,
  .sub-hero p,
  .contact-shell p {
    font-size: 16px;
  }
  .lux-hero {
    min-height: auto;
    padding: 36px 0 44px;
    gap: 34px;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-metrics,
  .assurance,
  .treatment-grid,
  .detail-layout,
  .detail-layout.three,
  .offer-grid,
  .gallery-grid,
  .journal-grid,
  .philosophy-grid,
  .review-cards {
    grid-template-columns: 1fr;
  }
  .offer-grid .hero-offer {
    grid-column: auto;
  }
  .clinic-window {
    height: 430px;
    border-radius: 28px;
  }
  .doctor-portrait {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    margin-bottom: 14px;
    grid-template-columns: 88px 1fr;
  }
  .doctor-portrait img {
    width: 88px;
    height: 96px;
  }
  .hero-orbit {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
  }
  .sub-hero {
    min-height: auto;
    padding: 42px 0 34px;
  }
  .sub-visual,
  .doctor-large,
  .doctor-large img {
    min-height: 380px;
    height: 380px;
  }
  .story-img {
    height: 300px;
  }
}

/* Admin workspace */
.admin-launcher {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 110;
  min-height: 48px;
  padding: 0 18px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: linear-gradient(135deg, #201614, #8d5d14 72%, #d9a649);
  box-shadow: 0 22px 54px rgba(56, 34, 10, .28);
}

.admin-shell {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
}

.admin-shell[aria-hidden="false"] {
  display: block;
}

.admin-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 11, 10, .46);
  backdrop-filter: blur(8px);
}

.admin-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(460px, 100vw);
  height: 100vh;
  padding: 24px;
  overflow: auto;
  border-left: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(180deg, rgba(31,21,18,.96), rgba(51,34,22,.96));
  box-shadow: -24px 0 80px rgba(0, 0, 0, .24);
}

.admin-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.admin-head .kicker {
  color: #f6d18c;
}

.admin-head .kicker::before {
  background: linear-gradient(90deg, #f6d18c, transparent);
}

.admin-head h2,
.admin-note {
  color: rgba(255,255,255,.88);
}

.admin-close {
  width: 42px;
  height: 42px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}

.admin-body {
  display: grid;
  gap: 14px;
}

.admin-field {
  display: grid;
  gap: 7px;
}

.admin-field > span {
  color: rgba(255,255,255,.76);
  font-size: 13px;
  font-weight: 700;
}

.admin-field input,
.admin-field select,
.admin-field textarea {
  width: 100%;
  padding: 12px 14px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: rgba(255,255,255,.08);
}

.admin-field textarea {
  resize: vertical;
}

.admin-field select[size] {
  min-height: 260px;
}

.admin-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-actions .btn,
.admin-launcher {
  font-size: 14px;
  font-weight: 760;
}

.admin-grid-actions .btn {
  flex: 1 1 calc(50% - 10px);
}

.admin-note {
  margin: 4px 0 0;
  font-size: 13px;
  line-height: 1.7;
}

body.admin-enabled [data-admin-id] {
  cursor: pointer;
  transition: outline-color .2s ease, box-shadow .2s ease;
}

body.admin-enabled [data-admin-id]:hover {
  outline: 2px solid rgba(246, 209, 140, .78);
  outline-offset: 4px;
}

body.admin-enabled .admin-selected {
  outline: 3px solid rgba(255, 223, 167, .96);
  outline-offset: 5px;
  box-shadow: 0 0 0 6px rgba(246, 209, 140, .18);
}

@media (max-width: 720px) {
  .admin-launcher {
    right: 12px;
    bottom: 78px;
    min-height: 44px;
    padding: 0 14px;
  }

  .admin-panel {
    width: 100vw;
    padding: 18px 14px 22px;
  }

  .admin-grid-actions .btn {
    flex-basis: 100%;
  }
}

html[data-theme="brand"] {
  --ink: #2b2b2b;
  --soft-ink: #565656;
  --paper: #f6f4ef;
  --ivory: #ededed;
  --pearl: rgba(255, 255, 255, .52);
  --line: rgba(62, 62, 62, .14);
  --gold: #ffcc33;
  --gold-dark: #b48700;
  --champagne: #ffe08a;
  --rose: #ece3cf;
  --shadow: 0 28px 80px rgba(44, 44, 44, .14);
  --blur: blur(24px) saturate(138%);
}

html[data-theme="brand"] body {
  font-family: var(--font-body);
}

html[data-theme="brand"] body::before {
  background-image:
    linear-gradient(rgba(62, 62, 62, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(62, 62, 62, .045) 1px, transparent 1px);
}

html[data-theme="brand"] .ambient-one {
  background: rgba(255, 204, 51, .42);
}

html[data-theme="brand"] .ambient-two {
  background: rgba(180, 135, 0, .18);
}

.brand {
  min-width: 0;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: clamp(150px, 13vw, 206px);
  height: auto;
}

.brand-caption {
  color: var(--soft-ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

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

.footer-logo {
  width: min(190px, 52vw);
  height: auto;
}

html[data-theme="brand"] .site-header {
  background: rgba(246, 244, 239, .82);
}

html[data-theme="brand"] .btn-gold {
  color: #2b2b2b;
  background: linear-gradient(135deg, #ffcc33, #b48700);
}

html[data-theme="brand"] .btn-glass,
html[data-theme="brand"] .hero-metrics article,
html[data-theme="brand"] .glass-panel,
html[data-theme="brand"] .mini-review,
html[data-theme="brand"] .offer-card,
html[data-theme="brand"] .review-group,
html[data-theme="brand"] .contact-card,
html[data-theme="brand"] .footer-cards article {
  background: rgba(255, 255, 255, .58);
  border-color: rgba(62, 62, 62, .12);
}

html[data-theme="brand"] .line-link {
  box-shadow: 0 14px 35px rgba(20, 190, 79, .18);
}

html[data-theme="brand"] .call-link,
html[data-theme="brand"] .line-link,
html[data-theme="brand"] .floating-book a,
html[data-theme="brand"] .floating-book button {
  border-color: rgba(62, 62, 62, .1);
}

@media (max-width: 900px) {
  .brand-caption {
    font-size: 10px;
    white-space: normal;
    max-width: 180px;
  }

  .brand-logo {
    width: clamp(128px, 34vw, 176px);
  }

  .footer-logo {
    width: min(170px, 48vw);
  }
}

/* Final header/logo cleanup */
.site-header {
  position: sticky;
  top: 12px;
  width: min(calc(100% - 24px), 1880px);
  margin: 0 auto;
  padding: 0 clamp(18px, 2.4vw, 34px);
  min-height: 78px;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: clamp(16px, 2vw, 28px);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.88), rgba(255,250,243,.62) 48%, rgba(255,255,255,.82)),
    radial-gradient(circle at 12% 50%, rgba(246, 223, 184, .22), transparent 28%);
  box-shadow:
    0 18px 45px rgba(83, 53, 18, .08),
    inset 0 1px 0 rgba(255,255,255,.72);
  backdrop-filter: blur(26px) saturate(165%);
}

.brand {
  min-width: 0;
  align-self: stretch;
  justify-self: start;
}

.brand-lockup {
  display: flex;
  align-items: center;
  min-height: 100%;
}

.brand-logo {
  width: clamp(150px, 11.5vw, 214px);
  max-width: 100%;
  height: auto;
  background: transparent;
}

.brand-caption {
  display: none !important;
}

.main-nav {
  justify-self: center;
}

.header-actions {
  justify-self: end;
  gap: 10px;
}

.footer-logo {
  width: clamp(136px, 10vw, 178px);
}

html[data-theme="brand"] .site-header {
  background:
    linear-gradient(135deg, rgba(246,244,239,.92), rgba(255,248,230,.72) 52%, rgba(246,244,239,.88)),
    radial-gradient(circle at 16% 50%, rgba(255, 204, 51, .18), transparent 32%);
  border-color: rgba(255, 255, 255, .7);
}

@media (max-width: 1180px) {
  .site-header {
    top: 10px;
    width: min(calc(100% - 20px), 1880px);
    grid-template-columns: minmax(132px, 176px) 1fr auto;
    min-height: 74px;
    gap: 14px;
    padding: 0 16px;
  }

  .brand-logo {
    width: clamp(132px, 18vw, 176px);
  }

  .header-actions {
    gap: 8px;
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 8px;
    width: min(calc(100% - 16px), 1880px);
    grid-template-columns: minmax(116px, 148px) auto auto;
    min-height: 64px;
    padding: 0 12px;
    gap: 10px;
    border-radius: 20px;
  }

  .brand-logo {
    width: clamp(116px, 33vw, 148px);
  }

  .header-actions {
    gap: 6px;
  }

  .call-link,
  .line-link {
    width: 40px;
    height: 40px;
  }

  .nav-toggle {
    font-size: 24px;
  }

  .footer-logo {
    width: 132px;
  }
}

/* Brand QA alignment */
:root {
  --font-body: "Noto Sans Thai", sans-serif;
  --font-display: "Trirong", "Noto Sans Thai", serif;
}

html,
body,
button,
input,
select,
textarea {
  font-family: var(--font-body);
}

body {
  color: var(--ink);
}

h1,
h2,
h3,
.modal-head h2,
.section-title h2,
.page-heading h1,
.footer-cta strong {
  font-family: var(--font-display);
  font-weight: 600;
}

.main-nav a,
.nav-menu > button,
.btn,
.kicker,
.hero-metrics b,
.footer-brand strong,
.footer-meta span,
.contact-card b {
  font-family: var(--font-body);
}

.main-nav a,
.nav-menu > button {
  font-size: 14px;
  font-weight: 600;
}

.site-header {
  background:
    linear-gradient(135deg, rgba(255,255,255,.9), rgba(255,249,241,.72) 48%, rgba(255,255,255,.84)),
    radial-gradient(circle at 14% 50%, rgba(246, 223, 184, .26), transparent 30%);
}

.brand {
  padding-left: 4px;
}

.brand-lockup {
  justify-content: flex-start;
}

.main-nav {
  align-self: center;
}

.header-actions {
  align-items: center;
}

.btn-gold {
  background: linear-gradient(135deg, #c9962f, #a46c12);
}

.btn-glass {
  background: rgba(255,255,255,.64);
}

html[data-theme="brand"] {
  --ink: #3e3e3e;
  --soft-ink: #3e3e3e;
  --paper: #ededed;
  --ivory: #ededed;
  --line: rgba(62, 62, 62, .14);
  --gold: #ffcc33;
  --gold-dark: #b48700;
  --champagne: #ffcc33;
  --rose: #b48700;
}

html[data-theme="brand"] body,
html[data-theme="brand"] button,
html[data-theme="brand"] input,
html[data-theme="brand"] select,
html[data-theme="brand"] textarea {
  font-family: var(--font-body);
}

html[data-theme="brand"] h1,
html[data-theme="brand"] h2,
html[data-theme="brand"] h3,
html[data-theme="brand"] .modal-head h2,
html[data-theme="brand"] .section-title h2,
html[data-theme="brand"] .page-heading h1,
html[data-theme="brand"] .footer-cta strong {
  font-family: var(--font-display);
}

html[data-theme="brand"] .site-header {
  background:
    linear-gradient(135deg, rgba(246,244,239,.94), rgba(255,248,226,.78) 54%, rgba(246,244,239,.92)),
    radial-gradient(circle at 16% 50%, rgba(255, 204, 51, .18), transparent 32%);
}

html[data-theme="brand"] .btn-gold {
  color: #2e2e2e;
  background: linear-gradient(135deg, #ffcc33, #b48700);
}

html[data-theme="brand"] .btn-glass {
  color: #3e3e3e;
  border-color: rgba(62, 62, 62, .16);
  background: rgba(255,255,255,.58);
}

@media (max-width: 1180px) {
  .main-nav a,
  .nav-menu > button {
    font-size: 15px;
  }
}

@media (max-width: 720px) {
  h1,
  h2,
  h3,
  .modal-head h2,
  .section-title h2,
  .page-heading h1,
  .footer-cta strong {
    line-height: 1.15;
  }

  .brand {
    padding-left: 0;
  }
}

/* Final theme split */
:root {
  --font-body: "Noto Sans Thai", sans-serif;
  --font-display: "Trirong", "Noto Sans Thai", serif;
}

html[data-theme="brand"] {
  --ink: #3e3e3e;
  --soft-ink: rgba(62, 62, 62, .72);
  --paper: #ededed;
  --ivory: #f6f4ef;
  --pearl: rgba(255, 255, 255, .72);
  --line: rgba(62, 62, 62, .14);
  --gold: #ffcc33;
  --gold-dark: #b48700;
  --champagne: #ffcc33;
  --rose: #b48700;
}

html,
body,
button,
input,
select,
textarea {
  font-family: var(--font-body);
}

body {
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 14%, rgba(255, 204, 51, .16), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(180, 135, 0, .10), transparent 26%),
    linear-gradient(180deg, #f6f4ef 0%, #ededed 42%, #f8f7f3 100%);
}

h1,
h2,
h3,
.section-title h2,
.page-heading h1,
.sub-hero h1,
.contact-shell h1,
.modal-head h2,
.footer-cta strong {
  color: #111;
  font-family: var(--font-display);
  font-weight: 600;
}

p,
li,
label,
.contact-card p,
.queue-list li,
.review-group p {
  color: var(--soft-ink);
}

.ambient-one {
  background: rgba(255, 204, 51, .44);
}

.ambient-two {
  background: rgba(180, 135, 0, .18);
}

.site-header,
html[data-theme="brand"] .site-header {
  background:
    linear-gradient(135deg, rgba(255,255,255,.88), rgba(246,244,239,.78) 48%, rgba(237,237,237,.82)),
    radial-gradient(circle at 9% 50%, rgba(255, 204, 51, .20), transparent 30%);
  border-color: rgba(255, 255, 255, .72);
  box-shadow:
    0 20px 54px rgba(62, 62, 62, .10),
    inset 0 1px 0 rgba(255, 255, 255, .82);
}

.brand-lockup {
  gap: 11px;
}

.brand-symbol {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 8px 14px rgba(62, 62, 62, .12));
}

.brand-logo {
  width: clamp(154px, 11.2vw, 204px);
}

.main-nav a,
.nav-menu > button {
  color: rgba(62, 62, 62, .86);
  font-family: var(--font-body);
  font-weight: 700;
}

.main-nav a.is-active,
.nav-menu > button.is-active,
.kicker,
.nav-menu > button::after {
  color: var(--gold-dark);
}

.main-nav a.is-active::after,
.nav-menu > button.is-active::after,
.kicker::before {
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-dark), transparent);
}

.nav-dropdown,
.glass-panel,
.hero-metrics article,
.treatment-card,
.review-cards article,
.review-group,
.mini-review,
.offer-card,
.contact-card,
.footer-cards article,
.modal-panel {
  border-color: rgba(62, 62, 62, .12);
  background:
    linear-gradient(145deg, rgba(255,255,255,.72), rgba(246,244,239,.48)),
    radial-gradient(circle at 20% 10%, rgba(255, 204, 51, .10), transparent 36%);
}

.btn-gold,
html[data-theme="brand"] .btn-gold {
  color: #2e2e2e;
  border-color: rgba(180, 135, 0, .36);
  background: linear-gradient(135deg, #ffcc33, #b48700);
  box-shadow: 0 16px 34px rgba(180, 135, 0, .20);
}

.btn-glass,
html[data-theme="brand"] .btn-glass,
.btn-minimal {
  color: #3e3e3e;
  border-color: rgba(62, 62, 62, .14);
  background: rgba(255, 255, 255, .62);
}

.call-link,
.floating-book a:first-child {
  color: #fff;
  background: linear-gradient(135deg, #ffcc33, #b48700);
}

.line-link,
.floating-book a:nth-child(2) {
  background: #14be4f;
}

.floating-book button {
  color: #2e2e2e;
  background: linear-gradient(135deg, #ffcc33, #b48700);
}

.hero-badge,
.price-focus,
.footer-cta {
  border-color: rgba(180, 135, 0, .24);
  background:
    linear-gradient(145deg, rgba(255,255,255,.76), rgba(255,204,51,.16)),
    rgba(237,237,237,.44);
}

.footer-shell {
  color: var(--ink);
}

.footer-logo {
  width: clamp(138px, 10vw, 176px);
}

@media (max-width: 1180px) {
  .brand-symbol {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .brand-logo {
    width: clamp(132px, 17vw, 172px);
  }
}

@media (max-width: 720px) {
  .brand-lockup {
    gap: 8px;
  }

  .brand-symbol {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }

.brand-logo {
  width: clamp(112px, 30vw, 140px);
  }
}

/* Gradient tab bar polish */
.site-header,
html[data-theme="brand"] .site-header {
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255,255,255,.88) 0%, rgba(237,237,237,.66) 30%, rgba(255,204,51,.22) 52%, rgba(246,244,239,.78) 76%, rgba(255,255,255,.9) 100%);
  background-size: 180% 180%;
  animation: headerGradientShift 12s ease-in-out infinite;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,.62), transparent 30%, rgba(255,204,51,.16) 58%, transparent 78%),
    radial-gradient(circle at 12% 50%, rgba(255,204,51,.24), transparent 26%);
  opacity: .88;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255,204,51,.68), rgba(180,135,0,.58), transparent);
}

@keyframes headerGradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.brand-lockup {
  gap: 0;
}

.brand-symbol {
  display: none !important;
}

.brand-logo {
  width: clamp(162px, 11.8vw, 216px);
  filter: drop-shadow(0 8px 18px rgba(62, 62, 62, .08));
}

.main-nav {
  min-height: 46px;
  padding: 4px 8px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.62), rgba(237,237,237,.38)),
    linear-gradient(90deg, rgba(255,204,51,.10), transparent 42%, rgba(180,135,0,.08));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 12px 30px rgba(62,62,62,.06);
}

.main-nav a,
.nav-menu > button {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.main-nav a:hover,
.nav-menu > button:hover {
  color: #2e2e2e;
  background: rgba(255,255,255,.64);
  box-shadow: inset 0 0 0 1px rgba(255,204,51,.26), 0 8px 20px rgba(180,135,0,.08);
  transform: translateY(-1px);
}

.main-nav a.is-active,
.nav-menu > button.is-active {
  color: #2e2e2e;
  background: linear-gradient(135deg, rgba(255,204,51,.46), rgba(180,135,0,.18));
  box-shadow: inset 0 0 0 1px rgba(180,135,0,.24), 0 10px 24px rgba(180,135,0,.12);
}

.main-nav a.is-active::after,
.nav-menu > button.is-active::after {
  display: none;
}

@media (max-width: 1180px) {
  .brand-logo {
    width: clamp(142px, 18vw, 178px);
  }

  .main-nav {
    min-height: auto;
    padding: 18px 20px;
    border-radius: 22px;
    background:
      linear-gradient(145deg, rgba(255,255,255,.88), rgba(237,237,237,.68)),
      radial-gradient(circle at 16% 12%, rgba(255,204,51,.22), transparent 36%);
  }

  .main-nav a,
  .nav-menu > button {
    width: 100%;
    justify-content: flex-start;
    padding: 0 14px;
  }
}

@media (max-width: 720px) {
  .brand-logo {
    width: clamp(120px, 32vw, 148px);
  }

  .site-header::after {
    left: 12px;
    right: 12px;
  }
}

/* Final visual separation: default luxury vs official brand */
body {
  background:
    radial-gradient(circle at 8% 12%, rgba(246, 223, 184, .36), transparent 30%),
    radial-gradient(circle at 92% 14%, rgba(234, 214, 207, .34), transparent 28%),
    linear-gradient(180deg, #fffdfa 0%, #fbf7ef 46%, #fffaf3 100%);
}

html[data-theme="brand"] body {
  background:
    radial-gradient(circle at 10% 14%, rgba(255, 204, 51, .16), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(180, 135, 0, .10), transparent 26%),
    linear-gradient(180deg, #f6f4ef 0%, #ededed 42%, #f8f7f3 100%);
}

.site-header {
  background:
    linear-gradient(120deg, rgba(255,255,255,.9) 0%, rgba(255,250,243,.72) 30%, rgba(246,223,184,.34) 52%, rgba(251,247,239,.82) 76%, rgba(255,255,255,.92) 100%);
}

html[data-theme="brand"] .site-header {
  background:
    linear-gradient(120deg, rgba(255,255,255,.88) 0%, rgba(237,237,237,.66) 30%, rgba(255,204,51,.22) 52%, rgba(246,244,239,.78) 76%, rgba(255,255,255,.9) 100%);
}

.site-header::before {
  background:
    linear-gradient(90deg, rgba(255,255,255,.62), transparent 30%, rgba(246,223,184,.26) 58%, transparent 78%),
    radial-gradient(circle at 12% 50%, rgba(185,130,36,.16), transparent 26%);
}

html[data-theme="brand"] .site-header::before {
  background:
    linear-gradient(90deg, rgba(255,255,255,.62), transparent 30%, rgba(255,204,51,.16) 58%, transparent 78%),
    radial-gradient(circle at 12% 50%, rgba(255,204,51,.24), transparent 26%);
}

.main-nav {
  background:
    linear-gradient(135deg, rgba(255,255,255,.66), rgba(255,250,243,.42)),
    linear-gradient(90deg, rgba(246,223,184,.18), transparent 42%, rgba(185,130,36,.10));
}

html[data-theme="brand"] .main-nav {
  background:
    linear-gradient(135deg, rgba(255,255,255,.62), rgba(237,237,237,.38)),
    linear-gradient(90deg, rgba(255,204,51,.10), transparent 42%, rgba(180,135,0,.08));
}

.main-nav a.is-active,
.nav-menu > button.is-active {
  background: linear-gradient(135deg, rgba(246,223,184,.62), rgba(185,130,36,.18));
}

html[data-theme="brand"] .main-nav a.is-active,
html[data-theme="brand"] .nav-menu > button.is-active {
  background: linear-gradient(135deg, rgba(255,204,51,.46), rgba(180,135,0,.18));
}

.btn-gold,
.floating-book button,
.call-link,
.floating-book a:first-child {
  background: linear-gradient(135deg, #d4a343, #94610f);
}

html[data-theme="brand"] .btn-gold,
html[data-theme="brand"] .floating-book button,
html[data-theme="brand"] .call-link,
html[data-theme="brand"] .floating-book a:first-child {
  color: #2e2e2e;
  background: linear-gradient(135deg, #ffcc33, #b48700);
}

/* Deep component theme separation */
.kicker,
.treatment-card span,
.offer-card span,
.journal-grid span,
.philosophy-grid span,
.review-cards span,
.story-card span {
  color: #8d5d14;
}

html[data-theme="brand"] .kicker,
html[data-theme="brand"] .treatment-card span,
html[data-theme="brand"] .offer-card span,
html[data-theme="brand"] .journal-grid span,
html[data-theme="brand"] .philosophy-grid span,
html[data-theme="brand"] .review-cards span,
html[data-theme="brand"] .story-card span {
  color: #b48700;
}

.btn-gold,
.submit-booking,
.footer-actions .btn-gold {
  color: #fff;
  border-color: rgba(148, 97, 15, .35);
  background:
    linear-gradient(135deg, #e5bd69 0%, #b98224 48%, #7b4b0d 100%);
  box-shadow: 0 18px 38px rgba(125, 76, 13, .22);
}

html[data-theme="brand"] .btn-gold,
html[data-theme="brand"] .submit-booking,
html[data-theme="brand"] .footer-actions .btn-gold {
  color: #262626;
  border-color: rgba(180, 135, 0, .42);
  background:
    linear-gradient(135deg, #ffe27a 0%, #ffcc33 44%, #b48700 100%);
  box-shadow: 0 18px 38px rgba(180, 135, 0, .24);
}

.btn-glass,
.btn-minimal,
.footer-actions .btn-glass,
.contact-actions .btn-glass {
  color: #8d5d14;
  border-color: rgba(185, 130, 36, .26);
  background:
    linear-gradient(135deg, rgba(255,255,255,.78), rgba(246,223,184,.24));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}

html[data-theme="brand"] .btn-glass,
html[data-theme="brand"] .btn-minimal,
html[data-theme="brand"] .footer-actions .btn-glass,
html[data-theme="brand"] .contact-actions .btn-glass {
  color: #3e3e3e;
  border-color: rgba(62, 62, 62, .18);
  background:
    linear-gradient(135deg, rgba(255,255,255,.72), rgba(237,237,237,.44));
}

.call-link,
.floating-book a:first-child {
  color: #fff;
  background:
    linear-gradient(135deg, #d4a343 0%, #94610f 100%);
  box-shadow: 0 14px 35px rgba(148, 97, 15, .28);
}

html[data-theme="brand"] .call-link,
html[data-theme="brand"] .floating-book a:first-child {
  color: #2b2b2b;
  background:
    linear-gradient(135deg, #ffcc33 0%, #b48700 100%);
  box-shadow: 0 14px 35px rgba(180, 135, 0, .24);
}

.nav-dropdown,
.glass-panel,
.hero-metrics article,
.treatment-card,
.review-cards article,
.review-group,
.mini-review,
.offer-card,
.contact-card,
.footer-cards article,
.modal-panel,
.queue-list {
  border-color: rgba(185, 130, 36, .16);
  background:
    linear-gradient(145deg, rgba(255,255,255,.76), rgba(255,250,243,.48)),
    radial-gradient(circle at 18% 10%, rgba(246,223,184,.22), transparent 38%);
  box-shadow: 0 18px 52px rgba(125, 76, 13, .08);
}

html[data-theme="brand"] .nav-dropdown,
html[data-theme="brand"] .glass-panel,
html[data-theme="brand"] .hero-metrics article,
html[data-theme="brand"] .treatment-card,
html[data-theme="brand"] .review-cards article,
html[data-theme="brand"] .review-group,
html[data-theme="brand"] .mini-review,
html[data-theme="brand"] .offer-card,
html[data-theme="brand"] .contact-card,
html[data-theme="brand"] .footer-cards article,
html[data-theme="brand"] .modal-panel,
html[data-theme="brand"] .queue-list {
  border-color: rgba(62, 62, 62, .14);
  background:
    linear-gradient(145deg, rgba(255,255,255,.74), rgba(237,237,237,.54)),
    radial-gradient(circle at 18% 10%, rgba(255,204,51,.12), transparent 38%);
  box-shadow: 0 18px 52px rgba(62, 62, 62, .08);
}

.hero-badge,
.price-focus,
.footer-cta,
.clinic-window .hero-badge {
  border-color: rgba(185, 130, 36, .24);
  background:
    linear-gradient(145deg, rgba(255,255,255,.78), rgba(246,223,184,.30)),
    rgba(255,250,243,.56);
}

html[data-theme="brand"] .hero-badge,
html[data-theme="brand"] .price-focus,
html[data-theme="brand"] .footer-cta,
html[data-theme="brand"] .clinic-window .hero-badge {
  border-color: rgba(180, 135, 0, .26);
  background:
    linear-gradient(145deg, rgba(255,255,255,.76), rgba(255,204,51,.16)),
    rgba(237,237,237,.48);
}

.hero-metrics b,
.offer-card strong,
.timeline b,
.price-focus b {
  color: #8d5d14;
}

html[data-theme="brand"] .hero-metrics b,
html[data-theme="brand"] .offer-card strong,
html[data-theme="brand"] .timeline b,
html[data-theme="brand"] .price-focus b {
  color: #b48700;
}

.hero-offer {
  background:
    linear-gradient(145deg, rgba(34,24,23,.96), rgba(185,130,36,.86)),
    radial-gradient(circle at 20% 16%, rgba(246,223,184,.28), transparent 34%);
}

html[data-theme="brand"] .hero-offer {
  color: #fff;
  background:
    linear-gradient(145deg, #202020, #3e3e3e 58%, #b48700),
    radial-gradient(circle at 20% 16%, rgba(255,204,51,.22), transparent 34%);
}

.line-link,
.floating-book a:nth-child(2) {
  background: #14be4f;
}

html[data-theme="brand"] .line-link,
html[data-theme="brand"] .floating-book a:nth-child(2) {
  background: #14be4f;
}

.main-nav a:hover,
.nav-menu > button:hover {
  box-shadow: inset 0 0 0 1px rgba(185,130,36,.24), 0 8px 20px rgba(125,76,13,.08);
}

html[data-theme="brand"] .main-nav a:hover,
html[data-theme="brand"] .nav-menu > button:hover {
  box-shadow: inset 0 0 0 1px rgba(255,204,51,.26), 0 8px 20px rgba(180,135,0,.08);
}

/* Web brief alignment - content, type, themes and reliable dropdowns */
h1,
h2,
h3,
.modal-head h2,
.section-title h2,
.page-heading h1,
.sub-hero h1,
.contact-shell h1,
.footer-cta strong,
html[data-theme="brand"] h1,
html[data-theme="brand"] h2,
html[data-theme="brand"] h3 {
  font-family: var(--font-body);
  letter-spacing: 0;
}

[lang="en"],
.doctor-name-en,
.service-brief-card h3 {
  font-family: var(--font-display);
}

.site-header,
html[data-theme="brand"] .site-header {
  overflow: visible;
}

.main-nav {
  position: relative;
  z-index: 80;
}

.nav-menu {
  position: relative;
}

.nav-menu::before {
  content: "";
  position: absolute;
  top: 100%;
  left: -22px;
  width: calc(100% + 44px);
  height: 18px;
}

.nav-dropdown {
  top: calc(100% + 10px);
  left: 50%;
  z-index: 160;
  display: grid;
  width: 270px;
  max-height: min(70vh, 560px);
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transform-origin: top center;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.nav-menu:hover .nav-dropdown,
.nav-menu:focus-within .nav-dropdown,
.nav-menu.is-open .nav-dropdown {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown a {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 10px 14px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  color: var(--gold-dark);
  background: rgba(246, 223, 184, .34);
  outline: none;
}

html[data-theme="brand"] .nav-dropdown a:hover,
html[data-theme="brand"] .nav-dropdown a:focus-visible {
  color: #3e3e3e;
  background: rgba(255, 204, 51, .22);
}

.brief-hero {
  min-height: 760px;
  padding-top: 64px;
  padding-bottom: 72px;
  align-items: center;
}

.brief-hero .hero-copy {
  max-width: 700px;
}

.brief-hero h1 {
  max-width: 680px;
  margin: 20px 0 16px;
  font-size: 56px;
  line-height: 1.2;
  font-weight: 700;
}

.hero-subtitle {
  max-width: 650px;
  margin: 0 0 18px;
  color: var(--gold-dark);
  font-size: 22px;
  line-height: 1.5;
  font-weight: 650;
}

.brief-hero .hero-copy > p:not(.hero-note) {
  max-width: 660px;
  font-size: 17px;
  line-height: 1.9;
}

.hero-note {
  margin-top: 14px;
  color: var(--soft-ink);
  font-size: 13px;
}

.brief-heading {
  max-width: 840px;
  margin-bottom: 34px;
}

.brief-heading h2,
.brief-duo h2,
.doctor-feature h2,
.review-feature h2,
.promotion-feature h2 {
  margin: 10px 0 14px;
  font-size: 36px;
  line-height: 1.35;
}

.brief-heading > p {
  max-width: 780px;
  line-height: 1.85;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.value-grid article,
.service-brief-card {
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(185, 130, 36, .16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.78), rgba(255,250,243,.52)),
    radial-gradient(circle at 16% 8%, rgba(246,223,184,.28), transparent 38%);
  box-shadow: 0 18px 50px rgba(125, 76, 13, .08);
  backdrop-filter: blur(18px) saturate(135%);
}

html[data-theme="brand"] .value-grid article,
html[data-theme="brand"] .service-brief-card {
  border-color: rgba(62, 62, 62, .14);
  background:
    linear-gradient(145deg, rgba(255,255,255,.82), rgba(237,237,237,.66)),
    radial-gradient(circle at 16% 8%, rgba(255,204,51,.16), transparent 38%);
  box-shadow: 0 18px 50px rgba(62, 62, 62, .08);
}

.value-grid article > span,
.service-brief-card > span {
  color: var(--gold-dark);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
}

.value-grid h3 {
  margin: 16px 0 8px;
  font-size: 21px;
  line-height: 1.45;
}

.value-grid p,
.service-brief-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
}

.brief-duo {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 20px;
}

.brief-duo .glass-panel {
  min-height: 100%;
  padding: 38px;
  border-radius: 8px;
}

.compact-list {
  margin-top: 22px;
}

.compact-list li {
  margin-bottom: 10px;
  line-height: 1.65;
}

.doctor-feature {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: stretch;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(185, 130, 36, .18);
  border-radius: 8px;
  background: rgba(255,255,255,.48);
  box-shadow: 0 24px 70px rgba(125, 76, 13, .10);
}

html[data-theme="brand"] .doctor-feature {
  border-color: rgba(62,62,62,.14);
  background: rgba(237,237,237,.7);
  box-shadow: 0 24px 70px rgba(62,62,62,.09);
}

.doctor-feature-image {
  min-height: 520px;
  background:
    linear-gradient(90deg, transparent 72%, rgba(255,253,250,.5)),
    url("assets/generated/doctor-consultation.png") center / cover no-repeat;
}

html[data-theme="brand"] .doctor-feature-image {
  background:
    linear-gradient(90deg, transparent 72%, rgba(237,237,237,.52)),
    url("assets/generated/doctor-consultation.png") center / cover no-repeat;
}

.doctor-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 52px;
}

.doctor-feature-copy strong {
  margin: 8px 0 18px;
  font-size: 17px;
  line-height: 1.7;
}

.doctor-feature-copy > p:not(.doctor-name-en) {
  max-width: 670px;
  line-height: 1.85;
}

.doctor-name-en {
  margin: -6px 0 8px;
  color: var(--gold-dark);
  font-size: 19px;
}

.doctor-feature-copy .btn {
  margin-top: 16px;
}

.service-brief-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-brief-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.service-brief-card:hover {
  transform: translateY(-4px);
  border-color: rgba(185,130,36,.32);
  box-shadow: 0 24px 60px rgba(125,76,13,.13);
}

html[data-theme="brand"] .service-brief-card:hover {
  border-color: rgba(180,135,0,.34);
  box-shadow: 0 24px 60px rgba(62,62,62,.12);
}

.service-brief-card h3 {
  margin: 14px 0 8px;
  color: var(--gold-dark);
  font-size: 26px;
  line-height: 1.25;
}

.service-brief-card b {
  display: block;
  margin-bottom: 10px;
  font-size: 17px;
  line-height: 1.55;
}

.service-brief-card a {
  margin-top: auto;
  padding-top: 22px;
  color: var(--gold-dark);
  font-weight: 700;
}

.review-feature {
  display: grid;
  grid-template-columns: minmax(260px, .62fr) minmax(0, 1.38fr);
  gap: 34px;
  align-items: start;
}

.review-feature-copy {
  position: sticky;
  top: 116px;
}

.brief-review-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.brief-review-cards article {
  min-height: 270px;
  border-radius: 8px;
}

.review-disclaimer {
  grid-column: 2;
  margin: -12px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  line-height: 1.7;
}

.promotion-feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 46px;
  border: 1px solid rgba(185,130,36,.22);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(34,24,23,.97), rgba(123,75,13,.92)),
    radial-gradient(circle at 82% 18%, rgba(246,223,184,.3), transparent 32%);
  box-shadow: 0 26px 72px rgba(76,49,22,.18);
}

html[data-theme="brand"] .promotion-feature {
  border-color: rgba(255,204,51,.32);
  background:
    linear-gradient(120deg, #262626, #3e3e3e 66%, #806100),
    radial-gradient(circle at 82% 18%, rgba(255,204,51,.22), transparent 32%);
  box-shadow: 0 26px 72px rgba(62,62,62,.18);
}

.promotion-feature h2,
.promotion-feature p,
.promotion-feature .kicker {
  color: #fff;
}

.promotion-feature > div:first-child {
  max-width: 760px;
}

.promotion-feature p {
  margin-bottom: 0;
  line-height: 1.8;
  opacity: .82;
}

.promotion-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

@media (max-width: 1440px) {
  .brief-hero h1 {
    font-size: 48px;
  }

  .service-brief-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1180px) {
  .main-nav {
    position: fixed;
    top: 94px;
    left: 10px;
    right: 10px;
    width: auto;
    min-width: 0;
    margin: 0;
    justify-self: stretch;
    align-self: start;
    z-index: 120;
    max-height: calc(100vh - 96px);
    max-height: calc(100dvh - 106px);
    overflow-y: auto;
  }

  .nav-menu {
    width: 100%;
  }

  .nav-menu::before {
    display: none;
  }

  .nav-dropdown {
    position: static;
    display: none;
    width: 100%;
    max-height: 50vh;
    margin: 0;
    padding: 4px 0 10px 14px;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    transform: none;
    box-shadow: none;
    pointer-events: none;
  }

  .nav-menu:hover .nav-dropdown {
    display: none;
  }

  .nav-menu.is-open .nav-dropdown,
  .nav-menu:focus-within .nav-dropdown {
    display: grid;
    visibility: visible;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .brief-hero {
    min-height: auto;
    padding-top: 52px;
  }

  .brief-hero h1 {
    font-size: 42px;
  }

  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .doctor-feature {
    grid-template-columns: 1fr;
  }

  .doctor-feature-image {
    min-height: 460px;
    background-position: center 34%;
  }

  .review-feature {
    grid-template-columns: 1fr;
  }

  .review-feature-copy {
    position: static;
  }

  .review-disclaimer {
    grid-column: 1;
  }

  .promotion-feature {
    align-items: flex-start;
    flex-direction: column;
  }

  .promotion-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .main-nav {
    top: 84px;
    left: 8px;
    right: 8px;
    max-height: calc(100vh - 94px);
    max-height: calc(100dvh - 94px);
  }

  .brief-hero {
    padding-top: 34px;
    padding-bottom: 46px;
  }

  .brief-hero h1 {
    font-size: 34px;
    line-height: 1.28;
  }

  .hero-subtitle {
    font-size: 19px;
  }

  .brief-hero .hero-copy > p:not(.hero-note) {
    font-size: 15px;
  }

  .brief-heading h2,
  .brief-duo h2,
  .doctor-feature h2,
  .review-feature h2,
  .promotion-feature h2 {
    font-size: 28px;
  }

  .value-grid,
  .brief-duo,
  .service-brief-grid,
  .brief-review-cards {
    grid-template-columns: 1fr;
  }

  .value-grid article,
  .service-brief-card,
  .brief-duo .glass-panel {
    padding: 24px;
  }

  .service-brief-card {
    min-height: 280px;
  }

  .doctor-feature-image {
    min-height: 340px;
  }

  .doctor-feature-copy {
    padding: 30px 24px;
  }

  .promotion-feature {
    padding: 30px 24px;
  }

  .promotion-actions,
  .promotion-actions .btn {
    width: 100%;
  }
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 20px;
}

.about-story-grid .glass-panel {
  padding: 38px;
  border-radius: 8px;
}

.about-story-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-story-grid h2,
.about-mission h2,
.brand-values h2 {
  margin: 10px 0 16px;
  font-size: 34px;
  line-height: 1.4;
}

.about-story-grid p {
  line-height: 1.85;
}

.about-story-side {
  display: grid;
  gap: 20px;
}

.about-mission-grid h3 {
  font-family: var(--font-display);
}

.brand-value-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.brand-value-list article {
  min-width: 0;
  padding: 28px 22px;
  border-right: 1px solid var(--line);
}

.brand-value-list article:last-child {
  border-right: 0;
}

.brand-value-list b {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-dark);
  font-family: var(--font-display);
  font-size: 18px;
}

.brand-value-list p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 1180px) {
  .about-story-grid {
    grid-template-columns: 1fr;
  }

  .brand-value-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-value-list article:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 720px) {
  .about-story-grid .glass-panel {
    padding: 26px 24px;
  }

  .about-story-grid h2,
  .about-mission h2,
  .brand-values h2 {
    font-size: 28px;
  }

  .brand-value-list {
    grid-template-columns: 1fr;
  }

  .brand-value-list article,
  .brand-value-list article:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .brand-value-list article:last-child {
    border-bottom: 0;
  }
}

/* Readability lock for navigation and editorial pages */
.nav-dropdown {
  border-color: rgba(141, 93, 20, .24);
  background: rgba(255, 253, 250, .98);
  box-shadow: 0 24px 60px rgba(76, 49, 22, .18), inset 0 1px 0 #fff;
  backdrop-filter: blur(28px) saturate(120%);
}

html[data-theme="brand"] .nav-dropdown {
  border-color: rgba(62, 62, 62, .2);
  background: rgba(237, 237, 237, .98);
  box-shadow: 0 24px 60px rgba(62, 62, 62, .18), inset 0 1px 0 #fff;
}

.nav-dropdown a {
  color: #241b18;
  font-weight: 650;
}

html[data-theme="brand"] .nav-dropdown a {
  color: #292929;
}

.articles-heading {
  padding-top: 92px;
  padding-bottom: 34px;
}

.articles-heading h1 {
  color: #171312;
  font-weight: 750;
}

.articles-heading p,
.article-copy p,
.article-stack article p,
.rank-list span {
  color: #625954;
  font-weight: 500;
}

html[data-theme="brand"] .articles-heading p,
html[data-theme="brand"] .article-copy p,
html[data-theme="brand"] .article-stack article p,
html[data-theme="brand"] .rank-list span {
  color: #4b4b4b;
}

.article-feature,
.article-stack article,
.article-sidebar {
  border-color: rgba(185, 130, 36, .18);
  background: rgba(255, 253, 250, .94);
}

html[data-theme="brand"] .article-feature,
html[data-theme="brand"] .article-stack article,
html[data-theme="brand"] .article-sidebar {
  border-color: rgba(62, 62, 62, .16);
  background: rgba(255, 255, 255, .9);
}

@media (max-width: 720px) {
  .articles-heading {
    padding-top: 54px;
    padding-bottom: 24px;
  }
}

html.cms-preview * {
  cursor: crosshair !important;
}

html.cms-preview .cms-preview-selected {
  outline: 3px solid #ffcc33 !important;
  outline-offset: 3px !important;
  box-shadow: 0 0 0 6px rgba(36, 36, 36, 0.42) !important;
}

.cms-articles[hidden] { display: none; }
.cms-articles { padding-top: 56px; padding-bottom: 88px; }
.cms-article-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.cms-article-card { overflow: hidden; border: 1px solid rgba(185, 130, 36, .18); background: rgba(255, 253, 250, .94); box-shadow: 0 18px 50px rgba(87, 55, 20, .08); }
.cms-article-card a { display: block; height: 100%; color: inherit; text-decoration: none; }
.cms-article-card img { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.cms-article-card div { padding: 22px; }
.cms-article-card span { color: var(--gold-dark); font-size: 11px; font-weight: 750; text-transform: uppercase; }
.cms-article-card h3 { margin: 8px 0; font-size: 21px; line-height: 1.45; }
.cms-article-card p { margin: 0; color: #625954; }
html[data-theme="brand"] .cms-article-card { border-color: rgba(62,62,62,.16); background: rgba(255,255,255,.92); }
html[data-theme="brand"] .cms-article-card span { color: #8a6700; }
html[data-theme="brand"] .cms-article-card p { color: #4b4b4b; }
@media (max-width: 900px) { .cms-article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .cms-article-grid { grid-template-columns: 1fr; } .cms-articles { padding-top: 38px; padding-bottom: 58px; } }

/* Final brand contract from Web Join Brief: gray 60%, charcoal 30%, yellow/gold 10%. */
html[data-theme="brand"] {
  --ink: #3e3e3e;
  --soft-ink: #5b5b5b;
  --paper: #ededed;
  --ivory: #ededed;
  --gold: #ffcc33;
  --gold-dark: #b48700;
  --line: rgba(62, 62, 62, .16);
}

html[data-theme="brand"] body {
  background: linear-gradient(180deg, #ededed 0%, #fafafa 44%, #ededed 100%);
}

html[data-theme="brand"] .ambient { display: none; }

html[data-theme="brand"] .site-header {
  border-bottom-color: rgba(180, 135, 0, .34);
  background: linear-gradient(135deg, rgba(255,255,255,.97), rgba(237,237,237,.96));
  box-shadow: 0 14px 42px rgba(62, 62, 62, .11);
}

html[data-theme="brand"] .nav-shell,
html[data-theme="brand"] .main-nav {
  background: rgba(255, 255, 255, .66);
}

html[data-theme="brand"] .btn-gold,
html[data-theme="brand"] .header-booking,
html[data-theme="brand"] .submit-booking,
html[data-theme="brand"] .floating-book button {
  border-color: #3e3e3e;
  color: #ffcc33;
  background: linear-gradient(135deg, #4b4b4b, #292929);
  box-shadow: 0 14px 34px rgba(62, 62, 62, .2);
}

html[data-theme="brand"] .btn-gold:hover,
html[data-theme="brand"] .header-booking:hover,
html[data-theme="brand"] .floating-book button:hover {
  color: #3e3e3e;
  background: #ffcc33;
}

html[data-theme="brand"] .main-nav a.is-active,
html[data-theme="brand"] .nav-menu > button.is-active,
html[data-theme="brand"] .main-nav a:hover,
html[data-theme="brand"] .nav-menu > button:hover {
  color: #3e3e3e;
  background: rgba(255, 204, 51, .28);
}

.nav-dropdown {
  background: #fffdfa;
}

html[data-theme="brand"] .nav-dropdown {
  border-color: rgba(62, 62, 62, .22);
  background: #ededed;
}

html[data-theme="brand"] .article-feature,
html[data-theme="brand"] .article-stack article,
html[data-theme="brand"] .article-sidebar,
html[data-theme="brand"] .cms-article-card {
  border-color: rgba(62,62,62,.16);
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 50px rgba(62,62,62,.08);
}
