/* ==========================================================
   BUSINESS NAME: nail studio template
   Theme: light, soft luxe (milk, blush, nude, champagne gold).
   Shape rule: photos use an arch (round top), panels 20px,
   buttons and chips are pills.
   ========================================================== */
:root {
  --bg: #fbf5f3;
  --bg-2: #f5e7e3;
  --blush: #f2d6d1;
  --nude: #e3c3b5;
  --rose: #b56b6f;
  --rose-deep: #8c4550;     /* buttons: 6.9:1 with white text */
  --gold: #c9a66b;          /* decorative only */
  --gold-deep: #7d5f2e;     /* gold for text on light (5.4:1) */
  --ink: #2e1f24;
  --muted: #6d5a5f;         /* 6.1:1 on --bg */
  --line: rgba(46, 31, 36, 0.12);
  --white: #fffdfc;

  --font-display: "Noto Serif Display", "Noto Serif Fallback", Georgia, serif;
  --font-body: "Sofia Sans", system-ui, sans-serif;

  --gutter: clamp(16px, 5vw, 72px);
  --max: 1280px;
  --r: 20px;
  --arch: 999px 999px 18px 18px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow: 0 24px 60px -24px rgba(140, 69, 80, 0.28);
}

@font-face { font-family: "Noto Serif Fallback"; src: local("Georgia"); size-adjust: 92%; }

*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: clip; -webkit-text-size-adjust: 100%; scrollbar-color: var(--nude) var(--bg); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--blush); color: var(--ink); }
:focus-visible { outline: 2px solid var(--rose-deep); outline-offset: 3px; border-radius: 6px; }
.icon { width: 1em; height: 1em; fill: currentColor; flex-shrink: 0; vertical-align: -0.12em; }
.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; }
.nav-sentinel { position: absolute; top: 40px; left: 0; width: 1px; height: 1px; pointer-events: none; }

/* ---------- Layering ----------
   content z2 · #bottle3d z3 (floats over photos, sits only in empty anchors) · nav z50 */
#bottle3d {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
}
#bottle3d.is-ready { opacity: 1; }

.section { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: center; }
.content { position: relative; z-index: 2; width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }

/* ---------- Type ---------- */
.h2, .hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: -0.015em;
  line-height: 1.08;
  margin: 0;
  text-wrap: balance;
}
.h2 { font-size: clamp(36px, 4.4vw, 62px); }
.h2 em, .hero__title em { font-style: italic; color: var(--rose-deep); }
.lead { font-size: clamp(18px, 1.3vw, 20px); color: var(--muted); max-width: 46ch; margin: 18px 0 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn:active { transform: scale(0.97); }
.btn--sm { height: 42px; padding: 0 20px; font-size: 15px; }
.btn--primary { background: var(--rose-deep); color: var(--white); box-shadow: 0 10px 24px -12px rgba(140, 69, 80, 0.7); }
.btn--primary:hover { background: #7a3a45; }
.btn--ghost { border: 1px solid rgba(46, 31, 36, 0.35); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); background: var(--white); }

/* ---------- Arch frame ---------- */
.arch { margin: 0; border-radius: var(--arch); overflow: hidden; background: var(--blush); }
.arch img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 0 var(--gutter);
  transition: background-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav.is-scrolled { background: rgba(251, 245, 243, 0.86); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line); }
