/* ============================================================
   OASIS NAILS SPA — MAIN STYLESHEET
   Livermore, California
   ============================================================
   Table of contents:
   1.  Design tokens (CSS variables)
   2.  Reset & base
   3.  Typography
   4.  Layout utilities
   5.  Buttons
   6.  Signature "oasis mark" divider
   7.  Announcement bar
   8.  Site header & navigation
   9.  Hero (home)
   10. Page hero (inner pages)
   11. Welcome section
   12. Highlight cards
   13. Services preview (home)
   14. Signature pedicure spotlight
   15. Gallery preview + full gallery + lightbox
   16. Testimonials slider
   17. CTA banner
   18. Contact preview (home)
   19. Footer
   20. Scroll-to-top button
   21. About page
   22. Services page (menu)
   23. Contact page (form + map)
   24. Privacy policy page
   25. Reveal-on-scroll animation
   26. Responsive breakpoints
   27. Reduced motion & accessibility
   ============================================================ */

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
  /* Brand palette — modern pink + sage floral */
  --blush: #fdf1f4;
  --petal-pink: #fbe5eb;
  --soft-rose: #f0c3d2;
  --rose: #b73664;
  --deep-rose: #9c2d5a;
  --mauve: #956078;
  --plum: #3d2030;
  --sage: #93a988;
  --white: #ffffff;

  /* Feedback colors (kept muted to stay on-palette) */
  --error: #a3453a;
  --success: #5c7a5e;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing scale */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 80px;
  --space-2xl: 120px;

  /* Layout */
  --container-width: 1200px;
  --container-pad: 24px;
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 100px; /* pill buttons */

  /* Shadows */
  --shadow-soft: 0 10px 40px rgba(61, 32, 48, 0.08);
  --shadow-medium: 0 20px 60px rgba(61, 32, 48, 0.14);
  --shadow-gold: 0 12px 30px rgba(140, 106, 61, 0.25);

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.35s var(--ease);
  --transition-fast: 0.2s var(--ease);

  /* Header height (used to offset anchor scrolling) */
  --header-height: 96px;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  color: var(--plum);
  background-color: var(--blush);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Lock scroll when the mobile menu or lightbox is open */
body.mobile-nav-open,
body.lightbox-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: 1rem;
  color: inherit;
}

svg {
  display: block;
}

/* Skip link — accessibility */
.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  background: var(--plum);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  z-index: 1000;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 16px;
}

/* Visible focus states throughout the site */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--plum);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.75rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
  color: #4a453f;
}

.text-center {
  text-align: center;
}

/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section {
  padding: var(--space-2xl) 0;
}

.section--tight {
  padding: var(--space-xl) 0;
}

.section--alt {
  background-color: var(--petal-pink);
}

.section--plum {
  background-color: var(--plum);
  color: var(--blush);
}

.section--plum p {
  color: var(--soft-rose);
}

.section-header {
  max-width: 680px;
  margin: 0 auto var(--space-lg);
  text-align: center;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--deep-rose);
  margin-bottom: var(--space-sm);
}

.section-title {
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--mauve);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: var(--radius-lg);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
  white-space: nowrap;
}

.btn svg {
  width: 16px;
  height: 16px;
}

.btn-primary {
  background-color: var(--rose);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background-color: var(--deep-rose);
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(140, 106, 61, 0.32);
}

.btn-outline {
  background-color: transparent;
  color: var(--plum);
  border: 1.5px solid var(--plum);
}

.btn-outline:hover {
  background-color: var(--plum);
  color: var(--blush);
  transform: translateY(-2px);
}

.btn-light {
  background-color: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
}

.btn-light:hover {
  background-color: var(--white);
  color: var(--plum);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
}

/* ============================================================
   6. SIGNATURE "OASIS MARK" — a small floral sprig used as a
   divider / motif throughout the site (hero + CTA banners).
   ============================================================ */
.oasis-mark {
  display: block;
  margin: 0 auto var(--space-md);
  width: 110px;
  height: 40px;
}

