/* Nailed by Jade
   Design system and page styles */

:root {
  --cream: #FBF5F1;
  --cream-2: #F4E9E2;
  --ink: #22141B;
  --ink-soft: #5B4750;
  --ink-faint: #8C7680;
  --line: #E7D6CD;
  --white: #FFFFFF;

  --rose: #E7739A;
  --rose-deep: #C04B79;
  --plum: #5A2A48;
  --lilac: #B79BE8;
  --gold: #D8A657;
  --chrome-a: #F7C9DC;
  --chrome-b: #C6B4F0;
  --chrome-c: #A9E5E0;

  --radius-s: 10px;
  --radius-m: 18px;
  --radius-l: 30px;
  --radius-pill: 999px;

  --shadow-s: 0 2px 10px rgba(90, 42, 72, .06);
  --shadow-m: 0 12px 34px rgba(90, 42, 72, .10);
  --shadow-l: 0 28px 70px rgba(90, 42, 72, .16);

  --serif: "Fraunces", "Playfair Display", Georgia, serif;
  --sans: "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;

  --wrap: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

a { color: var(--rose-deep); text-decoration: none; }
a:hover { color: var(--plum); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
  color: var(--plum);
}

h1 { font-size: clamp(2.6rem, 7vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4.6vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); }

p { margin: 0 0 1.1em; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
.wrap-narrow { max-width: 820px; }

section { padding: 86px 0; position: relative; }
section.tight { padding: 58px 0; }

.eyebrow {
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin: 0 0 14px;
  display: block;
}

.lead { font-size: 1.12rem; color: var(--ink-soft); }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; max-width: 620px; }

.chrome-text {
  background: linear-gradient(100deg, var(--chrome-a), var(--chrome-b) 38%, var(--chrome-c) 62%, var(--chrome-a));
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: shimmer 9s linear infinite;
  filter: saturate(1.25) contrast(1.15) brightness(.92);
}

@keyframes shimmer {
  to { background-position: 220% 0; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: .97rem;
  letter-spacing: .01em;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  text-align: center;
}
.btn-primary {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 55%, var(--plum) 100%);
  color: #fff;
  box-shadow: 0 10px 26px rgba(192, 75, 121, .30);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(192, 75, 121, .38); color: #fff; }
.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--plum);
}
.btn-ghost:hover { background: var(--white); border-color: var(--rose); transform: translateY(-2px); color: var(--plum); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.center .btn-row { justify-content: center; }

/* Header */
.topbar {
  background: linear-gradient(90deg, var(--plum), var(--rose-deep), var(--plum));
  color: #fff;
  text-align: center;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 9px 16px;
}

header.site {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251, 245, 241, .88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 22px;
  max-width: var(--wrap);
  margin: 0 auto;
}
.brand {
  font-family: var(--serif);
  font-size: 1.42rem;
  font-weight: 600;
  color: var(--plum);
  letter-spacing: -.02em;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand:hover { color: var(--rose-deep); }
.brand .dot {
  width: 13px; height: 17px;
  border-radius: 8px 8px 6px 6px / 12px 12px 5px 5px;
  background: linear-gradient(150deg, var(--chrome-a), var(--chrome-b), var(--chrome-c));
  box-shadow: inset 0 -3px 5px rgba(255,255,255,.7), 0 2px 6px rgba(192,75,121,.3);
  flex: none;
}
.nav-links { display: flex; align-items: center; gap: 5px; }
.nav-links a {
  font-size: .93rem;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 9px 14px;
  border-radius: var(--radius-pill);
}
.nav-links a:hover, .nav-links a.active { color: var(--plum); background: var(--cream-2); }
.nav-links .btn { margin-left: 8px; padding: 12px 24px; }
.nav-links .btn:hover { background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 55%, var(--plum) 100%); }

.nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 9px 16px;
  font-weight: 700;
  font-size: .9rem;
  color: var(--plum);
  cursor: pointer;
}

