/* ===========================================================
   Татьяна — перманентный макияж, Тольятти
   Editorial warm-beauty aesthetic. Fraunces + Manrope.
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400;1,9..144,500&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #2a1f1a;
  --ink-soft: #5a4b42;
  --bg: #fbf3ec;
  --bg-alt: #f3e3d5;
  --card: #fffaf5;
  --terracotta: #c1573d;
  --terracotta-deep: #8f3c27;
  --blush: #e9b9a4;
  --gold: #c9a961;
  --line: rgba(42, 31, 26, 0.12);
  --line-soft: rgba(42, 31, 26, 0.07);
  --shadow-soft: 0 20px 60px -25px rgba(42, 31, 26, 0.35);
  --shadow-lift: 0 30px 80px -30px rgba(42, 31, 26, 0.5);
  --radius: 22px;
  --radius-sm: 14px;
  --ff-display: 'Fraunces', ui-serif, Georgia, serif;
  --ff-body: 'Manrope', ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

/* subtle grain overlay for texture, applied globally */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Type ---------- */
h1, h2, h3, .display {
  font-family: var(--ff-display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
}

.kicker {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.eyebrow {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.section-title {
  font-size: clamp(30px, 4vw, 46px);
  font-style: italic;
  font-weight: 400;
}

.lede {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 56ch;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 15px;
  padding: 16px 30px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s ease, background 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--terracotta);
  color: #fff8f2;
  box-shadow: 0 14px 34px -12px rgba(193, 87, 61, 0.65);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 44px -14px rgba(193, 87, 61, 0.75); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }

.btn-ghost.on-dark { color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-ghost.on-dark:hover { border-color: #fff; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled {
  background: rgba(251, 243, 236, 0.86);
  backdrop-filter: blur(14px);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--line);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 22px;
  color: #fff;
  transition: color 0.4s ease;
}
.nav.scrolled .nav-logo { color: var(--ink); }
.nav-links { display: none; gap: 32px; font-size: 14px; font-weight: 600; }
.nav-links a { color: #fff; opacity: 0.85; text-decoration: none; transition: opacity 0.3s, color .4s; }
.nav.scrolled .nav-links a { color: var(--ink); }
.nav-links a:hover { opacity: 1; }
@media (min-width: 860px) { .nav-links { display: flex; } }

/* ---------- Hero ----------
   Временный упрощённый вариант: готовая картинка-баннер (текст уже впечён
   в саму картинку) + строка с кнопками под ней. Как только появится
   собственный видеомонтаж с музыкой — вернуть полноэкранный hero с видео. */
.hero {
  position: relative;
  background: var(--ink);
  padding-top: 84px;
}
.hero-banner-img {
  width: 100%;
  display: block;
}
.hero-cta-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 28px 0 34px;
}
.hero-availability {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(251,243,236,0.85);
  font-weight: 600;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #7cd98a;
  box-shadow: 0 0 0 0 rgba(124,217,138,0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(124,217,138,0.6); }
  70% { box-shadow: 0 0 0 10px rgba(124,217,138,0); }
  100% { box-shadow: 0 0 0 0 rgba(124,217,138,0); }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s cubic-bezier(.2,.7,.1,1), transform .9s cubic-bezier(.2,.7,.1,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: .05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: .12s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: .19s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: .26s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: .33s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: .40s; }

section { position: relative; padding: 118px 0; }
.section-alt { background: var(--bg-alt); }

.section-head { margin-bottom: 56px; max-width: 640px; }
.section-head .kicker { margin-bottom: 14px; display: block; }

/* ---------- Video intro ---------- */
.video-intro-wrap {
  max-width: 780px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #000;
}
.video-intro-wrap video { width: 100%; display: block; }

/* ---------- About master ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 900px) { .about-grid { grid-template-columns: 0.85fr 1.15fr; gap: 72px; } }

.about-photo { position: relative; }
.about-photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-photo::before {
  content: "";
  position: absolute;
  top: 26px; left: -26px;
  width: 100%; height: 100%;
  border: 2px solid var(--terracotta);
  border-radius: var(--radius);
  z-index: -1;
  display: none;
}
@media (min-width: 900px) { .about-photo::before { display: block; } }

.about-copy p { font-size: 17px; line-height: 1.75; color: var(--ink-soft); margin: 0 0 20px; }
.about-copy p.lead { font-size: 20px; color: var(--ink); font-family: var(--ff-display); font-style: italic; font-weight: 400; line-height: 1.5; }
.about-copy strong { color: var(--terracotta-deep); font-weight: 700; }

/* ---------- Services ---------- */
.services-intro { font-family: var(--ff-display); font-style: italic; font-size: clamp(20px,2.4vw,26px); color: var(--ink); max-width: 52ch; margin-bottom: 48px; line-height: 1.5; }

.calc-layout { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 980px) { .calc-layout { grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start; } }

.service-list { display: flex; flex-direction: column; gap: 2px; background: var(--line-soft); border-radius: var(--radius); overflow: hidden; }
.service-row {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px;
  background: var(--card);
  cursor: pointer;
  transition: background .25s ease;
}
.service-row:hover { background: #fff; }
.service-row input { width: 20px; height: 20px; accent-color: var(--terracotta); flex-shrink: 0; cursor: pointer;}
.service-row .name { flex: 1; font-weight: 600; font-size: 15px; }
.service-row .note { font-size: 12.5px; color: var(--ink-soft); display:block; margin-top:2px; font-weight: 400;}
.service-row .price { font-family: var(--ff-display); font-size: 19px; color: var(--terracotta-deep); white-space: nowrap; }

.calc-summary {
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: sticky;
  top: 100px;
}
.calc-summary .eyebrow { color: var(--blush); margin-bottom: 10px; display:block;}
.calc-total { font-family: var(--ff-display); font-style: italic; font-size: clamp(38px,4vw,52px); margin: 6px 0 6px; }
.calc-hint { font-size: 13.5px; color: rgba(251,243,236,0.6); margin-bottom: 28px; }
.calc-summary .btn-primary { width: 100%; justify-content: center; }

.discount-card {
  margin-top: 28px;
  border: 1.5px dashed var(--terracotta);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  background: rgba(193,87,61,0.06);
}
.discount-card p { margin: 0 0 12px; font-size: 14.5px; line-height: 1.55; color: var(--ink-soft); }
.discount-card strong { color: var(--terracotta-deep); }
.discount-toggle { font-weight: 700; font-size: 14px; color: var(--terracotta-deep); background: none; border: none; cursor: pointer; padding: 0; display: inline-flex; align-items:center; gap: 6px;}
.discount-more { max-height: 0; overflow: hidden; transition: max-height .4s ease; font-size: 14px; color: var(--ink-soft); line-height: 1.6;}
.discount-more.open { max-height: 200px; margin-top: 12px; }

/* ---------- Portfolio ---------- */
.pf-authenticity {
  max-width: 56ch;
  margin: -20px 0 22px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  padding: 16px 20px;
  background: rgba(193, 87, 61, 0.07);
  border-left: 3px solid var(--terracotta);
  border-radius: 4px;
}
.pf-authenticity strong { color: var(--terracotta-deep); }

.pf-instruction {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 56ch;
  margin: -20px 0 40px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.pf-instruction svg {
  width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px;
  fill: none; stroke: var(--terracotta); stroke-width: 1.8px;
}

.portfolio-grid {
  columns: 1;
  column-gap: 14px;
}
@media (min-width: 620px) { .portfolio-grid { columns: 2; } }
@media (min-width: 980px) { .portfolio-grid { columns: 4; } }

.pf-item {
  position: relative;
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}
.pf-item img { width: 100%; display: block; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.pf-item:hover img { transform: scale(1.06); }
.pf-like {
  position: absolute; top: 10px; right: 10px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(20,12,9,0.35);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  transition: background .25s ease, transform .2s ease;
  border: none; cursor: pointer;
}
.pf-like:hover { transform: scale(1.1); }
.pf-like svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 2px; transition: fill .2s ease, stroke .2s ease; }
.pf-like.liked { background: var(--terracotta); }
.pf-like.liked svg { fill: #fff; stroke: #fff; }

.pf-cta-bar {
  position: fixed;
  left: 50%; bottom: 26px; transform: translate(-50%, 140%);
  z-index: 60;
  background: var(--ink);
  color: var(--bg);
  padding: 14px 16px 14px 26px;
  border-radius: 100px;
  display: flex; align-items: center; gap: 16px;
  box-shadow: var(--shadow-lift);
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.pf-cta-bar.show { transform: translate(-50%, 0); }
.pf-cta-bar span { font-size: 14px; font-weight: 600; white-space: nowrap; }
.pf-cta-bar .btn-primary { padding: 11px 22px; font-size: 14px; }

/* ---------- Certificates ---------- */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 22px;
}
@media (min-width: 620px) { .cert-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .cert-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1300px) { .cert-grid { grid-template-columns: repeat(4, 1fr); } }

.cert-item {
  position: relative;
  cursor: pointer;
  padding: 12px;
  border-radius: 10px;
  background:
    linear-gradient(155deg, #f3e3c4 0%, var(--gold) 45%, #e8cf9c 70%, #f3e3c4 100%);
  box-shadow: var(--shadow-soft);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease;
}
.cert-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.cert-frame {
  position: relative;
  background: #fffaf5;
  padding: 10px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(42,31,26,0.08);
}
.cert-frame::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(193, 87, 61, 0.4);
  pointer-events: none;
  z-index: 2;
}
.cert-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  background: #fffaf5;
  display: block;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.cert-item:hover img { transform: scale(1.04); }
.cert-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(20,12,9,0.5) 100%);
  opacity: 0; transition: opacity .3s ease;
  z-index: 1;
}
.cert-item:hover .cert-frame::after { opacity: 1; }
.cert-item .cert-zoom {
  position: absolute; bottom: 20px; right: 20px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(20,12,9,0.4); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s ease;
  z-index: 3;
}
.cert-item:hover .cert-zoom { opacity: 1; }
.cert-item .cert-zoom svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 2px; }
.cert-caption {
  margin: 10px 4px 2px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--ink-soft);
  text-align: center;
}

.cert-lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(20,12,9,0.92);
  display: none;
  align-items: center; justify-content: center;
  padding: 60px 20px;
}
.cert-lightbox.open { display: flex; }
.cert-lightbox-frame {
  background: linear-gradient(155deg, #f3e3c4 0%, var(--gold) 45%, #e8cf9c 70%, #f3e3c4 100%);
  padding: 16px;
  border-radius: 10px;
  box-shadow: var(--shadow-lift);
  max-width: min(900px, 90vw);
  max-height: 80vh;
}
.cert-lightbox-frame-inner {
  background: #fffaf5;
  padding: 12px;
  position: relative;
  height: 100%;
}
.cert-lightbox-frame-inner::before {
  content: "";
  position: absolute; inset: 7px;
  border: 1px solid rgba(193, 87, 61, 0.4);
  pointer-events: none;
}
.cert-lightbox img {
  display: block;
  max-width: min(868px, 84vw);
  max-height: 68vh;
  width: auto; height: auto;
  margin: 0 auto;
}
.cert-lightbox-caption {
  position: absolute; left: 0; right: 0; bottom: 26px;
  text-align: center; color: rgba(251,243,236,0.85);
  font-size: 14px; padding: 0 60px;
}
.cert-lightbox-close {
  position: absolute; top: 18px; right: 22px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(251,243,236,0.1); border: 1px solid rgba(251,243,236,0.25);
  color: #fff8f2; font-size: 26px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s ease;
}
.cert-lightbox-close:hover { background: rgba(251,243,236,0.2); }
.cert-lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(251,243,236,0.1); border: 1px solid rgba(251,243,236,0.25);
  color: #fff8f2; font-size: 30px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s ease;
}
.cert-lightbox-nav:hover { background: rgba(251,243,236,0.2); }
.cert-lightbox-nav.prev { left: 18px; }
.cert-lightbox-nav.next { right: 18px; }
@media (max-width: 640px) {
  .cert-lightbox-nav { width: 40px; height: 40px; font-size: 24px; }
  .cert-lightbox-nav.prev { left: 6px; }
  .cert-lightbox-nav.next { right: 6px; }
}

/* ---------- Referral ---------- */
.referral {
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-deep) 100%);
  color: #fff8f2;
  border-radius: 28px;
  padding: clamp(40px, 6vw, 72px);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px;
  position: relative;
  overflow: hidden;
}
.referral::before {
  content: "";
  position: absolute; width: 420px; height: 420px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  top: -160px; right: -120px;
}
.referral::after {
  content: "";
  position: absolute; width: 280px; height: 280px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  bottom: -140px; right: 40px;
}
.referral-text h3 { font-size: clamp(26px,3.4vw,38px); font-style: italic; font-weight: 400; margin-bottom: 10px; position: relative; z-index: 1;}
.referral-text p { margin: 0; opacity: .92; font-size: 15.5px; max-width: 46ch; position: relative; z-index: 1;}
.referral-badge {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  padding: 18px 30px;
  font-family: var(--ff-display); font-style: italic; font-size: 22px;
  position: relative; z-index: 1;
  white-space: nowrap;
}

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 26px 4px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-family: var(--ff-display); font-size: clamp(17px,2vw,21px); color: var(--ink); font-weight: 500;
}
.faq-plus { width: 26px; height: 26px; flex-shrink: 0; position: relative; }
.faq-plus::before, .faq-plus::after { content:""; position:absolute; background: var(--terracotta); top: 50%; left: 50%; transform: translate(-50%,-50%);}
.faq-plus::before { width: 16px; height: 2px; }
.faq-plus::after { width: 2px; height: 16px; transition: transform .3s ease; }
.faq-item.open .faq-plus::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s cubic-bezier(.2,.7,.1,1); }
.faq-a p { margin: 0 4px 26px; color: var(--ink-soft); font-size: 15.5px; line-height: 1.7; max-width: 66ch; }

