/* Modern Glassmorphic iOS-inspired Design System */
/* Theme Color: Rustic Green & Yellow / Gold */

:root {
  /* Color Palette */
  --bg-primary: #0b0e07; /* Luxurious dark olive/forest black */
  --bg-secondary: #12180c; /* Slightly lighter deep olive-black */
  --color-gold: #c5a059; /* Classic rustic gold/yellow */
  --color-gold-hover: #e0bb73; /* Lighter gold for hover states */
  --color-green-sage: #8fa874; /* Soft rustic sage green */
  --color-green-olive: #556b2f; /* Darker rustic olive green */
  --color-text-cream: #f4f2eb; /* Warm off-white/cream for high contrast */
  --color-text-muted: rgba(244, 242, 235, 0.45); /* Muted warm cream */
  --color-text-dim: rgba(244, 242, 235, 0.25); /* Muted labels */
  
  /* Glassmorphism Configuration */
  --glass-bg: rgba(18, 24, 12, 0.45); /* Dark translucent olive background */
  --glass-border: rgba(197, 160, 89, 0.12); /* Subtle gold border */
  --glass-border-light: rgba(255, 255, 255, 0.05); /* Very light white border */
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
  
  /* Fonts */
  --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  
  /* Transitions (iOS-inspired springy feel) */
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-primary);
  color: var(--color-text-cream);
  font-family: var(--font-sans);
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 300;
  letter-spacing: 0.02em;
}

p {
  font-weight: 400;
}

.label-caps {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--color-gold);
}

/* Glassmorphism Card Style */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(25px) saturate(140%);
  -webkit-backdrop-filter: blur(25px) saturate(140%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: 20px;
}

/* Section Common Styles */
section {
  position: relative;
  background-color: var(--bg-primary);
}

.section-border-top {
  border-top: 1px solid var(--glass-border-light);
}

/* Layout Containers */
.container-max {
  max-width: 1024px;
  margin: 0 auto;
  width: 100%;
}

/* Image Rustic Tint Filters */
img.themed-image {
  filter: sepia(0.15) brightness(0.9) contrast(1.02) hue-rotate(-5deg);
  transition: var(--transition-smooth);
}

img.themed-image:hover {
  filter: sepia(0.08) brightness(0.98) contrast(1.05) hue-rotate(-5deg);
}

/* Buttons */
.btn-primary {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  text-decoration: none;
  background-color: var(--color-gold);
  color: var(--bg-primary);
  padding: 15px 32px;
  border-radius: 40px;
  border: 1px solid var(--color-gold);
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: center;
  outline: none;
}

.btn-primary:hover {
  background-color: var(--color-gold-hover);
  border-color: var(--color-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.2);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-outline {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  text-decoration: none;
  background-color: transparent;
  color: var(--color-text-cream);
  padding: 15px 32px;
  border-radius: 40px;
  border: 1px solid rgba(244, 242, 235, 0.2);
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: center;
  outline: none;
}

.btn-outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background-color: rgba(197, 160, 89, 0.05);
  transform: translateY(-2px);
}

.btn-outline:active {
  transform: scale(0.98);
}

/* AGE GATE VIEW */
.age-gate-container {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
  background-color: #050604;
}

.age-gate-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 15%;
  filter: blur(12px) brightness(0.2) saturate(0.5);
  transform: scale(1.06);
  z-index: 1;
}

.age-gate-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(11,14,7,0.3) 0%, rgba(5,6,4,0.85) 100%);
  z-index: 2;
}

.age-gate-card {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 380px;
  text-align: center;
  padding: 56px 40px 48px;
  animation: floatIn 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.age-gate-card .divider {
  width: 60px;
  height: 1px;
  background-color: var(--color-gold);
  margin: 28px auto;
  opacity: 0.35;
}

@keyframes floatIn {
  0% { opacity: 0; transform: translateY(30px); filter: blur(5px); }
  100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* HEADER STYLE (iOS Glassy Navbar) */
header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  transition: var(--transition-smooth);
  background: rgba(11, 14, 7, 0.15);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

header.site-header.scrolled {
  background: rgba(11, 14, 7, 0.82);
  backdrop-filter: blur(25px) saturate(130%);
  -webkit-backdrop-filter: blur(25px) saturate(130%);
  height: 64px;
  border-bottom: 1px solid rgba(197, 160, 89, 0.08);
}

header.site-header .nav-left, header.site-header .nav-right {
  display: flex;
  gap: 32px;
  flex: 1;
}

header.site-header .nav-right {
  justify-content: flex-end;
}

header.site-header .logo {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.38em;
  color: var(--color-text-cream);
  text-decoration: none;
  transition: var(--transition-fast);
  flex-shrink: 0;
  text-align: center;
}

header.site-header .logo:hover {
  color: var(--color-gold);
  letter-spacing: 0.4em;
}

header.site-header nav a {
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--color-text-muted);
  transition: var(--transition-fast);
  position: relative;
  padding: 6px 0;
}

header.site-header nav a:hover {
  color: var(--color-text-cream);
}

header.site-header nav a.active {
  color: var(--color-gold);
}

header.site-header nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--color-gold);
}

