/* ============================================================
   PARADISE 9 NAIL SPA & SALON — SHELBY TOWNSHIP
   Premium CSS Design System
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&family=Pinyon+Script&display=swap');

/* --- Design Tokens --- */
:root {
  --gold:        #C9A96E;
  --gold-light:  #E8D5A3;
  --gold-dark:   #A07840;
  --champagne:   #F5ECD7;
  --ivory:       #FAF7F2;
  --white:       #FFFFFF;
  --ink:         #1A1713;
  --ink-soft:    #3D3530;
  --ink-muted:   #6B5F52;
  --border:      rgba(201,169,110,0.25);
  --border-strong: rgba(201,169,110,0.5);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-script:  'Pinyon Script', cursive;
  --font-body:    'Jost', system-ui, sans-serif;

  --radius:    4px;
  --radius-lg: 8px;

  --shadow-soft:   0 4px 30px rgba(26,23,19,0.08);
  --shadow-medium: 0 8px 50px rgba(26,23,19,0.12);
  --shadow-deep:   0 20px 80px rgba(26,23,19,0.18);

  --transition: 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 400;
  line-height: 1.3;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.body-lg { font-size: 1.05rem; line-height: 1.75; }
.body-sm { font-size: 0.875rem; color: var(--ink-muted); }

/* ============================================================
   DIVIDERS & ORNAMENTS
   ============================================================ */
.ornament {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin: 1.5rem 0;
}
.ornament::before, .ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-strong);
  max-width: 80px;
}
.ornament-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(201,169,110,0.35);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(201,169,110,0.45);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-ghost {
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--ink-soft);
  transform: translateY(-1px);
}

.btn-lg { padding: 18px 44px; font-size: 0.8rem; }
.btn-sm { padding: 10px 22px; font-size: 0.7rem; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(250,247,242,0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
  height: 64px;
}
.site-header.transparent { background: transparent; }

.header-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.04em;
}
.logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* When header is transparent (hero), show white logo */
.site-header.transparent .logo-name { color: var(--white); }
.site-header.transparent .logo-sub { color: rgba(255,255,255,0.75); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.25s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link:hover, .nav-link.active { color: var(--gold); }

.site-header.transparent .nav-link { color: rgba(255,255,255,0.85); }
.site-header.transparent .nav-link:hover { color: var(--white); }

.header-cta { margin-left: 20px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  transition: var(--transition);
}
.site-header.transparent .hamburger span { background: var(--white); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px,4px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); }

/* Mobile Nav Drawer */
.mobile-nav {
  position: fixed;
  top: 0; right: 0;
  width: min(320px,85vw);
  height: 100vh;
  background: var(--ivory);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  display: flex;
  flex-direction: column;
  padding: 100px 40px 40px;
  gap: 8px;
  box-shadow: -20px 0 60px rgba(26,23,19,0.15);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav .nav-link {
  font-size: 0.8rem;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: block;
}
.mobile-nav .btn { margin-top: 24px; width: 100%; justify-content: center; }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,23,19,0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.nav-overlay.active { opacity: 1; pointer-events: all; }

/* ============================================================
   SECTIONS — BASE
   ============================================================ */
.section {
  padding: 100px 0;
}
.section-sm { padding: 60px 0; }
.section-lg { padding: 130px 0; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.container-sm { max-width: 860px; }
.container-lg { max-width: 1400px; }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .eyebrow { margin-bottom: 16px; }
.section-header .display-lg { margin-bottom: 20px; }
.section-header p { color: var(--ink-muted); max-width: 560px; margin: 0 auto; }

/* ============================================================
   HERO
   ============================================================ */
/* ============================================================
   HERO — full-bleed background image
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0E0C09;
}

/* The actual background photo — covers full hero */
.hero-img-bg {
  position: absolute;
  inset: 0;
  background-color: #1A1612;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 10s ease;
  animation: heroZoom 10s ease forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.00); }
}

