html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

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

* {
  margin: 0;
  padding: 0;
}

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

:root {
  --color-bg-main: #f7f2ec;
  --color-bg-elevated: #fffdf9;
  --color-bg-muted: #ebe3da;
  --color-bg-accent: #dfd2c3;
  --color-text-main: #2a241f;
  --color-text-muted: #746b62;
  --color-primary: #aa7d4b;
  --color-primary-soft: #8f6338;
  --color-success: #3a5c4a;
  --color-warning: #aa7d4b;
  --color-danger: #b64747;
  --gray-50: #f3eee8;
  --gray-100: #e7ddd2;
  --gray-200: #d7c9ba;
  --gray-300: #c4b19e;
  --gray-400: #a9937e;
  --gray-500: #8a7665;
  --gray-600: #74675c;
  --gray-700: #574b41;
  --gray-800: #3c332c;
  --gray-900: #2a241f;
  --font-heading: "Cormorant Garamond", "Playfair Display", "Bodoni Moda", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Manrope", "Plus Jakarta Sans", "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-md: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.375rem;
  --font-size-2xl: 1.75rem;
  --font-size-3xl: 2.25rem;
  --font-size-4xl: 3rem;
  --line-height-tight: 1.1;
  --line-height-snug: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.7;
  --space-0: 0;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 28px;
  --space-8: 32px;
  --space-9: 36px;
  --space-10: 40px;
  --space-12: 48px;
  --space-14: 56px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;
  --shadow-soft: 0 14px 40px rgba(42, 36, 31, 0.08);
  --shadow-subtle: 0 8px 24px rgba(42, 36, 31, 0.06);
  --shadow-elevated: 0 22px 60px rgba(15, 10, 5, 0.14);
  --transition-fast: 120ms ease-out;
  --transition-base: 200ms ease-out;
  --transition-slow: 320ms ease-out;
}

body {
  font-family: var(--font-body);
  font-size: var(--font-size-md);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-main);
  background-color: var(--color-bg-main);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-text-main);
  font-weight: 500;
  line-height: var(--line-height-tight);
  letter-spacing: 0.02em;
  margin-bottom: var(--space-4);
}

h1 {
  font-size: var(--font-size-4xl);
}

h2 {
  font-size: var(--font-size-3xl);
}

h3 {
  font-size: var(--font-size-2xl);
}

h4 {
  font-size: var(--font-size-xl);
}

h5 {
  font-size: var(--font-size-lg);
}

h6 {
  font-size: var(--font-size-md);
}

p {
  margin-bottom: var(--space-4);
  color: var(--color-text-muted);
}

a {
  color: inherit;
  text-decoration: none;
  position: relative;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--color-primary);
}

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

button {
  border: none;
  background: none;
}

ul,
ol {
  padding-left: 0;
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

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

.container {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-5);
  padding-right: var(--space-5);
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

.flex {
  display: flex;
}

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

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

.grid {
  display: grid;
}

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

@media (max-width: 768px) {
  .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.35rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-pill);
  font-size: var(--font-size-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color var(--transition-base), color var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-fast);
}

.btn-primary {
  background: linear-gradient(135deg, #8b5f38 0%, #6f4729 58%, #946b44 100%);
  color: #fffdf9;
  box-shadow: 0 14px 34px rgba(143, 99, 56, 0.35);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  color: #fffdf9;
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(143, 99, 56, 0.45);
}

.btn-outline {
  background-color: transparent;
  border-color: rgba(170, 125, 75, 0.65);
  color: var(--color-text-main);
}

.btn-outline:hover {
  background-color: rgba(223, 210, 195, 0.7);
}

.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.input,
textarea,
select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(167, 154, 131, 0.45);
  background-color: rgba(255, 255, 255, 0.92);
  color: var(--color-text-main);
  outline: none;
  transition: border-color var(--transition-base), box-shadow var(--transition-base), background-color var(--transition-base);
}

.input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px rgba(170, 125, 75, 0.7);
}

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

.card {
  background: linear-gradient(145deg, rgba(255, 253, 249, 0.96), rgba(247, 242, 236, 0.98));
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(223, 210, 195, 0.9);
}

.card-muted {
  background: var(--color-bg-accent);
  box-shadow: var(--shadow-subtle);
}