.oasis-mark .mark-stem {
  fill: none;
  stroke: var(--soft-rose);
  stroke-width: 1.1;
  stroke-linecap: round;
}

.oasis-mark .mark-leaf {
  fill: var(--sage);
  opacity: 0.88;
}

.oasis-mark .mark-petal {
  fill: var(--white);
  opacity: 0.94;
}

.oasis-mark .mark-center {
  fill: var(--soft-rose);
}

/* ============================================================
   7. ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background-color: var(--plum);
  color: var(--soft-rose);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.announcement-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
  flex-wrap: wrap;
}

.announcement-bar a {
  color: var(--rose);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.announcement-bar a:hover {
  color: var(--white);
}

.announcement-divider {
  opacity: 0.4;
}

/* ============================================================
   8. SITE HEADER & NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  width: 100%;
  background-color: transparent;
  transition: background-color var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 20px 0;
}

.site-header.is-solid {
  background-color: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-soft);
  padding: 12px 0;
}

/* On inner pages there is no dark hero behind the header, so
   script.js adds .is-solid immediately on load — see js/script.js */

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-image {
  height: 58px;
  width: auto;
  flex-shrink: 0;
}

.logo-sub {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-top: 3px;
}

.site-header:not(.is-solid) .logo-sub {
  color: var(--petal-pink);
}

/* Primary nav */
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-link {
  position: relative;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 2px;
  color: var(--plum);
  transition: color var(--transition-fast);
}

.site-header:not(.is-solid) .nav-link {
  color: var(--white);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--rose);
  transition: width var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--rose);
}

.site-header:not(.is-solid) .nav-link.active {
  color: var(--rose);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--plum);
  transition: color var(--transition-fast);
}

.site-header:not(.is-solid) .header-phone {
  color: var(--white);
}

.header-phone svg {
  width: 17px;
  height: 17px;
  stroke: var(--rose);
  flex-shrink: 0;
}

.header-phone:hover {
  color: var(--rose);
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 5px;
  z-index: 501;
}

.hamburger-line {
  width: 24px;
  height: 1.5px;
  background-color: var(--plum);
  transition: transform var(--transition-fast), opacity var(--transition-fast), background-color var(--transition-fast);
}

.site-header:not(.is-solid) .hamburger-line {
  background-color: var(--white);
}

.hamburger[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* When the mobile panel is open force the icon to charcoal since
   the panel sits on an ivory background */
.mobile-nav-open .hamburger-line {
  background-color: var(--plum) !important;
}

/* ============================================================
   9. HERO (HOME)
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: calc(var(--header-height) * -1);
  overflow: hidden;
  background-color: var(--plum);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(155deg, #3d1f30 0%, #7a3459 55%, #ab4d74 100%), url('../images/hero.jpg');
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(61, 32, 48, 0.55) 0%, rgba(61, 32, 48, 0.35) 45%, rgba(61, 32, 48, 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  padding: calc(var(--header-height) + 40px) var(--container-pad) 60px;
  color: var(--white);
}

.hero-mark {
  width: 130px;
  height: 46px;
  margin: 0 auto var(--space-md);
  opacity: 0.9;
}

.hero-eyebrow {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--soft-rose);
  margin-bottom: var(--space-sm);
  opacity: 0;
  transform: translateY(14px);
  animation: heroRise 0.9s var(--ease) 0.15s forwards;
}

.hero-title {
  color: var(--white);
  margin-bottom: var(--space-sm);
  opacity: 0;
  transform: translateY(18px);
  animation: heroRise 0.9s var(--ease) 0.35s forwards;
}

.hero-text {
  font-size: 1.1rem;
  color: var(--petal-pink);
  max-width: 560px;
  margin: 0 auto var(--space-lg);
  opacity: 0;
  transform: translateY(18px);
  animation: heroRise 0.9s var(--ease) 0.55s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(18px);
  animation: heroRise 0.9s var(--ease) 0.75s forwards;
}

@keyframes heroRise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 22px;
  height: 34px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  opacity: 0;
  animation: heroRise 0.9s var(--ease) 1s forwards;
}

.hero-scroll-cue::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 6px;
  background-color: var(--white);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollCue 2s ease-in-out infinite;
}

@keyframes scrollCue {
  0% { opacity: 1; transform: translate(-50%, 0); }
  70% { opacity: 0; transform: translate(-50%, 10px); }
  100% { opacity: 0; transform: translate(-50%, 10px); }
}

/* ============================================================
   10. PAGE HERO (INNER PAGES)
   ============================================================ */
.page-hero {
  position: relative;
  margin-top: calc(var(--header-height) * -1);
  padding: calc(var(--header-height) + 90px) 0 70px;
  background:
    radial-gradient(circle at 15% 20%, rgba(183, 54, 100, 0.18), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(183, 54, 100, 0.14), transparent 45%),
    linear-gradient(160deg, #3d1f2f 0%, #7a3555 100%);
  color: var(--white);
  text-align: center;
}

.page-hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--soft-rose);
  display: block;
  margin-bottom: var(--space-sm);
}

