/* =========================================================
   RAJAMOULI SKIN & COSMETOLOGY CLINIC — Global stylesheet
   Palette: soft beige · rose gold · deep charcoal
   ========================================================= */

:root {
  --beige: #F5EFE6;
  --beige-2: #EDE3D3;
  --rose: #C8A088;
  --rose-2: #B8847A;
  --rose-gold: #D4A574;
  --gold: #B8956A;
  --charcoal: #2C2C2C;
  --charcoal-2: #1A1A1A;
  --ink: #1A1A1A;
  --muted: #6B5D52;
  --line: rgba(44,44,44,0.10);
  --card: #FFFFFF;
  --shadow: 0 4px 24px rgba(44,44,44,0.06);
  --shadow-lg: 0 18px 48px rgba(44,44,44,0.12);
  --grad: linear-gradient(135deg,#E91E8C 0%,#8E44AD 50%,#16A085 100%);
  --grad-soft: linear-gradient(135deg,#F5C6D6 0%,#E8C4D8 50%,#C4E3DA 100%);
  --radius: 18px;
  --radius-sm: 10px;
  --container: 1240px;
  --font-display: 'Cormorant Garamond','Playfair Display',Georgia,serif;
  --font-body: 'Inter','Segoe UI','Noto Sans Tamil',system-ui,sans-serif;
  --font-tamil: 'Noto Sans Tamil','Latha','Inter',system-ui,sans-serif;
}

html[data-theme="dark"] {
  --beige: #1A1612;
  --beige-2: #221C16;
  --rose: #D4A574;
  --rose-2: #E8B597;
  --rose-gold: #E8B597;
  --charcoal: #F5EFE6;
  --charcoal-2: #FFFFFF;
  --ink: #F5EFE6;
  --muted: #B5A99A;
  --line: rgba(245,239,230,0.10);
  --card: #2A2218;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 18px 48px rgba(0,0,0,0.55);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--beige);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  transition: background .35s ease, color .35s ease;
  overflow-x: hidden;
}

html[lang="ta"] body { font-family: var(--font-tamil); }

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

/* ============== Typography ============== */
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.15; letter-spacing: -0.01em; color: var(--ink); }
html[lang="ta"] h1, html[lang="ta"] h2, html[lang="ta"] h3, html[lang="ta"] h4 { font-family: var(--font-tamil); font-weight: 600; line-height: 1.3; }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.35rem; }
p  { color: var(--muted); }
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: var(--rose-2);
  font-weight: 600;
  margin-bottom: 14px;
}

/* ============== Container ============== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
section { padding: clamp(60px, 9vw, 110px) 0; }

/* ============== NAVBAR ============== */
.nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--beige) 82%, transparent);
  border-bottom: 1px solid var(--line);
  transition: background .35s ease;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: var(--container); margin: 0 auto;
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand img { width: 44px; height: 44px; border-radius: 10px; }
.nav-brand .name { font-family: var(--font-display); font-size: 1.15rem; line-height: 1.05; }
.nav-brand .sub { font-size: 0.7rem; letter-spacing: 0.18em; color: var(--muted); text-transform: uppercase; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 0.93rem; font-weight: 500; color: var(--ink);
  position: relative; padding: 6px 0;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--grad); transition: width .3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.icon-btn {
  width: 40px; height: 40px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); background: var(--card);
  transition: transform .2s ease, background .3s ease;
}
.icon-btn:hover { transform: translateY(-2px); }
.lang-btn {
  padding: 8px 16px; border-radius: 999px; border: 1px solid var(--line);
  background: var(--card); font-size: 0.85rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 10px 24px rgba(142,68,173,0.25); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(142,68,173,0.35); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--beige); }
.menu-btn { display: none; }

@media (max-width: 900px) {
  .nav-links { display: none; position: fixed; top: 72px; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--beige);
    padding: 24px; border-bottom: 1px solid var(--line); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--line); width: 100%; }
  .menu-btn { display: inline-flex; }
  .nav-brand .sub { display: none; }
}

