/* ============================================================
   Amber Hair & Nails — styles.css
   Palette: Balinese ivory / espresso ink / clay terracotta / old gold
   Type: Fraunces (display) + Karla (text)
   Motif: the arch. Everything else stays quiet.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --paper: #f6efe3;
  --paper-2: #efe4d2;
  --card: #fffdf8;
  --ink: #33241a;
  --ink-soft: #6b5340;
  --clay: #a6522f;
  --clay-deep: #8c4224;
  --gold: #c9a24b;
  --gold-deep: #8f6d26;
  --hairline: rgba(51, 36, 26, 0.16);
  --hairline-soft: rgba(51, 36, 26, 0.09);
  --shadow: 0 18px 44px -22px rgba(51, 36, 26, 0.28);

  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Karla", "Segoe UI", system-ui, sans-serif;

  --radius: 20px;
  --radius-arch: 999px 999px 18px 18px;

  --header-h: 4.5rem;
  --container: 1120px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 550;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font: inherit; color: inherit; }

::selection {
  background: var(--clay);
  color: var(--paper);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(var(--container), 100%);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4.5vw, 2.5rem);
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.6rem 1rem;
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  text-decoration: none;
  transform: translateY(-300%);
  transition: transform 0.25s ease;
}
.skip-link:focus-visible {
  transform: translateY(0);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.72em 1.45em;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease,
    border-color 0.25s ease, transform 0.25s ease;
}
.btn:active { transform: translateY(1px); }

.btn--solid {
  background: var(--clay);
  color: #fff8ef;
}
.btn--solid:hover {
  background: var(--clay-deep);
}

.btn--ghost {
  border-color: rgba(246, 239, 227, 0.55);
  color: var(--paper);
}
.btn--ghost:hover {
  background: rgba(246, 239, 227, 0.12);
  border-color: rgba(246, 239, 227, 0.8);
}

.btn--cream {
  background: var(--paper);
  color: var(--clay-deep);
}
.btn--cream:hover {
  background: #fff8ef;
}

.btn--lg {
  font-size: 1.02rem;
  padding: 0.85em 1.7em;
}

.wa-icon {
  width: 1.15em;
  height: 1.15em;
  flex: none;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 60;
  color: var(--paper);
  transition: background-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(246, 239, 227, 0.94);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--hairline-soft);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}
.brand-mark {
  width: 2.6rem;
  height: 2.6rem;
  flex: none;
  border-radius: 10px;
  box-shadow: 0 6px 16px -8px rgba(51, 36, 26, 0.5);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 560;
  letter-spacing: 0.01em;
}
.brand-sub {
  font-size: 0.7rem;
  letter-spacing: 0.09em;
  opacity: 0.82;
}

.site-nav ul {
  display: none;
  gap: 2rem;
}

.site-nav a:not(.btn) {
  position: relative;
  padding-block: 0.35rem;
  font-size: 0.97rem;
  font-weight: 500;
  text-decoration: none;
  opacity: 0.9;
}
.site-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.site-nav a:not(.btn):hover::after,
.site-nav a:not(.btn).is-active::after {
  transform: scaleX(1);
}
.site-nav a:not(.btn).is-active { opacity: 1; }

.nav-cta {
  display: none;
  padding: 0.6em 1.25em;
}

/* Hamburger */
.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.6rem;
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.menu-toggle__bars {
  position: relative;
  width: 1.35rem;
  height: 11px;
}
.menu-toggle__bars::before,
.menu-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s ease, top 0.3s ease;
}
.menu-toggle__bars::before { top: 0; }
.menu-toggle__bars::after { top: 9px; }
.nav-open .menu-toggle__bars::before { top: 4px; transform: rotate(45deg); }
.nav-open .menu-toggle__bars::after { top: 4px; transform: rotate(-45deg); }