.page-hero-title {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.page-hero-text {
  color: var(--petal-pink);
  max-width: 620px;
  margin: 0 auto;
}

.breadcrumb {
  margin-top: var(--space-md);
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  color: var(--soft-rose);
}

.breadcrumb a {
  color: var(--soft-rose);
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--rose);
}

.breadcrumb span[aria-current] {
  color: var(--rose);
}

.breadcrumb-sep {
  margin: 0 8px;
  opacity: 0.5;
}

/* ============================================================
   11. WELCOME SECTION
   ============================================================ */
.welcome {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: var(--space-2xl);
  align-items: center;
}

.welcome-images {
  position: relative;
  min-height: 460px;
}

.welcome-img {
  position: absolute;
  background-size: cover;
  background-position: center;
  background-color: var(--soft-rose);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-medium);
}

.welcome-img-main {
  width: 78%;
  height: 92%;
  top: 0;
  left: 0;
  background-image: url('../images/about-1.jpg');
}

.welcome-img-accent {
  width: 52%;
  height: 55%;
  bottom: 0;
  right: 0;
  border: 6px solid var(--blush);
  background-image: url('../images/about-2.jpg');
}

.welcome-content .section-eyebrow {
  text-align: left;
  display: block;
}

.welcome-content h2 {
  text-align: left;
  margin-bottom: var(--space-sm);
}

.welcome-content p {
  margin-bottom: var(--space-md);
}

.welcome-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin-bottom: var(--space-lg);
}

.welcome-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--plum);
}

.welcome-list svg {
  width: 15px;
  height: 15px;
  stroke: var(--rose);
  flex-shrink: 0;
}

/* ============================================================
   12. HIGHLIGHT CARDS
   ============================================================ */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.highlight-card {
  text-align: center;
  background-color: var(--white);
  padding: var(--space-lg) var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.highlight-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--petal-pink);
}

.highlight-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--deep-rose);
}

.highlight-card h3 {
  margin-bottom: 8px;
}

.highlight-card p {
  font-size: 0.92rem;
}

/* ============================================================
   13. SERVICES PREVIEW (HOME)
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.service-card {
  background-color: var(--white);
  border: 1px solid rgba(183, 54, 100, 0.2);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: var(--rose);
}

.service-card-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-sm);
  margin-bottom: 8px;
}

.service-card-top h3 {
  font-size: 1.15rem;
}

.service-card-price {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
  color: var(--rose);
  white-space: nowrap;
}

.service-card p {
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
}

.service-card-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--deep-rose);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card-link svg {
  width: 13px;
  height: 13px;
  transition: transform var(--transition-fast);
}

.service-card-link:hover svg {
  transform: translateX(3px);
}

.services-cta {
  text-align: center;
}

/* ============================================================
   14. SIGNATURE PEDICURE SPOTLIGHT
   ============================================================ */
.spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.spotlight-image {
  position: relative;
  min-height: 480px;
  border-radius: var(--radius-md);
  background-color: var(--soft-rose);
  background-image: url('../images/gallery-2.jpg');
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-medium);
}

