/* ==========================================================================
   Alejandra's Nails — Soft & Luxe
   Palette: blush / warm cream / soft ivory / muted mauve + champagne accents
   ========================================================================== */

:root {
  /* Type */
  --font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-body: 'Satoshi', 'Work Sans', 'Segoe UI', system-ui, sans-serif;

  --text-xs: clamp(0.75rem, 0.72rem + 0.15vw, 0.8125rem);
  --text-sm: clamp(0.875rem, 0.84rem + 0.2vw, 0.9375rem);
  --text-base: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  --text-lg: clamp(1.125rem, 1.05rem + 0.4vw, 1.375rem);
  --text-xl: clamp(1.5rem, 1.25rem + 1.1vw, 2.125rem);
  --text-2xl: clamp(2.125rem, 1.4rem + 3vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1.4rem + 4.4vw, 4.5rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --measure: 62ch;
  --shell: 76rem;
  --section-pad: clamp(var(--space-16), 9vw, var(--space-32));

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

:root,
[data-theme='light'] {
  --color-bg: #faf4f0;
  --color-surface: #fffbf8;
  --color-surface-2: #f6ebe6;
  --color-blush: #f0dcd8;
  --color-blush-soft: #f7e8e4;
  --color-divider: #e7d5d0;
  --color-hairline: #ddc9c4;

  --color-text: #33252a;
  --color-text-muted: #6f5d60;
  --color-text-faint: #776265;
  --color-text-inverse: #fffaf7;

  --color-primary: #8a5563; /* muted mauve */
  --color-primary-hover: #6f414e;
  --color-champagne: #866233; /* restrained gold — AA on cream */
  --color-gold-decor: #a97f47; /* decorative marks only */
  --color-champagne-soft: #d8c1a0;
  --color-focus: #8a5563;

  --shadow-soft: 0 1px 2px rgba(74, 47, 53, 0.04), 0 12px 30px -18px rgba(74, 47, 53, 0.28);
  --shadow-lift: 0 2px 6px rgba(74, 47, 53, 0.06), 0 26px 50px -24px rgba(74, 47, 53, 0.34);
}

[data-theme='dark'] {
  --color-bg: #1c1518;
  --color-surface: #241b1f;
  --color-surface-2: #2c2226;
  --color-blush: #3a2b30;
  --color-blush-soft: #2f2429;
  --color-divider: #3d2f34;
  --color-hairline: #4a393f;

  --color-text: #f7ece8;
  --color-text-muted: #c3aeb0;
  --color-text-faint: #9c8689;
  --color-text-inverse: #241b1f;

  --color-primary: #e7b9c2;
  --color-primary-hover: #f3d0d6;
  --color-champagne: #dcb887;
  --color-gold-decor: #dcb887;
  --color-champagne-soft: #6d573f;
  --color-focus: #e7b9c2;

  --shadow-soft: 0 12px 30px -18px rgba(0, 0, 0, 0.7);
  --shadow-lift: 0 26px 50px -24px rgba(0, 0, 0, 0.8);
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
}

/* ---------- Layout helpers ---------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: clamp(var(--space-5), 5vw, var(--space-12));
}
.section {
  padding-block: var(--section-pad);
}
.section--tint {
  background: var(--color-surface-2);
}
.eyebrow {
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-champagne);
  font-weight: 500;
  margin-bottom: var(--space-4);
}
.section-head {
  max-width: 46ch;
  margin-bottom: clamp(var(--space-10), 5vw, var(--space-16));
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-variation-settings: 'SOFT' 0, 'WONK' 1, 'opsz' 40;
  letter-spacing: -0.01em;
}
.section-head p {
  margin-top: var(--space-4);
  color: var(--color-text-muted);
  max-width: var(--measure);
}
.hairline {
  height: 1px;
  background: var(--color-hairline);
  border: 0;
  opacity: 0.8;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease),
    transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.btn--primary {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  box-shadow: var(--shadow-soft);
}
.btn--primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}
.btn--ghost {
  border: 1px solid var(--color-hairline);
  color: var(--color-text);
  background: transparent;
}
.btn--ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
}
.btn--sm {
  padding: 0.6rem 1.15rem;
}

/* ---------- Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: color-mix(in oklab, var(--color-bg) 88%, transparent);
  backdrop-filter: blur(14px) saturate(120%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease), background-color 0.4s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--color-divider);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  min-height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-text);
}
.brand svg {
  color: var(--color-primary);
  flex: none;
}
.brand__name {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  line-height: 1.15;
  letter-spacing: 0.005em;
  font-variation-settings: 'WONK' 1, 'opsz' 20;
}
.brand__name span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.625rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  margin-top: 2px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(var(--space-4), 2vw, var(--space-8));
  margin: 0;
}
.nav__links a {
  font-size: var(--text-sm);
  text-decoration: none;
  color: var(--color-text-muted);
  position: relative;
  padding-block: var(--space-1);
  transition: color 0.3s var(--ease);
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--color-champagne);
  transition: right 0.35s var(--ease);
}
.nav__links a:hover,
.nav__links a[aria-current='true'] {
  color: var(--color-text);
}
.nav__links a:hover::after,
.nav__links a[aria-current='true']::after {
  right: 0;
}
.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.icon-btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-hairline);
  color: var(--color-text-muted);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.icon-btn:hover {
  color: var(--color-text);
  border-color: var(--color-primary);
}
.nav-toggle {
  display: none;
}
[data-theme='dark'] .theme-toggle .moon,
.theme-toggle .sun {
  display: none;
}
[data-theme='dark'] .theme-toggle .sun {
  display: block;
}
.theme-toggle .moon {
  display: block;
}

@media (max-width: 860px) {
  ul.nav__links {
    position: fixed;
    inset: 72px 0 auto;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-5);
    background: var(--color-surface);
    padding: var(--space-8) clamp(var(--space-5), 5vw, var(--space-12)) var(--space-10);
    border-bottom: 1px solid var(--color-divider);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  }
  .nav__links.is-open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .nav__links a {
    font-size: var(--text-lg);
    font-family: var(--font-display);
    color: var(--color-text);
  }
  .nav-toggle {
    display: grid;
  }
  .nav__cta {
    display: none;
  }
}

/* ---------- Hero ---------- */
.hero {
  padding-block: clamp(var(--space-12), 7vw, var(--space-24)) 0;
  overflow: clip;
}
.hero__grid {
  display: grid;
  gap: clamp(var(--space-8), 5vw, var(--space-16));
  align-items: center;
}
@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1.02fr 0.98fr;
  }
}
.hero__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--color-champagne);
  margin-bottom: var(--space-5);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-variation-settings: 'SOFT' 0, 'WONK' 1, 'opsz' 72;
  letter-spacing: -0.02em;
  line-height: 0.98;
}
.hero h1 em {
  font-style: italic;
  color: var(--color-primary);
}
.hero__lede {
  margin-top: var(--space-6);
  max-width: 46ch;
  color: var(--color-text-muted);
  font-size: var(--text-base);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-8);
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3) var(--space-6);
  margin-top: var(--space-10);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-hairline);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-faint);
}
.hero__meta strong {
  color: var(--color-text-muted);
  font-weight: 500;
}
.hero__figure {
  position: relative;
}
.hero__figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) * 2) calc(var(--radius-lg) * 2) var(--radius-lg)
    var(--radius-lg);
  box-shadow: var(--shadow-lift);
}
.hero__badge {
  position: absolute;
  bottom: clamp(-14px, -1vw, 0px);
  left: clamp(-8px, -2vw, 0px);
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--shadow-soft);
  max-width: 15rem;
}
.hero__badge p {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.5;
}
.hero__badge .stars {
  margin-bottom: var(--space-2);
}