/* Mobile nav panel */
.nav-open { overflow: hidden; }
.nav-open .site-nav {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(94vh, 60rem);
  min-height: min(94svh, 60rem);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--paper);
  padding-block: calc(var(--header-h) + 3rem) clamp(4.5rem, 10vw, 7rem);
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(12deg, rgba(35, 22, 13, 0.82) 8%, rgba(35, 22, 13, 0.38) 46%, rgba(35, 22, 13, 0.18) 78%),
    linear-gradient(180deg, rgba(35, 22, 13, 0.5), transparent 32%);
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__kicker {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.75rem, 8.5vw, 5.25rem);
  line-height: 1.02;
  max-width: 12ch;
  margin-bottom: 1.4rem;
}

.hero__lede {
  max-width: 46ch;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.65;
  color: rgba(246, 239, 227, 0.9);
  margin-bottom: 2.2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2.4rem;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.92rem;
  color: rgba(246, 239, 227, 0.85);
}
.hero__meta .dot { opacity: 0.5; }
.stars {
  color: var(--gold);
  letter-spacing: 0.18em;
  font-size: 0.85rem;
}

.hero__cue {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 2.2rem;
  translate: -50% 0;
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(246, 239, 227, 0.45);
  border-radius: 50%;
  color: var(--paper);
  animation: cue-drift 2.6s ease-in-out infinite;
}
.hero__cue svg { width: 1.2rem; height: 1.2rem; }
.hero__cue:hover { background: rgba(246, 239, 227, 0.12); }

@keyframes cue-drift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* Hero entrance — the one orchestrated moment */
.js [data-hero] > * {
  opacity: 0;
  animation: rise 0.9s cubic-bezier(0.2, 0.65, 0.25, 1) forwards;
}
.js [data-hero] > :nth-child(1) { animation-delay: 0.15s; }
.js [data-hero] > :nth-child(2) { animation-delay: 0.28s; }
.js [data-hero] > :nth-child(3) { animation-delay: 0.41s; }
.js [data-hero] > :nth-child(4) { animation-delay: 0.54s; }
.js [data-hero] > :nth-child(5) { animation-delay: 0.67s; }

@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}

