/* =========================================================
   Альбина Котегова — beauty-room
   Дизайн-система: тёплый крем + пудровый розовый,
   элегантный сериф Cormorant + чистый Manrope,
   точечные акценты фуксии и брендового красного.
   ========================================================= */

:root {
  /* База */
  --cream:      #FBF8F5;
  --sand:       #F4ECE3;
  --sand-deep:  #ECE0D3;
  /* Розовый */
  --powder:     #E8B7B7;
  --powder-2:   #F2C6CE;
  --powder-wash:#F8E7E9;
  /* Акценты */
  --fuchsia:    #E6357A;
  --red:        #C8102E;
  --red-deep:   #A50D26;
  /* Текст / нейтрали */
  --graphite:   #2B2B2B;
  --graphite-soft: #514c49;
  --neutral:    #9A9A9A;
  --line:       #E7DCD1;
  /* Вторичный */
  --sage:       #A9B7A0;

  --maxw: 1200px;
  --radius:   22px;
  --radius-sm:14px;
  --radius-lg:34px;
  --shadow:    0 24px 60px -28px rgba(110, 70, 60, .35);
  --shadow-sm: 0 12px 30px -18px rgba(110, 70, 60, .35);

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Manrope", system-ui, sans-serif;

  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--graphite);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}

p { text-wrap: pretty; }

::selection { background: var(--powder-2); color: var(--graphite); }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 28px; }
.section { padding-block: clamp(64px, 9vw, 130px); }
.section--sand { background: var(--sand); }
.section--wash { background: var(--powder-wash); }

.eyebrow {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--fuchsia);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--fuchsia);
  display: inline-block;
}
.eyebrow--center { justify-content: center; }

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.7rem);
  line-height: 1.02;
}
.section-title em {
  font-style: italic;
  color: var(--red);
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--graphite-soft);
  line-height: 1.7;
  max-width: 60ch;
}

.center { text-align: center; }
.center .lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--red);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .01em;
  padding: 15px 28px;
  border-radius: 100px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1.5px solid var(--btn-bg);
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s, color .25s;
  box-shadow: 0 14px 30px -14px rgba(200,16,46,.6);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 20px 38px -14px rgba(200,16,46,.7); }
.btn svg { width: 18px; height: 18px; }

.btn--fuchsia { --btn-bg: var(--fuchsia); box-shadow: 0 14px 30px -14px rgba(230,53,122,.6); }
.btn--fuchsia:hover { box-shadow: 0 20px 38px -14px rgba(230,53,122,.75); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--graphite);
  border-color: var(--graphite);
  box-shadow: none;
}
.btn--ghost:hover { background: var(--graphite); color: #fff; box-shadow: none; }

.btn--light {
  --btn-bg: #fff;
  --btn-fg: var(--graphite);
  border-color: #fff;
  box-shadow: var(--shadow-sm);
}

.link-arrow {
  font-weight: 700;
  font-size: 15px;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap .3s var(--ease);
}
.link-arrow:hover { gap: 14px; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--cream) 86%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.site-header.scrolled { border-bottom-color: var(--line); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -.01em;
}
.brand-mark { height: 48px; width: auto; display: block; flex: none; }
.brand-name { display: flex; flex-direction: column; line-height: 1; }
.brand-name .nm { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; }
.brand .dot { color: var(--red); }
.brand small {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--neutral);
  margin-top: 3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 15px;
  font-weight: 600;
}
.nav-links a { position: relative; padding: 4px 0; color: var(--graphite-soft); transition: color .2s; white-space: nowrap; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1.5px; background: var(--red); transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--graphite); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }

.burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--graphite); margin: 5px 0; transition: .3s; }

/* Mobile menu is hidden by default (desktop); the mobile breakpoint reveals it. */
.mobile-menu { display: none; }

