@charset "UTF-8";

:root {
  --color-background: #fafaf9;
  --color-surface: #ffffff;
  --color-surface-soft: #f5f5f4;
  --color-border-soft: #fef3c7;
  --color-text: #1c1917;
  --color-text-muted: #57534e;
  --color-primary: #d4af37;
  --color-primary-soft: #fef3c7;
  --color-accent: #dc2626;
  --color-success: #16a34a;
  --color-warning: #f59e0b;
  --color-danger: #b91c1c;
  --color-neutral-50: #fafaf9;
  --color-neutral-100: #f5f5f4;
  --color-neutral-200: #e7e5e4;
  --color-neutral-300: #d6d3d1;
  --color-neutral-400: #a8a29e;
  --color-neutral-500: #78716c;
  --color-neutral-600: #57534e;
  --color-neutral-700: #44403c;
  --color-neutral-800: #292524;
  --color-neutral-900: #1c1917;
  --font-serif: "Playfair Display", "Times New Roman", ui-serif, Georgia, "Noto Serif", serif;
  --font-sans: "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-normal: 1.5;
  --leading-relaxed: 1.7;
  --space-0: 0px;
  --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-18: 72px;
  --space-20: 80px;
  --space-24: 96px;
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;
  --shadow-soft: 0 14px 40px rgba(15, 23, 42, 0.06);
  --shadow-subtle: 0 10px 30px rgba(15, 23, 42, 0.04);
  --shadow-elevated: 0 22px 60px rgba(15, 23, 42, 0.12);
  --transition-fast: 150ms ease-out;
  --transition-base: 220ms ease-out;
  --transition-slow: 320ms ease-out;
}

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

* {
  margin: 0;
}

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

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

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

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

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

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

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

ul, ol {
  margin: 0;
  padding: 0;
}

body {
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--color-neutral-900);
  line-height: var(--leading-tight);
  letter-spacing: 0.01em;
}

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

h2 {
  font-size: clamp(2rem, 2.6vw, 2.5rem);
  margin-bottom: var(--space-3);
}

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

h4 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
}

h5 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

h6 {
  font-size: var(--text-base);
  margin-bottom: var(--space-2);
}

p {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

p.lead {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--color-text);
}

a {
  position: relative;
  transition: color var(--transition-base);
}

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

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

.section {
  padding: 4.5rem 0;
}

.section-header {
  text-align: left;
  margin-bottom: var(--space-8);
}

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

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 2.4vw, 2.5rem);
  color: var(--color-neutral-900);
  margin-bottom: var(--space-3);
}

.section-subtitle {
  max-width: 38rem;
  color: var(--color-text-muted);
}

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

@media (max-width: 640px) {
  .container {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
  }
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-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;
}

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

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

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

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

@media (max-width: 720px) {
  .grid-3 {
    grid-template-columns: minmax(0, 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: var(--space-2);
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  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);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent), #b91c1c);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(220, 38, 38, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(220, 38, 38, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 10px 26px rgba(220, 38, 38, 0.32);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-neutral-900);
  border-color: var(--color-border-soft);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  background-color: var(--color-primary-soft);
}

.btn-ghost {
  background-color: transparent;
  color: var(--color-neutral-700);
}

.btn-ghost:hover {
  background-color: rgba(24, 24, 27, 0.03);
}

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

.btn:focus-visible {
  outline: 2px solid transparent;
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px var(--color-accent);
}

.input, select, textarea {
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-neutral-200);
  background-color: #ffffff;
  padding: 0.75rem 0.9rem;
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
  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: var(--color-neutral-400);
}

.input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 1px var(--color-accent), 0 12px 30px rgba(220, 38, 38, 0.08);
}

.input[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: var(--color-danger);
}

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

.form-field {
  margin-bottom: var(--space-5);
}

.form-label {
  display: block;
  margin-bottom: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-neutral-800);
}

.form-helper {
  margin-top: var(--space-1);
  font-size: var(--text-xs);
  color: var(--color-neutral-500);
}

.form-error {
  margin-top: var(--space-1);
  font-size: var(--text-xs);
  color: var(--color-danger);
}

.card {
  position: relative;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-soft);
  background-color: var(--color-surface);
  box-shadow: var(--shadow-soft);
  padding: var(--space-6);
}

.card-soft {
  box-shadow: var(--shadow-subtle);
}

.card-elevated {
  box-shadow: var(--shadow-elevated);
}

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

.card-title {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
}