/* ---------- Open-status chip ---------- */
.open-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.95rem;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  background: var(--card);
  color: var(--ink);
}
.open-chip__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}
.open-chip.is-open .open-chip__dot { background: #4e7a52; }
.open-chip.is-closed .open-chip__dot { background: var(--clay); }

.open-chip--hero {
  position: absolute;
  z-index: 2;
  right: clamp(1.25rem, 4.5vw, 2.5rem);
  bottom: clamp(4.5rem, 10vw, 7rem);
  background: rgba(35, 22, 13, 0.42);
  border-color: rgba(246, 239, 227, 0.35);
  color: var(--paper);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

/* ---------- Sections ---------- */
.section {
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
}
.section--alt {
  background: var(--paper-2);
}

.section-head {
  display: grid;
  gap: 0.9rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-head h2 {
  font-size: clamp(2rem, 3.4vw + 0.8rem, 3rem);
}
.section-head h2::before {
  content: "";
  display: block;
  width: 3.5rem;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1rem;
}
.section-head p {
  max-width: 46ch;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
}
.section-head p a {
  color: var(--clay-deep);
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}

@media (min-width: 900px) {
  .section-head {
    grid-template-columns: 1.05fr 1fr;
    align-items: end;
    gap: 3rem;
  }
  .section-head p {
    padding-bottom: 0.35rem;
  }
}

/* ---------- Menu card ---------- */
.menu-card {
  background: var(--card);
  border: 1px solid var(--hairline-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1.75rem, 4.5vw, 3.25rem);
}

.menu-groups {
  display: grid;
  gap: 2.25rem;
}
.menu-group + .menu-group {
  border-top: 1px solid var(--hairline-soft);
  padding-top: 2rem;
}

.menu-group h3 {
  font-size: 1.35rem;
  margin-bottom: 1.1rem;
}
.menu-group h3::after {
  content: "";
  display: block;
  width: 1.9rem;
  height: 2px;
  background: var(--gold);
  margin-top: 0.45rem;
}

.menu {
  display: grid;
  gap: 0.95rem;
}

.menu-item__top {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
}
.menu-item__name {
  font-weight: 500;
  font-size: 0.99rem;
}
.menu-item__leader {
  flex: 1;
  min-width: 1.4rem;
  border-bottom: 1px dotted rgba(51, 36, 26, 0.35);
  transform: translateY(-0.28em);
}
.menu-item__price {
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 560;
  color: var(--clay-deep);
  white-space: nowrap;
}
.menu-item__price em {
  font-size: 0.72em;
  color: var(--ink-soft);
  margin-right: 0.15em;
}
.menu-item__unit {
  font-family: var(--font-body);
  font-size: 0.72em;
  color: var(--ink-soft);
}
.menu-item__note {
  display: block;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 0.15rem;
}

.menu-card__footnote {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--hairline-soft);
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

@media (min-width: 1000px) {
  .menu-groups {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
  .menu-group {
    padding-inline: 2.25rem;
  }
  .menu-group:first-child {
    padding-left: 0;
  }
  .menu-group:last-child {
    padding-right: 0;
  }
  .menu-group + .menu-group {
    border-top: 0;
    padding-top: 0;
    border-left: 1px solid var(--hairline-soft);
  }
}

/* ---------- Package band ---------- */
.package {
  display: grid;
  gap: 1.6rem;
  margin-top: 1.75rem;
  padding: clamp(1.75rem, 4.5vw, 2.75rem);
  background: var(--clay);
  color: #fff3e6;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.package h3 {
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  margin-bottom: 0.55rem;
}
.package p {
  max-width: 52ch;
  color: rgba(255, 243, 230, 0.88);
  font-size: 0.98rem;
}

.package__action {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.package__price {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 2.7rem);
  font-weight: 560;
  line-height: 1;
  color: #fff8ef;
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
}
.package__was {
  font-size: 0.44em;
  font-weight: 400;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  opacity: 0.65;
}

@media (min-width: 900px) {
  .package {
    grid-template-columns: 1.4fr auto;
    align-items: center;
  }
}

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.8rem, 2vw, 1.25rem);
}

.gallery li { display: flex; }

.gallery__zoom {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  overflow: hidden;
  border-radius: 14px;
}
/* the arch motif — on alternating tiles */
.gallery li:nth-child(odd) .gallery__zoom {
  border-radius: var(--radius-arch);
}

.gallery__zoom img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.65, 0.25, 1);
}
.gallery__zoom:hover img,
.gallery__zoom:focus-visible img {
  transform: scale(1.05);
}

.gallery__caption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 2.2rem 1.1rem 0.9rem;
  color: #fff8ef;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(35, 22, 13, 0.65));
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
.gallery__zoom:hover .gallery__caption,
.gallery__zoom:focus-visible .gallery__caption {
  opacity: 1;
  transform: none;
}

@media (min-width: 900px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---------- Lightbox ---------- */
.lightbox:not([open]) {
  display: none;
}
.lightbox {
  border: 0;
  padding: 0;
  background: transparent;
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  height: 100dvh;
  max-height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.lightbox::backdrop {
  background: rgba(30, 19, 11, 0.72);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.lightbox[open] {
  animation: lb-in 0.35s cubic-bezier(0.2, 0.65, 0.25, 1);
}
@keyframes lb-in {
  from { opacity: 0; transform: scale(0.965); }
  to { opacity: 1; transform: none; }
}

.lightbox figure {
  margin: 0;
  display: grid;
  justify-items: center;
}
.lightbox img {
  max-width: min(92vw, 1040px);
  max-height: 78vh;
  width: auto;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.55);
}
.lightbox figcaption {
  margin-top: 0.9rem;
  color: #f6efe3;
  font-size: 0.92rem;
  text-align: center;
  max-width: 60ch;
}

.lightbox__close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid rgba(246, 239, 227, 0.4);
  border-radius: 50%;
  background: rgba(35, 22, 13, 0.5);
  color: var(--paper);
  cursor: pointer;
  transition: background-color 0.25s ease;
}
.lightbox__close:hover { background: rgba(35, 22, 13, 0.75); }
.lightbox__close svg { width: 1.15rem; height: 1.15rem; }

/* ---------- About ---------- */
.about {
  display: grid;
  gap: 3rem;
}

.about__media {
  position: relative;
  max-width: 26rem;
  margin-inline: auto;
}

.about__img-main {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-arch);
}