/* ---------- Image slots ---------- */
image-slot {
  --hint: var(--neutral);
  background: linear-gradient(135deg, var(--sand) 0%, var(--powder-wash) 100%);
  border: 1.5px dashed var(--powder);
  color: var(--graphite-soft);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
}
/* Когда фото вставлено — убираем пунктир-рамку и фон-заглушку */
image-slot[data-filled] {
  border: 0;
  background: none;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--graphite);
  color: #e9e2da;
  padding-block: clamp(56px, 7vw, 90px) 40px;
}
.site-footer a { color: #e9e2da; }
.site-footer .foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
}
.site-footer h4 { color: #fff; font-size: 1.6rem; margin-bottom: 14px; }
.foot-logo { height: 92px; width: auto; max-width: 100%; display: block; margin: -18px 0 14px; }
.site-footer .muted { color: #a59e97; font-size: 14px; }
.foot-col h5 {
  font-family: var(--sans); font-size: 12px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: #8f8881; margin: 0 0 16px;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: 15px; }
.foot-col a:hover { color: var(--powder-2); }
.foot-bottom {
  margin-top: 56px; padding-top: 24px; border-top: 1px solid #3b3b3b;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: #8f8881;
}

/* ---------- Visit steps (как проходит визит) ---------- */
.visit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.visit-step {
  position: relative;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm);
  padding: 30px 28px 32px;
}
.visit-step .vs-num {
  font-family: var(--serif); font-style: italic; font-size: 2.6rem; font-weight: 600;
  color: var(--powder); line-height: 1; margin-bottom: 14px;
}
.visit-step h3 { font-size: 1.45rem; margin-bottom: 10px; }
.visit-step p { margin: 0; font-size: .95rem; color: var(--graphite-soft); }
@media (max-width: 860px) { .visit-grid { grid-template-columns: 1fr; gap: 16px; } }

/* ---------- Booking promo (карточка записи на главной) ---------- */
.bp-list { display: grid; gap: 12px; }
.bp-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 16px; border-radius: 14px;
  background: color-mix(in srgb, var(--powder-wash) 45%, #fff);
  border: 1px solid color-mix(in srgb, var(--powder-2) 32%, transparent);
}
.bp-item .ic { width: 42px; height: 42px; border-radius: 12px; flex: none; display: grid; place-items: center; background: var(--powder-wash); color: var(--red); }
.bp-item b { display: block; font-size: 15px; }
.bp-item span { font-size: 13px; color: var(--graphite-soft); }

/* ---------- Плавающая кнопка записи (мобильные) ---------- */
.fab-book { display: none; }
@media (max-width: 860px) {
  .fab-book {
    position: fixed; left: 18px; right: 18px; bottom: 14px; z-index: 60;
    display: inline-flex; justify-content: center;
    transform: translateY(calc(100% + 20px));
    transition: transform .45s var(--ease);
  }
  .fab-book.show { transform: none; }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 1; }
html.js .reveal { opacity: 0; transform: translateY(26px); }
html.js .reveal.in { animation: revealUp .8s var(--ease) both; }
@keyframes revealUp { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; }
  html.js .reveal.in { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Tag / chip ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 100px; padding: 8px 15px;
  font-size: 13px; font-weight: 600; color: var(--graphite-soft);
}
.chip .d { width: 7px; height: 7px; border-radius: 50%; background: var(--powder); }

/* ---------- Cards ---------- */
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

/* ---------- Accordion ---------- */
.acc-item { border-bottom: 1px solid var(--line); }
.acc-item:first-child { border-top: 1px solid var(--line); }
.acc-head {
  width: 100%; background: none; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 26px 4px; text-align: left;
  font-family: var(--serif); font-size: clamp(1.25rem, 2.4vw, 1.7rem); font-weight: 600; color: var(--graphite);
}
.acc-head .pm { position: relative; flex: none; width: 24px; height: 24px; }
.acc-head .pm::before, .acc-head .pm::after {
  content: ""; position: absolute; inset: 0; margin: auto;
  background: var(--red); transition: transform .35s var(--ease), opacity .35s;
}
.acc-head .pm::before { width: 100%; height: 2px; }
.acc-head .pm::after { width: 2px; height: 100%; }
.acc-item.open .pm::after { transform: scaleY(0); opacity: 0; }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.acc-item.open .acc-body { max-height: 600px; }
.acc-body-inner { padding: 0 4px 28px; color: var(--graphite-soft); font-size: 1.02rem; line-height: 1.7; max-width: 64ch; }
.acc-body-inner ul { margin: 8px 0 0; padding-left: 18px; }
.acc-body-inner li { margin-bottom: 8px; }

/* ---------- Tabs ---------- */
.tabs-bar {
  display: inline-flex; gap: 6px; background: #fff; border: 1px solid var(--line);
  padding: 6px; border-radius: 100px; box-shadow: var(--shadow-sm); flex-wrap: wrap;
}
.tab-btn {
  border: 0; background: none; cursor: pointer;
  font-family: var(--sans); font-size: 14px; font-weight: 700; color: var(--graphite-soft);
  padding: 11px 22px; border-radius: 100px; transition: background .25s, color .25s;
}
.tab-btn.active { background: var(--red); color: #fff; }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeUp .5s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(28,22,20,.86); backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center; padding: 5vh 6vw;
  opacity: 0; transition: opacity .3s;
}
.lightbox.open { display: flex; opacity: 1; }
.lb-stage { max-width: 78vw; max-height: 84vh; display: flex; align-items: center; justify-content: center; }
.lb-figure { width: min(70vw, 720px); }
.lb-figure image-slot { width: 100% !important; height: min(78vh, 820px) !important; }
.lb-close {
  position: absolute; top: 22px; right: 28px; z-index: 2;
  width: 48px; height: 48px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,.12); color: #fff; font-size: 28px; line-height: 1; transition: background .2s;
}
.lb-close:hover { background: rgba(255,255,255,.24); }
.lb-nav {
  z-index: 2; width: 56px; height: 56px; border-radius: 50%; border: 0; cursor: pointer; flex: none;
  background: rgba(255,255,255,.12); color: #fff; font-size: 30px; line-height: 1; margin: 0 10px; transition: background .2s;
}
.lb-nav:hover { background: rgba(255,255,255,.24); }
.lb-caption { position: absolute; bottom: 26px; left: 0; right: 0; text-align: center; color: #f3ece6; font-size: 15px; }
@media (max-width: 720px) {
  .lb-nav { position: absolute; bottom: 18px; }
  .lb-prev { left: 22px; } .lb-next { right: 22px; }
  .lb-stage { max-width: 92vw; }
}

/* ---------- Form ---------- */
.form-row { display: grid; gap: 18px; }
.form-2 { grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 13px; font-weight: 700; letter-spacing: .04em; color: var(--graphite-soft); }
.field input, .field textarea, .field select {
  font-family: var(--sans); font-size: 16px; color: var(--graphite);
  background: var(--cream); border: 1.5px solid var(--line); border-radius: 14px;
  padding: 14px 16px; transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 0; border-color: var(--powder); box-shadow: 0 0 0 4px var(--powder-wash);
}
.form-success {
  display: none; margin-top: 8px; padding: 16px 18px; border-radius: 14px;
  background: var(--powder-wash); border: 1px solid var(--powder); color: var(--red-deep);
  font-weight: 600; font-size: 15px;
}
.form-success.show { display: block; animation: fadeUp .4s var(--ease); }
@media (max-width: 620px) { .form-2 { grid-template-columns: 1fr; } }

/* =========================================================
   PAGE LAYOUT BLOCKS
   ========================================================= */

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-top: clamp(40px, 6vw, 70px); padding-bottom: clamp(60px, 8vw, 110px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
.hero h1 { font-size: clamp(2.9rem, 6.6vw, 5.4rem); line-height: .98; margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--red); }
.hero .lead { margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-phone { display: inline-flex; align-items: center; gap: 11px; margin-top: 20px; color: var(--graphite-soft); font-size: .98rem; transition: color .2s; }
.hero-phone .ic { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--powder-wash); color: var(--red); flex: none; }
.hero-phone .ic svg { width: 18px; }
.hero-phone b { font-family: var(--serif); font-weight: 600; font-size: 1.25rem; color: var(--graphite); letter-spacing: .01em; }
.hero-phone:hover { color: var(--red); }
.hero-phone:hover b { color: var(--red); }
.hero-meta { display: flex; gap: 28px; margin-top: 40px; flex-wrap: wrap; }
.hero-meta .num { font-family: var(--serif); font-size: 2.2rem; color: var(--red); line-height: 1; }
.hero-meta .lbl { font-size: 13px; color: var(--graphite-soft); margin-top: 6px; max-width: 16ch; }

.hero-visual { position: relative; }
.hero-visual image-slot { width: 100%; height: clamp(420px, 52vw, 600px); }
.hero-visual .float-chip {
  position: absolute; background: #fff; box-shadow: var(--shadow);
  border-radius: 16px; padding: 14px 18px; display: flex; align-items: center; gap: 12px;
}
.float-chip .ic { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--powder-wash); color: var(--red); flex: none; }
.float-chip .t { font-size: 13px; line-height: 1.3; }
.float-chip .t b { display: block; font-size: 14px; }
.hero-visual .fc-1 { bottom: 24px; left: -22px; }
.hero-visual .fc-2 { top: 28px; right: -18px; }
.hero-blob { position: absolute; width: 60%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, var(--powder-2), transparent 70%); filter: blur(20px); opacity: .55; top: -10%; right: -8%; z-index: -1; }

