/* ============================================================
   UROLOGY — Male Enhancement (EN) — Design System
   Dark luxury · champagne-gold accent
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@300;400;500;600;700&family=Newsreader:ital,opsz,wght@0,6..72,300;0,6..72,400;1,6..72,300;1,6..72,400&display=swap');

:root {
  /* surfaces */
  --bg:        #0A0A0B;
  --bg-2:      #0E0E10;
  --surface:   #141416;
  --surface-2: #1A1A1D;
  --surface-3: #202024;

  /* lines */
  --line:        rgba(255,255,255,0.07);
  --line-strong: rgba(255,255,255,0.13);

  /* text */
  --text:   #F4F3F1;
  --text-2: #ADACB1;
  --text-3: #6C6B71;

  /* accent — champagne gold */
  --gold:      #C7A977;
  --gold-2:    #E4D0A6;
  --gold-deep: #9C824F;
  --gold-soft: rgba(199,169,119,0.12);
  --gold-line: rgba(199,169,119,0.30);

  /* type */
  --sans: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --serif: 'Newsreader', Georgia, serif;

  /* metrics */
  --maxw: 1200px;
  --pad: clamp(20px, 5vw, 64px);
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold-line);
}
.eyebrow.center::before { display: none; }

.serif { font-family: var(--serif); }
.italic { font-style: italic; }
.gold { color: var(--gold); }
.muted { color: var(--text-2); }

.section { padding: clamp(72px, 11vw, 150px) 0; position: relative; }
.section-head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 72px); }
.section-head.center { margin-inline: auto; text-align: center; }

h2.title {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 20px 0 0;
  text-wrap: balance;
}
.section-head p.lede {
  margin-top: 20px;
  color: var(--text-2);
  font-size: clamp(15px, 1.7vw, 18px);
  max-width: 560px;
}
.section-head.center p.lede { margin-inline: auto; }
.note-line { margin-top: 16px; font-size: 14px; color: var(--gold-2); letter-spacing: .01em; }
.section-head.center .note-line { margin-inline: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 54px; padding: 0 30px;
  border-radius: 100px;
  font-size: 15px; font-weight: 600; letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
}
.btn:active { transform: translateY(1px); }
.btn-gold {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #20180A;
  box-shadow: 0 10px 30px -12px rgba(199,169,119,0.5);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -14px rgba(199,169,119,0.65); }
.btn-ghost {
  background: transparent; color: var(--text);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--gold-line); color: var(--gold-2); }