.rt-ribbon {
  width: 100%;
  background: linear-gradient(90deg, rgba(223, 210, 195, 0.9), rgba(247, 242, 236, 0.96));
  color: var(--color-text-muted);
  font-size: var(--font-size-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(190, 174, 155, 0.7);
}

.rt-ribbon__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.55rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.rt-ribbon__text {
  margin: 0;
}

.rt-ribbon__text-mobile,
.rt-badge-age__mobile {
  display: none;
}

.rt-badge-age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(170, 125, 75, 0.9);
  color: var(--color-text-main);
  background: rgba(223, 210, 195, 0.85);
  font-size: 0.68rem;
  font-weight: 600;
  white-space: nowrap;
}

.rt-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.rt-brand__crest {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(170, 125, 75, 0.95);
  box-shadow: 0 10px 24px rgba(42, 36, 31, 0.16);
  background: radial-gradient(circle at 30% 20%, #fbf0e0 0%, #ebe3da 38%, #ccb493 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}

.rt-brand__text-primary {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.rt-brand__text-subtitle {
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.rt-agegate {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, rgba(247, 242, 236, 0.8), rgba(32, 27, 23, 0.84));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 80;
}

.rt-agegate__panel {
  width: 100%;
  max-width: 460px;
  margin: 0 1.5rem;
  padding: var(--space-8);
  border-radius: 26px;
  background: radial-gradient(circle at 0 0, rgba(255, 253, 249, 0.22), rgba(247, 242, 236, 0.9));
  box-shadow: var(--shadow-elevated);
  border: 1px solid rgba(255, 255, 255, 0.65);
  position: relative;
  overflow: hidden;
}

.rt-agegate__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0 0, rgba(250, 237, 218, 0.55), transparent 55%), radial-gradient(circle at 100% 100%, rgba(143, 99, 56, 0.32), transparent 60%);
  opacity: 0.45;
  pointer-events: none;
}

.rt-agegate__inner {
  position: relative;
}

.rt-agegate__title {
  font-size: var(--font-size-2xl);
  text-align: center;
}

.rt-agegate__meta {
  margin-top: var(--space-3);
  font-size: var(--font-size-sm);
  text-align: center;
}

.rt-agegate__actions {
  margin-top: var(--space-7);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.rt-agegate__btn-secondary {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(185, 71, 71, 0.3);
  color: var(--color-danger);
  background: rgba(255, 255, 255, 0.8);
}

.home-hero {
  padding-top: var(--space-14);
  padding-bottom: var(--space-14);
}

.home-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: var(--space-10);
  align-items: center;
}

@media (max-width: 960px) {
  .home-hero__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-8);
  }
}

.home-hero__kicker {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.home-hero__title {
  font-size: clamp(2.4rem, 3vw + 1.6rem, 3.6rem);
  margin-bottom: var(--space-4);
}

.home-hero__lead {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.home-hero__secondary-link {
  font-size: var(--font-size-sm);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.home-hero__fineprint {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.home-hero__visual {
  position: relative;
}

.home-hero__image-wrap {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(223, 210, 195, 0.85);
  box-shadow: var(--shadow-elevated);
  background: radial-gradient(circle at top, #fffdf9, #ebe3da);
}

.home-hero__image-caption {
  position: absolute;
  left: 1.6rem;
  bottom: 1.6rem;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(42, 36, 31, 0.74);
  color: #f7f4ef;
  font-size: var(--font-size-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-hero__seal {
  position: absolute;
  right: 1.8rem;
  top: 50%;
  transform: translateY(-50%);
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #fbf1e3 0%, #eadccb 38%, #aa7d4b 100%);
  box-shadow: 0 18px 40px rgba(42, 36, 31, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.85);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .home-hero__seal {
    right: 1.4rem;
    top: auto;
    bottom: 1.6rem;
    transform: none;
    width: 96px;
    height: 96px;
  }
}

.section-index {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}

.section-index span {
  color: var(--color-primary);
}

.home-facts {
  width: 100%;
  border-top: 1px solid rgba(190, 174, 155, 0.55);
  border-bottom: 1px solid rgba(190, 174, 155, 0.55);
  background: linear-gradient(90deg, rgba(247, 242, 236, 0.98), rgba(223, 210, 195, 0.96));
}

.home-facts__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  font-size: var(--font-size-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.home-facts__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.home-facts__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(104, 96, 83, 0.7);
}

.tag-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.18rem 0.65rem;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.tag-status--sage {
  background-color: rgba(58, 92, 74, 0.09);
  color: var(--color-success);
  border: 1px solid rgba(58, 92, 74, 0.2);
}

.tag-status__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: currentColor;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-pill);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border: 1px solid rgba(170, 125, 75, 0.7);
  color: var(--color-primary);
}

ul {
  list-style: none !important;
}

.nav-toggle {
  flex-direction: column;
}
