@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/playfair-display-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/playfair-display-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('fonts/inter-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('fonts/inter-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('fonts/inter-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

html, body {
  overflow-x: hidden;
}

body {
  margin: 0;
  background: #111111;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #FFFFFF;
}

a {
  color: #B35A24;
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

a:hover {
  color: #d97a3a;
}

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

ul {
  padding-left: 22px;
}

li {
  margin-bottom: 10px;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-thumb {
  background: #B35A24;
  border-radius: 999px;
}

@keyframes cm-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes cm-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.cm-reveal {
  animation: cm-fade-up 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.font-display {
  font-family: 'Playfair Display', Georgia, serif;
}

.font-body {
  font-family: 'Inter', system-ui, sans-serif;
}

.site-wrapper {
  font-family: 'Inter', system-ui, sans-serif;
  background: #111111;
  color: #FFFFFF;
  overflow-x: hidden;
  width: 100%;
}

.disclaimer-ribbon {
  background: #000000;
  text-align: center;
  padding: 6px 16px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.age-gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-gate-box {
  max-width: 440px;
  text-align: center;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 48px 36px;
}

.age-gate-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  color: #B35A24;
  margin-bottom: 16px;
}

.age-gate-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 28px;
  color: #FFFFFF;
  margin: 0 0 20px;
}

.age-gate-text {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 32px;
}

.age-gate-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.btn-age-deny {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 13px;
  color: #FFFFFF;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 14px 28px;
  min-height: 48px;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-age-deny:hover {
  border-color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 190;
  background: #1a1a1a;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.cookie-banner-text {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  max-width: 640px;
}

.cm-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 15px;
  color: #FFFFFF;
  background: #B35A24;
  padding: 14px 34px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.cm-btn-primary:hover {
  background: #c96a2c;
  box-shadow: none;
  transform: translateY(-2px);
}

.cm-btn-primary-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 13px;
  color: #FFFFFF;
  background: #B35A24;
  padding: 14px 28px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.cm-btn-primary-sm:hover {
  background: #c96a2c;
  box-shadow: none;
  transform: translateY(-2px);
}

.cm-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 15px;
  color: #FFFFFF;
  background: transparent;
  border: 1px solid #FFFFFF;
  padding: 14px 34px;
  border-radius: 4px;
  transition: background 0.25s ease, color 0.25s ease;
}

.cm-btn-outline:hover {
  background: #FFFFFF;
  color: #111111;
}

.cm-btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 15px;
  color: #B35A24;
  background: #FFFFFF;
  padding: 14px 42px;
  border-radius: 4px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.cm-btn-white:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.cm-btn-cookie {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 12px;
  color: #FFFFFF;
  background: #B35A24;
  padding: 12px 24px;
  min-height: 44px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.cm-btn-cookie:hover {
  background: #c96a2c;
  box-shadow: none;
  transform: translateY(-2px);
}

.btn-back {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px 20px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 4px;
  transition: border-color 0.25s ease;
}

.btn-back:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: #FFFFFF;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header--transparent {
  background: transparent;
  box-shadow: none;
}

.site-header--solid {
  background: #111111;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.site-header--sub {
  background: #111111;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.header-logo {
  display: flex;
  align-items: center;
  min-height: 44px;
}

.header-logo img {
  width: 226px;
  height: 32px;
}

.header-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  color: #FFFFFF;
  font-size: 20px;
  cursor: pointer;
  transition: border-color 0.25s ease;
}

.header-menu-btn:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: #111111;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.drawer-close-row {
  display: flex;
  justify-content: flex-end;
  padding: 20px 24px;
}

.drawer-close-btn {
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 28px;
  cursor: pointer;
  min-width: 48px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding-top: 20px;
}

.drawer-nav-link {
  font-family: 'Playfair Display', Georgia, serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 24px;
  color: #FFFFFF;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
}

.drawer-nav-link:hover {
  color: #B35A24;
}

.drawer-cta {
  margin-top: 12px;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 15px;
  color: #FFFFFF;
  background: #B35A24;
  padding: 12px 32px;
  min-height: 48px;
  border-radius: 4px;
  transition: background 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.drawer-cta:hover {
  background: #c96a2c;
  color: #FFFFFF;
}

.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  contain: layout;
}

.hero picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
  width: 100%;
}

.hero-kicker {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  color: #B35A24;
  margin-bottom: 16px;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.1;
  font-size: clamp(40px, 8vw, 96px);
  margin: 0 0 20px;
  max-width: 900px;
  color: #FFFFFF;
  min-height: 3.3em;
}

.hero-subtitle {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(16px, 2.4vw, 21px);
  color: #FFFFFF;
  max-width: 520px;
  margin: 0 0 36px;
  line-height: 1.4;
}

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

.marquee {
  background: #B35A24;
  overflow: hidden;
  padding: 18px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: cm-marquee 26s linear infinite;
}

.marquee-segment {
  display: flex;
  gap: 40px;
  padding-right: 40px;
}

.marquee-text {
  font-family: 'Playfair Display', Georgia, serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 700;
  color: #FFFFFF;
  white-space: nowrap;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-kicker {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  color: #B35A24;
  margin-bottom: 14px;
}

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

.welcome-section {
  background: #F4F1ED;
  padding: 96px 24px;
}

.welcome-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.welcome-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: clamp(28px, 5vw, 48px);
  color: #111111;
  margin: 0 0 28px;
}

.welcome-text {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.6;
  color: rgba(17, 17, 17, 0.7);
  text-wrap: pretty;
}

.explore-section {
  background: #111111;
  padding: 96px 0;
}

.explore-heading {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: clamp(28px, 5vw, 44px);
  color: #FFFFFF;
  margin: 0 0 48px;
}

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

.section-title--dark {
  color: #111111;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
}

.cm-grid-card {
  position: relative;
  display: block;
  min-height: 480px;
  overflow: hidden;
  text-decoration: none;
}

.cm-grid-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.cm-grid-card:hover .cm-grid-img {
  transform: scale(1.08);
}

.cm-grid-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.cm-grid-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 40px;
}

