/* ============================================================
   NailMuseMiami — Design System
   ============================================================ */

:root {
  /* Color palette */
  --cream: #FBF5EE;
  --white: #FFFFFF;
  --blush: #F3D8D0;
  --blush-soft: #F9E9E4;
  --nude: #E8CBAE;
  --gold: #B4894F;
  --gold-light: #D9B678;
  --gold-deep: #8C6A3B;
  --ink: #2C221D;
  --ink-soft: #6E5D52;
  --ink-faint: #9C8B7F;
  --border: #EAD9C8;
  --success: #5C7A4C;
  --success-bg: #EAF1E4;

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Jost', 'Segoe UI', sans-serif;

  /* Spacing scale */
  --space-2xs: 0.5rem;
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Radii */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-full: 999px;

  /* Shadows — layered, color-tinted */
  --shadow-soft: 0 2px 8px rgba(140, 106, 59, 0.08), 0 1px 2px rgba(44, 34, 29, 0.06);
  --shadow-card: 0 12px 32px rgba(140, 106, 59, 0.12), 0 4px 12px rgba(44, 34, 29, 0.06);
  --shadow-lift: 0 24px 48px rgba(140, 106, 59, 0.18), 0 8px 20px rgba(44, 34, 29, 0.08);

  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --container-width: 1240px;
}

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

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

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

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

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

ul { list-style: none; margin: 0; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

h1 { font-size: clamp(2.4rem, 6vw, 3.6rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }

p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: var(--space-sm);
}

.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.section-head {
  max-width: 640px;
  margin-bottom: var(--space-xl);
}

.section-head.center { margin-inline: auto; text-align: center; }

.section-head p {
  margin-top: var(--space-sm);
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.section-head p a { color: var(--gold-deep); font-weight: 500; border-bottom: 1px solid var(--gold-deep); }

/* Grain texture overlay */
.grain {
  position: relative;
}
.grain::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 0.95rem 2rem;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  min-height: 48px;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s var(--ease-spring), background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.btn-primary:active { transform: translateY(0); }
.btn-primary:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 3px; }

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--white); transform: translateY(-2px); }
.btn-secondary:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

.btn-light {
  background: var(--white);
  color: var(--gold-deep);
  box-shadow: var(--shadow-soft);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }

.btn-block { width: 100%; }

/* ============================================================
   Header
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 245, 238, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.1rem;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.brand .dot { color: var(--gold); }

.main-nav {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  font-size: 0.95rem;
  font-weight: 400;
}

.nav-links a {
  position: relative;
  padding-block: 0.3rem;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-spring);
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { width: 100%; }
.nav-links a[aria-current="page"] { color: var(--gold-deep); }
.nav-links a:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; border-radius: 2px; }

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

.hamburger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-spring), opacity 0.2s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.hamburger:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 2px; }

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
  pointer-events: none;
}
.mobile-nav[data-open="true"] { visibility: visible; pointer-events: auto; }

.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(44, 34, 29, 0.35);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-nav[data-open="true"] .mobile-nav-backdrop { opacity: 1; }

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(78vw, 340px);
  background: var(--cream);
  box-shadow: var(--shadow-lift);
  padding: var(--space-lg) var(--space-md);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-spring);
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}
.mobile-nav[data-open="true"] .mobile-nav-panel { transform: translateX(0); }

.mobile-nav-top { display: flex; align-items: center; justify-content: space-between; }

.mobile-nav-close {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--ink);
}
.mobile-nav-close:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 2px; }

.mobile-nav-links { display: flex; flex-direction: column; gap: var(--space-md); font-size: 1.3rem; font-family: var(--font-display); }
.mobile-nav-links a[aria-current="page"] { color: var(--gold-deep); }

.mobile-nav-social { display: flex; gap: var(--space-sm); margin-top: auto; font-size: 0.9rem; color: var(--ink-soft); }

/* ============================================================
   Hero
   ============================================================ */

.hero {
  position: relative;
  padding-block: var(--space-2xl) var(--space-xl);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -15%;
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  max-height: 700px;
  background: radial-gradient(circle, rgba(243, 216, 208, 0.9), rgba(232, 203, 174, 0.4) 55%, transparent 75%);
  border-radius: 50%;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -25%;
  left: -10%;
  width: 40vw;
  height: 40vw;
  max-width: 480px;
  max-height: 480px;
  background: radial-gradient(circle, rgba(217, 182, 120, 0.3), transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.hero-copy .trust-row {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.hero-copy .stars { color: var(--gold); letter-spacing: 0.15em; }

.hero-copy h1 { margin-bottom: var(--space-md); }
.hero-copy p.lede { font-size: 1.1rem; color: var(--ink-soft); max-width: 480px; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.hero-visual {
  position: relative;
}
.hero-visual .frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.hero-visual .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}
.hero-visual .frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 34, 29, 0.35), transparent 45%);
  mix-blend-mode: multiply;
}
.floating-badge {
  position: absolute;
  bottom: -1.25rem;
  left: -1.25rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: var(--space-sm) var(--space-md);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 500;
  z-index: 2;
}
.floating-badge .dot-live {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px var(--success-bg);
}

