/* Xtreme Studio Salon and Spa · website design preview v001
   Tokens are a proposal from the owner's intake words; no hex values were supplied. */

@font-face {
  font-family: "Fraunces";
  src: url("fonts/fraunces-latin-soft-normal.woff2") format("woff2-variations");
  font-weight: 100 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("fonts/fraunces-latin-soft-italic.woff2") format("woff2-variations");
  font-weight: 100 900; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Figtree";
  src: url("fonts/figtree-latin-wght-normal.woff2") format("woff2-variations");
  font-weight: 300 900; font-style: normal; font-display: swap;
}

:root {
  --cream: #FBF7F1;
  --nude: #F1E6D8;
  --sand: #E4D2BC;
  --brown: #6E4A2F;
  --gold: #C39A4A;
  --gold-ink: #86621F;
  --blue: #1F3A5F;
  --blue-2: #2B4E7A;
  --blue-soft: #DCE6F1;
  --ink: #1E2229;
  --ink-2: #4A4540;
  --white: #FFFFFF;

  --display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "Figtree", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

  --r-sm: 14px;
  --r-md: 24px;
  --r-lg: 36px;
  --r-pill: 999px;

  --wrap: 1180px;
  --gutter: clamp(20px, 4vw, 40px);
  --section: clamp(72px, 10vw, 128px);
  --shadow: 0 1px 2px rgb(30 34 41 / 0.04), 0 12px 32px -12px rgb(110 74 47 / 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 88px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, p, ul, dl, dd, figure { margin: 0; }
ul[role="list"] { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--blue-2); outline-offset: 3px; border-radius: 6px; }

.wrap { width: min(100% - 2 * var(--gutter), var(--wrap)); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 16px; top: -100px; z-index: 100;
  background: var(--blue); color: var(--white); padding: 12px 18px; border-radius: var(--r-pill);
  font-weight: 600; text-decoration: none;
}
.skip-link:focus { top: 12px; }
.muted { color: var(--ink-2); }

/* ---------- Review notes ("To confirm") ---------- */
.tc {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8125rem; line-height: 1.35; font-weight: 600;
  color: #7A3E12; background: #FCEBD5; border: 1px dashed #D9A066;
  border-radius: var(--r-sm); padding: 4px 10px;
}
.tc::before { content: "To confirm"; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.6875rem; }
.tc--inline { padding: 1px 8px; vertical-align: 1px; }
.tc--inline::before { content: none; }
.tc--block { display: flex; flex-wrap: wrap; gap: 4px 8px; margin-top: 14px; max-width: 62ch; font-weight: 500; }
.tc--block::before { content: "Review note"; }
.tc--on-dark { background: rgb(252 235 213 / 0.95); }
body:not(.notes-on) .tc:not(.tc--inline) { display: none; }

.preview-bar { background: var(--nude); border-bottom: 1px solid var(--sand); font-size: 0.875rem; }
.preview-bar__inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-block: 8px; flex-wrap: wrap; }
.preview-bar__toggle {
  font: inherit; font-weight: 600; color: var(--blue); background: var(--white);
  border: 1px solid var(--sand); border-radius: var(--r-pill); padding: 6px 14px; cursor: pointer; min-height: 36px;
}
.preview-bar__toggle:hover { border-color: var(--blue); }
@media (max-width: 640px) {
  .preview-bar__inner { flex-wrap: nowrap; }
  .preview-bar__more { display: none; }
  .preview-bar__toggle { white-space: nowrap; font-size: 0.8125rem; }
}

/* ---------- Buttons ---------- */
.btn {
  --h: 52px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: var(--h); padding: 0 26px; border-radius: var(--r-pill);
  font: 700 1rem/1 var(--sans); letter-spacing: 0.01em; text-decoration: none;
  border: 2px solid transparent; cursor: pointer;
  transition: transform 0.25s var(--ease), background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--blue); color: var(--white); box-shadow: 0 10px 24px -12px rgb(31 58 95 / 0.7); }
.btn--primary:hover { background: var(--blue-2); }
.btn--ghost { background: transparent; color: var(--blue); border-color: rgb(31 58 95 / 0.25); }
.btn--ghost:hover { border-color: var(--blue); }
.btn--light { background: var(--white); color: var(--blue); border-color: var(--white); }
.btn--light:hover { background: var(--nude); border-color: var(--nude); }
.btn--sm { --h: 44px; padding: 0 20px; font-size: 0.9375rem; }
.btn--block { width: 100%; }
@media (prefers-reduced-motion: reduce) { .btn, .btn:hover { transition: none; transform: none; } }