.cm-grid-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 28px;
  color: #FFFFFF;
  text-align: left;
  margin: 0 0 10px;
}

.cm-grid-text {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 20px;
}

.cm-ghost-btn {
  display: inline-flex;
  align-items: center;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
  background: transparent;
  padding: 10px 20px;
  min-height: 44px;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.cm-grid-card:hover .cm-ghost-btn {
  background: #B35A24;
  border-color: #B35A24;
  color: #FFFFFF;
}

.benefits-section {
  background: #000000;
  padding: 96px 24px;
}

.benefits-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.benefit-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 40px;
  color: #B35A24;
  line-height: 1;
  margin-bottom: 14px;
}

.benefit-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 20px;
  color: #FFFFFF;
  margin: 0 0 12px;
}

.benefit-text {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.gallery-section {
  background: #111111;
  padding: 96px 0;
}

.gallery-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gallery-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: clamp(28px, 5vw, 44px);
  margin: 0 0 12px;
  color: #FFFFFF;
}

.gallery-subtitle {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 40px;
  max-width: 560px;
}

.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: #000000;
}

.gallery-item--span2 {
  grid-column: span 2;
  aspect-ratio: 3/4;
}

.gallery-item--span3 {
  grid-column: span 3;
  aspect-ratio: 3/2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-section {
  background: #B35A24;
  padding: 96px 24px;
}

.cta-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: clamp(30px, 6vw, 52px);
  color: #FFFFFF;
  margin: 0 0 24px;
}

.cta-text {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 36px;
}

.news-section {
  background: #F4F1ED;
  padding: 96px 24px;
}

.news-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.news-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: clamp(28px, 5vw, 44px);
  color: #111111;
  text-align: center;
  margin: 0 0 48px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.news-card {
  border-top: 3px solid #B35A24;
  padding-top: 20px;
}

.news-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 21px;
  color: #111111;
  margin: 0 0 12px;
}

.news-card-text {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(17, 17, 17, 0.65);
  margin: 0;
}