/* ---------- Marquee-ish value strip ---------- */
.strip {
  border-block: 1px solid var(--color-hairline);
  margin-top: clamp(var(--space-16), 8vw, var(--space-24));
  background: var(--color-surface);
}
.strip__inner {
  display: grid;
  gap: var(--space-6);
  padding-block: var(--space-8);
}
@media (min-width: 700px) {
  .strip__inner {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-10);
  }
}
.strip__item h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}
.strip__item p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

/* ---------- Services ---------- */
.menu {
  display: grid;
  gap: clamp(var(--space-10), 5vw, var(--space-16)) clamp(var(--space-10), 6vw, var(--space-20));
}
@media (min-width: 820px) {
  .menu {
    grid-template-columns: 1fr 1fr;
  }
}
.menu__group h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
}
.menu__group h3 span {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-faint);
}
.menu__list {
  margin-top: var(--space-5);
  list-style: none;
  padding: 0;
}
.menu__list li {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: var(--space-3);
  padding-block: var(--space-4);
  border-bottom: 1px solid var(--color-hairline);
}
.menu__list li:first-child {
  border-top: 1px solid var(--color-hairline);
}
.menu__name {
  font-size: var(--text-base);
}
.menu__name small {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  margin-top: 2px;
  letter-spacing: 0.01em;
}
.menu__price {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-variation-settings: 'WONK' 0;
  color: var(--color-primary);
  white-space: nowrap;
}
.menu__note {
  margin-top: clamp(var(--space-10), 5vw, var(--space-16));
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-hairline);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4) var(--space-8);
  align-items: center;
  justify-content: space-between;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  gap: clamp(var(--space-3), 1.4vw, var(--space-5));
  grid-template-columns: repeat(2, 1fr);
}
.gallery {
  grid-auto-flow: dense;
}
.gallery__item--wide {
  grid-column: span 2;
}
@media (min-width: 1040px) {
  .gallery {
    grid-template-columns: repeat(5, 1fr);
  }
}
.gallery__item {
  position: relative;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-surface-2);
  display: block;
  width: 100%;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.45s var(--ease);
}
.gallery__item--wide img {
  aspect-ratio: 8 / 5;
}
.gallery__item:hover,
.gallery__item:focus-visible {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}
.gallery__item:hover img {
  transform: scale(1.04);
}
.gallery__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: var(--space-8) var(--space-4) var(--space-4);
  background: linear-gradient(to top, rgba(51, 37, 42, 0.68), rgba(51, 37, 42, 0));
  color: #fffaf7;
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: left;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.gallery__item:hover .gallery__caption,
.gallery__item:focus-visible .gallery__caption {
  opacity: 1;
  transform: none;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: clamp(var(--space-4), 4vw, var(--space-12));
  background: rgba(40, 27, 31, 0.86);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.lightbox__figure {
  max-width: min(58rem, 100%);
  text-align: center;
}
.lightbox img {
  max-height: 76vh;
  width: auto;
  margin-inline: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
}
.lightbox figcaption {
  margin-top: var(--space-4);
  color: #f3e3df;
  font-size: var(--text-sm);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.lightbox__close,
.lightbox__nav button {
  position: absolute;
  color: #fffaf7;
  border: 1px solid rgba(255, 250, 247, 0.35);
  border-radius: var(--radius-pill);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  transition: background-color 0.3s var(--ease);
}
.lightbox__close {
  top: var(--space-4);
  right: var(--space-4);
}
.lightbox__nav .prev {
  left: var(--space-4);
  top: 50%;
  transform: translateY(-50%);
}
.lightbox__nav .next {
  right: var(--space-4);
  top: 50%;
  transform: translateY(-50%);
}
.lightbox__close:hover,
.lightbox__nav button:hover {
  background: rgba(255, 250, 247, 0.16);
}

/* ---------- Booking ---------- */
.booking__grid {
  display: grid;
  gap: clamp(var(--space-8), 5vw, var(--space-16));
  align-items: start;
}
@media (min-width: 940px) {
  .booking__grid {
    grid-template-columns: 0.8fr 1.2fr;
  }
}
.booking__aside p {
  color: var(--color-text-muted);
  margin-top: var(--space-4);
  max-width: 34ch;
}
.booking__aside dl {
  margin-top: var(--space-8);
  display: grid;
  gap: var(--space-4);
}
.booking__aside dt {
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-faint);
}
.booking__aside dd {
  margin: 2px 0 0;
  font-size: var(--text-sm);
}
.booking__aside a {
  text-decoration: none;
  border-bottom: 1px solid var(--color-hairline);
  padding-bottom: 1px;
}
.booking__aside a:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.form-card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  padding: clamp(var(--space-6), 3.5vw, var(--space-10));
  box-shadow: var(--shadow-soft);
}
.form-grid {
  display: grid;
  gap: var(--space-5);
}
@media (min-width: 620px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
  .field--full {
    grid-column: 1 / -1;
  }
}
.field label {
  display: block;
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--color-bg);
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
  font-size: var(--text-sm);
  color: var(--color-text);
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.field textarea {
  min-height: 110px;
  resize: vertical;
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%236f5d60' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px 8px;
  background-position: right 0.95rem center;
  background-repeat: no-repeat;
  padding-right: 2.5rem;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--color-primary);
}
.field .error {
  display: block;
  min-height: 1rem;
  margin-top: var(--space-2);
  font-size: var(--text-xs);
  letter-spacing: 0.02em;
  text-transform: none;
  color: #a33a4c;
}
[data-theme='dark'] .field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23c3aeb0' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
[data-theme='dark'] .field .error {
  color: #f0a8b2;
}
.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: #c05a68;
}
.form-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4);
  justify-content: space-between;
  margin-top: var(--space-8);
}
.form-footer p {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  max-width: 30ch;
}
.form-success {
  display: none;
  text-align: center;
  padding-block: var(--space-6);
}
.form-card.is-sent .form-body {
  display: none;
}
.form-card.is-sent .form-success {
  display: block;
  animation: fadeUp 0.6s var(--ease) both;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  margin-top: var(--space-5);
}
.form-success p {
  color: var(--color-text-muted);
  margin: var(--space-3) auto 0;
  max-width: 40ch;
  font-size: var(--text-sm);
}
.form-success .seal {
  width: 56px;
  height: 56px;
  margin-inline: auto;
  color: var(--color-champagne);
}
.form-success button {
  margin-top: var(--space-6);
}