.spotlight-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background-color: var(--white);
  padding: 10px 18px;
  border-radius: var(--radius-lg);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--deep-rose);
  box-shadow: var(--shadow-soft);
}

.spotlight-content .section-eyebrow {
  display: block;
}

.spotlight-content h2 {
  margin-bottom: var(--space-sm);
}

.spotlight-content > p {
  margin-bottom: var(--space-md);
}

.ritual-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  margin-bottom: var(--space-lg);
}

.ritual-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.ritual-step-index {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--rose);
  min-width: 22px;
}

.ritual-step-text strong {
  display: block;
  font-size: 0.92rem;
  color: var(--plum);
}

.ritual-step-text span {
  font-size: 0.82rem;
  color: var(--mauve);
}

/* ============================================================
   15. GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.gallery-grid--full {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background-color: var(--soft-rose);
}

.gallery-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: var(--space-sm);
  background: linear-gradient(180deg, rgba(61, 32, 48, 0) 45%, rgba(61, 32, 48, 0.72) 100%);
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay,
.gallery-item:focus-visible .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-inner {
  color: var(--white);
}

.gallery-overlay-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
}

.gallery-overlay-cat {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--soft-rose);
}

.gallery-cta {
  text-align: center;
  margin-top: var(--space-lg);
}

/* Gallery filters (gallery.html) */
.gallery-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: var(--space-lg);
}

.filter-btn {
  padding: 10px 24px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--soft-rose);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mauve);
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  border-color: var(--rose);
  color: var(--deep-rose);
}

.filter-btn.active {
  background-color: var(--plum);
  border-color: var(--plum);
  color: var(--white);
}

.gallery-item.is-hidden {
  display: none;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(61, 32, 48, 0.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition);
  padding: var(--space-md);
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-figure {
  position: relative;
  width: min(720px, 90vw);
}

.lightbox-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: var(--mauve);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-medium);
}

.lightbox-caption {
  text-align: center;
  color: var(--petal-pink);
  margin-top: var(--space-sm);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
  transition: background-color var(--transition-fast);
}

.lightbox-close svg,
.lightbox-prev svg,
.lightbox-next svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background-color: var(--rose);
}

.lightbox-close {
  top: -60px;
  right: 0;
}

.lightbox-prev {
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
}

/* ============================================================
   16. TESTIMONIALS SLIDER
   ============================================================ */
.testimonials {
  position: relative;
}

.testimonial-viewport {
  overflow: hidden;
  max-width: 760px;
  margin: 0 auto;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s var(--ease);
}

.testimonial-slide {
  flex: 0 0 100%;
  text-align: center;
  padding: 0 var(--space-md);
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: var(--space-sm);
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--rose);
  stroke: var(--rose);
}

.testimonial-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--plum);
  line-height: 1.5;
  margin-bottom: var(--space-md);
}

.testimonial-author {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--deep-rose);
  text-transform: uppercase;
}

.testimonial-location {
  font-size: 0.8rem;
  color: var(--mauve);
  display: block;
  margin-top: 2px;
  text-transform: none;
  letter-spacing: 0;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.slider-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--soft-rose);
  transition: all var(--transition-fast);
}

.slider-btn svg {
  width: 17px;
  height: 17px;
  stroke: var(--plum);
}

.slider-btn:hover {
  background-color: var(--rose);
  border-color: var(--rose);
}

.slider-btn:hover svg {
  stroke: var(--white);
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--soft-rose);
  transition: all var(--transition-fast);
}

.dot.active {
  background-color: var(--rose);
  width: 24px;
  border-radius: var(--radius-lg);
}

/* ============================================================
   17. CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  text-align: center;
  padding: var(--space-2xl) 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(183, 54, 100, 0.22), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(183, 54, 100, 0.18), transparent 50%),
    linear-gradient(160deg, #3d1f2d 0%, #7a3654 100%);
  color: var(--white);
  overflow: hidden;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.cta-banner p {
  color: var(--petal-pink);
  max-width: 520px;
  margin: 0 auto var(--space-lg);
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* ============================================================
   18. CONTACT PREVIEW (HOME)
   ============================================================ */