.site-footer {
  background: #000000;
  padding: 56px 24px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  width: 180px;
  height: 24px;
  display: block;
}

.footer-age-badge {
  width: 52px;
  height: 52px;
  border: 2px solid #B35A24;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: #B35A24;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-nav a {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer-nav a:hover {
  color: #FFFFFF;
}

.footer-support {
  padding-top: 28px;
}

.footer-support-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  color: #B35A24;
  margin-bottom: 14px;
}

.footer-support-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-support-links a {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer-support-links a:hover {
  color: #FFFFFF;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.footer-social a {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer-social a:hover {
  color: #FFFFFF;
}

.footer-disclaimer {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  max-width: 640px;
  margin: 28px 0 0;
}

.footer-copyright {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin: 16px 0 0;
}

.sub-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

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

.sub-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.sub-hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 56px;
  width: 100%;
}

.sub-hero-kicker {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  color: #B35A24;
  margin-bottom: 16px;
}

.sub-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: clamp(36px, 6vw, 64px);
  margin: 0;
  color: #FFFFFF;
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item--span2,
  .gallery-item--span3 {
    grid-column: span 1;
    aspect-ratio: 3/2;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding-bottom: 48px;
  }

  .hero-title {
    font-size: clamp(32px, 8vw, 56px);
  }

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

  .cm-grid-card {
    min-height: 400px;
  }

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

  .gallery-item--span2,
  .gallery-item--span3 {
    grid-column: span 1;
    aspect-ratio: 16/9;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-nav {
    gap: 16px;
  }

  .footer-support-links {
    flex-direction: column;
    gap: 10px;
  }

  .footer-social {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
  }

  .cm-btn-primary,
  .cm-btn-outline {
    width: 100%;
    text-align: center;
  }

  .age-gate-box {
    padding: 32px 20px;
  }

  .age-gate-title {
    font-size: 24px;
  }

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

  .events-card-grid {
    grid-template-columns: 1fr;
  }

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

  .section-title {
    font-size: clamp(24px, 5vw, 36px);
  }
}

@media (max-width: 320px) {
  .header-inner {
    padding: 12px 16px;
  }

  .hero-content {
    padding: 0 16px 36px;
  }

  .section-container {
    padding: 0 16px;
  }

  .welcome-section {
    padding: 56px 16px;
  }

  .benefits-section {
    padding: 56px 16px;
  }

  .cta-section {
    padding: 56px 16px;
  }

  .news-section {
    padding: 56px 16px;
  }

  .gallery-header {
    padding: 0 16px;
  }

  .gallery-grid {
    padding: 0 16px;
  }

  .cm-btn-primary,
  .cm-btn-outline,
  .cm-btn-white {
    padding: 14px 24px;
    font-size: 13px;
  }

  .btn-back {
    padding: 8px 14px;
    font-size: 11px;
  }

  .cookie-banner {
    padding: 16px;
    gap: 12px;
  }

  .drawer-nav-link {
    font-size: 20px;
  }
}

.hidden {
  display: none !important;
}


/* ==========================================================================
   Subpage Containers & Components Layout
   ========================================================================== */

.site-header--sub {
  position: relative;
  background: #111111;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.legal-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 5vw, 52px);
  color: #FFFFFF;
  margin: 0 0 12px;
}

.legal-date {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  color: #B35A24;
  margin-bottom: 40px;
}

.legal-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  color: #FFFFFF;
  margin: 36px 0 16px;
}

.legal-text {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
}

.legal-text--spaced {
  margin-bottom: 24px;
}

/* About Us Layout */
.about-hero-row {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.about-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 5vw, 56px);
  color: #FFFFFF;
  margin: 0 0 24px;
}

.about-body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.values-section {
  background: #181818;
  padding: 80px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.values-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.value-card {
  background: #111111;
  padding: 36px 28px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.value-icon {
  font-size: 32px;
  margin-bottom: 20px;
}

.value-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  color: #FFFFFF;
  margin: 0 0 12px;
}

.value-text {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Contact Page Layout */
.contact-hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 24px 20px;
  text-align: center;
}

.contact-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 5vw, 56px);
  color: #FFFFFF;
  margin: 0 0 16px;
}

