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

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

* {
  margin: 0;
  padding: 0;
}

:root {
  --color-bg: #080808;
  --color-surface: #111111;
  --color-surface-elevated: #17120f;
  --color-surface-soft: #1c0a10;
  --color-border-subtle: #2a2622;
  --color-text: #f7efe3;
  --color-text-soft: #e7d8bf;
  --color-text-muted: #a7a19a;
  --color-primary: #c89b3c;
  --color-primary-soft: #e1bf6a;
  --color-success: #16a34a;
  --color-warning: #f59e0b;
  --color-danger: #dc2626;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;
  --font-display: "Playfair Display", "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-md: 1.0625rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --line-height-tight: 1.15;
  --line-height-snug: 1.3;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.7;
  --space-0: 0;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-7: 1.75rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-28: 7rem;
  --space-32: 8rem;
  --space-40: 10rem;
  --space-48: 12rem;
  --space-56: 14rem;
  --space-64: 16rem;
  --space-72: 18rem;
  --space-80: 20rem;
  --space-96: 24rem;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 18px;
  --radius-full: 999px;
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.55);
  --shadow-elevated: 0 22px 45px rgba(0, 0, 0, 0.8);
  --shadow-card-inner: 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  --transition-fast: 150ms ease-out;
  --transition-base: 220ms ease;
  --transition-slow: 320ms ease;
  --header-height: 4.25rem;
  --container-max-width: 1120px;
}

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

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

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

button {
  cursor: pointer;
}

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

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

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

h1 {
  font-size: clamp(2.4rem, 3.4vw, 3.1rem);
  margin-bottom: var(--space-4);
}

h2 {
  font-size: clamp(1.9rem, 2.7vw, 2.4rem);
  margin-bottom: var(--space-3);
}

h3 {
  font-size: clamp(1.5rem, 2.1vw, 1.9rem);
  margin-bottom: var(--space-2);
}

h4 {
  font-size: 1.25rem;
  margin-bottom: var(--space-2);
}

h5 {
  font-size: 1.1rem;
  margin-bottom: var(--space-2);
}

h6 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: var(--space-2);
}

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

section {
  position: relative;
}

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

.section {
  padding-block: var(--space-16);
}

.section--tight {
  padding-block: var(--space-10);
}

.section--dense {
  padding-block: var(--space-8);
}

.section--dark {
  background: radial-gradient(circle at top, rgba(200, 155, 60, 0.14), transparent 55%), #080808;
}

.section--alt {
  background: radial-gradient(circle at top left, rgba(220, 38, 38, 0.18), transparent 60%), #111111;
}

.section-header {
  max-width: 640px;
  margin: 0 auto var(--space-10);
  text-align: center;
}

.section-header__eyebrow {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.section-header__title {
  margin-bottom: var(--space-3);
}

.section-header__subtitle {
  color: var(--color-text-soft);
  font-size: var(--font-size-sm);
}

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

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

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

@media (max-width: 960px) {
  .grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }
}

.flex {
  display: flex;
}

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

.flex-row {
  flex-direction: row;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: flex-end;
}

.gap-2 {
  gap: var(--space-2);
}

.gap-3 {
  gap: var(--space-3);
}

.gap-4 {
  gap: var(--space-4);
}

.gap-6 {
  gap: var(--space-6);
}

.gap-8 {
  gap: var(--space-8);
}

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

.text-right {
  text-align: right;
}

.mt-4 {
  margin-top: var(--space-4);
}

.mt-6 {
  margin-top: var(--space-6);
}

.mt-8 {
  margin-top: var(--space-8);
}

.mb-0 {
  margin-bottom: 0;
}

.mb-4 {
  margin-bottom: var(--space-4);
}

.mb-6 {
  margin-bottom: var(--space-6);
}

.mb-8 {
  margin-bottom: var(--space-8);
}

.pb-0 {
  padding-bottom: 0;
}

.chip, .pill, .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(200, 155, 60, 0.4);
  background: rgba(17, 17, 17, 0.9);
  color: var(--color-text-soft);
}

.chip--soft {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(23, 18, 15, 0.92);
}

.chip--danger {
  border-color: rgba(220, 38, 38, 0.8);
  color: #fecaca;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background-color var(--transition-base), color var(--transition-base), border-color var(--transition-base), transform var(--transition-fast), box-shadow var(--transition-fast);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #c89b3c, #e1bf6a);
  color: #1a120a;
  box-shadow: 0 12px 30px rgba(200, 155, 60, 0.45);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #e1bf6a, #f0dca2);
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(200, 155, 60, 0.6);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(200, 155, 60, 0.45);
}

.btn-ghost {
  background: rgba(8, 8, 8, 0.7);
  border-color: rgba(200, 155, 60, 0.5);
  color: var(--color-text-soft);
}

.btn-ghost:hover {
  background: rgba(23, 18, 15, 0.95);
  border-color: rgba(225, 191, 106, 0.9);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--color-text-soft);
}