/* ---------- Reviews ---------- */
.reviews {
  display: grid;
  gap: clamp(var(--space-5), 2.5vw, var(--space-8));
}
@media (min-width: 780px) {
  .reviews {
    grid-template-columns: repeat(2, 1fr);
  }
}
.review {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  padding: clamp(var(--space-6), 3vw, var(--space-8));
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.review blockquote {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  line-height: 1.45;
  font-variation-settings: 'SOFT' 0, 'WONK' 1, 'opsz' 24;
  margin: 0;
}
.review figcaption {
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  margin-top: auto;
}
.stars {
  display: flex;
  gap: 3px;
  color: var(--color-gold-decor);
}
.stars svg {
  width: 15px;
  height: 15px;
}

/* ---------- Contact ---------- */
.contact__grid {
  display: grid;
  gap: clamp(var(--space-8), 5vw, var(--space-16));
  align-items: start;
}
@media (min-width: 900px) {
  .contact__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.hours {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hours li {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  padding-block: var(--space-3);
  border-bottom: 1px solid var(--color-hairline);
  font-size: var(--text-sm);
}
.hours li:first-child {
  border-top: 1px solid var(--color-hairline);
}
.hours .day {
  color: var(--color-text-muted);
}
.hours li.is-closed .time {
  color: var(--color-text-faint);
}
.hours li.is-today {
  color: var(--color-text);
}
.hours li.is-today .day {
  color: var(--color-primary);
  font-weight: 500;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin-top: var(--space-8);
  display: grid;
  gap: var(--space-5);
}
.contact-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: var(--space-4);
  align-items: start;
  font-size: var(--text-sm);
}
.contact-list svg {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--color-champagne);
}
.contact-list a {
  text-decoration: none;
  border-bottom: 1px solid var(--color-hairline);
}
.contact-list a:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.map-card {
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}
.map-card svg {
  width: 100%;
  height: auto;
  display: block;
}
.map-card__foot {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3) var(--space-5);
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  border-top: 1px solid var(--color-divider);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.socials {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-8);
  list-style: none;
  padding: 0;
}
.socials a {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-hairline);
  display: grid;
  place-items: center;
  color: var(--color-text-muted);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.socials a:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}