.btn-block { width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10,10,11,0.72);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 26px; width: auto; }
.brand .wordmark {
  font-weight: 700; letter-spacing: 0.18em; font-size: 15px; text-transform: uppercase;
}
.brand .wordmark small { display: block; font-size: 9px; letter-spacing: 0.3em; color: var(--gold); font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 14px; color: var(--text-2); font-weight: 500;
  position: relative; transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0;
  background: var(--gold); transition: width .25s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-cta .btn { height: 44px; padding: 0 22px; font-size: 14px; }
.nav-toggle { display: none; background: none; border: 0; color: var(--text); width: 44px; height: 44px; }
.nav-toggle svg { width: 24px; height: 24px; }

/* mobile drawer */
.mobile-menu {
  position: fixed; inset: 0 0 0 auto; width: min(82vw, 360px); z-index: 95;
  background: var(--bg-2); border-left: 1px solid var(--line);
  transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
  padding: 96px 32px 32px; display: flex; flex-direction: column; gap: 8px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { padding: 14px 0; font-size: 18px; border-bottom: 1px solid var(--line); color: var(--text); }
.mobile-menu .btn { margin-top: 20px; }
.scrim { position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 94; opacity: 0; pointer-events: none; transition: opacity .3s; }
.scrim.show { opacity: 1; pointer-events: auto; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: 150px 0 90px; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; top: -10%; right: -5%; width: 60vw; height: 60vw;
  max-width: 760px; max-height: 760px;
  background: radial-gradient(circle, rgba(199,169,119,0.14), transparent 65%);
  pointer-events: none; z-index: 0;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero-copy { max-width: 600px; }
.hero h1 {
  font-size: clamp(38px, 6.2vw, 76px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 26px 0 0;
  text-wrap: balance;
}
.hero h1 .accent { font-family: var(--serif); font-style: italic; font-weight: 300; color: var(--gold-2); }
.hero p.sub {
  margin-top: 28px; font-size: clamp(15px, 1.8vw, 18px); color: var(--text-2);
  max-width: 480px; line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }

.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 8px; margin-top: 52px; padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero-stats .stat .num {
  font-size: clamp(20px, 2.6vw, 28px); font-weight: 600; letter-spacing: -0.01em;
  font-family: var(--serif);
}
.hero-stats .stat .num .gold { font-family: var(--sans); }
.hero-stats .stat .lbl { font-size: 12px; color: var(--text-3); margin-top: 6px; letter-spacing: .02em; }

/* hero visual */
.hero-visual { position: relative; }
.hero-frame {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4 / 5; border: 1px solid var(--line-strong);
  background: var(--surface);
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; transition: opacity .35s ease; }
.hero-frame::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,11,0.85));
}
.hero-frame .frame-tag {
  position: absolute; left: 22px; top: 22px; z-index: 2;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-2); background: rgba(10,10,11,.5); backdrop-filter: blur(8px);
  border: 1px solid var(--gold-line); padding: 8px 14px; border-radius: 100px; white-space: nowrap;
}
.hero-chips {
  position: absolute; left: 22px; right: 22px; bottom: 22px; z-index: 2;
  display: flex; gap: 8px; flex-wrap: wrap;
}
.hero-chips .chip {
  font-size: 12px; padding: 8px 14px; border-radius: 100px;
  background: rgba(255,255,255,0.07); border: 1px solid var(--line-strong);
  backdrop-filter: blur(8px); color: var(--text); font-weight: 500;
  font-family: inherit; cursor: pointer; transition: background .2s, border-color .2s, color .2s;
}
.hero-chips .chip:hover { border-color: var(--gold-line); color: var(--gold-2); }
.hero-chips .chip.active { background: var(--gold-soft); border-color: var(--gold-line); color: var(--gold-2); }

/* ============================================================
   OVERVIEW CARDS
   ============================================================ */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column;
  transition: transform .3s ease, border-color .3s ease;
}
.card:hover { transform: translateY(-6px); border-color: var(--gold-line); }
.card.featured { border-color: var(--gold-line); }
.card-media { position: relative; aspect-ratio: 16/11; overflow: hidden; background: var(--surface-2); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.card:hover .card-media img { transform: scale(1.05); }
.card-media::after { content:''; position:absolute; inset:0; background: linear-gradient(180deg, transparent 55%, rgba(20,20,22,0.9)); }
.card-badge {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  font-size: 10px; letter-spacing: .18em; font-weight: 700; text-transform: uppercase;
  color: #20180A; background: linear-gradient(180deg, var(--gold-2), var(--gold));
  padding: 7px 12px; border-radius: 100px;
}
.card-type {
  position: absolute; left: 18px; bottom: 16px; z-index: 2;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--text-2);
}
.card-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-size: 24px; font-weight: 600; letter-spacing: -0.01em; }
.card-body .en { font-size: 13px; color: var(--gold); letter-spacing: .04em; margin-top: 4px; }
.card-body p.desc { color: var(--text-2); font-size: 14.5px; margin-top: 16px; flex: 1; }
.card-meta { display: flex; gap: 28px; margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line); }
.card-meta .k { font-size: 11px; color: var(--text-3); letter-spacing: .12em; text-transform: uppercase; }
.card-meta .v { font-size: 17px; font-weight: 600; margin-top: 4px; }
.card-link {
  margin-top: 22px; display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--gold-2); align-self: flex-start;
  transition: gap .25s;
}
.card-link:hover { gap: 14px; }