/* Gradient overlay: left 55% is dark (text readable), right fades to show photo */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(10,8,6,0.92) 0%,
      rgba(10,8,6,0.82) 30%,
      rgba(10,8,6,0.55) 55%,
      rgba(10,8,6,0.20) 75%,
      rgba(10,8,6,0.05) 100%
    );
  z-index: 1;
}

/* Bottom fade so it blends into next section */
.hero-overlay::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 140px;
  background: linear-gradient(to top, rgba(10,8,6,0.6), transparent);
}

.hero-bg { display: none; } /* no longer needed */

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.35;
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 600px;
  padding-top: 80px;
  padding-bottom: 40px;
}
.hero-script {
  font-family: var(--font-script);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--gold-light);
  margin-bottom: 4px;
  opacity: 0.9;
}
.hero .display-xl {
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 300;
}
.hero .display-xl em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  color: rgba(255,255,255,0.70);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 20px;
}
.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}
.stars {
  display: flex;
  gap: 3px;
}
.star {
  color: var(--gold);
  font-size: 1rem;
}
.star.half { opacity: 0.6; }
.rating-text {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* Remove old right-panel rules — no longer used */
.hero-right { display: none; }
.hero-img-cell { display: none; }

/* ============================================================
   RATING BADGE
   ============================================================ */
.rating-strip {
  background: var(--champagne);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.rating-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.rating-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rating-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--gold-dark);
  line-height: 1;
}
.rating-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  line-height: 1.4;
}
.rating-divider {
  width: 1px;
  height: 40px;
  background: var(--border-strong);
}

/* ============================================================
   INTRO SECTION
   ============================================================ */
.intro-section {
  background: var(--white);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-text .eyebrow { margin-bottom: 16px; }
.intro-text .display-md { margin-bottom: 24px; }
.intro-text p { color: var(--ink-muted); margin-bottom: 16px; }
.intro-text p:last-of-type { margin-bottom: 32px; }
.intro-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.intro-image-grid img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.intro-image-grid img:first-child {
  margin-top: 32px;
}
/* Background div versions */
.intro-image-grid .intro-img-bg {
  aspect-ratio: 3/4;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { background: var(--ivory); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  background: var(--white);
  padding: 40px 36px;
  transition: var(--transition);
  position: relative;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.service-card:hover {
  background: var(--champagne);
  z-index: 1;
}
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--champagne);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid var(--border);
  transition: background var(--transition), border-color var(--transition);
}
.service-card:hover .service-icon {
  background: var(--gold-light);
  border-color: var(--gold);
}
.service-icon svg {
  width: 24px;
  height: 24px;
}
.service-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--ink);
}
.service-desc {
  font-size: 0.875rem;
  color: var(--ink-muted);
  line-height: 1.65;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 16px;
  transition: gap 0.25s;
}
.service-link:hover { gap: 10px; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section {
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 0% 50%, rgba(201,169,110,0.1) 0%, transparent 60%);
}
.why-section .section-header .display-lg { color: var(--white); }
.why-section .section-header p { color: rgba(255,255,255,0.55); }
.why-section .eyebrow { color: var(--gold-light); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2px;
  position: relative;
}
.why-card {
  padding: 40px 30px;
  border: 1px solid rgba(201,169,110,0.15);
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(201,169,110,0.06);
  border-color: rgba(201,169,110,0.35);
}
.why-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(201,169,110,0.2);
  line-height: 1;
  margin-bottom: 12px;
}
.why-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
}
.why-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

/* ============================================================
   GALLERY PREVIEW
   ============================================================ */
.gallery-preview { background: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 200px 200px;
  gap: 8px;
}
/* First item: large feature tile spanning 2 cols × 2 rows */
.gallery-grid .gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  cursor: pointer;
  background-color: var(--champagne);
}
/* Background-image div inside each item */
.gallery-item .g-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.6s ease;
}
.gallery-item:hover .g-bg { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,23,19,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s;
  z-index: 2;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(26,23,19,0.28); }