.socials svg {
  width: 17px;
  height: 17px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-surface-2);
  border-top: 1px solid var(--color-divider);
  padding-block: clamp(var(--space-12), 6vw, var(--space-20)) var(--space-8);
}
.footer__grid {
  display: grid;
  gap: var(--space-10);
}
@media (min-width: 780px) {
  .footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: var(--space-12);
  }
}
.footer__grid h3 {
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  margin-bottom: var(--space-4);
  font-family: var(--font-body);
  font-weight: 500;
}
.footer__grid ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: var(--space-3);
  font-size: var(--text-sm);
}
.footer__grid a {
  text-decoration: none;
  color: var(--color-text-muted);
  transition: color 0.3s var(--ease);
}
.footer__grid a:hover {
  color: var(--color-text);
}
.footer__about p {
  margin-top: var(--space-5);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  max-width: 34ch;
}
.footer__bottom {
  margin-top: clamp(var(--space-10), 5vw, var(--space-16));
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-divider);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3) var(--space-6);
  justify-content: space-between;
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}
.footer__bottom p {
  letter-spacing: 0.04em;
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Skip link */
.skip-link {
  position: absolute;
  left: var(--space-4);
  top: var(--space-2);
  z-index: 100;
  background: var(--color-surface);
  color: var(--color-text);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-divider);
  font-size: var(--text-xs);
  transform: translateY(-200%);
  transition: transform 0.25s var(--ease);
}
.skip-link:focus {
  transform: none;
}

/* Nav CTA visibility */
.nav__cta-mobile {
  display: none;
}
@media (max-width: 860px) {
  .nav__cta-mobile {
    display: block;
    margin-top: var(--space-2);
  }
  .nav__cta-mobile a {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-text-inverse);
  }
  .nav__cta-mobile a::after {
    display: none;
  }
}