/* ============================================================
   DETAILED PROCEDURE SECTION
   ============================================================ */
.proc { border-top: 1px solid var(--line); }
.proc-head { display: grid; grid-template-columns: auto 1fr; gap: clamp(20px,4vw,48px); align-items: end; margin-bottom: clamp(40px,6vw,64px); }
.proc-index { font-family: var(--serif); font-size: clamp(56px, 9vw, 120px); font-weight: 300; line-height: .8; color: var(--surface-3); -webkit-text-stroke: 1px var(--line-strong); }
.proc-head .titles .eyebrow { margin-bottom: 14px; }
.proc-head h2 { font-size: clamp(30px,5vw,52px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.05; }
.proc-head h2 .en { display: block; font-family: var(--serif); font-style: italic; font-weight: 300; font-size: .5em; color: var(--gold); margin-top: 8px; }

.proc-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(28px,4vw,56px); align-items: start; }
.proc-figure { position: sticky; top: 100px; }
.proc-figure .img {
  border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 3/4;
  border: 1px solid var(--line-strong); position: relative; background: var(--surface);
}
.proc-figure .img img { width:100%; height:100%; object-fit: cover; }
.proc-figure .cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 20px;
  background: linear-gradient(transparent, rgba(10,10,11,.9));
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-2);
}

.spec-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.spec {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  padding: 24px;
}
.spec .k { font-size: 12px; color: var(--text-3); letter-spacing: .08em; text-transform: uppercase; }
.spec .v { font-size: clamp(26px,3.4vw,34px); font-weight: 600; margin-top: 8px; letter-spacing: -0.01em; font-family: var(--serif); }
.spec p { font-size: 13.5px; color: var(--text-2); margin-top: 10px; }

.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
.pc {
  border: 1px solid var(--line); border-radius: var(--r); padding: 24px; background: var(--surface);
}
.pc h4 { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; display:flex; align-items:center; gap:8px; }
.pc.pros h4 { color: var(--gold-2); }
.pc.cons h4 { color: var(--text-2); }
.pc ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.pc li { font-size: 14px; color: var(--text); padding-left: 24px; position: relative; line-height: 1.45; }
.pc li::before { position: absolute; left: 0; top: 0; font-size: 14px; }
.pc.pros li::before { content: '＋'; color: var(--gold); }
.pc.cons li { color: var(--text-2); }
.pc.cons li::before { content: '－'; color: var(--text-3); }

