/* =====================================================================
   Tipsy Tips — brand stylesheet
   Wine #6C0B2E · Gold #B6A84E · Cream #FBF5EA
   Playful + bold, polished + friendly.
   ===================================================================== */

:root {
  /* brand */
  --wine:        #6C0B2E;
  --wine-deep:   #4A0720;
  --wine-soft:   #F3E1E7;
  --gold:        #B6A84E;
  --gold-deep:   #8E8235;
  --gold-soft:   #F1EAD0;
  --cream:       #FBF5EA;
  --cream-warm:  #F2E9DA;
  --ink:         #241318;
  --ink-soft:    #6B565C;
  --line:        #E6D9C7;
  --white:       #FFFFFF;

  /* type */
  --display: "Bricolage Grotesque", "Segoe UI", system-ui, sans-serif;
  --body:    "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* spacing / shape */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;
  --shadow-sm: 0 2px 8px -2px rgba(36, 19, 24, .12);
  --shadow-md: 0 18px 40px -24px rgba(108, 11, 46, .45);
  --shadow-lg: 0 40px 80px -40px rgba(108, 11, 46, .55);

  --nav-h: 72px;
  --wrap: 1160px;
}

/* ---------------------------------------------------------------- base */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0;
}

p { margin: 0 0 1em; }
a { color: inherit; }
img { max-width: 100%; display: block; }

::selection { background: var(--wine); color: var(--cream); }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--wine); color: var(--cream);
  padding: 12px 20px; border-radius: 0 0 var(--r-sm) 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold-deep);
  margin: 0 0 14px;
}

/* -------------------------------------------------------------- buttons */
.btn {
  --btn-bg: var(--wine);
  --btn-fg: var(--cream);
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 2px solid var(--btn-bg);
  font-family: var(--body); font-size: 15px; font-weight: 700;
  padding: 13px 26px; border-radius: 999px;
  text-decoration: none; cursor: pointer;
  transition: transform .16s cubic-bezier(.2,.8,.3,1), background .16s, box-shadow .16s, opacity .16s;
  white-space: nowrap;
}
.btn:hover  { background: var(--wine-deep); border-color: var(--wine-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0) scale(.985); }

.btn:disabled,
.btn[disabled] { opacity: .35; cursor: not-allowed; transform: none; box-shadow: none; }

.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--wine);
  border-color: var(--wine);
}
.btn--ghost:hover { background: var(--wine); color: var(--cream); }

.btn--big { font-size: 17px; padding: 17px 34px; }

.linkbtn {
  background: none; border: 0; padding: 8px 0; cursor: pointer;
  font: 700 14px/1 var(--body); color: var(--wine);
  text-decoration: underline; text-underline-offset: 4px;
}
.linkbtn:hover { color: var(--gold-deep); }

/* ------------------------------------------------------------------ nav */
.nav {
  position: sticky; top: 0; z-index: 60;
  height: var(--nav-h);
  display: flex; align-items: center; gap: 24px;
  padding: 0 clamp(16px, 4vw, 40px);
  background: rgba(251, 245, 234, .82);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.nav.is-stuck { border-bottom-color: var(--line); box-shadow: 0 6px 24px -18px rgba(36,19,24,.5); }

.nav__brand { display: flex; align-items: center; gap: 11px; text-decoration: none; margin-right: auto; }
.nav__mark  { display: grid; place-items: center; transition: transform .3s cubic-bezier(.34,1.56,.64,1); }
.nav__brand:hover .nav__mark { transform: rotate(-12deg) scale(1.06); }

.nav__word b {
  display: block; font-family: var(--display); font-size: 19px;
  font-weight: 800; letter-spacing: -.03em; line-height: 1;
}
.nav__word i {
  display: block; font-style: normal; font-size: 10px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold-deep); margin-top: 3px;
}