.link { color: var(--blue); font-weight: 700; text-underline-offset: 4px; text-decoration-thickness: 2px; text-decoration-color: var(--gold); }
.link:hover { text-decoration-color: var(--blue); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgb(251 247 241 / 0.88);
  -webkit-backdrop-filter: saturate(1.4) blur(14px); backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent; transition: border-color 0.3s;
}
.site-header.is-stuck { border-bottom-color: var(--sand); }
.site-header__inner { display: flex; align-items: center; gap: 16px; min-height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand__mark {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 16px;
  background: var(--blue); color: var(--gold); font: 800 1.5rem/1 var(--display);
  font-variation-settings: "SOFT" 100;
}
.brand__text { display: grid; line-height: 1.05; }
.brand__name { font: 800 1.25rem/1 var(--display); font-variation-settings: "SOFT" 100; letter-spacing: -0.01em; color: var(--blue); }
.brand__sub { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-ink); margin-top: 4px; }
.brand__note { font-size: 0.6875rem; padding: 2px 8px; }
.brand__note::before { content: none; }

.site-nav { margin-left: auto; display: flex; align-items: center; gap: 28px; }
.site-nav ul { display: flex; gap: 4px; list-style: none; padding: 0; margin: 0; }
.site-nav ul a {
  display: inline-flex; align-items: center; min-height: 44px; padding: 0 12px; border-radius: var(--r-pill);
  font-weight: 600; font-size: 0.975rem; text-decoration: none; color: var(--ink);
  transition: background-color 0.2s;
}
.site-nav ul a:hover, .site-nav ul a[aria-current="true"] { background: var(--nude); }
.menu-btn { display: none; }

@media (max-width: 900px) {
  .brand__note { display: none; }
  .menu-btn {
    display: inline-flex; align-items: center; gap: 10px; margin-left: auto;
    min-height: 44px; padding: 0 16px; border-radius: var(--r-pill);
    background: var(--white); border: 1px solid var(--sand); color: var(--blue);
    font: 700 0.9375rem/1 var(--sans); cursor: pointer;
  }
  .menu-btn__bars, .menu-btn__bars::before, .menu-btn__bars::after {
    display: block; width: 18px; height: 2px; border-radius: 2px; background: currentColor; position: relative;
    transition: transform 0.25s var(--ease), background-color 0.2s;
  }
  .menu-btn__bars::before, .menu-btn__bars::after { content: ""; position: absolute; left: 0; }
  .menu-btn__bars::before { top: -6px; }
  .menu-btn__bars::after { top: 6px; }
  .menu-btn[aria-expanded="true"] .menu-btn__bars { background: transparent; }
  .menu-btn[aria-expanded="true"] .menu-btn__bars::before { transform: translateY(6px) rotate(45deg); }
  .menu-btn[aria-expanded="true"] .menu-btn__bars::after { transform: translateY(-6px) rotate(-45deg); }

  .site-nav {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 16px;
    padding: 12px var(--gutter) 24px; background: var(--cream);
    border-bottom: 1px solid var(--sand); box-shadow: 0 24px 32px -24px rgb(110 74 47 / 0.35);
  }
  .js .site-nav:not(.is-open) { display: none; }
  .site-nav ul { flex-direction: column; }
  .site-nav ul a { min-height: 52px; font-size: 1.125rem; padding: 0 14px; }
}

/* ---------- Type ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.8125rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-ink);
}
.eyebrow::before { content: ""; width: 28px; height: 2px; border-radius: 2px; background: var(--gold); }
.eyebrow--light { color: #F3D9A4; }
.display, .h2, .h3 { font-family: var(--display); font-variation-settings: "SOFT" 100; color: var(--blue); text-wrap: balance; }
.display {
  font-size: clamp(3rem, 8.2vw, 6.5rem); font-weight: 800; line-height: 0.94; letter-spacing: -0.035em;
  margin-top: 18px;
}
.display__accent { font-style: italic; font-weight: 600; color: var(--brown); }
.h2 { font-size: clamp(2.5rem, 5.6vw, 4.25rem); font-weight: 800; line-height: 0.98; letter-spacing: -0.03em; margin-top: 12px; }
.h3 { font-size: 1.75rem; font-weight: 700; line-height: 1.1; letter-spacing: -0.015em; }
.lede { font-size: clamp(1.125rem, 1.6vw, 1.3125rem); color: var(--ink-2); max-width: 36ch; margin-top: 24px; }

/* ---------- Hero ---------- */
.hero { padding-block: clamp(32px, 5vw, 72px) clamp(56px, 8vw, 104px); overflow: clip; }
.hero__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }

.hero__art { position: relative; aspect-ratio: 4 / 5; max-width: 520px; width: 100%; justify-self: end; }
.arch { position: absolute; border-radius: 50% 50% var(--r-lg) var(--r-lg) / 38% 38% var(--r-lg) var(--r-lg); }
.arch--blue { inset: 0 18% 8% 0; background: var(--blue-soft); }
.arch--photo {
  inset: 10% 0 0 16%;
  background:
    radial-gradient(120% 80% at 30% 20%, rgb(255 255 255 / 0.55), transparent 60%),
    linear-gradient(160deg, var(--nude), var(--sand) 55%, #D6BC9C);
  border: 8px solid var(--white); box-shadow: var(--shadow);
  display: grid; place-items: center;
}
.arch__label {
  text-align: center; font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--brown); opacity: 0.8;
}
.blob { position: absolute; border-radius: 50%; }
.blob--gold { width: 22%; aspect-ratio: 1; left: -4%; bottom: 14%; background: var(--gold); opacity: 0.9; }
.blob--nude { width: 12%; aspect-ratio: 1; right: -3%; top: 6%; background: var(--brown); opacity: 0.85; }
.badge { position: absolute; width: 38%; left: -10%; top: 4%; }
.badge__bg { fill: var(--white); stroke: var(--gold); stroke-width: 2; }
.badge__text { font: 800 15.5px var(--sans); letter-spacing: 3.2px; fill: var(--blue); }
.badge__x { font: 800 58px var(--display); font-variation-settings: "SOFT" 100; fill: var(--gold); }
.badge__ring { transform-origin: 100px 100px; transform-box: view-box; animation: spin 28s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .badge__ring { animation: none; } }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { justify-self: center; max-width: 340px; margin-top: 8px; aspect-ratio: 1 / 1; }
  .arch--blue { inset: 0 22% 6% 4%; }
  .arch--photo { inset: 8% 4% 0 22%; }
  .badge { width: 34%; left: 0; top: 2%; }
}

/* ---------- Sections ---------- */
.section { padding-block: var(--section); }
.section--wash { background: var(--nude); border-radius: var(--r-lg); margin-inline: clamp(8px, 1.5vw, 20px); }
.section--blue { background: var(--blue); color: var(--white); border-radius: var(--r-lg); margin-inline: clamp(8px, 1.5vw, 20px); }
.section--blue .h2 { color: var(--white); }
.section--blue .section__intro { color: rgb(255 255 255 / 0.82); }
.section__head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 56px); }
.section__head--row { max-width: none; display: flex; justify-content: space-between; align-items: end; gap: 24px 48px; flex-wrap: wrap; margin-bottom: 0; }
.section__head--row .section__intro { max-width: 40ch; }
.section__intro { color: var(--ink-2); margin-top: 18px; max-width: 56ch; font-size: 1.125rem; }

/* Services */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service {
  position: relative; background: var(--white); border: 1px solid var(--sand); border-radius: var(--r-md);
  padding: 28px 28px 30px; min-height: 196px; display: flex; flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.2s;
}
.service:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }
.service__num { font: 700 0.875rem/1 var(--sans); letter-spacing: 0.14em; color: var(--gold-ink); }
.service__title {
  font-family: var(--display); font-variation-settings: "SOFT" 100; font-weight: 800;
  font-size: clamp(1.75rem, 2.6vw, 2.25rem); line-height: 1.02; letter-spacing: -0.02em; color: var(--blue);
  margin-top: auto; padding-top: 32px;
}
.service__meta { color: var(--ink-2); font-size: 0.9375rem; margin-top: 8px; }
.service--cta { background: var(--brown); border-color: var(--brown); color: var(--white); gap: 0; }
.service--cta .service__title { color: var(--white); padding-top: 0; margin-top: 0; font-size: 1.75rem; }
.service--cta .service__meta { color: rgb(255 255 255 / 0.86); margin-bottom: 20px; }
.service--cta .btn { margin-top: auto; align-self: flex-start; }
.service--cta:hover { border-color: var(--brown); }
@media (prefers-reduced-motion: reduce) { .service, .service:hover { transition: none; transform: none; } }
@media (max-width: 900px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) {
  .services { grid-template-columns: 1fr; gap: 12px; }
  .service { min-height: 0; padding: 22px 22px 24px; }
  .service__title { padding-top: 18px; }
}