/* MOBILE HEADER & MENU */
.mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  z-index: 100;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  transition: var(--transition-smooth);
  background: rgba(11, 14, 7, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.mobile-header.scrolled {
  background: rgba(11, 14, 7, 0.92);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(197, 160, 89, 0.08);
}

.mobile-header .logo {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.32em;
  color: var(--color-text-cream);
  text-decoration: none;
}

.menu-trigger {
  background: none;
  border: none;
  color: var(--color-text-cream);
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  outline: none;
}

.menu-trigger:active {
  transform: scale(0.9);
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: rgba(11, 14, 7, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  padding: 40px 24px;
  overflow-y: auto;
  animation: slideDownFade 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-top: 1px solid rgba(197, 160, 89, 0.08);
}

@keyframes slideDownFade {
  0% { opacity: 0; transform: translateY(-15px); }
  100% { opacity: 1; transform: translateY(0); }
}

.mobile-menu-overlay nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu-overlay nav a {
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-text-muted);
  padding: 18px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: var(--transition-fast);
  display: block;
}

.mobile-menu-overlay nav a:hover, .mobile-menu-overlay nav a.active {
  color: var(--color-gold);
  padding-left: 14px;
}

/* HERO SLIDER (HOMEPAGE) */
.hero-slider {
  position: relative;
  height: 100vh;
  height: 100dvh;
  width: 100%;
  overflow: hidden;
  background-color: #050604;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Ken Burns effect */
.slide.active img {
  animation: kenBurns 8s ease forwards;
}

@keyframes kenBurns {
  0% { transform: scale(1.02); }
  100% { transform: scale(1.07); }
}

/* Dark Vignette Overlays */
.overlay-dark {
  position: absolute;
  inset: 0;
  background: rgba(11, 14, 7, 0.28);
  z-index: 3;
}

.overlay-gradient-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40vh;
  background: linear-gradient(to top, var(--bg-primary) 0%, rgba(11, 14, 7, 0.5) 50%, transparent 100%);
  z-index: 4;
}

.overlay-gradient-left {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 50vw;
  background: linear-gradient(to right, rgba(11, 14, 7, 0.8) 0%, rgba(11, 14, 7, 0.4) 50%, transparent 100%);
  z-index: 4;
}

/* Hero Content */
.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 0 40px 80px;
}

.hero-content-inner {
  max-width: 1024px;
  margin: 0 auto;
  width: 100%;
}

.hero-subtitle {
  color: var(--color-gold);
  letter-spacing: 0.32em;
  margin-bottom: 16px;
  font-size: 10px;
}

.hero-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(3.8rem, 11vw, 8.5rem);
  line-height: 0.95;
  color: var(--color-text-cream);
  margin-bottom: 24px;
  font-weight: 300;
}

.hero-desc {
  color: var(--color-text-muted);
  font-size: 11px;
  letter-spacing: 0.26em;
  max-width: 440px;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Slider Pagination Indicators */
.slider-pagination {
  position: absolute;
  bottom: 48px;
  right: 40px;
  z-index: 10;
  display: flex;
  gap: 8px;
}

.pagination-dot {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  height: 2px;
  width: 8px;
  cursor: pointer;
  transition: var(--transition-fast);
  outline: none;
}

.pagination-dot.active {
  background: var(--color-gold);
  width: 28px;
}

/* PAGE WRAPPER & SUBPAGES COMMON BANNER */
.page-wrapper {
  background-color: var(--bg-primary);
  min-height: 100vh;
  padding-bottom: 20px;
}

.banner-section {
  position: relative;
  height: 42vh;
  min-height: 250px;
  width: 100%;
  overflow: hidden;
}

.banner-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-content {
  position: absolute;
  bottom: 36px;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 0 40px;
}

.banner-content-inner {
  max-width: 1024px;
  margin: 0 auto;
  width: 100%;
}

/* SECTIONS CONTENT LAYOUTS */
.content-padding {
  padding: 80px 40px;
}

/* Text Quote Block */
.intro-quote-container {
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
}

.intro-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.45rem, 3.8vw, 2.3rem);
  color: rgba(244, 242, 235, 0.72);
  line-height: 1.6;
}