.nav__links { display: flex; gap: 28px; }
.nav__links a {
  text-decoration: none; font-size: 15px; font-weight: 500;
  color: var(--ink-soft); position: relative; padding: 4px 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 2px; background: var(--gold); transition: right .25s;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { right: 0; }

.nav__cta { padding: 11px 22px; font-size: 14px; }

@media (max-width: 860px) {
  .nav__links { display: none; }
}

/* ----------------------------------------------------------------- hero */
.hero {
  position: relative;
  padding: clamp(40px, 7vw, 88px) clamp(16px, 4vw, 40px) 0;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: -20% -10% auto -10%; height: 70%;
  background: radial-gradient(60% 80% at 20% 20%, rgba(182,168,78,.22), transparent 70%),
              radial-gradient(50% 70% at 85% 10%, rgba(108,11,46,.14), transparent 72%);
  pointer-events: none;
}
.hero__grain {
  position: absolute; inset: 0; pointer-events: none; opacity: .5; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
}

.hero__inner {
  position: relative;
  max-width: var(--wrap); margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px); align-items: center;
  padding-bottom: clamp(40px, 6vw, 72px);
}

/* portrait circle — matches the sketch */
.hero__portrait { position: relative; aspect-ratio: 1; max-width: 380px; margin-inline: auto; width: 100%; }

