@charset "UTF-8";

:root {
  --color-bg-page: #FDFBF7;
  --color-bg-soft: #F6F2EB;
  --color-bg-muted: #EBF0EC;
  --color-text: #1A1A1A;
  --color-text-muted: #55635C;
  --color-heading: #0F291E;
  --color-primary: #155D42;
  --color-primary-soft: #EBF0EC;
  --color-success: #1b7c4d;
  --color-warning: #D4AF37;
  --color-danger: #b3261e;
  --color-border-subtle: #E0D8C7;
  --color-border-strong: #D4AF37;
  --color-neutral-50: #FAF7F1;
  --color-neutral-100: #F0E8DB;
  --color-neutral-200: #DED5C3;
  --color-neutral-300: #C7BCA7;
  --color-neutral-400: #A09782;
  --color-neutral-500: #807863;
  --color-neutral-600: #635E4C;
  --color-neutral-700: #4A4637;
  --color-neutral-800: #322F24;
  --color-neutral-900: #1F1D16;
  --color-overlay: rgba(8, 20, 15, 0.72);
  --color-focus-ring: rgba(21, 93, 66, 0.45);

  --font-heading: "Playfair Display", "Cormorant Garamond", "Prata", "Times New Roman", serif;
  --font-body: "Plus Jakarta Sans", "Outfit", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;

  --leading-tight: 1.2;
  --leading-snug: 1.35;
  --leading-normal: 1.6;
  --leading-relaxed: 1.8;

  --space-0: 0;
  --space-1: 0.125rem;
  --space-2: 0.25rem;
  --space-3: 0.5rem;
  --space-4: 0.75rem;
  --space-5: 1rem;
  --space-6: 1.25rem;
  --space-7: 1.5rem;
  --space-8: 2rem;
  --space-9: 2.5rem;
  --space-10: 3rem;
  --space-11: 3.5rem;
  --space-12: 4rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 999px;
  --radius-card: 18px;

  --shadow-soft: 0 10px 30px rgba(5, 25, 18, 0.08);
  --shadow-elevated: 0 18px 45px rgba(5, 25, 18, 0.13);
  --shadow-seal: 0 12px 36px rgba(10, 35, 25, 0.28);

  --transition-fast: 120ms ease-out;
  --transition-base: 200ms ease-out;
  --transition-slow: 320ms ease-out;

  --container-max: 1180px;
  --nav-height: 76px;
  --ribbon-height: 42px;
}

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

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul,
ol,
fieldset,
legend {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  text-rendering: optimizeLegibility;
}

img,
video,
canvas,
svg,
picture {
  max-width: 100%;
  height: auto;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

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

a:hover {
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  background-color: var(--color-bg-page);
  color: var(--color-text-muted);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  line-height: var(--leading-tight);
  font-weight: 500;
}

h1 {
  font-size: clamp(2.25rem, 3vw + 1.5rem, 3.25rem);
  letter-spacing: 0.02em;
}

h2 {
  font-size: clamp(1.75rem, 2.4vw + 1rem, 2.25rem);
}

h3 {
  font-size: clamp(1.5rem, 1.8vw + 0.9rem, 1.9rem);
}

h4 {
  font-size: 1.375rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

p {
  margin-bottom: var(--space-5);
  font-size: var(--text-base);
}

strong {
  font-weight: 600;
  color: var(--color-heading);
}

em {
  font-style: italic;
}

ul,
ol {
  padding-left: 1.25rem;
}

main {
  min-height: calc(100vh - 180px);
}

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

.section {
  padding-block: clamp(3rem, 6vw, 4.5rem);
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.flex-col {
  display: flex;
  flex-direction: column;
}

.grid {
  display: grid;
  gap: var(--space-7);
}

.grid-2 {
  display: grid;
  gap: var(--space-8);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 767px) {
  .container {
    padding-inline: var(--space-4);
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-xl);
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid transparent;
  background-color: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(16, 69, 49, 0.3);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-base), color var(--transition-base), border-color var(--transition-base);
}

.btn:hover {
  transform: translateY(-1px);
  background-color: #134b36;
  box-shadow: 0 18px 40px rgba(10, 46, 33, 0.35);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(5, 25, 18, 0.35);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-primary);
  border-color: rgba(21, 93, 66, 0.28);
  box-shadow: none;
}

.btn-secondary:hover {
  background-color: var(--color-primary-soft);
  border-color: rgba(21, 93, 66, 0.5);
}

.btn-ghost {
  background-color: transparent;
  border-color: transparent;
  color: var(--color-heading);
  box-shadow: none;
}

.btn[disabled],
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(86, 96, 88, 0.24);
  background-color: rgba(253, 251, 247, 0.92);
  color: var(--color-text);
  transition: border-color var(--transition-base), box-shadow var(--transition-base), background-color var(--transition-base);
}

input::placeholder,
textarea::placeholder {
  color: rgba(85, 99, 92, 0.6);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px var(--color-primary-soft);
  background-color: #ffffff;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.card {
  position: relative;
  border-radius: var(--radius-card);
  background: linear-gradient(135deg, rgba(253, 251, 247, 0.96), rgba(246, 242, 235, 0.98));
  padding: 1.75rem 1.75rem 1.8rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(212, 175, 55, 0.28);
}

.card--muted {
  background: rgba(235, 240, 236, 0.9);
  border-color: rgba(192, 180, 150, 0.6);
}