.contact-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.info-card {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.info-card .highlight-icon {
  background-color: var(--petal-pink);
}

.info-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.info-card p {
  font-size: 0.9rem;
}

.info-card a {
  transition: color var(--transition-fast);
}

.info-card a:hover {
  color: var(--rose);
}

.contact-preview-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* ============================================================
   19. FOOTER
   ============================================================ */
.site-footer {
  background-color: var(--plum);
  color: var(--soft-rose);
  padding-top: var(--space-2xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--space-sm);
}

.footer-logo .logo-image {
  height: 64px;
}

.footer-col p {
  color: var(--soft-rose);
  font-size: 0.9rem;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  font-size: 0.9rem;
  color: var(--soft-rose);
  transition: color var(--transition-fast);
}

.footer-col ul a:hover {
  color: var(--rose);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--rose);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 4px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: var(--space-sm);
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all var(--transition-fast);
}

.social-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--soft-rose);
  transition: stroke var(--transition-fast);
}

.social-icon:hover {
  background-color: var(--rose);
  border-color: var(--rose);
}

.social-icon:hover svg {
  stroke: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: var(--space-md) 0;
  font-size: 0.78rem;
  color: rgba(242, 235, 226, 0.7);
}

.footer-bottom a {
  color: rgba(242, 235, 226, 0.7);
  transition: color var(--transition-fast);
}

.footer-bottom a:hover {
  color: var(--rose);
}

.footer-bottom-links {
  display: flex;
  gap: 18px;
}

/* ============================================================
   20. SCROLL-TO-TOP BUTTON
   ============================================================ */
.scroll-top-btn {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--plum);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-medium);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity var(--transition-fast), transform var(--transition-fast), background-color var(--transition-fast), visibility var(--transition-fast);
  z-index: 400;
}

.scroll-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background-color: var(--rose);
}

.scroll-top-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

/* ============================================================
   21. ABOUT PAGE
   ============================================================ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.story-image {
  min-height: 420px;
  border-radius: var(--radius-md);
  background-color: var(--soft-rose);
  background-image: url('../images/about-1.jpg');
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-medium);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.value-card {
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  border: 1px solid var(--soft-rose);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), transform var(--transition);
}

.value-card:hover {
  border-color: var(--rose);
  transform: translateY(-6px);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md) var(--space-lg);
}

.why-item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.why-item .highlight-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  margin: 0;
}

.why-item .highlight-icon svg {
  width: 22px;
  height: 22px;
}

.why-item h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.why-item p {
  font-size: 0.9rem;
}

/* ============================================================
   22. SERVICES PAGE (MENU)
   ============================================================ */
.menu-intro {
  max-width: 700px;
  margin: 0 auto var(--space-xl);
  text-align: center;
}

.menu-categories-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: var(--space-2xl);
}

.menu-categories-nav a {
  padding: 9px 20px;
  border: 1.5px solid var(--soft-rose);
  border-radius: var(--radius-lg);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--mauve);
  transition: all var(--transition-fast);
}

.menu-categories-nav a:hover {
  border-color: var(--rose);
  color: var(--deep-rose);
}

.menu-category {
  margin-bottom: var(--space-2xl);
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.menu-category-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.menu-category-header h2 {
  white-space: nowrap;
  font-size: 1.6rem;
}

.menu-category-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--soft-rose), transparent);
}

.menu-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 40px;
}

.menu-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--soft-rose);
}

.menu-item-name {
  font-weight: 600;
  color: var(--plum);
}

.menu-item-desc {
  font-size: 0.8rem;
  color: var(--mauve);
  display: block;
  margin-top: 2px;
}

.menu-item-dots {
  flex: 1;
  border-bottom: 1px dotted var(--soft-rose);
  transform: translateY(-4px);
}

.menu-item-price {
  font-family: var(--font-body);
  color: var(--deep-rose);
  font-size: 1.05rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
  white-space: nowrap;
  text-align: right;
}