.hero__ring {
  position: absolute; inset: -14px; border-radius: 50%;
  border: 2px dashed var(--gold);
  opacity: .65;
  animation: spin 40s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero__photo {
  position: absolute; inset: 0; border-radius: 50%;
  background: linear-gradient(150deg, var(--wine) 0%, var(--wine-deep) 60%, #2E0413 100%);
  display: grid; place-items: center; text-align: center;
  color: rgba(251,245,234,.62);
  font-size: 13px; letter-spacing: .16em; text-transform: uppercase; line-height: 1.9;
  box-shadow: var(--shadow-lg), inset 0 0 0 6px rgba(251,245,234,.12);
  overflow: hidden;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__photo-ph { display: none; }
.hero__photo.is-empty .hero__photo-ph { display: block; }

.sticker {
  position: absolute; z-index: 2;
  background: var(--gold); color: var(--wine-deep);
  font-family: var(--display); font-weight: 800; font-size: 13px;
  letter-spacing: -.01em;
  padding: 9px 16px; border-radius: 999px;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--cream);
  white-space: nowrap;
}
.sticker--1 { top: 4%; right: -6%;  transform: rotate(9deg); }
.sticker--2 { bottom: 6%; left: -8%; transform: rotate(-7deg); background: var(--cream); color: var(--wine); border-color: var(--wine); }

.hero__title {
  font-size: clamp(46px, 9vw, 104px);
  margin-bottom: 18px;
}
.hero__title em {
  font-style: normal; color: var(--wine);
  position: relative; white-space: nowrap;
}
.hero__title em::after {
  content: ""; position: absolute; left: -2%; right: -2%; bottom: .1em; height: .22em;
  background: var(--gold); opacity: .55; border-radius: 999px; z-index: -1;
}

.hero__intro {
  font-size: clamp(17px, 2vw, 20px); max-width: 46ch;
  color: var(--ink-soft); margin-bottom: 30px;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }

.hero__facts {
  list-style: none; margin: 0; padding: 24px 0 0;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: clamp(24px, 5vw, 56px);
}
.hero__facts b {
  display: block; font-family: var(--display); font-size: 30px;
  font-weight: 800; letter-spacing: -.03em; color: var(--wine);
}
.hero__facts span { font-size: 13px; color: var(--ink-soft); }

@media (max-width: 880px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__left  { order: 2; }
  .hero__portrait { max-width: 260px; }
  .hero__facts { gap: 28px; }
}

/* -------------------------------------------------------------- marquee */
.marquee {
  position: relative;
  background: var(--wine); color: var(--gold-soft);
  padding: 14px 0; overflow: hidden;
  margin: 0 calc(clamp(16px, 4vw, 40px) * -1);
  border-block: 2px solid var(--wine-deep);
}
.marquee__track {
  display: flex; width: max-content;
  animation: slide 34s linear infinite;
}
.marquee__track span {
  font-family: var(--display); font-weight: 700; font-size: 19px;
  letter-spacing: .02em; padding-right: 32px; white-space: nowrap;
}
@keyframes slide { to { transform: translateX(-50%); } }

@media (prefers-reduced-motion: reduce) {
  .marquee__track, .hero__ring { animation: none; }
  html { scroll-behavior: auto; }
}

/* ------------------------------------------------------------- sections */
.section {
  max-width: var(--wrap); margin: 0 auto;
  padding: clamp(56px, 9vw, 110px) clamp(16px, 4vw, 40px);
}
.section__head { max-width: 640px; margin-bottom: clamp(28px, 4vw, 48px); }
.section__title { font-size: clamp(34px, 5.6vw, 60px); margin-bottom: 12px; }
.section__sub   { color: var(--ink-soft); font-size: 17px; margin: 0; }

/* ---------------------------------------------------------- service cards */
.cards {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

.card {
  position: relative;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 28px 26px;
  display: flex; flex-direction: column;
  transition: transform .2s cubic-bezier(.2,.8,.3,1), box-shadow .2s, border-color .2s;
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 5px;
  background: linear-gradient(90deg, var(--wine), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform .35s cubic-bezier(.2,.8,.3,1);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--wine-soft); }
.card:hover::before { transform: scaleX(1); }

.card--skeleton {
  min-height: 250px; background: var(--cream-warm); border-style: dashed;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: .55; } }

.card__name  { font-size: 27px; margin-bottom: 6px; }
.card__tag   { color: var(--gold-deep); font-weight: 700; font-size: 13px;
               letter-spacing: .06em; text-transform: uppercase; margin-bottom: 14px; }
.card__desc  { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 22px; flex: 1; }

.card__foot {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  padding-top: 18px; border-top: 1px solid var(--line);
}
.card__price { font-family: var(--display); font-weight: 800; font-size: 25px; color: var(--wine); }
.card__price small { font-size: 13px; font-weight: 500; color: var(--ink-soft); }
.card__time  { font-size: 13.5px; color: var(--ink-soft); font-weight: 500; }

/* ================================================================ BOOKER */
.section--book { position: relative; }
.section--book::before {
  content: ""; position: absolute; inset: 0;
  background: var(--cream-warm);
  border-radius: var(--r-xl);
  z-index: -1;
  margin: clamp(24px, 4vw, 48px) clamp(-8px, 0vw, 0px);
}

.booker {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

/* progress rail */
.steps {
  display: flex; list-style: none; margin: 0;
  padding: 0; background: var(--cream); border-bottom: 1.5px solid var(--line);
  overflow-x: auto; scrollbar-width: none;
}
.steps::-webkit-scrollbar { display: none; }

.steps__item {
  flex: 1 0 auto;
  display: flex; align-items: center; gap: 9px;
  padding: 16px 20px;
  font-size: 14px; font-weight: 700; color: var(--ink-soft);
  white-space: nowrap; position: relative;
  transition: color .2s;
}
.steps__item span {
  display: grid; place-items: center;
  width: 25px; height: 25px; border-radius: 50%;
  background: var(--line); color: var(--ink-soft);
  font-size: 12.5px; font-weight: 800;
  transition: background .25s, color .25s, transform .25s;
}
.steps__item.is-active { color: var(--wine); }
.steps__item.is-active span { background: var(--wine); color: var(--cream); transform: scale(1.08); }
/* Completed step: hide the digit (a bare text node) and stamp a tick in its place. */
.steps__item.is-done span { background: var(--gold); color: var(--wine-deep); font-size: 0; }
.steps__item.is-done span::after { content: "✓"; font-size: 12.5px; font-weight: 800; }

.booker__body { padding: clamp(24px, 4vw, 40px); min-height: 340px; }

.panel { display: none; animation: fadeUp .35s cubic-bezier(.2,.8,.3,1); }
.panel.is-active { display: block; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } }

.panel__title { font-size: clamp(24px, 3.4vw, 34px); margin-bottom: 8px; }
.panel__hint  { color: var(--ink-soft); font-size: 15px; margin-bottom: 24px; }

/* ---- choice tiles ---- */
.choices { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.choice {
  position: relative; text-align: left;
  background: var(--cream); border: 2px solid var(--line);
  border-radius: var(--r-md); padding: 22px 22px 20px;
  cursor: pointer; font-family: inherit; color: inherit;
  transition: border-color .18s, background .18s, transform .18s, box-shadow .18s;
  display: flex; flex-direction: column; gap: 6px;
}
.choice:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow-sm); }

.choice.is-selected {
  border-color: var(--wine); background: var(--wine-soft);
  box-shadow: 0 0 0 4px rgba(108,11,46,.09);
}
.choice.is-selected::after {
  content: "✓"; position: absolute; top: 14px; right: 16px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--wine); color: var(--cream);
  display: grid; place-items: center; font-size: 13px; font-weight: 800;
}