/* ============== HERO ============== */
.hero { position: relative; padding: clamp(80px, 12vw, 140px) 0 clamp(60px, 8vw, 100px); overflow: hidden; }
.hero::before {
  content:''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px;
  background: var(--grad); filter: blur(120px); opacity: .18; border-radius: 50%; z-index: 0;
}
.hero::after {
  content:''; position: absolute; bottom: -120px; left: -120px; width: 460px; height: 460px;
  background: var(--grad); filter: blur(110px); opacity: .12; border-radius: 50%; z-index: 0;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.hero h1 .accent { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; font-style: italic; }
.hero p.lead { font-size: 1.12rem; margin: 22px 0 32px; max-width: 540px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-image-wrap { position: relative; }
.hero-image-wrap .frame {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
  transform: rotate(-1.5deg);
}
.hero-image-wrap .badge {
  position: absolute; bottom: -22px; left: -22px; background: var(--card);
  padding: 18px 22px; border-radius: 16px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 14px;
}
.hero-image-wrap .badge .num { font-family: var(--font-display); font-size: 2.2rem; color: var(--rose-2); }
.hero-image-wrap .badge .lbl { font-size: 0.8rem; color: var(--muted); }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.hero-stat { text-align: left; padding-left: 20px; border-left: 2px solid var(--rose); }
.hero-stat .v { font-family: var(--font-display); font-size: 2.2rem; color: var(--ink); }
.hero-stat .l { font-size: 0.85rem; color: var(--muted); }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-image-wrap .frame { transform: none; }
}

/* ============== SECTION HEADERS ============== */
.section-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-head h2 .accent { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; font-style: italic; }
.section-head p { margin-top: 14px; }

/* ============== TREATMENT GRID ============== */
.treat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.treat-card {
  background: var(--card); border-radius: var(--radius); padding: 32px 26px;
  border: 1px solid var(--line); transition: transform .35s ease, box-shadow .35s ease;
  position: relative; overflow: hidden;
}
.treat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .4s ease;
}
.treat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.treat-card:hover::before { transform: scaleX(1); }
.treat-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--grad-soft); color: var(--rose-2); margin-bottom: 20px;
}
html[data-theme="dark"] .treat-icon { background: rgba(212,165,116,0.15); }
.treat-card h3 { margin-bottom: 10px; }
.treat-card p { font-size: 0.94rem; }
.treat-card .learn { color: var(--rose-2); font-weight: 600; font-size: 0.85rem; margin-top: 18px; display: inline-flex; align-items: center; gap: 6px; }