/* ---------- Book by call or text card ---------- */
.btn--lg {
  padding: 1.05rem 1.9rem;
  font-size: var(--text-base);
}
.contact-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.contact-card__lead {
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--color-text);
  margin: 0;
}
.contact-card__lead em {
  display: block;
  margin-top: var(--space-2);
  color: var(--color-text-muted);
  font-style: italic;
}
.contact-card__actions {
  display: grid;
  gap: var(--space-3);
}
@media (min-width: 520px) {
  .contact-card__actions {
    grid-template-columns: 1fr 1fr;
  }
}
.contact-card__actions .btn {
  width: 100%;
  white-space: nowrap;
}
.contact-card__actions svg {
  flex: none;
}
.contact-card__note {
  margin: calc(var(--space-4) * -1) 0 0;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-align: center;
}
.contact-card__body {
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-hairline);
}
.contact-card__body h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  margin: 0 0 var(--space-4);
}
.contact-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-3);
}
.contact-card__list li {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--color-text-muted);
}
.contact-card__list li span {
  flex: none;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--color-blush-soft);
  color: var(--color-primary);
  font-size: 0.72rem;
  font-weight: 600;
  margin-top: 0.1rem;
}
.contact-card__foot {
  display: grid;
  gap: var(--space-4);
  padding-top: var(--space-5);
  border-top: 1px solid var(--color-hairline);
}
@media (min-width: 620px) {
  .contact-card__foot {
    grid-template-columns: 1fr 1fr;
  }
}
.contact-card__foot dt {
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-champagne);
  margin-bottom: var(--space-2);
}
.contact-card__foot dd {
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.55;
  color: var(--color-text-muted);
}

/* ---------- Featured services (manicures & pedicures) ---------- */
.menu-feature {
  display: grid;
  gap: var(--space-5);
  margin-bottom: var(--space-10);
}
@media (min-width: 900px) {
  .menu-feature {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
  }
  .menu-feature__head {
    grid-column: 1 / -1;
  }
}
.menu-feature__head {
  border-bottom: 1px solid var(--color-hairline);
  padding-bottom: var(--space-4);
}
.menu-feature__head h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  margin: 0;
}
.menu-feature__head p {
  margin: var(--space-2) 0 0;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  padding: clamp(var(--space-5), 2.6vw, var(--space-7));
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  height: 100%;
}
.feature-card__top {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-2) var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--color-hairline);
}
.feature-card__top h4 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  margin: 0;
  line-height: 1.2;
}
.feature-card__price {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-primary);
  white-space: nowrap;
}
.feature-card__price span {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.feature-card p {
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.7;
  color: var(--color-text-muted);
}
.feature-card__alt {
  margin-top: auto !important;
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-hairline);
  font-size: var(--text-sm);
}
.feature-card__alt strong {
  color: var(--color-primary);
  font-weight: 500;
}
.feature-card__note {
  background: var(--color-surface-2);
  border-radius: var(--radius);
  padding: var(--space-4);
  font-size: var(--text-xs) !important;
  line-height: 1.65 !important;
}
.feature-card__note strong {
  color: var(--color-champagne);
  font-weight: 500;
}

.footer__partner {
  margin-top: var(--space-4);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}
.footer__partner a {
  color: var(--color-champagne);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer__partner a:hover {
  color: var(--color-primary);
}

/* ---------- Touch tap targets (44px minimum on phones/tablets) ---------- */
@media (max-width: 860px) {
  /* Mobile nav panel: full-width rows, comfortable height */
  .nav__links a {
    display: flex;
    align-items: center;
    align-self: stretch;
    min-height: 48px;
    padding-block: var(--space-2);
  }
  ul.nav__links {
    gap: var(--space-2);
  }
  .nav__links li {
    width: 100%;
  }
  .nav__links a {
    width: 100%;
  }

  /* Brand lockup and icon buttons */
  .brand {
    min-height: 44px;
  }
  .icon-btn,
  .nav-toggle {
    min-width: 44px;
    min-height: 44px;
  }
  .btn--sm {
    min-height: 44px;
  }

  /* Contact links (Visit section + footer): padding grows the hit area,
     negative margin cancels the layout shift so spacing looks unchanged */
  .contact-list a,
  .booking__aside dd a,
  .footer__partner a {
    display: inline-block;
    padding-block: 11px;
    margin-block: -11px;
  }

  /* Footer link lists: inline-block so trailing text like "· calls" stays
     on the same line, with padding for a 44px-tall hit area */
  .footer__grid ul {
    gap: var(--space-2);
  }
  .footer__grid ul a {
    display: inline-block;
    padding-block: 12px;
  }

  /* Social icons */
  .socials {
    gap: var(--space-4);
  }
  .socials a {
    width: 48px;
    height: 48px;
  }

  /* Footer bottom row */
  .footer__bottom a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
}