.choice__name  { font-family: var(--display); font-weight: 800; font-size: 21px; letter-spacing: -.02em; padding-right: 30px; }
.choice__desc  { color: var(--ink-soft); font-size: 14.5px; line-height: 1.5; }
.choice__meta  {
  margin-top: 10px; padding-top: 12px; border-top: 1px solid rgba(36,19,24,.1);
  font-size: 13px; font-weight: 700; color: var(--wine);
  display: flex; gap: 8px; flex-wrap: wrap;
}
.choice__meta span { background: rgba(182,168,78,.22); padding: 3px 10px; border-radius: 999px; }

/* ---- day strip (the sketch's grid) ---- */
.days {
  display: flex; gap: 10px; overflow-x: auto;
  padding: 4px 2px 14px; scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.days::-webkit-scrollbar { height: 6px; }
.days::-webkit-scrollbar-thumb { background: var(--line); border-radius: 999px; }

.day {
  flex: 0 0 auto; scroll-snap-align: start;
  min-width: 78px; padding: 12px 10px 11px;
  background: var(--cream); border: 2px solid var(--line);
  border-radius: var(--r-sm); cursor: pointer;
  font-family: inherit; color: inherit; text-align: center;
  transition: border-color .16s, background .16s, transform .16s;
}
.day:hover:not(:disabled) { border-color: var(--gold); transform: translateY(-2px); }
.day.is-selected { background: var(--wine); border-color: var(--wine); color: var(--cream); }
.day:disabled { opacity: .34; cursor: not-allowed; }

.day__wd  { display: block; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; }
.day__nr  { display: block; font-family: var(--display); font-weight: 800; font-size: 25px; line-height: 1.15; letter-spacing: -.03em; }
.day__cnt { display: block; font-size: 10.5px; opacity: .72; font-weight: 600; }

/* ---- time buttons ---- */
.times {
  display: grid; gap: 10px;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  margin-top: 6px;
}
.time {
  padding: 13px 8px; background: var(--white);
  border: 2px solid var(--line); border-radius: var(--r-sm);
  font: 700 15.5px/1 var(--body); color: var(--ink);
  cursor: pointer; transition: all .16s;
}
.time:hover { border-color: var(--wine); color: var(--wine); transform: translateY(-2px); }
.time.is-selected { background: var(--wine); border-color: var(--wine); color: var(--cream); }
.time small { display: block; font-size: 10.5px; font-weight: 500; opacity: .7; margin-top: 4px; }

.times__empty {
  grid-column: 1 / -1; padding: 34px 20px; text-align: center;
  background: var(--cream); border: 2px dashed var(--line); border-radius: var(--r-md);
  color: var(--ink-soft); font-size: 15px;
}

/* ---- form ---- */
.form__row { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }
@media (max-width: 620px) { .form__row { grid-template-columns: 1fr; } }

.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13.5px; font-weight: 700; margin-bottom: 6px; }
.field label em { color: var(--wine); font-style: normal; }