/* ============== BEFORE/AFTER SLIDER ============== */
.ba-wrap { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: center; }
.ba-slider {
  position: relative; width: 100%; aspect-ratio: 4/3; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-lg); user-select: none;
}
.ba-slider .img { position: absolute; inset: 0; }
.ba-slider .img.after { clip-path: inset(0 0 0 50%); transition: none; }
.ba-slider .ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff;
  cursor: ew-resize; transform: translateX(-50%);
}
.ba-slider .ba-handle::after {
  content: ''; position: absolute; top: 50%; left: 50%; width: 44px; height: 44px;
  border-radius: 50%; background: #fff; transform: translate(-50%,-50%);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.ba-slider .ba-handle::before {
  content: '⇆'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-size: 20px; color: var(--charcoal-2); z-index: 1;
}
.ba-slider .label { position: absolute; top: 16px; padding: 6px 14px; border-radius: 999px;
  background: rgba(0,0,0,0.6); color: #fff; font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase; }
.ba-slider .label.before { left: 16px; }
.ba-slider .label.after { right: 16px; }
.ba-img-1 { background: linear-gradient(135deg,#D2B48C,#A0826D); }
.ba-img-2 { background: linear-gradient(135deg,#F5E6D3,#E8C4A8); }
@media (max-width: 800px) { .ba-wrap { grid-template-columns: 1fr; gap: 30px; } }

/* ============== DOCTOR BIO ============== */
.bio { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: center; }
.bio-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.bio-content .credentials {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px;
}
.cred-pill {
  padding: 8px 16px; border-radius: 999px; background: var(--beige-2);
  font-size: 0.8rem; font-weight: 600; color: var(--ink);
  border: 1px solid var(--line);
}
@media (max-width: 800px) { .bio { grid-template-columns: 1fr; } }

/* ============== TESTIMONIALS ============== */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 26px; }
.testi {
  background: var(--card); padding: 32px; border-radius: var(--radius);
  border: 1px solid var(--line); position: relative;
}
.testi::before { content: '"'; position: absolute; top: 8px; left: 18px; font-family: var(--font-display);
  font-size: 5rem; color: var(--rose); opacity: .3; line-height: 1; }
.testi p { font-style: italic; margin: 14px 0 20px; color: var(--ink); }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--grad); }
.testi-author .n { font-weight: 600; }
.testi-author .r { font-size: 0.82rem; color: var(--muted); }
.stars { color: #E5B547; letter-spacing: 2px; font-size: 0.95rem; }

/* ============== FAQ ============== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm);
  margin-bottom: 14px; overflow: hidden;
}
.faq-q {
  padding: 22px 26px; display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; font-size: 1.02rem; cursor: pointer; width: 100%; text-align: left;
}
.faq-q .ic { width: 28px; height: 28px; border-radius: 50%; background: var(--beige-2);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .3s ease, background .3s ease; }
.faq-item.open .faq-q .ic { transform: rotate(45deg); background: var(--grad); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; padding: 0 26px; }
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 24px; }
.faq-a p { color: var(--muted); }

/* ============== CTA BANNER ============== */
.cta-banner {
  background: var(--grad); color: #fff; border-radius: var(--radius);
  padding: 64px 40px; text-align: center; position: relative; overflow: hidden;
}
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,0.85); margin: 14px auto 28px; max-width: 540px; }
.cta-banner .btn-primary { background: #fff; color: var(--charcoal-2); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }

/* ============== FOOTER ============== */
footer {
  background: var(--charcoal-2); color: #D5C9BD;
  padding: 70px 0 30px;
}
html[data-theme="dark"] footer { background: #0E0A06; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.foot-brand .name { font-family: var(--font-display); font-size: 1.4rem; color: #fff; margin: 14px 0 10px; }
.foot-brand p { color: #A89B8E; font-size: 0.92rem; }
.foot-col h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; font-family: var(--font-body); font-weight: 600; }
.foot-col a { display: block; padding: 6px 0; color: #B5A99A; font-size: 0.92rem; transition: color .2s; }
.foot-col a:hover { color: var(--rose-gold); }
.socials { display: flex; gap: 12px; margin-top: 18px; }
.socials a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08);
  display: inline-flex; align-items: center; justify-content: center; color: #fff; transition: background .3s; }
.socials a:hover { background: var(--grad); }
.foot-bot { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 50px; padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  font-size: 0.85rem; color: #8A7E70; }
@media (max-width: 800px) { .foot-grid { grid-template-columns: 1fr 1fr; } }

/* ============== PAGE HERO ============== */
.page-hero {
  padding: 100px 0 70px; text-align: center; position: relative; overflow: hidden;
  background: var(--beige-2);
}
.page-hero::before {
  content:''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px; background: var(--grad); filter: blur(140px); opacity: .12; border-radius: 50%;
}
.crumb { font-size: 0.85rem; color: var(--muted); margin-top: 12px; }
.crumb a { color: var(--rose-2); }

/* ============== APPOINTMENT FORM ============== */
.form-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; }
@media (max-width: 900px) { .form-grid { grid-template-columns: 1fr; } }
.form-wrap {
  background: var(--card); border-radius: var(--radius); padding: 40px;
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border-radius: 10px; border: 1px solid var(--line);
  background: var(--beige); color: var(--ink); font: inherit; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--rose-2); box-shadow: 0 0 0 3px rgba(184,132,122,0.18);
}
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }
.consent { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; font-size: 0.85rem; color: var(--muted); }
.consent input { margin-top: 4px; accent-color: var(--rose-2); }
.contact-card {
  background: var(--card); border-radius: var(--radius); padding: 32px;
  border: 1px solid var(--line); margin-bottom: 18px;
}
.contact-row { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-row:last-child { border-bottom: 0; }
.contact-row .ic { width: 42px; height: 42px; border-radius: 12px; background: var(--grad-soft); color: var(--rose-2);
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
html[data-theme="dark"] .contact-row .ic { background: rgba(212,165,116,0.15); }
.contact-row .t { font-size: 0.82rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.contact-row .v { font-weight: 600; color: var(--ink); margin-top: 2px; }

/* ============== GALLERY ============== */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.gal-item {
  position: relative; aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden;
  background: var(--card); border: 1px solid var(--line); cursor: pointer;
  transition: transform .35s ease;
}
.gal-item:hover { transform: scale(1.02); }
.gal-item .overlay {
  position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.75) 100%);
  color: #fff; padding: 20px; display: flex; align-items: flex-end;
  opacity: 0; transition: opacity .3s ease;
}
.gal-item:hover .overlay { opacity: 1; }
.gal-tabs { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.gal-tab {
  padding: 10px 20px; border-radius: 999px; background: var(--card); border: 1px solid var(--line);
  font-weight: 600; font-size: 0.9rem; transition: all .2s ease;
}
.gal-tab.active, .gal-tab:hover { background: var(--grad); color: #fff; border-color: transparent; }

/* gradient fallback tiles for gallery */
.tile-1 { background: linear-gradient(135deg,#F5C6D6,#E8A4C8); }
.tile-2 { background: linear-gradient(135deg,#C4E3DA,#9CCEC2); }
.tile-3 { background: linear-gradient(135deg,#F5E6D3,#E8C4A8); }
.tile-4 { background: linear-gradient(135deg,#E8C4D8,#B894C8); }
.tile-5 { background: linear-gradient(135deg,#FFD7C2,#F5A88F); }
.tile-6 { background: linear-gradient(135deg,#D4C8E0,#A89AB8); }
.tile-7 { background: linear-gradient(135deg,#C8E8D8,#A0CFB8); }
.tile-8 { background: linear-gradient(135deg,#F0E0C8,#D4B888); }

/* ============== MODAL ============== */
.modal-bg {
  position: fixed; inset: 0; background: rgba(0,0,0,0.65); z-index: 999;
  display: none; align-items: center; justify-content: center; padding: 20px;
  backdrop-filter: blur(6px);
}
.modal-bg.open { display: flex; }
.modal {
  background: var(--card); border-radius: var(--radius); padding: 36px;
  max-width: 520px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative;
  animation: modalIn .35s ease;
}
@keyframes modalIn { from { opacity: 0; transform: scale(.92); } to { opacity: 1; transform: scale(1); } }
.modal-close { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px;
  border-radius: 50%; background: var(--beige-2); display: inline-flex; align-items: center; justify-content: center; }

/* ============== ANIMATIONS ============== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37,211,102,0.45);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.55); }
  70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Cookie bar */
.cookie-bar {
  position: fixed; bottom: 20px; left: 20px; right: 20px; z-index: 80;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 22px; display: flex; gap: 20px; align-items: center; justify-content: space-between;
  box-shadow: var(--shadow-lg); max-width: 1080px; margin: 0 auto;
  transform: translateY(120%); transition: transform .5s ease;
}
.cookie-bar.show { transform: translateY(0); }
.cookie-bar p { font-size: 0.88rem; margin: 0; }
.cookie-bar .actions { display: flex; gap: 10px; flex-shrink: 0; }
@media (max-width: 700px) { .cookie-bar { flex-direction: column; align-items: stretch; text-align: center; } }

/* Service detail expand */
.serv-row {
  border-bottom: 1px solid var(--line); padding: 26px 0;
}
.serv-head {
  display: flex; justify-content: space-between; align-items: center; cursor: pointer; gap: 16px;
}
.serv-head h3 { font-size: 1.3rem; }
.serv-head .meta { color: var(--muted); font-size: 0.85rem; }
.serv-body { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.serv-row.open .serv-body { max-height: 600px; padding-top: 20px; }

/* Map placeholder */
.map-wrap {
  width: 100%; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(135deg, #C8E0EE, #A4C8DC); position: relative;
  border: 1px solid var(--line);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }
.map-pin {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-100%);
  background: var(--card); padding: 12px 18px; border-radius: 14px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 10px;
}

/* legal pages */
.legal { max-width: 900px; margin: 0 auto; }
.legal h2 { margin-top: 36px; margin-bottom: 14px; font-size: 1.6rem; }
.legal h3 { margin-top: 26px; margin-bottom: 10px; }
.legal p { margin-bottom: 16px; color: var(--ink); }