/* SPECIFICATIONS GRID */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--glass-border-light);
  border-radius: 12px;
  overflow: hidden;
}

.spec-item {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-right: 1px solid var(--glass-border-light);
}

.spec-item:last-child {
  border-right: none;
}

.spec-label {
  font-size: 8px;
}

.spec-value {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  color: var(--color-text-cream);
  font-weight: 300;
}

/* HOME MINI GALLERY VIEW */
.home-gallery-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.home-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-preview-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.gallery-preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-preview-card:hover img {
  transform: scale(1.05);
}

/* ABOUT PAGE SPLIT LAYOUT */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-img-box {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-info-panel {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.about-specs-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--glass-border-light);
  border-radius: 10px;
  overflow: hidden;
}

.about-spec-cell {
  padding: 20px 24px;
  border-right: 1px solid var(--glass-border-light);
  border-bottom: 1px solid var(--glass-border-light);
}

.about-spec-cell:nth-child(even) {
  border-right: none;
}

.about-spec-cell:nth-last-child(-n+2) {
  border-bottom: none;
}

.about-desc-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: rgba(244, 242, 235, 0.65);
  line-height: 1.8;
  font-weight: 300;
}

.about-quote-card {
  padding-left: 24px;
  border-left: 2px solid var(--color-gold);
}

.about-quote-card p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--color-text-cream);
  line-height: 1.6;
  font-weight: 300;
}

/* SERVICES GRID UTILITY */
.services-grid-block {
  margin-top: 80px;
}

.services-grid-title {
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--glass-border-light);
  border-radius: 12px;
  overflow: hidden;
}

.service-card {
  padding: 24px;
  border-right: 1px solid var(--glass-border-light);
  border-bottom: 1px solid var(--glass-border-light);
  display: flex;
  align-items: center;
  min-height: 84px;
}

.service-card:nth-child(3n) {
  border-right: none;
}

.service-card:nth-last-child(-n+3) {
  border-bottom: none;
}

.service-name {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: rgba(244, 242, 235, 0.7);
  font-weight: 300;
}

/* GALLERY PAGE MASONRY/COLUMNS LAYOUT */
.gallery-masonry-wrapper {
  padding: 0 40px 80px;
}

.gallery-masonry {
  columns: 3;
  column-gap: 12px;
  space-y: 12px;
}