/* Gallery */
.gallery {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: clamp(150px, 17vw, 220px);
  grid-auto-flow: dense; gap: 14px; margin-top: clamp(28px, 4vw, 44px);
}
.tile { position: relative; border-radius: var(--r-md); overflow: hidden; display: flex; align-items: flex-end; padding: 16px; }
.tile--tall { grid-row: span 2; border-radius: 50% 50% var(--r-md) var(--r-md) / 31% 31% var(--r-md) var(--r-md); }
.tile--wide { grid-column: span 2; }
.tile--a { background: linear-gradient(170deg, #E9D7BF, #CDAE88); }
.tile--b { background: linear-gradient(160deg, var(--blue-soft), #BCCDE0); }
.tile--c { background: linear-gradient(160deg, #F4E7D2, #E3C99A); }
.tile--d { background: linear-gradient(120deg, #D9BFA2, #B9916C); }
.tile--e { background: linear-gradient(160deg, #EFE4D6, #DCC8B0); }
.tile--f { background: linear-gradient(160deg, #C8D6E6, #9FB6CF); }
.tile__label {
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  background: rgb(255 255 255 / 0.8); color: var(--brown); padding: 6px 12px; border-radius: var(--r-pill);
}
@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .tile--wide { grid-column: span 2; }
}

/* Team */
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 3vw, 32px); }
.member { text-align: center; }
.member__photo {
  aspect-ratio: 4 / 5; border-radius: 50% 50% var(--r-md) var(--r-md) / 40% 40% var(--r-md) var(--r-md);
  background: linear-gradient(170deg, var(--nude), var(--sand)); border: 1px solid var(--sand);
  position: relative;
}
.member__photo::after {
  content: ""; position: absolute; left: 50%; top: 34%; width: 30%; aspect-ratio: 1; border-radius: 50%;
  transform: translate(-50%, -50%); background: rgb(255 255 255 / 0.55);
  box-shadow: 0 90px 0 28px rgb(255 255 255 / 0.4);
}
.member__photo--b { background: linear-gradient(170deg, var(--blue-soft), #C4D3E4); }
.member__photo--c { background: linear-gradient(170deg, #F2E3C8, #E0C28F); }
.member__photo { overflow: hidden; }
.member__name { font-family: var(--display); font-variation-settings: "SOFT" 100; font-weight: 700; font-size: 1.5rem; color: var(--blue); margin-top: 20px; }
.member__role { color: var(--ink-2); font-size: 0.9375rem; margin-top: 4px; }
@media (max-width: 720px) {
  .team { grid-template-columns: 1fr; gap: 14px; }
  .member {
    display: grid; grid-template-columns: 96px 1fr; grid-template-rows: auto auto; column-gap: 18px;
    align-items: center; text-align: left; background: var(--white); border: 1px solid var(--sand);
    border-radius: var(--r-md); padding: 12px;
  }
  .member__photo { grid-row: 1 / 3; width: 96px; border-radius: 50% 50% 16px 16px / 40% 40% 16px 16px; }
  .member__photo::after { box-shadow: 0 34px 0 10px rgb(255 255 255 / 0.4); }
  .member__name { margin-top: 0; align-self: end; font-size: 1.3125rem; }
  .member__role { align-self: start; }
}

/* Reviews */
.ratings { display: grid; grid-template-columns: 1fr 1fr 1.4fr; gap: 16px; }
.rating, .quote-slot { border-radius: var(--r-md); padding: 28px; }
.rating { background: rgb(255 255 255 / 0.07); border: 1px solid rgb(255 255 255 / 0.18); display: flex; flex-direction: column; align-items: flex-start; }
.rating__src { font-size: 0.875rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: #F3D9A4; }
.rating__score { margin-top: 12px; }
.rating__num { font: 800 4.25rem/1 var(--display); font-variation-settings: "SOFT" 100; letter-spacing: -0.03em; }
.rating__of { font-size: 1rem; color: rgb(255 255 255 / 0.8); }
.rating__count { color: rgb(255 255 255 / 0.85); margin: 4px 0 22px; }
.rating .btn { margin-top: auto; }
.quote-slot { background: var(--cream); color: var(--ink); border: 2px dashed var(--sand); }
.quote-slot__mark { font: 800 5rem/0.7 var(--display); color: var(--gold); height: 44px; }
.quote-slot__text { font-family: var(--display); font-variation-settings: "SOFT" 100; font-size: 1.375rem; line-height: 1.3; color: var(--ink-2); }
@media (max-width: 900px) { .ratings { grid-template-columns: 1fr 1fr; } .quote-slot { grid-column: 1 / -1; } }
@media (max-width: 480px) { .ratings { grid-template-columns: 1fr; } }

/* Visit */
.visit { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.facts { display: grid; gap: 0; margin-top: 32px; border-top: 1px solid var(--sand); }
.fact { display: grid; grid-template-columns: 120px 1fr; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--sand); }
.fact dt { font-size: 0.8125rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-ink); padding-top: 3px; }
.fact dd { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.fact address { font-style: normal; font-size: 1.125rem; font-weight: 600; }
.placeholder {
  display: inline-block; font-weight: 600; color: var(--ink-2);
  background: repeating-linear-gradient(-45deg, var(--nude) 0 8px, #F7EFE4 8px 16px);
  border-radius: 8px; padding: 2px 10px;
}
.card { background: var(--white); border: 1px solid var(--sand); border-radius: var(--r-lg); padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow); }
.card .muted { margin-top: 8px; }
@media (max-width: 900px) { .visit { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .fact { grid-template-columns: 1fr; gap: 6px; } }

/* Form */
.form { display: grid; gap: 18px; margin-top: 24px; }
.field { display: grid; gap: 6px; border: 0; padding: 0; margin: 0; min-width: 0; }
.field label, .field legend { font-weight: 700; font-size: 0.9375rem; padding: 0; }
.field input[type="text"], .field textarea {
  font: inherit; color: var(--ink); background: var(--cream);
  border: 1.5px solid var(--sand); border-radius: var(--r-sm); padding: 12px 14px; min-height: 50px; width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus-visible, .field textarea:focus-visible { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgb(31 58 95 / 0.18); }
.field [aria-invalid="true"] { border-color: #A3341B; }
.field__hint { font-size: 0.8125rem; color: var(--ink-2); }
.field__err { font-size: 0.875rem; font-weight: 600; color: #A3341B; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.chip { position: relative; cursor: pointer; }
.chip input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.chip span {
  display: inline-flex; align-items: center; min-height: 44px; padding: 0 18px; border-radius: var(--r-pill);
  border: 1.5px solid var(--sand); background: var(--cream); font-weight: 600; font-size: 0.9375rem;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}
.chip input:checked + span { background: var(--blue); border-color: var(--blue); color: var(--white); }
.chip input:focus-visible + span { outline: 3px solid var(--blue-2); outline-offset: 2px; }
.form__note { font-size: 0.8125rem; color: var(--ink-2); text-align: center; }
.form__status:empty { display: none; }
.form__status {
  border-radius: var(--r-sm); padding: 14px 16px; background: var(--blue-soft); color: var(--blue);
  font-weight: 600; font-size: 0.9375rem;
}
.form__status:focus { outline: none; }

/* Social */
.social { margin-bottom: clamp(24px, 4vw, 40px); }
.social__inner { display: flex; justify-content: space-between; align-items: end; gap: 24px 48px; flex-wrap: wrap; }
.social__links { max-width: 460px; }
.social-link {
  display: inline-flex; align-items: center; gap: 14px; min-height: 64px; padding: 0 28px 0 18px;
  background: var(--white); border: 1px solid var(--sand); border-radius: var(--r-pill);
  font-weight: 700; font-size: 1.0625rem; text-decoration: none; color: var(--blue);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.social-link svg { width: 30px; height: 30px; color: var(--brown); }
.social-link:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.social-link__handle { color: var(--ink-2); font-weight: 600; }
@media (prefers-reduced-motion: reduce) { .social-link, .social-link:hover { transition: none; transform: none; } }

/* Footer */
.site-footer { padding-block: 48px 40px; border-top: 1px solid var(--sand); }
.site-footer__inner { display: grid; grid-template-columns: 1fr auto; gap: 24px 48px; align-items: start; }
.site-footer__name { font: 800 1.375rem/1.2 var(--display); font-variation-settings: "SOFT" 100; color: var(--blue); }
.site-footer__nav { display: flex; flex-wrap: wrap; gap: 4px 20px; list-style: none; padding: 0; margin: 0; }
.site-footer__nav a { display: inline-flex; min-height: 44px; align-items: center; font-weight: 600; text-decoration: none; }
.site-footer__nav a:hover { text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 4px; }
.site-footer__legal { grid-column: 1 / -1; font-size: 0.875rem; }
@media (max-width: 720px) { .site-footer__inner { grid-template-columns: 1fr; } }

/* Scroll reveal (only when JS is present and motion is allowed) */
@media (prefers-reduced-motion: no-preference) {
  .js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
  .js .reveal.is-in { opacity: 1; transform: none; }
}

@media print {
  .preview-bar, .site-header, .menu-btn, .hero__art, .form { display: none !important; }
  .section--blue { background: none; color: var(--ink); }
}