.menu-item-price-note {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--mauve);
  margin-top: 2px;
}

.menu-category-note {
  text-align: center;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--mauve);
  margin-top: -8px;
  margin-bottom: var(--space-md);
}

/* Featured signature item */
.menu-item.featured {
  grid-column: 1 / -1;
  position: relative;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  background-color: var(--blush);
  border: 1.5px solid var(--rose);
  border-bottom: 1.5px solid var(--rose);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-md) var(--space-md) calc(var(--space-md) + 6px);
  margin: 10px 0;
}

.menu-item.featured::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background-color: var(--rose);
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  background-color: var(--rose);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-lg);
  margin-bottom: 4px;
}

.featured-badge svg {
  width: 12px;
  height: 12px;
  fill: var(--white);
}

.menu-item.featured .menu-item-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-sm);
}

.menu-item.featured .menu-item-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  white-space: normal;
}

.menu-note {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  font-size: 0.85rem;
  color: var(--mauve);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--soft-rose);
}

/* ============================================================
   23. CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--space-2xl);
  align-items: start;
}

.contact-details h2 {
  margin-bottom: var(--space-sm);
}

.contact-detail-item {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.contact-detail-item .highlight-icon {
  width: 46px;
  height: 46px;
  margin: 0;
  flex-shrink: 0;
}

.contact-detail-item .highlight-icon svg {
  width: 20px;
  height: 20px;
}

.contact-detail-item h3 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.contact-detail-item p,
.contact-detail-item a {
  font-size: 0.9rem;
}

.hours-list {
  margin-top: var(--space-md);
  border-top: 1px solid var(--soft-rose);
  padding-top: var(--space-sm);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  font-size: 0.9rem;
  border-bottom: 1px dashed var(--soft-rose);
}

.hours-row span:first-child {
  color: var(--plum);
  font-weight: 600;
}

.hours-row span:last-child {
  color: var(--mauve);
}

.contact-detail-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: var(--space-lg);
}

.map-wrap {
  margin-top: var(--space-xl);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
  padding-bottom: 55%;
  height: 0;
}

.map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Contact form */
.contact-form-wrap {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-soft);
}

.contact-form-wrap h2 {
  margin-bottom: 6px;
}

.contact-form-wrap > p {
  margin-bottom: var(--space-lg);
  font-size: 0.9rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--plum);
  margin-bottom: 7px;
}

.form-label .required {
  color: var(--error);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--soft-rose);
  border-radius: var(--radius-sm);
  background-color: var(--blush);
  transition: border-color var(--transition-fast), background-color var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--rose);
  background-color: var(--white);
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
}

.form-group.has-error .form-input,
.form-group.has-error .form-select,
.form-group.has-error .form-textarea {
  border-color: var(--error);
}

.form-error-text {
  display: none;
  font-size: 0.78rem;
  color: var(--error);
  margin-top: 6px;
}

.form-group.has-error .form-error-text {
  display: block;
}

.form-note {
  font-size: 0.78rem;
  color: var(--mauve);
  margin-top: var(--space-sm);
  text-align: center;
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--space-lg);
  background-color: var(--petal-pink);
  border-radius: var(--radius-md);
  border: 1px solid var(--soft-rose);
}

.form-success.is-visible {
  display: block;
}

.form-success svg {
  width: 40px;
  height: 40px;
  stroke: var(--success);
  margin: 0 auto var(--space-sm);
}

.form-success h3 {
  margin-bottom: 8px;
}

.form-success p {
  font-size: 0.9rem;
}

.contact-form.is-hidden {
  display: none;
}

.btn-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}

.btn.is-loading .btn-spinner {
  display: inline-block;
}