.about__img-small {
  position: absolute;
  left: -12%;
  bottom: -7%;
  width: 42%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 16px;
  border: 6px solid var(--paper);
  box-shadow: var(--shadow);
}

.about__badge {
  position: absolute;
  right: -6%;
  top: 8%;
  display: grid;
  justify-items: center;
  gap: 0.2rem;
  width: 6.4rem;
  height: 6.4rem;
  place-content: center;
  text-align: center;
  background: var(--card);
  border: 1px solid var(--gold);
  border-radius: 50%;
  box-shadow: var(--shadow);
}
.about__badge strong {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 560;
  color: var(--clay-deep);
  line-height: 1;
}
.about__badge span {
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  line-height: 1.25;
}

.about__body h2 {
  font-size: clamp(2rem, 3.4vw + 0.8rem, 3rem);
  margin-bottom: 1.5rem;
}
.about__story {
  max-width: 56ch;
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
}

.about__points {
  margin-block: 1.9rem;
  display: grid;
  gap: 0.65rem;
}
.about__points li {
  position: relative;
  padding-left: 1.6rem;
  font-weight: 500;
}
.about__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.85rem;
  height: 0.85rem;
  border: 1.5px solid var(--gold);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.about__quote {
  margin: 0;
  padding-left: 1.4rem;
  border-left: 2px solid var(--gold);
}
.about__quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.5;
  max-width: 44ch;
}
.about__quote cite {
  display: block;
  margin-top: 0.6rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.86rem;
  color: var(--ink-soft);
}

@media (min-width: 980px) {
  .about {
    grid-template-columns: 5fr 6.5fr;
    gap: clamp(3rem, 6vw, 5.5rem);
    align-items: center;
  }
  .about__media {
    margin-inline: 0;
    max-width: none;
  }
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.contact-card {
  background: var(--card);
  border: 1px solid var(--hairline-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1.6rem, 4vw, 2.5rem);
}
.contact-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1.1rem;
}

.contact-card address {
  font-style: normal;
  line-height: 1.75;
  color: var(--ink-soft);
}

.contact-links {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.55rem;
}
.contact-links a {
  color: var(--clay-deep);
  font-weight: 500;
  text-decoration-line: underline;
  text-decoration-color: rgba(166, 82, 47, 0.35);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: text-decoration-color 0.25s ease;
}
.contact-links a:hover {
  text-decoration-color: var(--clay-deep);
}

.open-chip--card {
  margin-bottom: 1.1rem;
}