.nav__brand { font-family: var(--font-display); font-size: 22px; letter-spacing: 0.02em; white-space: nowrap; }
.nav__links { display: flex; gap: 30px; font-size: 16px; }
.nav__links a { position: relative; padding: 4px 0; color: var(--muted); transition: color 0.25s; }
.nav__links a:hover { color: var(--ink); }
.nav__links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--gold); transform: scaleX(0); transition: transform 0.35s var(--ease); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__right { display: flex; align-items: center; gap: 18px; }
.lang { display: flex; align-items: center; gap: 6px; font-size: 15px; color: var(--muted); }
.lang button { padding: 6px 2px; color: var(--muted); }
.lang button[aria-pressed="true"] { color: var(--ink); font-weight: 600; }
.nav__burger { display: none; width: 44px; height: 44px; position: relative; }
.nav__burger span { position: absolute; left: 11px; right: 11px; height: 1.5px; background: var(--ink); transition: transform 0.35s var(--ease); }
.nav__burger span:first-child { top: 18px; }
.nav__burger span:last-child { top: 25px; }
.nav__burger[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  padding: 104px 0 64px;
  background:
    radial-gradient(50% 60% at 85% 30%, rgba(242, 214, 209, 0.9), transparent 70%),
    radial-gradient(40% 50% at 10% 90%, rgba(227, 195, 181, 0.45), transparent 70%),
    var(--bg);
}
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero__title { font-size: clamp(48px, 6.2vw, 92px); line-height: 1.04; }
.hero__title .line { display: block; overflow: hidden; padding-bottom: 0.12em; margin-bottom: -0.08em; }
.hero__title .line > * { display: inline-block; }
.hero__sub { font-size: clamp(18px, 1.4vw, 21px); color: var(--muted); max-width: 38ch; margin: 26px 0 0; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero__visual { position: relative; justify-self: end; width: min(100%, 460px); }
.hero__arch { aspect-ratio: 3 / 4; box-shadow: var(--shadow); }
.hero__bottle { position: absolute; left: -34%; bottom: -8%; width: 58%; height: 66%; }

@media (prefers-reduced-motion: no-preference) {
  .js .hero__title .line > * { animation: rise 1.2s var(--ease-expo) both; }
  .js .hero__title .line:nth-child(2) > * { animation-delay: 0.12s; }
  .js .hero__sub, .js .hero__cta { animation: fadeUp 1s var(--ease-expo) 0.4s both; }
  .js .hero__cta { animation-delay: 0.5s; }
  .js .hero__arch { animation: archIn 1.4s var(--ease-expo) 0.1s both; }
}
@keyframes rise { from { transform: translateY(110%); } to { transform: none; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes archIn { from { clip-path: inset(100% 0 0 0 round 999px 999px 18px 18px); } to { clip-path: inset(0 0 0 0 round 999px 999px 18px 18px); } }

/* ---------- Services ---------- */
.services { padding: 120px 0; }
.services__grid { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 72px; align-items: start; }
.services__photo { position: sticky; top: 110px; aspect-ratio: 3 / 4.2; box-shadow: var(--shadow); }
.tabs { display: flex; flex-wrap: wrap; gap: 8px; margin: 32px 0 26px; }
.tabs [role="tab"] {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 16px;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.tabs [role="tab"]:hover { border-color: var(--nude); color: var(--ink); }
.tabs [role="tab"][aria-selected="true"] { background: var(--ink); border-color: var(--ink); color: var(--white); }
.panel { display: grid; gap: 12px; }
.panel[hidden] { display: none; }
.service {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "name meta" "desc book";
  gap: 4px 24px;
  align-items: baseline;
  padding: 22px 24px;
  border-radius: var(--r);
  background: var(--white);
  border: 1px solid var(--line);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.service:hover { border-color: var(--nude); box-shadow: var(--shadow); transform: translateY(-2px); }
.service h3 { grid-area: name; margin: 0; font-family: var(--font-display); font-weight: 400; font-size: 24px; line-height: 1.2; }
.service p { grid-area: desc; margin: 0; color: var(--muted); font-size: 16px; }
.service__meta { grid-area: meta; font-weight: 600; font-size: 17px; white-space: nowrap; color: var(--gold-deep); }
.service__book {
  grid-area: book;
  justify-self: end;
  font-weight: 600;
  font-size: 15px;
  color: var(--rose-deep);
  padding: 4px 0;
  border-bottom: 1px solid currentColor;
}
.service__book:hover { color: var(--ink); }

/* ---------- Shades ---------- */
.shades {
  padding: 110px 0 90px;
  text-align: center;
  background:
    radial-gradient(40% 45% at 50% 55%, color-mix(in srgb, var(--shade, #f2bfc3) 40%, transparent), transparent 70%),
    linear-gradient(180deg, var(--bg), var(--bg-2) 50%, var(--bg));
  transition: background 0.8s var(--ease);
}
.shades__inner { display: flex; flex-direction: column; align-items: center; }
.shades__stage { width: min(360px, 70vw); height: min(46vh, 440px); margin-top: 16px; }
.shades__name { margin: 0; font-family: var(--font-display); font-style: italic; font-weight: 300; font-size: clamp(28px, 3vw, 40px); min-height: 1.3em; }
.swatches { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 26px; }
.swatches button {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.7), transparent 38%), var(--c);
  box-shadow: inset 0 0 0 1px rgba(46, 31, 36, 0.12), 0 6px 14px -6px rgba(46, 31, 36, 0.4);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.swatches button:hover { transform: translateY(-3px); }
.swatches button[aria-checked="true"] { box-shadow: 0 0 0 3px var(--bg), 0 0 0 4.5px var(--ink); transform: scale(1.08); }

/* ---------- Recent work (masonry) ---------- */
.work { position: relative; z-index: 2; padding: 110px 0; }
.work__head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end; gap: 16px; margin-bottom: 44px; }
.work__follow { color: var(--muted); font-size: 17px; }
.work__follow b { color: var(--rose-deep); font-weight: 600; }
.work__follow:hover b { text-decoration: underline; }
.work__grid { columns: 4; column-gap: 16px; }
.work__grid figure { margin: 0 0 16px; break-inside: avoid; border-radius: 14px; overflow: hidden; aspect-ratio: 1 / 1; background: var(--blush); }
.work__grid figure.w-tall { aspect-ratio: 3 / 4; }
.work__grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.work__grid figure:hover img { transform: scale(1.05); }

/* ---------- Team (asymmetric trio) ---------- */
.team { padding: 110px 0; background: var(--bg-2); }
.team__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-template-areas: "title title ." "lead b c";
  gap: 24px 32px;
  align-items: end;
}
.team__title { grid-area: title; max-width: 16ch; margin-bottom: 20px; }
.member { margin: 0; }
.member .arch { aspect-ratio: 3 / 4; }
.member--lead { grid-area: lead; }
.member--b { grid-area: b; margin-bottom: 80px; }
.member--c { grid-area: c; }
.member figcaption { display: flex; flex-direction: column; margin-top: 14px; }
.member b { font-family: var(--font-display); font-weight: 400; font-size: 26px; }
.member span { color: var(--muted); font-size: 16px; }

/* ---------- Reviews ---------- */
.reviews { position: relative; z-index: 2; padding: 100px 0; }
.reviews__track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.review { margin: 0; padding-top: 26px; border-top: 1px solid var(--gold); }
.review p { margin: 0; font-family: var(--font-display); font-style: italic; font-weight: 300; font-size: clamp(21px, 1.7vw, 25px); line-height: 1.35; }
.review p::before { content: "“"; }
.review p::after { content: "”"; }
.review footer { margin-top: 16px; color: var(--muted); font-size: 15px; }

/* ---------- Booking ---------- */
.booking { padding: 120px 0; background: linear-gradient(180deg, var(--bg), var(--blush) 140%); }
.booking__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: start; }
.booking__aside { position: sticky; top: 110px; }
.booking__bottle { height: min(44vh, 420px); width: 70%; margin-top: 24px; }
.booking__notes { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 8px; color: var(--muted); font-size: 16px; }
.booking__notes li { padding-left: 22px; position: relative; }
.booking__notes li::before { content: ""; position: absolute; left: 0; top: 0.72em; width: 10px; height: 1px; background: var(--gold-deep); }

.bk {
  background: var(--white);
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: clamp(22px, 3vw, 40px);
}
.bk__steps { display: flex; gap: 6px; list-style: none; padding: 0; margin: 0 0 30px; counter-reset: s; }
.bk__steps li {
  flex: 1;
  padding-top: 12px;
  border-top: 2px solid var(--line);
  font-size: 13px;
  color: var(--muted);
  transition: border-color 0.4s var(--ease), color 0.4s var(--ease);
}
.bk__steps li.is-done { border-color: var(--gold); }
.bk__steps li.is-current { border-color: var(--rose-deep); color: var(--ink); font-weight: 600; }
.bk__form { display: grid; }
.bk__step { border: 0; padding: 0; margin: 0; min-width: 0; }
.bk__step[hidden] { display: none; }
.bk__step legend, .bk__legend { font-family: var(--font-display); font-weight: 400; font-size: clamp(26px, 2.2vw, 32px); line-height: 1.2; margin: 0 0 22px; padding: 0; }
.bk__step.is-entering { animation: stepIn 0.5s var(--ease-expo) both; }
@keyframes stepIn { from { opacity: 0; transform: translateX(var(--dir, 16px)); } to { opacity: 1; transform: none; } }

.bk__services { display: grid; gap: 18px; max-height: 420px; overflow-y: auto; padding-right: 6px; overscroll-behavior: contain; }
.bk__group h4 { margin: 0 0 8px; font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-deep); }
.bk__group-list { display: grid; gap: 8px; }
.choice { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 18px; border-radius: 14px; border: 1px solid var(--line); cursor: pointer; transition: border-color 0.25s var(--ease), background-color 0.25s var(--ease); }
.choice:hover { border-color: var(--nude); }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice:has(input:checked) { border-color: var(--rose-deep); background: color-mix(in srgb, var(--blush) 55%, transparent); }
.choice:has(input:focus-visible) { outline: 2px solid var(--rose-deep); outline-offset: 2px; }
.choice small { color: var(--muted); font-size: 15px; white-space: nowrap; }
.bk__choices { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.cal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.cal__month { margin: 0; font-weight: 600; text-transform: capitalize; }
.cal__nav { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); font-size: 22px; line-height: 1; }
.cal__nav:hover:not(:disabled) { border-color: var(--ink); }
.cal__nav:disabled { opacity: 0.3; cursor: default; }
.cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.cal__dow { text-align: center; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; color: var(--muted); padding-bottom: 4px; text-transform: uppercase; }
.cal__day { aspect-ratio: 1; border-radius: 50%; font-size: 16px; transition: background-color 0.2s var(--ease), color 0.2s var(--ease); }
.cal__day:hover:not(:disabled) { background: var(--blush); }
.cal__day:disabled { color: rgba(46, 31, 36, 0.28); cursor: default; text-decoration: line-through; text-decoration-color: rgba(46, 31, 36, 0.2); }
.cal__day.is-today { box-shadow: inset 0 0 0 1px var(--gold); }
.cal__day[aria-pressed="true"] { background: var(--rose-deep); color: var(--white); }

.bk__slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(88px, 1fr)); gap: 8px; }
.slot { height: 46px; border-radius: 999px; border: 1px solid var(--line); font-size: 16px; font-variant-numeric: tabular-nums; transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease), color 0.2s var(--ease); }
.slot:hover:not(:disabled) { border-color: var(--ink); }
.slot:disabled { color: rgba(46, 31, 36, 0.3); text-decoration: line-through; cursor: default; }
.slot[aria-pressed="true"] { background: var(--rose-deep); border-color: var(--rose-deep); color: var(--white); }
.bk__slots-empty { grid-column: 1 / -1; color: var(--muted); margin: 0; }