.gallery-item-overlay svg {
  color: var(--white);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.35s;
}
.gallery-item:hover .gallery-item-overlay svg { opacity: 1; transform: scale(1); }

.gallery-cta { text-align: center; margin-top: 48px; }

/* ============================================================
   HOURS SECTION
   ============================================================ */
.hours-section {
  background: var(--champagne);
}
.hours-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.hours-table {
  width: 100%;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--ink-soft); }
.hours-time { color: var(--gold-dark); font-weight: 500; }
.hours-note {
  margin-top: 16px;
  font-size: 0.75rem;
  color: var(--ink-muted);
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 6px;
}
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}
.map-embed iframe {
  width: 100%;
  height: 320px;
  border: none;
  display: block;
}
.map-cta {
  margin-top: 16px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.55);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo .logo-name { color: var(--white); }
.footer-logo .logo-sub { margin-bottom: 16px; }
.footer-about {
  font-size: 0.85rem;
  line-height: 1.75;
  margin-bottom: 24px;
}
.footer-col-title {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links li + li { margin-top: 10px; }
.footer-links a {
  font-size: 0.85rem;
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--white); }
.footer-info p {
  font-size: 0.85rem;
  margin-bottom: 8px;
  line-height: 1.6;
}
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-copy { font-size: 0.75rem; }
.footer-dev  { font-size: 0.75rem; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.page-hero {
  background: var(--ink);
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(201,169,110,0.1) 0%, transparent 70%);
}
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero .display-lg { color: var(--white); margin-bottom: 16px; }
.page-hero .body-lg { color: rgba(255,255,255,0.55); max-width: 500px; margin: 0 auto; }

.about-story {
  background: var(--white);
}
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.about-images img,
.about-images .intro-img-bg {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-images img:first-child,
.about-images .intro-img-bg:first-child { margin-top: 40px; }

.about-text .eyebrow { margin-bottom: 16px; }
.about-text .display-md { margin-bottom: 24px; }
.about-text p { color: var(--ink-muted); margin-bottom: 16px; }
.about-text blockquote {
  border-left: 2px solid var(--gold);
  padding: 12px 0 12px 24px;
  margin: 28px 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ink);
}

/* Promise Cards */
.promise-section {
  background: var(--ivory);
}
.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.promise-card {
  background: var(--white);
  padding: 40px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.promise-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: var(--gold-light);
}
.promise-icon {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--champagne);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: background var(--transition), border-color var(--transition);
}
.promise-card:hover .promise-icon {
  background: var(--gold-light);
  border-color: var(--gold);
}
.promise-icon svg {
  width: 26px; height: 26px;
  stroke: var(--gold-dark);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.promise-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 10px;
}
.promise-desc {
  font-size: 0.85rem;
  color: var(--ink-muted);
  line-height: 1.65;
}

/* Team Stats */
.stats-strip {
  background: var(--champagne);
  padding: 60px 0;
}
.stats-row {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold-dark);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info .eyebrow { margin-bottom: 16px; }
.contact-info .display-md { margin-bottom: 24px; }
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.contact-detail:last-of-type { border-bottom: none; }
.contact-detail-icon {
  width: 44px; height: 44px;
  background: var(--champagne);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-detail-body p { font-size: 0.875rem; color: var(--ink-muted); line-height: 1.65; }
.contact-detail-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 32px;
  color: var(--ink);
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  padding: 13px 16px;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
}
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.12);
}
.form-control::placeholder { color: var(--ink-muted); opacity: 0.6; }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============================================================
   BOOKING PAGE
   ============================================================ */