.card-subtitle {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.badge-gold {
  background-color: #fef3c7;
  color: #854d0e;
  border-color: #f59e0b33;
}

.badge-chip {
  background: radial-gradient(circle at 30% 20%, #fee2e2, #fef2f2 45%, #fef3c7 100%);
  color: var(--color-neutral-800);
}

.hero {
  position: relative;
  padding: 5.5rem 0 4.5rem;
  background-color: var(--color-neutral-900);
  color: #f9fafb;
}

.hero-inner {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 460px;
  background-color: #0b0b0b;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 10% 0%, rgba(250, 250, 249, 0.08) 0, transparent 55%), radial-gradient(circle at 90% 100%, rgba(220, 38, 38, 0.18) 0, transparent 60%), linear-gradient(120deg, #111827 0%, #020617 45%, #111827 100%);
  background-size: cover;
  background-position: center;
}

.hero-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.72) 40%, rgba(15, 23, 42, 0.82) 60%, rgba(15, 23, 42, 0.95) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1.1fr);
  align-items: stretch;
  min-height: 460px;
}

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

.hero-main {
  position: relative;
  padding: 3.25rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-6);
}

@media (max-width: 720px) {
  .hero-main {
    padding: 2.5rem 1.75rem 3.5rem;
  }
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #e5e7eb;
}

.hero-kicker-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary), #f97316);
  box-shadow: 0 0 0 4px rgba(234, 179, 8, 0.24);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 3.4vw, 3.6rem);
  line-height: 1.08;
  color: #f9fafb;
  max-width: 24ch;
}

.hero-title span {
  color: var(--color-primary);
}

.hero-body {
  max-width: 34rem;
  color: #e5e7eb;
}

.hero-body strong {
  color: #fef3c7;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}

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

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

.hero-meta-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background-color: rgba(250, 250, 249, 0.3);
}

.hero-reserve-btn {
  background: radial-gradient(circle at 0 0, #fef3c7 0, #fbbf24 22%, #ea580c 55%, #b91c1c 100%);
  color: #111827;
  box-shadow: 0 18px 40px rgba(248, 113, 113, 0.42);
}

.hero-reserve-btn:hover {
  filter: brightness(1.05);
}

.hero-secondary-btn {
  color: #e5e7eb;
  border-color: rgba(250, 250, 249, 0.12);
  background-color: rgba(15, 23, 42, 0.4);
}

.hero-secondary-btn:hover {
  background-color: rgba(15, 23, 42, 0.7);
  border-color: rgba(250, 250, 249, 0.2);
}

.hero-chip-card-shell {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 2.25rem 2.75rem 2.75rem;
}

@media (max-width: 960px) {
  .hero-chip-card-shell {
    padding: 2.25rem 2.25rem 3.25rem;
  }
}

.hero-chip-backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0, rgba(250, 250, 249, 0.18) 0, transparent 45%), radial-gradient(circle at 90% 100%, rgba(220, 38, 38, 0.45) 0, transparent 50%), radial-gradient(circle at 0 100%, rgba(212, 175, 55, 0.35) 0, transparent 50%);
  opacity: 0.85;
}

.hero-chip-card {
  position: relative;
  z-index: 1;
  background-color: rgba(250, 250, 249, 0.98);
  border-radius: 18px;
  border: 1px solid rgba(254, 243, 199, 0.9);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.45);
  padding: 2.25rem 2.25rem 2rem;
  max-width: 340px;
  width: 100%;
}

@media (max-width: 720px) {
  .hero-chip-card {
    max-width: 100%;
  }
}

.hero-chip-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-4);
}

.hero-chip-title {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  color: var(--color-neutral-900);
}

.hero-chip-tag {
  font-size: var(--text-xs);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background-color: #fef3c7;
  color: #854d0e;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-chip-stack {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-4);
  align-items: center;
  margin-bottom: var(--space-4);
}

.hero-chips {
  position: relative;
  width: 72px;
  height: 72px;
}

.hero-chip-circle {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 6px solid #dc2626;
  background: conic-gradient(from 0deg, #f9fafb 0 25%, #dc2626 25% 50%, #f9fafb 50% 75%, #dc2626 75% 100%);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.3);
}

.hero-chip-inner {
  position: absolute;
  inset: 12px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 10%, #fef3c7, #f97316 50%, #b91c1c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-chip-symbol {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 2px solid rgba(250, 250, 249, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fefce8;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
}

.hero-chip-copy-title {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-neutral-700);
  margin-bottom: var(--space-1);
}

.hero-chip-copy-body {
  font-size: var(--text-sm);
  color: var(--color-neutral-600);
}

.hero-chip-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-3);
}

.hero-chip-meta-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.hero-chip-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-neutral-500);
}

.hero-chip-value {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-neutral-900);
}

.hero-chip-footnote {
  font-size: 0.7rem;
  color: var(--color-neutral-500);
}

main:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}

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

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

ul {
  list-style: none !important;
}

.nav-toggle {
  flex-direction: column;
}
html, body {
  overflow-x: clip;
  max-width: 100%;
}

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