.field input, .field textarea {
  width: 100%; padding: 13px 15px;
  background: var(--cream); border: 2px solid var(--line);
  border-radius: var(--r-sm);
  font: 400 16px/1.5 var(--body); color: var(--ink);
  transition: border-color .16s, background .16s;
}
.field input::placeholder, .field textarea::placeholder { color: #B3A19E; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--wine); background: var(--white);
}
.field textarea { resize: vertical; min-height: 88px; }

.field.has-error input, .field.has-error textarea { border-color: #C42B57; background: #FDF1F4; }
.field__err { color: #C42B57; font-size: 13px; font-weight: 600; margin: 6px 0 0; min-height: 0; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form__legal { font-size: 13px; color: var(--ink-soft); margin: 10px 0 0; }

/* ---- sticky tray ---- */
.tray {
  position: sticky; bottom: 0; z-index: 20;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 16px clamp(20px, 4vw, 40px);
  background: var(--wine); color: var(--cream);
  border-top: 2px solid var(--wine-deep);
}
.tray__summary { flex: 1 1 200px; min-width: 0; }
.tray__line {
  font-family: var(--display); font-weight: 700; font-size: 17px;
  letter-spacing: -.02em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.tray__meta { font-size: 13.5px; color: var(--gold-soft); display: flex; gap: 8px; }
.tray__meta .dot { opacity: .55; }

.tray__buttons { display: flex; gap: 10px; margin-left: auto; }
.tray .btn { background: var(--gold); border-color: var(--gold); color: var(--wine-deep); }
.tray .btn:hover:not(:disabled) { background: #C9BA5C; border-color: #C9BA5C; }
.tray .btn--ghost { background: transparent; border-color: rgba(251,245,234,.5); color: var(--cream); }
.tray .btn--ghost:hover { background: rgba(251,245,234,.14); border-color: var(--cream); }

.booker__error {
  margin: 0; padding: 14px 24px;
  background: #FBE4EA; color: #8A0B33;
  font-size: 14.5px; font-weight: 600; text-align: center;
}

/* ---- confirmation ---- */
.done { text-align: center; padding: 20px 0 10px; max-width: 520px; margin: 0 auto; }
.done__badge {
  width: 66px; height: 66px; margin: 0 auto 20px;
  border-radius: 50%; background: var(--wine); color: var(--gold);
  display: grid; place-items: center; font-size: 30px; font-weight: 800;
  animation: pop .5s cubic-bezier(.34,1.56,.64,1);
}
@keyframes pop { from { transform: scale(0); opacity: 0; } }

.done__title { font-size: clamp(30px, 5vw, 42px); margin-bottom: 10px; }
.done__text  { color: var(--ink-soft); margin-bottom: 24px; }

.done__card {
  background: var(--cream); border: 1.5px solid var(--line);
  border-radius: var(--r-md); padding: 20px 24px; text-align: left;
  margin-bottom: 24px;
}
.done__card dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 10px 20px; }
.done__card dt {
  font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 700; align-self: center;
}
.done__card dd { margin: 0; font-weight: 700; font-size: 16px; }

.done__actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 18px; }
.done__small { font-size: 13px; color: var(--ink-soft); margin: 0; }

/* --------------------------------------------------------------- studio */
.section--studio { padding-block: clamp(40px, 6vw, 80px); }

.studio {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px); align-items: center;
}
@media (max-width: 880px) { .studio { grid-template-columns: 1fr; } }

.studio__text p { color: var(--ink-soft); }
.studio__text .section__title { margin-bottom: 18px; }

.ticks { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 11px; }
.ticks li { position: relative; padding-left: 32px; font-size: 15.5px; }
.ticks li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  width: 21px; height: 21px; border-radius: 50%;
  background: var(--gold); color: var(--wine-deep);
  display: grid; place-items: center; font-size: 11px; font-weight: 800;
}