/* ---------- Service cards ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.svc-card { display: flex; flex-direction: column; }
.svc-card image-slot { width: 100%; height: 260px; }
.svc-card .svc-body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.svc-card h3 { font-size: 1.7rem; margin-bottom: 10px; }
.svc-card p { color: var(--graphite-soft); font-size: .98rem; margin: 0 0 18px; }
.svc-card .price { font-family: var(--serif); font-size: 1.3rem; color: var(--red); margin-bottom: 18px; }
.svc-card .price span { font-family: var(--sans); font-size: 13px; color: var(--neutral); font-weight: 600; }
.svc-card .link-arrow { margin-top: auto; }

/* ---------- Course / training block ---------- */
.course { background: var(--graphite); color: #f2ebe4; border-radius: var(--radius-lg); overflow: hidden; }
.course-grid { display: grid; grid-template-columns: 1fr 1fr; }
.course-text { padding: clamp(36px, 5vw, 68px); }
.course-text .eyebrow { color: var(--powder-2); }
.course-text .eyebrow::before { background: var(--powder-2); }
.course-text h2 { color: #fff; font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 20px; }
.course-text h2 em { font-style: italic; color: var(--powder-2); }
.course-text p { color: #cfc6bd; }
.course-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 30px 0 34px; }
.course-feat { display: flex; gap: 13px; align-items: flex-start; }
.course-feat .ic { width: 40px; height: 40px; border-radius: 12px; background: rgba(242,198,206,.14); color: var(--powder-2); display: grid; place-items: center; flex: none; }
.course-feat b { display: block; font-size: 15px; color: #fff; }
.course-feat span { font-size: 13px; color: #b3aaa1; }
.course-visual { position: relative; min-height: 420px; }
.course-visual image-slot { position: absolute; inset: 0; width: 100% !important; height: 100% !important; border-radius: 0; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.about-visual { position: relative; }
.about-visual image-slot { width: 100%; height: clamp(420px, 50vw, 560px); }
.about-visual .sig { position: absolute; bottom: -18px; right: 8%; font-family: var(--serif); font-style: italic; font-size: 2rem; color: var(--red); background: var(--cream); padding: 6px 18px; border-radius: 100px; box-shadow: var(--shadow-sm); }
.values { display: grid; gap: 18px; margin-top: 32px; }
.value { display: flex; gap: 16px; align-items: flex-start; padding: 18px 20px; background: #fff; border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); }
.value .ic { width: 44px; height: 44px; border-radius: 12px; flex: none; display: grid; place-items: center; background: var(--powder-wash); color: var(--red); }
.value b { display: block; font-size: 1.05rem; margin-bottom: 3px; }
.value p { margin: 0; font-size: .95rem; color: var(--graphite-soft); }

/* ---------- Gallery ---------- */
.gallery-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 36px; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-grid .g-item { position: relative; cursor: zoom-in; border-radius: var(--radius-sm); overflow: hidden; }
.gallery-grid .g-item image-slot { width: 100%; height: 100%; border-radius: var(--radius-sm); }
.g-item.tall { grid-row: span 2; }
.g-item .g-tag { position: absolute; top: 12px; left: 12px; z-index: 2; background: rgba(255,255,255,.92); border-radius: 100px; padding: 5px 12px; font-size: 12px; font-weight: 700; color: var(--graphite); pointer-events: none; }
.gallery-grid .g-item { min-height: 240px; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi {
  background: #fff; border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 18px;
}
.testi .quote-mark { font-family: var(--serif); font-size: 3.4rem; line-height: .5; color: var(--powder); height: 24px; }
.testi p { margin: 0; font-size: 1.05rem; color: var(--graphite); line-height: 1.6; }
.testi .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testi .who image-slot { width: 46px; height: 46px; flex: none; }
.testi .who b { font-size: 15px; } .testi .who span { font-size: 13px; color: var(--neutral); display: block; }
.stars { color: var(--fuchsia); letter-spacing: 3px; font-size: 14px; }

/* ---------- Perfume (secondary) ---------- */
.perfume { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: center;
  background: var(--sand); border-radius: var(--radius-lg); padding: clamp(30px, 4vw, 56px); }
.perfume image-slot { width: 100%; height: clamp(280px, 32vw, 380px); }
.perfume h3 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 14px; }
.perfume .mini { display: flex; gap: 22px; margin-top: 22px; flex-wrap: wrap; }
.perfume .mini b { font-family: var(--serif); font-size: 1.4rem; color: var(--red); display: block; }
.perfume .mini span { font-size: 13px; color: var(--graphite-soft); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
.contact-card { background: #fff; border-radius: var(--radius); padding: clamp(28px, 3.5vw, 44px); box-shadow: var(--shadow-sm); }
.contact-list { display: grid; gap: 12px; margin-top: 28px; }
.contact-list .row { display: flex; gap: 16px; align-items: flex-start; padding: 16px 18px; border-radius: 16px; border: 1px solid color-mix(in srgb, var(--powder-2) 32%, transparent); background: color-mix(in srgb, var(--powder-wash) 45%, #fff); transition: border-color .22s, box-shadow .22s, transform .22s, background .22s; }
.contact-list .row:hover { border-color: color-mix(in srgb, var(--red) 35%, transparent); box-shadow: var(--shadow-sm); transform: translateY(-2px); background: #fff; }
.contact-list .ic { width: 48px; height: 48px; border-radius: 14px; flex: none; display: grid; place-items: center; background: var(--powder-wash); color: var(--red); transition: background .22s, color .22s; }
.contact-list .row:hover .ic { background: var(--red); color: #fff; }
.contact-list b { display: block; font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--graphite-soft); margin-bottom: 3px; }
.contact-list span, .contact-list a { font-size: 1.02rem; color: var(--graphite); line-height: 1.45; }
.contact-list .row .ic + div { padding-top: 2px; }
.contact-list a { font-weight: 600; transition: color .2s; }
.contact-list a:hover { color: var(--red); }
.tg-banner { margin-top: 22px; display: flex; align-items: center; gap: 16px; background: linear-gradient(105deg, color-mix(in srgb, var(--fuchsia) 12%, var(--powder-wash)), var(--powder-wash)); border: 1px solid color-mix(in srgb, var(--fuchsia) 22%, transparent); border-radius: var(--radius-sm); padding: 18px 22px; transition: box-shadow .22s, transform .22s; }
.tg-banner:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.tg-banner .ic { width: 48px; height: 48px; border-radius: 50%; background: #fff; display: grid; place-items: center; color: var(--fuchsia); flex: none; box-shadow: 0 4px 14px color-mix(in srgb, var(--fuchsia) 22%, transparent); }

/* responsive */
@media (max-width: 980px) {
  .hero-grid, .course-grid, .about-grid, .perfume, .contact-grid { grid-template-columns: 1fr; }
  .svc-grid, .testi-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .course-visual { min-height: 320px; }
  .about-grid .about-visual { order: -1; }
}
@media (max-width: 620px) {
  .svc-grid, .testi-grid, .course-feats { grid-template-columns: 1fr; }
  .hero-visual .fc-1, .hero-visual .fc-2 { display: none; }
  .hero-meta { gap: 20px; }
}

/* ---------- Mobile menu ---------- */
@media (max-width: 860px) {
  .nav-links, .nav-cta .btn { display: none; }
  .burger { display: block; }
  .mobile-menu {
    position: fixed; inset: 76px 0 auto 0; z-index: 49;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 18px 28px 28px; display: none; flex-direction: column; gap: 6px;
    box-shadow: var(--shadow);
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { padding: 13px 0; font-weight: 600; font-size: 17px; border-bottom: 1px solid var(--line); }
  .mobile-menu .btn { display: inline-flex; margin-top: 14px; justify-content: center; }
  .site-footer .foot-grid { grid-template-columns: 1fr; gap: 32px; }
}