/* steps */
.steps-block { margin-top: 16px; border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); padding: 28px; }
.steps-block .sb-head { display:flex; align-items:baseline; justify-content:space-between; gap:16px; margin-bottom: 24px; flex-wrap: wrap; }
.steps-block .sb-head h4 { font-size: 15px; letter-spacing: .04em; }
.steps-block .sb-head .meta { font-size: 13px; color: var(--gold); letter-spacing: .04em; }
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.step { position: relative; padding: 0 14px; }
.step:not(:last-child)::after {
  content:''; position:absolute; top: 13px; right: 0; width: 100%; height: 1px;
  background: linear-gradient(90deg, var(--gold-line), transparent);
}
.step .dot {
  width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--gold-line);
  display: grid; place-items: center; font-size: 11px; font-weight: 700; color: var(--gold-2);
  background: var(--bg); position: relative; z-index: 1; margin-bottom: 16px;
}
.step .st { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--text-3); }
.step .sh { font-size: 15px; font-weight: 600; margin-top: 4px; }
.step .sp { font-size: 12.5px; color: var(--text-2); margin-top: 6px; line-height: 1.4; }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.compare-wrap { border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: var(--surface); }
table.compare { width: 100%; border-collapse: collapse; }
table.compare th, table.compare td { padding: 20px 22px; text-align: left; vertical-align: middle; }
table.compare thead th { background: var(--bg-2); border-bottom: 1px solid var(--line-strong); }
table.compare thead th:first-child { color: var(--text-3); font-weight: 500; font-size: 13px; letter-spacing: .04em; }
table.compare thead .col-name { font-size: 18px; font-weight: 600; }
table.compare thead .col-en { font-size: 12px; color: var(--gold); font-weight: 500; letter-spacing: .04em; display:block; margin-top: 2px; }
table.compare thead .col-tag { font-size: 10px; letter-spacing:.16em; text-transform:uppercase; color: var(--text-3); display:block; margin-bottom: 6px; }
table.compare tbody td { border-bottom: 1px solid var(--line); font-size: 15px; }
table.compare tbody tr:last-child td { border-bottom: 0; }
table.compare tbody td:first-child { color: var(--text-3); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; font-weight: 500; width: 160px; }
table.compare tbody td:not(:first-child) { font-weight: 500; }
table.compare .featured-col { background: var(--gold-soft); }
table.compare td .note { display:block; font-size: 12px; color: var(--text-3); margin-top: 3px; }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 14px; }
.stars .off { color: var(--surface-3); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: 0; color: var(--text); text-align: left;
  display: flex; align-items: center; gap: 20px; padding: 28px 8px;
  font-size: clamp(16px, 2vw, 20px); font-weight: 500; letter-spacing: -0.01em;
}
.faq-q .qn { font-family: var(--serif); color: var(--gold); font-size: 15px; flex-shrink: 0; min-width: 44px; }
.faq-q .qt { flex: 1; }
.faq-q .ic { flex-shrink: 0; width: 24px; height: 24px; position: relative; transition: transform .35s; }
.faq-q .ic::before, .faq-q .ic::after { content:''; position:absolute; background: var(--gold); border-radius: 2px; transition: opacity .3s; }
.faq-q .ic::before { top: 11px; left: 2px; width: 20px; height: 2px; }
.faq-q .ic::after { left: 11px; top: 2px; width: 2px; height: 20px; }
.faq-item.open .faq-q .ic::after { opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a .inner { padding: 0 8px 30px 72px; color: var(--text-2); font-size: 15.5px; line-height: 1.7; max-width: 760px; }

/* ============================================================
   CONSULTATION
   ============================================================ */
.consult { background: var(--bg-2); border-top: 1px solid var(--line); }
.consult-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(36px,5vw,80px); align-items: start; }
.consult-copy h2 { font-size: clamp(30px,4.6vw,50px); font-weight: 600; line-height: 1.08; letter-spacing: -0.02em; }
.consult-copy h2 .accent { font-family: var(--serif); font-style: italic; font-weight: 300; color: var(--gold-2); }
.consult-copy p.lede { margin-top: 22px; color: var(--text-2); font-size: 17px; max-width: 440px; }
.assure { margin-top: 40px; display: flex; flex-direction: column; gap: 22px; }
.assure-item { display: flex; gap: 16px; align-items: flex-start; }
.assure-item .ic { flex-shrink:0; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--gold-line); background: var(--gold-soft); display:grid; place-items:center; }
.assure-item .ic svg { width: 22px; height: 22px; stroke: var(--gold-2); }
.assure-item h4 { font-size: 16px; font-weight: 600; }
.assure-item p { font-size: 14px; color: var(--text-2); margin-top: 4px; }