.btn-outline:hover {
  background: rgba(200, 155, 60, 0.08);
  border-color: rgba(200, 155, 60, 0.75);
}

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

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  color: var(--color-text);
  background-color: #050505;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(8, 8, 8, 0.98)), radial-gradient(circle at 12% 0, rgba(200, 155, 60, 0.25), transparent 55%), radial-gradient(circle at 88% 100%, rgba(124, 45, 18, 0.5), transparent 55%);
  mix-blend-mode: multiply;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.15) contrast(1.1) brightness(0.7);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-content {
  max-width: 640px;
}

.hero-eyebrow {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}

.hero-title {
  font-size: clamp(2.6rem, 3.8vw, 3.4rem);
  line-height: 1.08;
  margin-bottom: var(--space-4);
}

.hero-subtitle {
  font-size: var(--font-size-md);
  color: var(--color-text-soft);
  max-width: 34rem;
  margin-bottom: var(--space-6);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.hero-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-text-muted);
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.hero-meta-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #fefce8, #eab308);
  box-shadow: 0 0 0 4px rgba(234, 179, 8, 0.25);
}

.highlight-quote {
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  background: radial-gradient(circle at top left, rgba(200, 155, 60, 0.16), transparent 60%), rgba(8, 8, 8, 0.9);
  border: 1px solid rgba(200, 155, 60, 0.36);
  box-shadow: var(--shadow-soft);
}

.highlight-quote__text {
  font-family: var(--font-display);
  font-size: var(--font-size-xl);
  line-height: var(--line-height-snug);
  margin-bottom: var(--space-4);
}

.highlight-quote__meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-text-muted);
}

.card {
  position: relative;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.03), transparent 55%), rgba(17, 17, 17, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft), var(--shadow-card-inner);
  padding: var(--space-5);
  overflow: hidden;
}

.card--flat {
  box-shadow: none;
  background: rgba(17, 17, 17, 0.9);
}

.card--accent {
  border-color: rgba(200, 155, 60, 0.55);
}

.card__header {
  margin-bottom: var(--space-4);
}

.card__title {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-1);
}

.card__subtitle {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-text-muted);
}

.card__body {
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}

.card__footer {
  margin-top: var(--space-4);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.feature-list {
  display: grid;
  gap: var(--space-2);
  padding: 0;
  list-style: none;
}

.feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}

.feature-list__icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(200, 155, 60, 0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--color-primary-soft);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="time"],
select,
textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 8, 8, 0.9);
  color: var(--color-text);
  font-size: var(--font-size-sm);
  transition: border-color var(--transition-base), box-shadow var(--transition-base), background-color var(--transition-base);
}

input::placeholder,
textarea::placeholder {
  color: var(--color-text-muted);
}

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

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(200, 155, 60, 0.85);
  box-shadow: 0 0 0 1px rgba(200, 155, 60, 0.85), 0 15px 45px rgba(0, 0, 0, 0.9);
  background: #050505;
}

input[disabled],
select[disabled],
textarea[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: var(--space-4);
}

.form-label {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-text-muted);
}

.form-helper {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.form-error {
  font-size: var(--font-size-xs);
  color: #fecaca;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(8, 8, 8, 0.96), rgba(8, 8, 8, 0.9));
  border-bottom: 1px solid rgba(200, 155, 60, 0.24);
}

.site-header__inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 14px;
  background: radial-gradient(circle at 20% 0, #fefce8, #c89b3c);
  box-shadow: 0 0 0 1px rgba(248, 250, 252, 0.12), 0 12px 30px rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1c0a10;
  font-size: 0.8rem;
  font-weight: 600;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-subtitle {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  list-style: none;
}

.nav-link {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-text-muted);
  padding-bottom: 0.2rem;
  border-bottom: 1px solid transparent;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-text-soft);
}

.nav-link--active {
  color: var(--color-primary-soft);
  border-color: rgba(200, 155, 60, 0.8);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav-toggle span {
  width: 14px;
  height: 1px;
  border-radius: 999px;
  background: #e5e7eb;
}

@media (max-width: 900px) {
  .nav-list {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
}

.site-footer {
  border-top: 1px solid rgba(200, 155, 60, 0.32);
  background: radial-gradient(circle at top, rgba(148, 27, 12, 0.45), transparent 60%), #050505;
  padding-top: var(--space-12);
  padding-bottom: var(--space-8);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.footer-heading {
  font-size: var(--font-size-sm);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
  color: var(--color-text-soft);
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.footer-link a {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.footer-link a:hover {
  color: var(--color-text-soft);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.footer-18plus {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.footer-18plus-badge {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(248, 250, 252, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

@media (max-width: 960px) {
  .site-footer__top {
    grid-template-columns: 1.4fr 1fr;
  }
}

@media (max-width: 720px) {
  .site-footer__top {
    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;
}

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

button:focus-visible,
[role="button"]:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: 2px solid var(--color-primary-soft);
  outline-offset: 3px;
  border-radius: 999px;
}

@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;
  }
}

ul {
  list-style: none !important;
}

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