.studio__gallery {
  display: grid; gap: 12px;
  grid-template-columns: 1fr 1fr; grid-template-rows: 150px 150px;
}
.tile {
  border-radius: var(--r-md); display: grid; place-items: center;
  background: var(--cream-warm); border: 2px dashed var(--line);
  color: #B3A19E; font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
}
.tile--a { grid-row: span 2; background: linear-gradient(160deg, var(--wine), var(--wine-deep)); border: 0; color: rgba(251,245,234,.5); }
.tile--b { background: var(--gold-soft); border-color: var(--gold); }

/* ------------------------------------------------------------------ faq */
.faq { display: grid; gap: 10px; max-width: 760px; }

.faq__item {
  background: var(--white); border: 1.5px solid var(--line);
  border-radius: var(--r-md); overflow: hidden;
  transition: border-color .2s;
}
.faq__item[open] { border-color: var(--wine-soft); box-shadow: var(--shadow-sm); }

.faq__item summary {
  padding: 19px 54px 19px 24px; cursor: pointer; list-style: none;
  font-family: var(--display); font-weight: 700; font-size: 18.5px;
  letter-spacing: -.02em; position: relative;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  font-size: 24px; font-weight: 500; color: var(--wine); transition: transform .25s;
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item p { padding: 0 24px 20px; margin: 0; color: var(--ink-soft); font-size: 15.5px; }

/* --------------------------------------------------------------- footer */
.footer {
  background: var(--wine); color: var(--cream);
  padding: clamp(40px, 6vw, 72px) clamp(16px, 4vw, 40px) 32px;
  margin-top: clamp(30px, 5vw, 60px);
  overflow: hidden;
}
.footer__big {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(58px, 17vw, 210px); line-height: .84;
  letter-spacing: -.05em; color: rgba(251,245,234,.11);
  text-align: center; user-select: none;
  margin-bottom: 26px;
}
.footer__row {
  max-width: var(--wrap); margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 14px 28px;
  align-items: center; justify-content: space-between;
  padding-top: 24px; border-top: 1px solid rgba(251,245,234,.18);
  font-size: 14px;
}
.footer__row p { margin: 0; color: rgba(251,245,234,.72); }
.footer__links { display: flex; gap: 22px; }
.footer__links a { color: var(--gold); text-decoration: none; font-weight: 700; }
.footer__links a:hover { color: var(--cream); text-decoration: underline; text-underline-offset: 4px; }

/* --------------------------------------------------------------- utils */
[hidden] { display: none !important; }

.is-loading { opacity: .5; pointer-events: none; }

/* =====================================================================
   ADDITIONS — logo, photos, gallery, step-2 groups
   ===================================================================== */

/* ---------------------------------------------------------------- logo */
.nav__logo {
  height: 42px; width: auto; max-width: 190px;
  object-fit: contain; display: block;
}
.nav__logo.is-missing { display: none; }

/* Text wordmark, shown only until logo.png exists. */
.nav__fallback { display: none; }
.nav__logo.is-missing + .nav__fallback { display: block; }
.nav__fallback b {
  display: block; font-family: var(--display); font-size: 19px;
  font-weight: 800; letter-spacing: -.03em; line-height: 1;
}
.nav__fallback i {
  display: block; font-style: normal; font-size: 10px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold-deep); margin-top: 3px;
}

@media (max-width: 560px) { .nav__logo { height: 34px; } }

/* --------------------------------------------------------------- peek */
.peek { margin: 0 0 34px; }
.peek__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  max-width: 420px; margin-bottom: 10px; text-decoration: none;
}
.peek__grid img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  border-radius: 12px; border: 1.5px solid var(--line);
  transition: transform .18s cubic-bezier(.2,.8,.3,1), border-color .18s;
}
.peek__grid:hover img { border-color: var(--wine); }
.peek__grid img:hover { transform: translateY(-3px) scale(1.03); }

.peek__more {
  font-size: 13.5px; font-weight: 700; color: var(--wine);
  text-decoration: underline; text-underline-offset: 4px;
}
.peek__more:hover { color: var(--gold-deep); }