.booking-hero {
  background: var(--ink);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.booking-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(201,169,110,0.12) 0%, transparent 65%);
}
.booking-content { position: relative; z-index: 2; }
.booking-content .display-xl { color: var(--white); margin-bottom: 20px; }
.booking-content .body-lg { color: rgba(255,255,255,0.55); max-width: 440px; margin: 0 auto 40px; }
.booking-benefits {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}
.booking-benefit {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
}
.booking-benefit-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-full .gallery-masonry {
  columns: 4;
  column-gap: 10px;
}
.gallery-full .gallery-cell {
  break-inside: avoid;
  margin-bottom: 10px;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
}
.gallery-full .gallery-cell img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-full .gallery-cell:hover img { transform: scale(1.04); }
.gallery-cell-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,23,19,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s;
}
.gallery-full .gallery-cell:hover .gallery-cell-overlay { background: rgba(26,23,19,0.25); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,8,6,0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  transform: scale(0.95);
  transition: transform 0.35s;
}
.lightbox.active img { transform: scale(1); }
.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  color: rgba(255,255,255,0.6);
  font-size: 1.5rem;
  cursor: pointer;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  transition: all 0.25s;
}
.lightbox-close:hover { color: var(--white); border-color: var(--white); }
.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 1.5rem;
  cursor: pointer;
  width: 50px; height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  transition: all 0.25s;
}
.lightbox-nav:hover { color: var(--white); border-color: var(--white); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ============================================================
   MENU PAGE
   ============================================================ */
.menu-section { background: var(--white); }
.menu-image-wrap {
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}
.menu-image-wrap img {
  width: 100%;
  display: block;
}
.menu-placeholder {
  text-align: center;
  padding: 100px 40px;
  background: var(--champagne);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border-strong);
}
.menu-placeholder .script-text {
  font-family: var(--font-script);
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.menu-placeholder p {
  color: var(--ink-muted);
  font-size: 0.875rem;
}
.menu-cta { text-align: center; margin-top: 48px; }

/* ============================================================
   MISC UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-muted { color: var(--ink-muted); }

.mt-sm { margin-top: 16px; }
.mt-md { margin-top: 32px; }
.mt-lg { margin-top: 48px; }
.mb-sm { margin-bottom: 16px; }
.mb-md { margin-bottom: 32px; }
.mb-lg { margin-bottom: 48px; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.animate-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-content > * {
  animation: fadeInUp 0.9s ease both;
}
.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.25s; }
.hero-content > *:nth-child(3) { animation-delay: 0.4s; }
.hero-content > *:nth-child(4) { animation-delay: 0.55s; }
.hero-content > *:nth-child(5) { animation-delay: 0.65s; }

/* ============================================================
   FLOATING BOOKING BUTTON (mobile)
   ============================================================ */
.fab-book {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 500;
  display: none;
  box-shadow: 0 8px 30px rgba(201,169,110,0.5);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .site-header { padding: 0 24px; }
  .container { padding: 0 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-grid > div:first-child { grid-column: span 2; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: 180px 180px; }
  .gallery-grid .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
  .promise-grid { grid-template-columns: 1fr 1fr; }
  .gallery-full .gallery-masonry { columns: 3; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .section-lg { padding: 90px 0; }

  .nav-links { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }
  .fab-book { display: inline-flex; }

  .hero .container { padding-top: 120px; padding-bottom: 80px; }

  .intro-grid,
  .about-story-grid,
  .hours-layout,
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }

  .intro-image-grid,
  .about-images { display: none; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: 150px 150px; }
  .gallery-grid .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }

  .gallery-full .gallery-masonry { columns: 2; }

  .promise-grid { grid-template-columns: 1fr; gap: 16px; }

  .stats-row { gap: 40px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid > div:first-child { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }

  .contact-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

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

  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .gallery-full .gallery-masonry { columns: 1; }
  .why-grid { grid-template-columns: 1fr; }
  .booking-benefits { flex-direction: column; align-items: center; }
  .rating-strip .container { gap: 24px; }
}

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


/* Background-image divs for intro & about image grids */
.intro-img-bg,
.about-images .intro-img-bg {
  width: 100%;
  aspect-ratio: 3/4;
  background-color: var(--champagne);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--radius-lg);
  display: block;
}
/* First child offset */
.intro-image-grid .intro-img-bg:first-child,
.about-images .intro-img-bg:first-child {
  margin-top: 32px;
}