.faq-a-inner {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0 4px 26px;
}
.faq-video {
  width: 240px;
  max-width: 100%;
  aspect-ratio: 9/16;
  border-radius: var(--radius-sm);
  background: #000;
  box-shadow: var(--shadow-soft);
  flex-shrink: 0;
  object-fit: cover;
}
.faq-a-inner p { margin: 0; flex: 1 1 320px; }

/* ---------- Contact / Footer ---------- */
.contact-section { background: var(--ink); color: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 56px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-info .kicker { color: var(--blush); }
.contact-info h2 { color: #fff8f2; margin: 16px 0 26px; font-size: clamp(30px,3.6vw,42px); font-style: italic; font-weight: 400;}
.contact-line { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; font-size: 15px; color: rgba(251,243,236,0.85); }
.contact-line svg { width: 20px; height: 20px; stroke: var(--blush); fill: none; stroke-width: 1.8px; flex-shrink: 0; margin-top: 2px;}
.contact-line .muted { opacity: .6; font-size: 13px; display: block; margin-top: 2px;}

.social-row { display: flex; gap: 12px; margin-top: 28px; }
.social-btn {
  width: 50px; height: 50px; border-radius: 50%;
  border: 1.5px solid rgba(251,243,236,0.25);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-body); font-weight: 800; font-size: 13px;
  color: #fff8f2; text-decoration: none;
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}
.social-btn:hover { background: var(--terracotta); border-color: var(--terracotta); transform: translateY(-3px); }

.contact-form {
  background: rgba(251,243,236,0.05);
  border: 1px solid rgba(251,243,236,0.14);
  border-radius: var(--radius);
  padding: 36px;
}
.contact-form .field { margin-bottom: 18px; }
.contact-form label { display: block; font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: rgba(251,243,236,0.55); margin-bottom: 8px; }
.contact-form input {
  width: 100%; background: rgba(251,243,236,0.06); border: 1px solid rgba(251,243,236,0.2);
  border-radius: 10px; padding: 14px 16px; font-family: var(--ff-body); font-size: 15px; color: #fff8f2;
  transition: border-color .25s ease, background .25s ease;
}
.contact-form input::placeholder { color: rgba(251,243,236,0.35); }
.contact-form input:focus { outline: none; border-color: var(--terracotta); background: rgba(251,243,236,0.1); }
.contact-form input.err { border-color: #d9765f; }
.form-err { font-size: 12.5px; color: #e79c88; margin-top: 6px; min-height: 15px; }
.contact-form .btn-primary { width: 100%; justify-content: center; margin-top: 6px; }
.form-success { display:none; text-align:center; padding: 18px 0 4px; color: #9fe6ac; font-weight: 600; font-size: 14.5px; }
.form-success.show { display: block; }

.field-consent { margin-bottom: 22px; }
.contact-form .consent-label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; text-transform: none; letter-spacing: normal; }
.consent-label input[type="checkbox"] {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
  accent-color: var(--terracotta);
  cursor: pointer;
}
.consent-label span { font-size: 13px; line-height: 1.55; color: rgba(251,243,236,0.7); }
.consent-label a { color: rgba(251,243,236,0.9); }
.consent-label.err span { color: #e79c88; }
.consent-links { font-size: 12.5px; color: rgba(251,243,236,0.45); text-align: center; margin: -6px 0 18px; }
.consent-links a { color: rgba(251,243,236,0.65); text-decoration: none; border-bottom: 1px dotted rgba(251,243,236,0.3); }
.consent-links a:hover { color: var(--blush); }

.site-footer {
  border-top: 1px solid rgba(251,243,236,0.1);
  margin-top: 80px;
  padding-top: 28px;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: 12.5px; color: rgba(251,243,236,0.45);
}
.site-footer a { color: rgba(251,243,236,0.65); text-decoration: none; border-bottom: 1px dotted rgba(251,243,236,0.3); }
.site-footer a:hover { color: var(--blush); }

/* ---------- misc ---------- */
.hidden-anchor { position: relative; top: -90px; }
::selection { background: var(--terracotta); color: #fff; }