/* ============================================================
   About preview
   ============================================================ */

.about-preview .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
}
.about-visual img { aspect-ratio: 4/3; object-fit: cover; object-position: center 15%; }
.about-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(215deg, rgba(180, 137, 79, 0.25), transparent 60%);
  mix-blend-mode: multiply;
}

/* Studio video */
.video-frame {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin-inline: auto;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-frame.small { max-width: 300px; }
.video-caption {
  text-align: center;
  margin-top: var(--space-sm);
  font-size: 0.85rem;
  color: var(--ink-faint);
}

.highlight-list { display: flex; flex-direction: column; gap: var(--space-sm); margin-top: var(--space-lg); }
.highlight-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.highlight-item .icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blush-soft);
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}
.about-copy p.lede { color: var(--ink-soft); margin-top: var(--space-sm); font-size: 1.05rem; }
.about-copy .link-arrow { display: inline-flex; align-items: center; gap: 0.4em; margin-top: var(--space-lg); color: var(--gold-deep); font-weight: 500; border-bottom: 1px solid var(--gold-deep); padding-bottom: 2px; }
.about-copy .link-arrow:hover { gap: 0.65em; }

/* ============================================================
   Cards — services / gallery / booking / faq / policy
   ============================================================ */

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s var(--ease-spring);
  border: 1px solid var(--border);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }

.service-card .icon-tile {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--blush-soft), var(--nude));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: var(--space-md);
}

.service-card h3 { margin-bottom: 0.5rem; }
.service-card p.desc { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: var(--space-md); }
.service-card .price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: var(--space-sm);
  border-top: 1px dashed var(--border);
  font-size: 0.9rem;
}
.service-card .price { font-family: var(--font-display); font-size: 1.3rem; color: var(--gold-deep); font-weight: 600; }
.service-card .duration { color: var(--ink-faint); }

.services-footnote {
  text-align: center;
  margin-top: var(--space-xl);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
  aspect-ratio: 1 / 1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-spring);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 34, 29, 0.45), transparent 55%);
  mix-blend-mode: multiply;
  opacity: 0.7;
}
.gallery-cta { text-align: center; margin-top: var(--space-xl); }

/* Policy cards */
.policy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
.policy-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-soft);
}
.policy-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.5rem; }
.policy-card p { color: var(--ink-soft); font-size: 0.95rem; }

.policy-intro {
  max-width: 640px;
  margin: 0 auto var(--space-xl);
  text-align: center;
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.policy-effective {
  text-align: center;
  margin-top: var(--space-lg);
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.policy-gallery {
  display: flex;
  gap: var(--space-sm);
  overflow-x: auto;
  padding-block: var(--space-sm) var(--space-xs);
  margin-top: var(--space-xl);
  scroll-snap-type: x proximity;
}
.policy-gallery img {
  flex: 0 0 auto;
  width: 180px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  scroll-snap-align: start;
}
.policy-gallery-label {
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: var(--space-lg);
}

.policy-reminder {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-block: var(--space-xl);
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.policy-reminder .icon { font-size: 1.3rem; flex-shrink: 0; }
.policy-reminder a { color: var(--gold-deep); font-weight: 500; border-bottom: 1px solid var(--gold-deep); }

.pricing-note {
  background: var(--blush-soft);
  border: 1px solid var(--blush);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-block: var(--space-xl);
  font-size: 0.95rem;
  color: var(--ink);
}
.pricing-note .icon { font-size: 1.3rem; flex-shrink: 0; }
.pricing-note a { color: var(--gold-deep); font-weight: 500; border-bottom: 1px solid var(--gold-deep); }

/* Booking cards (contact page) */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
.booking-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s var(--ease-spring);
  border: 1px solid var(--border);
}
.booking-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.booking-card .icon-tile {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto var(--space-md);
}
.booking-card h3 { margin-bottom: 0.4rem; }
.booking-card p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: var(--space-md); }
.booking-card p a { color: var(--gold-deep); font-weight: 500; }

.hours-table { list-style: none; margin: 0 0 var(--space-md); padding: 0; text-align: left; }
.hours-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-sm);
  padding-block: 0.4rem;
  border-bottom: 1px dashed var(--border);
  font-size: 0.92rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { font-weight: 500; color: var(--ink); }