.field { display: grid; gap: 6px; margin-bottom: 16px; }
.field label { font-weight: 600; font-size: 15px; }
.field small { font-weight: 400; color: var(--muted); }
.field input, .field textarea {
  font: inherit; font-size: 17px; color: var(--ink);
  padding: 13px 16px; border-radius: 14px;
  border: 1px solid rgba(46, 31, 36, 0.28);
  background: var(--bg);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field textarea { resize: vertical; min-height: 88px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--rose-deep); box-shadow: 0 0 0 3px color-mix(in srgb, var(--rose-deep) 18%, transparent); }
.field.has-error input { border-color: #b3261e; }
.field__err, .bk__error { margin: 0; color: #a3221b; font-size: 14px; }
.bk__error { margin-top: 12px; }

.bk__summary { display: grid; gap: 0; margin: 0; }
.bk__summary div { display: grid; grid-template-columns: 120px 1fr; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.bk__summary div:last-child { border-bottom: 0; }
.bk__summary dt { color: var(--muted); font-size: 15px; }
.bk__summary dd { margin: 0; font-weight: 600; }
.bk__done { text-align: center; padding: 20px 0; }
.bk__done p:not(.bk__legend) { color: var(--muted); margin: 0 auto 26px; max-width: 36ch; }

.bk__nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 30px; }
.bk__nav [data-bk="back"][hidden] { display: inline-flex; visibility: hidden; }
.bk__nav[hidden] { display: none; }

/* ---------- Visit ---------- */
.visit { padding: 120px 0; }
.visit__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.visit__list { margin: 32px 0 34px; display: grid; gap: 18px; }
.visit__list div { display: grid; grid-template-columns: 120px 1fr; gap: 12px; }
.visit__list dt { color: var(--gold-deep); font-weight: 600; font-size: 15px; letter-spacing: 0.04em; text-transform: uppercase; padding-top: 2px; }
.visit__list dd { margin: 0; }
.visit__list a:hover { color: var(--rose-deep); }
.visit__social { display: flex; gap: 20px; }
.visit__map { aspect-ratio: 4 / 4.6; box-shadow: var(--shadow); }
.visit__map iframe { width: 100%; height: 100%; border: 0; filter: sepia(0.25) saturate(0.8) hue-rotate(-15deg); }

/* ---------- Footer ---------- */
.footer { position: relative; z-index: 2; padding: 36px 0; border-top: 1px solid var(--line); }
.footer__inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; color: var(--muted); font-size: 15px; }
.footer__brand { font-family: var(--font-display); font-size: 20px; color: var(--ink); }

/* ---------- Reveal starting states ---------- */
@media (prefers-reduced-motion: no-preference) {
  .js .reveal { opacity: 0; transform: translateY(22px); }
  .js .reveal-img { opacity: 0; transform: translateY(34px); }
}

/* ---------- Mobile ---------- */
@media (max-width: 1080px) {
  .nav__links { gap: 20px; }
  .nav .btn--sm { display: none; }
}
@media (max-width: 900px) {
  body { font-size: 17px; }
  .nav { height: 64px; }
  .nav__burger { display: block; }
  .nav__links {
    position: fixed; inset: 0; z-index: -1;
    flex-direction: column; justify-content: center; align-items: center; gap: 24px;
    font-family: var(--font-display); font-size: 34px;
    background: rgba(251, 245, 243, 0.98);
    opacity: 0; visibility: hidden;
    transition: opacity 0.35s var(--ease), visibility 0.35s;
  }
  .nav__links a { color: var(--ink); }
  .nav__links.is-open { opacity: 1; visibility: visible; }

  .hero { padding: 88px 0 56px; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { justify-self: end; width: 68%; }
  .hero__bottle { left: -52%; width: 60%; bottom: 0; }

  .services, .visit, .booking { padding: 88px 0; }
  .services__grid, .visit__grid, .booking__grid { grid-template-columns: 1fr; gap: 40px; }
  .services__photo { position: relative; top: 0; aspect-ratio: 4 / 3; border-radius: 999px 999px 18px 18px / 60% 60% 18px 18px; }
  .service { grid-template-areas: "name name" "desc desc" "meta book"; padding: 18px; }
  .service h3 { font-size: 21px; }

  .work, .team, .reviews { padding: 80px 0; }
  .work__grid { columns: 2; column-gap: 10px; }
  .work__grid figure { margin-bottom: 10px; }

  .team__grid { grid-template-columns: 1fr 1fr; grid-template-areas: "title title" "lead lead" "b c"; gap: 20px; }
  .member--lead .arch { aspect-ratio: 4 / 4.2; }
  .member--b { margin-bottom: 0; }
  .member b { font-size: 22px; }

  .reviews__track { grid-template-columns: 84%; grid-auto-flow: column; grid-auto-columns: 84%; overflow-x: auto; scroll-snap-type: x mandatory; gap: 20px; padding-bottom: 8px; }
  .review { scroll-snap-align: start; }

  .booking__aside { position: relative; top: 0; }
  .booking__bottle { display: none; }
  .bk__choices { grid-template-columns: 1fr; }
  .bk__steps li { font-size: 0; }
  .bk__summary div { grid-template-columns: 1fr; gap: 2px; }

  .visit__list div { grid-template-columns: 1fr; gap: 2px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