.card-header {
  margin-bottom: 0.9rem;
}

.card-title {
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.card-meta {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(85, 99, 92, 0.9);
}

/* Header & Ribbon styles are cleanly handled in header.css */

.home-hero {
  padding-top: clamp(3rem, 8vh, 4.5rem);
  padding-bottom: clamp(3.25rem, 9vh, 5rem);
}

.home-hero__grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3.25rem);
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  align-items: center;
}

.home-hero__kicker {
  font-size: 0.78rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(85, 99, 92, 0.9);
  margin-bottom: 0.95rem;
}

.home-hero__title {
  margin-bottom: 1rem;
}

.home-hero__title em {
  color: var(--color-primary);
}

.home-hero__lead {
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 34rem;
  margin-bottom: 1.5rem;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.home-hero__link {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-hero__link span {
  margin-left: 0.4em;
}

.home-hero__fineprint {
  font-size: 0.78rem;
  color: rgba(85, 99, 92, 0.9);
  max-width: 30rem;
}

.home-hero__media {
  position: relative;
}

.home-hero__image-wrap {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background: radial-gradient(circle at 10% 0, #ffffff 0, #EBF0EC 32%, #D4AF37 115%);
  padding: 6px;
  box-shadow: var(--shadow-elevated);
}

.home-hero__image-inner {
  border-radius: 20px;
  overflow: hidden;
}

.home-hero__image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero__seal {
  position: absolute;
  right: 5%;
  bottom: 4%;
  width: 108px;
  height: 108px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 0, #ffffff 0, #EBF0EC 36%, #D4AF37 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-seal);
}

.home-hero__seal-inner {
  width: 82px;
  height: 82px;
  border-radius: 999px;
  border: 1px solid rgba(26, 26, 26, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-hero__seal-inner span {
  display: block;
}

.home-hero__caption {
  margin-top: 0.8rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(85, 99, 92, 0.9);
}

@media (max-width: 1024px) {
  .home-hero__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }
}

@media (max-width: 860px) {
  .home-hero__grid {
    grid-template-columns: 1fr;
  }
  .home-hero__media {
    max-width: 460px;
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .home-hero {
    padding-top: 2.6rem;
  }
  .home-hero__title {
    font-size: clamp(1.9rem, 5vw, 2.4rem);
  }
  .home-hero__seal {
    width: 90px;
    height: 90px;
  }
  .home-hero__seal-inner {
    width: 70px;
    height: 70px;
    font-size: 0.6rem;
  }
}

.index-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(85, 99, 92, 0.95);
}

.index-label span {
  color: var(--color-warning);
}

.home-facts {
  border-top: 1px solid rgba(192, 180, 150, 0.5);
  border-bottom: 1px solid rgba(192, 180, 150, 0.5);
  background: linear-gradient(90deg, rgba(246, 242, 235, 0.96), rgba(235, 240, 236, 0.9));
}

.home-facts__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem 2.5rem;
  padding-block: 0.95rem;
}

.home-fact {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.home-fact__bullet {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background-color: var(--color-warning);
}

.home-fact__label {
  color: var(--color-heading);
}

.page-hero {
  padding-block: 2.75rem 2.5rem;
  border-bottom: 1px solid rgba(192, 180, 150, 0.45);
  background: radial-gradient(circle at top left, #ffffff 0, #FDFBF7 40%, #EBF0EC 130%);
}

.page-hero__kicker {
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(85, 99, 92, 0.9);
  margin-bottom: 0.65rem;
}

.page-hero__title {
  margin-bottom: 0.4rem;
}

.page-hero__meta {
  font-size: 0.88rem;
  color: rgba(85, 99, 92, 0.96);
}

.legal-content {
  padding-block: 2.5rem 3.5rem;
}

.legal-content p {
  font-size: 0.98rem;
  line-height: 1.8;
}

.age-gate-modal-backdrop {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: var(--color-overlay);
  backdrop-filter: blur(12px);
  z-index: 100;
}

.age-gate-modal-backdrop.is-open {
  display: flex;
}

.age-gate-modal {
  width: min(480px, 92vw);
  border-radius: 22px;
  background: radial-gradient(circle at top, #ffffff 0, #FDFBF7 36%, #F6F2EB 100%);
  padding: 2.1rem 2.1rem 2rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(212, 175, 55, 0.6);
}

.age-gate-modal__eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(85, 99, 92, 0.95);
  margin-bottom: 0.6rem;
}

.age-gate-modal__title {
  font-size: 1.35rem;
  line-height: 1.4;
  margin-bottom: 0.8rem;
}

.age-gate-modal__body {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.4rem;
}

.age-gate-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.age-gate-modal__actions .btn {
  flex: 1 1 140px;
}

.age-gate-modal__secondary {
  font-size: 0.88rem;
}

.footer {
  border-top: 1px solid rgba(192, 180, 150, 0.6);
  background: radial-gradient(circle at top, #F6F2EB 0, #FDFBF7 45%, #EBF0EC 120%);
  padding-block: 2.2rem 2.4rem;
}

.footer__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.9rem;
}

.footer__legal-link {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-heading);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.75rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(85, 99, 92, 0.9);
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__nav a {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .footer__top {
    flex-direction: column;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  box-shadow: 0 0 0 1px var(--color-focus-ring);
}

:focus:not(:focus-visible) {
  outline: none;
}

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

ul { list-style: none !important; }
.nav-toggle { flex-direction: column; }