/* -------------------------------------------------- menu notes (art/refills) */
.notes {
  display: grid; gap: 18px; margin-top: 34px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.note {
  background: var(--white); border: 1.5px solid var(--line);
  border-radius: var(--r-lg); padding: 26px 28px;
}
.note__title {
  font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 16px;
}
.note__row { padding: 11px 0; border-top: 1px solid var(--line); }
.note__row:first-of-type { border-top: 0; padding-top: 0; }
.note__row b {
  display: block; font-family: var(--display); font-size: 18px;
  font-weight: 700; letter-spacing: -.02em; margin-bottom: 3px;
}
.note__row span { font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; }

/* ------------------------------------------------------- step 2 groups */
.subgroup + .subgroup {
  margin-top: 34px; padding-top: 30px; border-top: 1px solid var(--line);
}
.subgroup[hidden] { display: none; }

/* When the nail-art question is hidden (a service with no levels), the
   remaining group is visually first — drop the divider it inherited. */
.subgroup[hidden] + .subgroup {
  margin-top: 0; padding-top: 0; border-top: 0;
}

.panel__title--sm { font-size: clamp(20px, 2.6vw, 26px); }

.choices--tight { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.choices--tight .choice { padding: 18px 18px 16px; }
.choices--tight .choice__name { font-size: 18px; }

/* ------------------------------------------------------- studio tiles */
.studio__gallery .tile { margin: 0; overflow: hidden; position: relative; }
.tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tile__ph { display: none; }
.tile.is-empty { border: 2px dashed var(--line); background: var(--cream-warm); }
.tile.is-empty .tile__ph {
  display: grid; place-items: center; width: 100%; height: 100%;
  color: #B3A19E; font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
}
.tile--a.is-empty { background: var(--cream-warm); }

/* ------------------------------------------------------- gallery page */
.section--work { padding-top: clamp(36px, 6vw, 70px); }

.gallery {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.shot {
  margin: 0; cursor: zoom-in;
  border-radius: var(--r-md); overflow: hidden;
  background: var(--cream-warm); border: 1.5px solid var(--line);
  transition: transform .2s cubic-bezier(.2,.8,.3,1), box-shadow .2s, border-color .2s;
}
.shot:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--wine-soft); }
.shot img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }
.shot figcaption {
  padding: 12px 16px; font-size: 13.5px; color: var(--ink-soft); background: var(--white);
}

.work__cta {
  margin-top: clamp(48px, 8vw, 88px); padding: clamp(32px, 5vw, 56px);
  background: var(--cream-warm); border-radius: var(--r-xl); text-align: center;
}
.work__cta .section__title { font-size: clamp(28px, 4vw, 44px); margin-bottom: 10px; }
.work__cta .section__sub { margin-bottom: 24px; }

/* ---------------------------------------------------------- lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(28, 12, 17, .93);
  display: grid; grid-template-columns: 64px 1fr 64px;
  grid-template-rows: 1fr auto; align-items: center; justify-items: center;
  padding: 20px; gap: 8px;
  animation: fadeUp .2s ease;
}
.lightbox__img {
  grid-column: 2; grid-row: 1;
  max-width: 100%; max-height: 78vh;
  object-fit: contain; border-radius: var(--r-md);
}
.lightbox__caption {
  grid-column: 1 / -1; grid-row: 2;
  margin: 0; color: var(--gold-soft); font-size: 14px; text-align: center;
}
.lightbox__close {
  position: absolute; top: 16px; right: 18px;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(251,245,234,.14); color: var(--cream);
  border: 0; font-size: 26px; line-height: 1; cursor: pointer;
}
.lightbox__close:hover { background: var(--wine); }

.lightbox__nav {
  grid-row: 1; align-self: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(251,245,234,.14); color: var(--cream);
  border: 0; font-size: 26px; line-height: 1; cursor: pointer;
}
.lightbox__nav:hover { background: var(--wine); }
.lightbox__nav--prev { grid-column: 1; }
.lightbox__nav--next { grid-column: 3; }

@media (max-width: 620px) {
  .lightbox { grid-template-columns: 44px 1fr 44px; }
  .lightbox__nav { width: 38px; height: 38px; font-size: 22px; }
}