.btn.is-loading .btn-label {
  opacity: 0.85;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================================
   24. PRIVACY POLICY PAGE
   ============================================================ */
.policy-content {
  max-width: 780px;
  margin: 0 auto;
}

.policy-updated {
  font-size: 0.85rem;
  color: var(--mauve);
  margin-bottom: var(--space-xl);
}

.policy-section {
  margin-bottom: var(--space-lg);
}

.policy-section h2 {
  font-size: 1.4rem;
  margin-bottom: var(--space-sm);
}

.policy-section p {
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.policy-section ul {
  margin: 0 0 12px 0;
  padding-left: 0;
}

.policy-section ul li {
  font-size: 0.95rem;
  color: #4a453f;
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
}

.policy-section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--rose);
}

.policy-notice {
  margin-top: var(--space-xl);
  padding: var(--space-md);
  background-color: var(--petal-pink);
  border-left: 3px solid var(--rose);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--mauve);
}

/* ============================================================
   25. REVEAL-ON-SCROLL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-stagger.is-visible .reveal-stagger-item {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.is-visible .reveal-stagger-item:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.is-visible .reveal-stagger-item:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.is-visible .reveal-stagger-item:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.is-visible .reveal-stagger-item:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.is-visible .reveal-stagger-item:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger.is-visible .reveal-stagger-item:nth-child(6) { transition-delay: 0.4s; }
.reveal-stagger.is-visible .reveal-stagger-item:nth-child(7) { transition-delay: 0.48s; }
.reveal-stagger.is-visible .reveal-stagger-item:nth-child(8) { transition-delay: 0.56s; }

/* ============================================================
   26. RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 1200px) {
  :root {
    --space-2xl: 96px;
    --space-xl: 64px;
  }

  .container {
    max-width: 100%;
  }

  .highlights-grid,
  .contact-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid--full {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .nav-list {
    display: none;
  }

  .header-phone span {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .welcome,
  .spotlight,
  .story-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .welcome-images,
  .story-image {
    min-height: 360px;
  }

  .spotlight-image {
    min-height: 340px;
    order: -1;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Mobile nav panel */
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(340px, 82vw);
    background-color: var(--blush);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 100px var(--space-lg) var(--space-lg);
    box-shadow: -12px 0 40px rgba(61, 32, 48, 0.15);
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 499;
  }

  .mobile-nav-open .nav {
    transform: translateX(0);
  }

  .nav-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }

  .nav-list li {
    width: 100%;
    border-bottom: 1px solid var(--soft-rose);
  }

  .nav-link {
    display: block;
    padding: 16px 2px;
    color: var(--plum) !important;
    font-size: 0.95rem;
  }

  .header-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    width: 100%;
  }

  .header-actions .header-phone {
    color: var(--plum) !important;
  }

  .header-actions .header-phone span {
    display: inline;
  }

  .header-actions .btn-book {
    width: 100%;
  }
}

@media (max-width: 768px) {
  :root {
    --space-2xl: 72px;
    --space-xl: 52px;
    --header-height: 82px;
  }

  .hero {
    min-height: 100vh;
  }

  .hero-actions,
  .cta-actions,
  .contact-preview-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn,
  .cta-actions .btn,
  .contact-preview-actions .btn {
    width: 100%;
  }

  .services-grid,
  .highlights-grid,
  .contact-preview-grid,
  .values-grid,
  .why-grid,
  .ritual-steps,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid,
  .gallery-grid--full {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-list {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .lightbox-prev {
    left: 4px;
  }

  .lightbox-next {
    right: 4px;
  }

  .lightbox-close {
    top: -50px;
    right: 4px;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 18px;
  }

  .logo-image {
    height: 46px;
  }

  .logo-sub {
    display: none;
  }

  .announcement-bar .container {
    font-size: 0.68rem;
    gap: 8px;
  }

  .gallery-grid,
  .gallery-grid--full {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .btn {
    padding: 14px 28px;
    font-size: 0.78rem;
  }

  .testimonial-text {
    font-size: 1.1rem;
  }

  .menu-category-header h2 {
    font-size: 1.3rem;
  }
}

/* ============================================================
   27. REDUCED MOTION & ACCESSIBILITY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .hero-eyebrow,
  .hero-title,
  .hero-text,
  .hero-actions {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .gallery-item:hover .gallery-img {
    transform: none;
  }
}

/* Screen-reader only helper text */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