.contact-subtitle {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 40px;
}

.contact-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label,
.form-group label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  display: block;
}

.cm-input,
.form-input {
  box-sizing: border-box;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  padding: 14px 18px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: #FFFFFF;
  width: 100%;
  display: block;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.cm-input:focus,
.form-input:focus {
  outline: none;
  border-color: #B35A24;
  background: #222222;
}

.cm-textarea,
.form-textarea {
  box-sizing: border-box;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  padding: 14px 18px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: #FFFFFF;
  width: 100%;
  display: block;
  min-height: 140px;
  resize: vertical;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.cm-textarea:focus,
.form-textarea:focus {
  outline: none;
  border-color: #B35A24;
  background: #222222;
}

.form-submit-btn {
  width: 100%;
  min-height: 52px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 8px;
}

.form-success {
  background: #1e3a29;
  border: 1px solid #2e6b43;
  padding: 24px;
  border-radius: 6px;
  margin-bottom: 24px;
  text-align: center;
}

.form-success-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  color: #60d38e;
  margin: 0 0 8px;
}

.form-success-text {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.contact-info-card {
  background: #181818;
  padding: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-info-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  color: #FFFFFF;
  margin: 0 0 24px;
}

.contact-info-item {
  margin-bottom: 28px;
}

.contact-detail-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #B35A24;
  margin-bottom: 6px;
}

.contact-detail-text {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.contact-detail-text a {
  color: #B35A24;
  text-decoration: underline;
}

.contact-detail-text a:hover {
  color: #d97a3a;
}

.contact-map-wrapper {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 16px;
}

.contact-map {
  border: 0;
  display: block;
  width: 100%;
  filter: grayscale(80%) invert(90%) contrast(120%);
}

.contact-info-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #B35A24;
  margin-bottom: 6px;
}

.contact-info-val {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

/* Page Hero & Alt Rows (Food & Beverage, Spa) */
.page-hero-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 24px 40px;
  text-align: center;
}

.page-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 5vw, 56px);
  color: #FFFFFF;
  margin: 0 0 16px;
}

.page-hero-text {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.alt-row {
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

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

.alt-row--reverse .alt-row-image {
  order: 2;
}

.alt-row-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.alt-row-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  color: #FFFFFF;
  margin: 0 0 16px;
}

.alt-row-body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 24px;
}

/* Play Page Layout */
.intro-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px 60px;
}

.intro-text {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
}

.why-section {
  background: #181818;
  padding: 80px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.why-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 44px);
  color: #FFFFFF;
  text-align: center;
  margin: 0 0 48px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.why-grid article {
  background: #111111;
  padding: 36px 28px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.why-item-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  color: #FFFFFF;
  margin: 0 0 12px;
}

.why-item-text {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.responsible-play-section {
  padding: 80px 24px;
}

.responsible-play-inner {
  max-width: 900px;
  margin: 0 auto;
  background: #181818;
  padding: 48px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.responsible-play-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  color: #FFFFFF;
  margin: 0 0 16px;
}

.responsible-play-text {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 24px;
}

.responsible-play-resource {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  color: #B35A24;
  margin-top: 12px;
}

/* Events Page Layout */
.events-hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 24px 40px;
  text-align: center;
}

.events-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.events-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.cm-card-hover {
  background: #181818;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease;
}

.cm-card-hover:hover {
  transform: translateY(-4px);
}

.event-card-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.event-card-body {
  padding: 28px;
}

.event-card-date {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #B35A24;
  margin-bottom: 8px;
}

.event-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  color: #FFFFFF;
  margin: 0 0 12px;
}

.event-card-text {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

@media (max-width: 768px) {
  .about-hero-row,
  .alt-row,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .alt-row--reverse .alt-row-image {
    order: 0;
  }
  .responsible-play-inner {
    padding: 28px 20px;
  }
  .legal-section {
    padding: 40px 20px 60px;
  }
}