/* Hero */
.hero {
  padding: 74px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: 780px; height: 780px;
  right: -260px; top: -320px;
  background: radial-gradient(circle, rgba(231,115,154,.20), rgba(183,155,232,.14) 45%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  width: 560px; height: 560px;
  left: -240px; bottom: -300px;
  background: radial-gradient(circle, rgba(169,229,224,.24), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 54px;
  align-items: center;
}
.hero h1 { margin-bottom: .32em; }
.hero .lead { font-size: 1.2rem; max-width: 33ch; }

.badge-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}
.badge-strip li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 7px 16px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--plum);
  box-shadow: var(--shadow-s);
}

/* Nail fan art */
.nail-fan {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  padding: 40px 10px;
  filter: drop-shadow(0 26px 44px rgba(90, 42, 72, .20));
}
.nail {
  width: 62px;
  border-radius: 34px 34px 16px 16px / 46px 46px 12px 12px;
  position: relative;
  border: 1px solid rgba(255,255,255,.65);
  box-shadow: inset 0 -10px 18px rgba(255,255,255,.55), inset 0 8px 16px rgba(255,255,255,.35);
  transform-origin: bottom center;
  animation: floaty 6s ease-in-out infinite;
}
.nail::after {
  content: "";
  position: absolute;
  inset: 8% 22% 55% 18%;
  border-radius: 50%;
  background: linear-gradient(160deg, rgba(255,255,255,.75), rgba(255,255,255,0));
}
.nail.n1 { height: 168px; background: linear-gradient(160deg, #FDE3EE, #F4B7D2); transform: rotate(-13deg); animation-delay: 0s; }
.nail.n2 { height: 204px; background: linear-gradient(160deg, #F7D9F2, #CDA9EC); transform: rotate(-6deg); animation-delay: .5s; }
.nail.n3 { height: 232px; background: linear-gradient(160deg, #FFF0F6, #F1C3E0 45%, #BFA6EE); transform: rotate(0deg); animation-delay: 1s; }
.nail.n4 { height: 200px; background: linear-gradient(160deg, #E6F7F4, #A9E5E0); transform: rotate(6deg); animation-delay: 1.5s; }
.nail.n5 { height: 152px; background: linear-gradient(160deg, #FFF6E6, #F0D6A6); transform: rotate(13deg); animation-delay: 2s; }

@keyframes floaty {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}

@media (prefers-reduced-motion: reduce) {
  .nail { animation: none; }
  .chrome-text { animation: none; }
  html { scroll-behavior: auto; }
}

/* Stat / trust strip */
.strip {
  background: var(--plum);
  color: #F7E9F0;
  padding: 0;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.13);
}
.strip-item { background: var(--plum); padding: 30px 24px; text-align: center; }
.strip-item b {
  display: block;
  font-family: var(--serif);
  font-size: 1.7rem;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 4px;
}
.strip-item span { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; opacity: .78; font-weight: 700; }

/* Cards */
.grid { display: grid; gap: 22px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 28px;
  box-shadow: var(--shadow-s);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); border-color: #EFC9D9; }
.card h3 { margin-bottom: .35em; }
.card p:last-child { margin-bottom: 0; }

/* Price cards */
.price-card { text-align: center; padding: 30px 20px; position: relative; }
.price-card .swatch {
  width: 44px;
  border-radius: 26px 26px 10px 10px / 34px 34px 8px 8px;
  margin: 0 auto 18px;
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: inset 0 -8px 14px rgba(255,255,255,.55);
}
.price-card .amount {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--plum);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.price-card .name { font-weight: 800; font-size: .96rem; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); }

/* Tier cards */
.tier {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 26px 26px 26px 30px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-s);
  transition: transform .2s ease, box-shadow .2s ease;
}
.tier:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); }
.tier::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
}
.tier.t1::before { background: linear-gradient(180deg, #F9D8E6, #F2AFCB); }
.tier.t2::before { background: linear-gradient(180deg, #E8D2F6, #C2A2EC); }
.tier.t3::before { background: linear-gradient(180deg, #C9EFEA, #7ED4CB); }
.tier.t4::before { background: linear-gradient(180deg, #F7E1B8, #DFA94F); }
.tier .tier-top { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; margin-bottom: 8px; }
.tier h3 { margin: 0; }
.tier .tier-price {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--rose-deep);
  flex: none;
}
.tier p { margin: 0; color: var(--ink-soft); font-size: .97rem; }

/* Menu table */
.menu-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: var(--shadow-s);
}
.menu-block h3 {
  margin: 0;
  padding: 20px 26px;
  background: var(--cream-2);
  border-bottom: 1px solid var(--line);
  font-size: 1.2rem;
}
.menu-list { list-style: none; margin: 0; padding: 8px 26px 20px; }
.menu-list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
}
.menu-list li:last-child { border-bottom: 0; }
.menu-list .item { font-weight: 700; color: var(--ink); }
.menu-list .note { font-weight: 500; color: var(--ink-faint); font-size: .87rem; display: block; }
.menu-list .dots { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-4px); min-width: 20px; }
.menu-list .cost { font-family: var(--serif); font-size: 1.22rem; color: var(--rose-deep); flex: none; }

/* Calculator */
.calc {
  background: linear-gradient(165deg, #FFFFFF, #FDF3F7);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-l);
  overflow: hidden;
}
.calc-grid { display: grid; grid-template-columns: 1.25fr .75fr; }
.calc-form { padding: 34px; }
.calc-out {
  padding: 34px;
  background: linear-gradient(170deg, var(--plum), #3E1B31);
  color: #F8E9F1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.calc-out h3 { color: #fff; margin-bottom: 4px; }
.field { margin-bottom: 24px; }
.field > label.field-label {
  display: block;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 10px;
}
.opts { display: flex; flex-wrap: wrap; gap: 9px; }
.opt {
  position: relative;
}
.opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.opt span {
  display: inline-block;
  border: 1.5px solid var(--line);
  background: var(--white);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  font-size: .9rem;
  font-weight: 700;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .16s ease;
  user-select: none;
}
.opt span small { display: block; font-weight: 600; font-size: .76rem; color: var(--ink-faint); }
.opt input:checked + span {
  border-color: var(--rose-deep);
  background: linear-gradient(135deg, #FCE7F0, #F6DCF3);
  color: var(--plum);
  box-shadow: 0 4px 14px rgba(192,75,121,.18);
}
.opt input:focus-visible + span { outline: 3px solid rgba(231,115,154,.5); outline-offset: 2px; }
.opt input:disabled + span { opacity: .35; cursor: not-allowed; }

.calc-total {
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 1;
  color: #fff;
  margin: 10px 0 6px;
}
.calc-lines { list-style: none; margin: 18px 0 0; padding: 18px 0 0; border-top: 1px solid rgba(255,255,255,.2); font-size: .92rem; }
.calc-lines li { display: flex; justify-content: space-between; gap: 12px; padding: 5px 0; opacity: .9; }
.calc-lines li.discount { color: #FFD9A8; }
.calc-note { font-size: .84rem; opacity: .75; margin: 18px 0 0; }
.calc-out .btn { margin-top: 22px; }
.calc-out .btn-ghost { border-color: rgba(255,255,255,.4); color: #fff; }
.calc-out .btn-ghost:hover { background: rgba(255,255,255,.12); color: #fff; border-color: #fff; }

/* Hours */
.hours {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 8px 26px;
  box-shadow: var(--shadow-s);
}
.hours dl { margin: 0; }
.hours .row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
}
.hours .row:last-child { border-bottom: 0; }
.hours dt { font-weight: 800; color: var(--plum); margin: 0; }
.hours dd { margin: 0; color: var(--ink-soft); text-align: right; }
.hours .closed dt, .hours .closed dd { color: var(--ink-faint); font-weight: 600; }

.slot-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.slot-list li {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--rose);
  border-radius: var(--radius-s);
  padding: 16px 20px;
  font-weight: 700;
  color: var(--plum);
  box-shadow: var(--shadow-s);
}
.slot-list li small { display: block; font-weight: 600; color: var(--ink-faint); font-size: .84rem; }

/* Policies */
.policy-list { list-style: none; margin: 0; padding: 0; counter-reset: pol; display: grid; gap: 16px; }
.policy-list li {
  counter-increment: pol;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 22px 24px 22px 74px;
  position: relative;
  box-shadow: var(--shadow-s);
}
.policy-list li::before {
  content: counter(pol);
  position: absolute;
  left: 22px; top: 20px;
  width: 34px; height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--plum));
  color: #fff;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
}
.policy-list b { display: block; color: var(--plum); font-size: 1.04rem; margin-bottom: 2px; }
.policy-list p { margin: 0; color: var(--ink-soft); font-size: .97rem; }

/* Panels */
.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 40px;
  box-shadow: var(--shadow-m);
}
.panel-plum {
  background: linear-gradient(160deg, var(--plum), #3A1A2E);
  color: #F6E7EF;
  border: 0;
}
.panel-plum h2, .panel-plum h3 { color: #fff; }
.panel-plum .lead { color: rgba(246,231,239,.82); }
.panel-plum .eyebrow { color: var(--chrome-a); }

/* About */
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: center; }
.portrait {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-l);
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.55), transparent 55%),
    linear-gradient(150deg, #F7CBDF, #C7ACEE 55%, #A9E5E0);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 30px;
  box-shadow: var(--shadow-l);
  position: relative;
  overflow: hidden;
}
.portrait .mono {
  font-family: var(--serif);
  font-size: clamp(3rem, 9vw, 5.4rem);
  color: rgba(90, 42, 72, .55);
  line-height: 1;
}
.portrait img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-l); position: absolute; inset: 0; }

/* FAQ */
.faq { display: grid; gap: 12px; }
details.qa {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 0;
  box-shadow: var(--shadow-s);
  overflow: hidden;
}
details.qa summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 56px 20px 24px;
  font-weight: 800;
  color: var(--plum);
  position: relative;
  font-size: 1.02rem;
}
details.qa summary::-webkit-details-marker { display: none; }
details.qa summary::after {
  content: "+";
  position: absolute;
  right: 22px; top: 50%;
  translate: 0 -50%;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--rose-deep);
  transition: rotate .2s ease;
}
details.qa[open] summary::after { content: "+"; rotate: 45deg; }
details.qa .qa-body { padding: 0 24px 22px; color: var(--ink-soft); }
details.qa .qa-body p:last-child { margin-bottom: 0; }

/* Gallery */
.gal { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gal figure {
  margin: 0;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-m);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-s);
  border: 1px solid var(--line);
}
.gal img { width: 100%; height: 100%; object-fit: cover; transition: scale .4s ease; }
.gal figure:hover img { scale: 1.06; }
.gal figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 16px 14px;
  background: linear-gradient(transparent, rgba(58,26,46,.82));
  color: #fff;
  font-size: .84rem;
  font-weight: 700;
}
.gal .ph {
  display: grid;
  place-items: center;
  height: 100%;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(90,42,72,.45);
  text-align: center;
  padding: 16px;
}
.gal .ph.a { background: linear-gradient(150deg, #FCE0EC, #F3C0DA); }
.gal .ph.b { background: linear-gradient(150deg, #EFE0FB, #CBB0F0); }
.gal .ph.c { background: linear-gradient(150deg, #DFF5F2, #ABE3DE); }
.gal .ph.d { background: linear-gradient(150deg, #FDF0DC, #F0D5A4); }

/* Form */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
label.lbl {
  display: block;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 8px;
}
input[type=text], input[type=email], input[type=tel], input[type=date], select, textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-s);
  padding: 13px 15px;
  transition: border-color .16s ease, box-shadow .16s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(231,115,154,.16);
}
textarea { min-height: 130px; resize: vertical; }
.hp { position: absolute; left: -9999px; opacity: 0; }
.form-consent { font-size: .88rem; color: var(--ink-faint); }

/* Alert */
.alert {
  border-radius: var(--radius-m);
  padding: 20px 24px;
  border: 1px solid #F0D0A8;
  background: #FDF4E6;
  color: #6C4A1B;
  font-size: .96rem;
}
.alert b { color: #5A3B12; }

/* CTA band */
.cta-band {
  background:
    radial-gradient(circle at 15% 20%, rgba(231,115,154,.30), transparent 55%),
    radial-gradient(circle at 85% 80%, rgba(169,229,224,.22), transparent 55%),
    linear-gradient(160deg, var(--plum), #38182C);
  color: #fff;
  text-align: center;
  border-radius: var(--radius-l);
  padding: 62px 34px;
  box-shadow: var(--shadow-l);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.82); max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-band .btn-ghost { border-color: rgba(255,255,255,.45); color: #fff; }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,.14); color: #fff; border-color: #fff; }

/* Footer */
footer.site {
  background: #2A1420;
  color: rgba(247,233,240,.72);
  padding: 62px 0 28px;
  margin-top: 20px;
  font-size: .94rem;
}
footer.site h4 {
  color: #fff;
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
footer.site a { color: rgba(247,233,240,.78); }
footer.site a:hover { color: var(--chrome-a); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 34px; }
.foot-grid ul { list-style: none; margin: 0; padding: 0; }
.foot-grid li { margin-bottom: 9px; }
.foot-brand { font-family: var(--serif); font-size: 1.6rem; color: #fff; margin-bottom: 10px; }
.foot-bottom {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: .84rem;
}

/* Utilities */
.mt0 { margin-top: 0; }
.mb0 { margin-bottom: 0; }
.mt24 { margin-top: 24px; }
.mt40 { margin-top: 40px; }
.reveal { opacity: 0; translate: 0 22px; transition: opacity .6s ease, translate .6s ease; }
.reveal.in { opacity: 1; translate: 0 0; }
.skip {
  position: absolute; left: -9999px;
  background: var(--plum); color: #fff; padding: 12px 20px; border-radius: 0 0 10px 0; z-index: 100;
}
.skip:focus { left: 0; top: 0; color: #fff; }

/* Responsive */
@media (max-width: 1000px) {
  .hero-grid, .about-grid, .calc-grid { grid-template-columns: 1fr; }
  .g4 { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .hero .lead { max-width: none; }
  .nail-fan { order: -1; padding-top: 0; }
}

@media (max-width: 780px) {
  body { font-size: 16px; }
  section { padding: 62px 0; }
  .nav-toggle { display: inline-block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 14px 18px 22px;
    box-shadow: var(--shadow-m);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 14px; }
  .nav-links .btn { margin: 8px 0 0; }
  header.site { position: sticky; }
  .nav { position: relative; }
  .g2, .g3 { grid-template-columns: 1fr; }
  .gal { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .panel { padding: 26px; }
  .calc-form, .calc-out { padding: 26px; }
  .calc-total { font-size: 3.2rem; }
  .cta-band { padding: 44px 22px; }
  .nail { width: 46px; }
  .nail.n1 { height: 126px; } .nail.n2 { height: 152px; } .nail.n3 { height: 174px; }
  .nail.n4 { height: 150px; } .nail.n5 { height: 114px; }
}

@media (max-width: 460px) {
  .g4, .gal { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .strip-grid { grid-template-columns: 1fr 1fr; }
  .btn { width: 100%; }
  .badge-strip li { font-size: .76rem; }
}

@media print {
  header.site, footer.site, .nav, .cta-band, .btn { display: none !important; }
  body { background: #fff; }
}