/* form */
.form-card { background: var(--surface); border: 1px solid var(--line-strong); border-radius: var(--r-lg); padding: clamp(26px, 3vw, 40px); }
.form-card .fc-head { margin-bottom: 26px; }
.form-card .fc-head h3 { font-size: 22px; font-weight: 600; }
.form-card .fc-head p { font-size: 14px; color: var(--text-2); margin-top: 6px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 13px; color: var(--text-2); margin-bottom: 9px; font-weight: 500; letter-spacing: .01em; }
.field label .req { color: var(--gold); }
.field input, .field select {
  width: 100%; height: 52px; padding: 0 16px; font-family: inherit; font-size: 15px;
  background: var(--bg); border: 1px solid var(--line-strong); border-radius: var(--r-sm);
  color: var(--text); transition: border-color .2s, box-shadow .2s;
  appearance: none;
}
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23C7A977' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; }
.field input::placeholder { color: var(--text-3); }
.field input:focus, .field select:focus { outline: none; border-color: var(--gold-line); box-shadow: 0 0 0 4px var(--gold-soft); }
.field.invalid input, .field.invalid select { border-color: #C0564A; box-shadow: 0 0 0 4px rgba(192,86,74,.12); }
.field .err { font-size: 12.5px; color: #E08379; margin-top: 7px; display: none; }
.field.invalid .err { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* chip-select for procedure interest */
.chip-select { display: flex; flex-wrap: wrap; gap: 10px; }
.chip-select label {
  margin: 0; cursor: pointer; padding: 11px 18px; border-radius: 100px;
  border: 1px solid var(--line-strong); font-size: 14px; color: var(--text-2);
  transition: all .2s; user-select: none;
}
.chip-select input { position: absolute; opacity: 0; pointer-events: none; }
.chip-select label:hover { border-color: var(--gold-line); color: var(--text); }
.chip-select input:checked + span { }
.chip-select label.sel { background: var(--gold-soft); border-color: var(--gold-line); color: var(--gold-2); }

.consent { display: flex; align-items: flex-start; gap: 12px; margin: 6px 0 24px; }
.consent input { width: 20px; height: 20px; accent-color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.consent label { font-size: 13px; color: var(--text-2); line-height: 1.5; }
.consent a { color: var(--gold-2); text-decoration: underline; text-underline-offset: 2px; }

/* success state */
.form-success { text-align: center; padding: 30px 10px; display: none; }
.form-success.show { display: block; animation: fadeUp .5s ease; }
.form-success .check { width: 76px; height: 76px; border-radius: 50%; border: 1px solid var(--gold-line); background: var(--gold-soft); display: grid; place-items: center; margin: 0 auto 24px; }
.form-success .check svg { width: 36px; height: 36px; stroke: var(--gold-2); }
.form-success h3 { font-size: 26px; font-weight: 600; }
.form-success p { color: var(--text-2); margin-top: 12px; font-size: 15px; max-width: 360px; margin-inline: auto; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* ============================================================
   FOOTER / CLINICS
   ============================================================ */
.footer { border-top: 1px solid var(--line); padding-top: clamp(64px,8vw,100px); }
.footer-top { display: grid; grid-template-columns: 1fr 2.4fr; gap: clamp(32px,5vw,72px); padding-bottom: 60px; border-bottom: 1px solid var(--line); }
.footer-top.single { display: block; }
.footer-top.single .footer-brand p { max-width: 460px; }
.footer-brand img { height: 28px; margin-bottom: 22px; }
.footer-brand .wordmark { font-size: 22px; font-weight: 700; letter-spacing: .14em; }
.footer-brand .wordmark .gold { font-weight: 700; }
.footer-brand p { color: var(--text-2); font-size: 14.5px; margin-top: 16px; max-width: 280px; line-height: 1.7; }

.clinics-head { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.clinics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.clinic { background: var(--bg); padding: 24px; transition: background .25s; }
.clinic:hover { background: var(--surface); }
.clinic .cn { display: flex; align-items: center; gap: 10px; }
.clinic h4 { font-size: 17px; font-weight: 600; }
.clinic .flag { font-size: 9px; letter-spacing: .14em; font-weight: 700; color: #20180A; background: var(--gold); padding: 3px 7px; border-radius: 4px; }
.clinic .tel { display: inline-block; font-family: var(--serif); font-size: 19px; color: var(--gold-2); margin: 10px 0 12px; letter-spacing: .01em; }
.clinic .addr { font-size: 13px; color: var(--text-2); line-height: 1.55; }
.clinic .hours { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 5px; }
.clinic .hours .hr { display: flex; justify-content: space-between; font-size: 12.5px; }
.clinic .hours .hr .d { color: var(--text-3); }
.clinic .hours .hr .t { color: var(--text-2); }
.clinic .tags { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 6px; }
.clinic .tags span { font-size: 11px; color: var(--gold-2); border: 1px solid var(--gold-line); border-radius: 100px; padding: 4px 10px; }

/* single feature clinic */
.clinic-feature { display: grid; grid-template-columns: 1.25fr 1fr; background: var(--bg); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.cf-main { padding: 32px clamp(24px,3vw,40px); }
.cf-hours { padding: 32px clamp(24px,3vw,40px); background: var(--surface); border-left: 1px solid var(--line); display: flex; align-items: center; }
.clinic-feature .cn { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.clinic-feature h4 { font-size: 23px; font-weight: 600; }
.clinic-feature .flag { font-size: 10px; letter-spacing: .12em; font-weight: 700; color: #20180A; background: var(--gold); padding: 4px 9px; border-radius: 5px; text-transform: uppercase; }
.clinic-feature .tel { display: inline-block; font-family: var(--serif); font-size: 27px; color: var(--gold-2); margin: 16px 0; letter-spacing: .01em; }
.clinic-feature .addr { font-size: 14.5px; color: var(--text-2); line-height: 1.6; }
.clinic-feature .tags { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px; }
.clinic-feature .tags span { font-size: 12px; color: var(--gold-2); border: 1px solid var(--gold-line); border-radius: 100px; padding: 5px 12px; }
.clinic-feature .hours { width: 100%; display: flex; flex-direction: column; gap: 11px; }
.clinic-feature .hours .hr { display: flex; justify-content: space-between; gap: 16px; font-size: 13.5px; padding-bottom: 11px; border-bottom: 1px solid var(--line); }
.clinic-feature .hours .hr:last-child { border-bottom: 0; padding-bottom: 0; }
.clinic-feature .hours .hr .d { color: var(--text-3); }
.clinic-feature .hours .hr .t { color: var(--text); font-weight: 500; }
@media (max-width: 760px){ .clinic-feature { grid-template-columns: 1fr; } .cf-hours { border-left: 0; border-top: 1px solid var(--line); } }

.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 32px 0; flex-wrap: wrap; }
.footer-bottom .copy { font-size: 12.5px; color: var(--text-3); line-height: 1.6; max-width: 620px; }
.footer-bottom .links { display: flex; gap: 24px; }
.footer-bottom .links a { font-size: 12.5px; color: var(--text-2); }
.footer-bottom .links a:hover { color: var(--gold-2); }

/* ============================================================
   STICKY MOBILE BAR
   ============================================================ */
.sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  display: none; gap: 10px; padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(10,10,11,0.88); backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
}
.sticky-bar a { flex: 1; height: 50px; }
.sticky-bar .btn-ghost { flex: 0 0 50px; padding: 0; }
.sticky-bar .btn-ghost svg { width: 20px; height: 20px; }

/* reveal animation */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 480px; }
  .hero-frame { aspect-ratio: 16/12; }
  .cards { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .proc-grid { grid-template-columns: 1fr; }
  .proc-figure { position: relative; top: 0; max-width: 420px; }
  .consult-grid { grid-template-columns: 1fr; }
  .clinics { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-cta .btn-text { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .nav-cta .btn.nav-phone { display: none; }
  .steps { grid-template-columns: 1fr 1fr; gap: 24px 14px; }
  .step:not(:last-child)::after { display: none; }
  .spec-row, .pros-cons, .field-row { grid-template-columns: 1fr; }
  .clinics { grid-template-columns: 1fr; }
  .sticky-bar { display: flex; }
  body { padding-bottom: 74px; }
  /* table -> scroll */
  .compare-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  table.compare { min-width: 640px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 440px) {
  .steps { grid-template-columns: 1fr; }
}