.gallery-masonry-item {
  break-inside: avoid;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.gallery-masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: var(--transition-fast);
  background: rgba(11, 14, 7, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-masonry-item:hover .gallery-card-overlay {
  opacity: 1;
}

.gallery-view-btn {
  background: rgba(11, 14, 7, 0.85);
  border: 1px solid var(--color-gold);
  color: var(--color-text-cream);
  padding: 10px 20px;
  font-size: 8px;
}

/* RATES PAGE LAYOUT */
.rates-layout {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.availability-panel {
  padding: 40px 0;
  border-bottom: 1px solid var(--glass-border-light);
}

.availability-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.schedule-label {
  font-size: 8px;
  margin-bottom: 8px;
}

.schedule-value {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 26px;
  color: rgba(244, 242, 235, 0.8);
  font-weight: 300;
}

.rates-list-panel {
  padding: 40px 0;
  border-bottom: 1px solid var(--glass-border-light);
}

.rates-intro-desc {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--color-text-muted);
  margin-bottom: 40px;
}

.rate-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.rate-row:last-child {
  border-bottom: none;
}

.rate-label {
  font-size: 11px;
}

.rate-value {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 21px;
  color: var(--color-gold);
  font-weight: 300;
}

/* CONTACT PAGE LAYOUT */
.contact-layout {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-row-phone {
  padding: 48px 0;
  border-bottom: 1px solid var(--glass-border-light);
}

.phone-link {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(2.4rem, 7.5vw, 4.4rem);
  color: var(--color-text-cream);
  text-decoration: none;
  font-weight: 300;
  line-height: 1.1;
  display: block;
  letter-spacing: 0.02em;
  transition: var(--transition-fast);
  margin-bottom: 12px;
}

.phone-link:hover {
  color: var(--color-gold);
  opacity: 0.85;
}

/* LIGHTBOX MODAL (iOS Fullscreen Style) */
.lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5, 6, 4, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  z-index: 210;
  outline: none;
}

.lightbox-close:hover {
  color: var(--color-text-cream);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(18, 24, 12, 0.5);
  border: 1px solid var(--glass-border);
  color: var(--color-text-cream);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 210;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  outline: none;
}

.lightbox-nav:hover {
  background: rgba(197, 160, 89, 0.2);
  border-color: var(--color-gold);
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.lightbox-img-container {
  max-width: 100%;
  max-height: 86vh;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalZoomIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalZoomIn {
  0% { opacity: 0; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1); }
}

.lightbox-img {
  max-width: 100%;
  max-height: 84vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 210;
}

/* FOOTER */
footer.site-footer {
  width: 100%;
  padding: 48px 40px;
  background-color: #050604;
  border-top: 1px solid var(--glass-border-light);
}

footer.site-footer .footer-inner {
  max-width: 1024px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

footer.site-footer .footer-logo {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.32em;
  color: var(--color-text-dim);
}

footer.site-footer .footer-copy {
  color: var(--color-text-dim);
  font-size: 8px;
  text-align: center;
}

footer.site-footer .btn-reset-age {
  background: none;
  border: none;
  color: var(--color-text-dim);
  cursor: pointer;
  transition: var(--transition-fast);
  outline: none;
}

footer.site-footer .btn-reset-age:hover {
  color: var(--color-gold);
}

/* RESPONSIVE DESIGN MEDIA QUERIES */

@media (max-width: 900px) {
  /* Tablet views */
  header.site-header {
    display: none;
  }
  
  .mobile-header {
    display: flex;
  }
  
  .content-padding {
    padding: 60px 24px;
  }
  
  .specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .spec-item:nth-child(2) {
    border-right: none;
  }
  
  .spec-item:nth-child(1), .spec-item:nth-child(2) {
    border-bottom: 1px solid var(--glass-border-light);
  }
  
  .home-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-card:nth-child(2n) {
    border-right: none;
  }
  
  .service-card:nth-last-child(-n+2) {
    border-bottom: none;
  }
  
  .gallery-masonry {
    columns: 2;
  }
  
  footer.site-footer {
    padding: 40px 24px;
  }
  
  footer.site-footer .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .lightbox-nav {
    width: 44px;
    height: 44px;
  }
  
  .lightbox-prev {
    left: 10px;
  }
  
  .lightbox-next {
    right: 10px;
  }
}

@media (max-width: 600px) {
  /* Phone views */
  .age-gate-card {
    padding: 40px 24px 36px;
  }
  
  .hero-content {
    padding: 0 20px 60px;
  }
  
  .hero-title {
    margin-bottom: 16px;
  }
  
  .hero-desc {
    margin-bottom: 28px;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 12px;
  }
  
  .hero-cta .btn-primary, .hero-cta .btn-outline {
    width: 100%;
  }
  
  .slider-pagination {
    bottom: 24px;
    right: 50%;
    transform: translateX(50%);
  }
  
  .specs-grid {
    grid-template-columns: 1fr;
  }
  
  .spec-item {
    border-right: none !important;
    border-bottom: 1px solid var(--glass-border-light) !important;
    padding: 24px;
  }
  
  .spec-item:last-child {
    border-bottom: none !important;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card {
    border-right: none !important;
    border-bottom: 1px solid var(--glass-border-light) !important;
    min-height: auto;
    padding: 16px;
  }
  
  .service-card:last-child {
    border-bottom: none !important;
  }
  
  .availability-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .about-specs-table {
    grid-template-columns: 1fr;
  }
  
  .about-spec-cell {
    border-right: none !important;
    border-bottom: 1px solid var(--glass-border-light) !important;
    padding: 16px 20px;
  }
  
  .about-spec-cell:last-child {
    border-bottom: none !important;
  }
  
  .lightbox-modal {
    padding: 12px;
  }
  
  .lightbox-nav {
    display: none; /* Hide arrow navigation on tiny screens, tap-based modal */
  }
}