.hours-row .time { color: var(--ink-soft); }
.hours-row.closed .time { color: var(--ink-faint); font-style: italic; }
.hours-note { margin-top: -0.25rem; margin-bottom: var(--space-md); font-size: 0.85rem; color: var(--ink-faint); font-style: italic; text-align: center; }

@media (min-width: 1024px) {
  .booking-grid .hours-card { grid-column: 1 / -1; }
  .hours-card .hours-table {
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: column;
    grid-template-rows: repeat(4, auto);
    display: grid;
    column-gap: var(--space-2xl);
  }
}

/* Map embed */
.map-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}
.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================================
   CTA banner
   ============================================================ */

.cta-banner {
  position: relative;
  border-radius: var(--radius-lg);
  margin-inline: var(--space-md);
  padding: var(--space-2xl) var(--space-md);
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--ink) 0%, #3d2f28 60%, var(--gold-deep) 130%);
  color: var(--white);
}
.cta-banner h2 { color: var(--white); }
.cta-banner p { color: rgba(255,255,255,0.75); margin-top: var(--space-sm); font-size: 1.05rem; }
.cta-banner .btn { margin-top: var(--space-lg); }
.cta-banner .cta-subnote {
  display: block;
  margin-top: var(--space-md);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}
.cta-banner .cta-subnote a { color: rgba(255, 255, 255, 0.85); text-decoration: underline; }
.cta-banner::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 10%;
  width: 50%;
  height: 140%;
  background: radial-gradient(circle, rgba(217, 182, 120, 0.25), transparent 70%);
}

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding-block: var(--space-xl) var(--space-lg);
  margin-top: var(--space-2xl);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
.footer-brand { font-family: var(--font-display); font-size: 1.4rem; color: var(--white); margin-bottom: var(--space-xs); }
.footer-col h4 { font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-light); margin-bottom: var(--space-sm); font-weight: 500; }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; font-size: 0.95rem; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
}

/* ============================================================
   Forms
   ============================================================ */

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
.form-field { display: flex; flex-direction: column; gap: 0.5rem; }
.form-field label { font-size: 0.85rem; font-weight: 500; letter-spacing: 0.03em; color: var(--ink); }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--ink);
  min-height: 48px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(180, 137, 79, 0.18);
}
.form-field.full { grid-column: 1 / -1; }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
}
.form-success[data-visible="true"] { display: block; }
.contact-form[data-hidden="true"] { display: none; }
.form-success .icon-tile {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--success-bg);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto var(--space-md);
}
.form-success h3 { margin-bottom: 0.5rem; }
.form-success p { color: var(--ink-soft); }

/* FAQ accordion */
.faq-list { display: flex; flex-direction: column; gap: var(--space-sm); max-width: 760px; margin-inline: auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
}
.faq-question:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: -2px; }
.faq-question .plus { transition: transform 0.3s var(--ease-spring); color: var(--gold-deep); font-size: 1.3rem; flex-shrink: 0; }
.faq-item[data-open="true"] .plus { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease-spring);
}
.faq-answer p { padding: 0 var(--space-md) var(--space-md); color: var(--ink-soft); font-size: 0.95rem; }

/* Page header banner (services / contact) */
.page-banner {
  padding-block: var(--space-2xl) var(--space-xl);
  text-align: center;
  position: relative;
}
.page-banner .container { max-width: 700px; }
.page-banner p.lede { color: var(--ink-soft); margin-top: var(--space-sm); font-size: 1.05rem; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease-spring), transform 0.7s var(--ease-spring); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   Tablet — 768px
   ============================================================ */
@media (min-width: 768px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .policy-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: repeat(2, 1fr); }
  .about-preview .container { grid-template-columns: 0.9fr 1.1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ============================================================
   Desktop — 1024px+
   ============================================================ */
@media (min-width: 1024px) {
  .main-nav { display: flex; align-items: center; gap: var(--space-lg); }
  .hamburger, .mobile-nav { display: none; }
  .header-actions .btn-primary { display: inline-flex; }

  .hero-inner { grid-template-columns: 1fr 0.95fr; gap: var(--space-2xl); }
  .hero-copy p.lede { max-width: 460px; }

  .about-preview .container { grid-template-columns: 1fr 1fr; gap: var(--space-2xl); }
  .about-preview.reverse .container { direction: rtl; }
  .about-preview.reverse .container > * { direction: ltr; }

  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .booking-grid { grid-template-columns: repeat(4, 1fr); }
  .policy-grid { grid-template-columns: repeat(3, 1fr); }

  section { padding-block: var(--space-3xl); }
  .cta-banner { padding-block: var(--space-3xl); margin-inline: var(--space-xl); }

  h1 { font-size: clamp(3rem, 4.4vw, 3.9rem); }
}