.hours {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.hours th,
.hours td {
  padding: 0.6rem 0.35rem;
  border-bottom: 1px solid var(--hairline-soft);
  text-align: left;
  font-weight: 400;
}
.hours tr:last-child th,
.hours tr:last-child td {
  border-bottom: 0;
}
.hours th {
  color: var(--ink-soft);
  font-weight: 500;
}
.hours td {
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.hours tr.is-today {
  box-shadow: inset 3px 0 0 var(--gold);
  background: rgba(201, 162, 75, 0.09);
}
.hours tr.is-today th { color: var(--gold-deep); font-weight: 600; }

.hours__note {
  margin-top: 1.1rem;
  font-size: 0.86rem;
  color: var(--ink-soft);
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1.1fr;
  }
}

/* ---------- Book band ---------- */
.book-band {
  display: grid;
  gap: 1.75rem;
  padding: clamp(1.9rem, 5vw, 3.25rem);
  background: var(--ink);
  color: var(--paper);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.book-band h3 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin-bottom: 0.55rem;
}
.book-band p {
  max-width: 56ch;
  color: rgba(246, 239, 227, 0.78);
  font-size: 0.98rem;
}
.book-band .btn--solid {
  background: var(--clay);
  justify-self: start;
}
.book-band .btn--solid:hover { background: #b96038; }

@media (min-width: 900px) {
  .book-band {
    grid-template-columns: 1.5fr auto;
    align-items: center;
  }
  .book-band .btn { justify-self: end; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: #2b1d13;
  color: rgba(246, 239, 227, 0.82);
}

.footer-grid {
  display: grid;
  gap: 2.25rem;
  padding-block: clamp(3rem, 6vw, 4.5rem);
}

.footer-brand .brand-mark {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 9px;
  margin-bottom: 0.9rem;
}
.footer-word {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 560;
  color: var(--paper);
}
.footer-tag {
  margin-top: 0.3rem;
  font-size: 0.9rem;
  color: rgba(246, 239, 227, 0.6);
}

.footer-nav ul {
  display: grid;
  gap: 0.5rem;
}
.footer-nav a,
.footer-contact a {
  color: rgba(246, 239, 227, 0.82);
  text-decoration: none;
  transition: color 0.25s ease;
}
.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--gold);
}

.footer-contact {
  font-size: 0.95rem;
  display: grid;
  gap: 0.4rem;
  color: rgba(246, 239, 227, 0.82);
}

.footer-bottom {
  padding-block: 1.4rem;
  border-top: 1px solid rgba(246, 239, 227, 0.14);
  font-size: 0.82rem;
  color: rgba(246, 239, 227, 0.5);
}

@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: 1.3fr auto 1fr;
    gap: 4rem;
  }
  .footer-contact {
    justify-self: end;
    text-align: right;
  }
}

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 55;
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--clay);
  color: #fff8ef;
  box-shadow: 0 14px 30px -10px rgba(51, 36, 26, 0.5);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease, background-color 0.25s ease;
}
.wa-float svg { width: 1.65rem; height: 1.65rem; }
.wa-float.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.wa-float:hover { background: var(--clay-deep); }

@media (min-width: 860px) {
  .wa-float { display: none; }
}

/* ---------- Scroll reveal ---------- */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.65, 0.25, 1),
    transform 0.8s cubic-bezier(0.2, 0.65, 0.25, 1);
}
.js [data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* ---------- Desktop nav ---------- */
@media (min-width: 900px) {
  .site-nav {
    display: flex;
    align-items: center;
    gap: 2.2rem;
  }
  .site-nav ul {
    display: flex;
  }
  .nav-cta { display: inline-flex; }
  .menu-toggle { display: none; }
  .hero__cue { display: inline-flex; }
}

/* Mobile nav panel must come after desktop rules */
@media (max-width: 899.98px) {
  .site-nav {
    position: fixed;
    top: var(--header-h);
    inset-inline: 0;
    z-index: 55;
    display: grid;
    gap: 0.4rem;
    padding: 1.4rem clamp(1.25rem, 4.5vw, 2.5rem) 2.2rem;
    background: var(--paper);
    color: var(--ink);
    box-shadow: 0 24px 40px -24px rgba(51, 36, 26, 0.35);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .site-nav ul {
    display: grid;
    gap: 0.2rem;
  }
  .site-nav ul a {
    display: block;
    padding: 0.55rem 0;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    opacity: 1;
  }
  .site-nav ul a::after { display: none; }
  .nav-cta {
    display: inline-flex;
    justify-self: start;
    margin-top: 0.9rem;
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js [data-hero] > * {
    animation: none;
    opacity: 1;
  }
  .js [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero__cue,
  .lightbox[open] {
    animation: none;
  }
  .gallery__zoom img,
  .gallery__caption,
  .site-nav a:not(.btn)::after {
    transition: none;
  }
}