@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:wght@500;600;700;800&family=Playfair+Display:wght@500;600;700&family=Prata&family=Inter:wght@300;400;500;600;700&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  --color-bg: #111111;
  --color-bg-alt: #0f172a;
  --color-bg-deep: #1c0a10;
  --color-surface: #111827;
  --color-surface-soft: #1f2933;
  --color-text: #f4ecdd;
  --color-text-muted: #b9b2a5;
  --color-primary: #dc2626;
  --color-primary-soft: #c45f42;
  --color-success: #22c55e;
  --color-warning: #f59e0b;
  --color-danger: #ef4444;
  --color-gold: #d4b66e;
  --color-border-subtle: #27272f;
  --color-neutral-50: #f9fafb;
  --color-neutral-100: #f3f4f6;
  --color-neutral-200: #e5e7eb;
  --color-neutral-300: #d1d5db;
  --color-neutral-400: #9ca3af;
  --color-neutral-500: #6b7280;
  --color-neutral-600: #4b5563;
  --color-neutral-700: #374151;
  --color-neutral-800: #1f2933;
  --color-neutral-900: #111827;
  --font-heading-primary: 'Bodoni Moda', 'Playfair Display', 'Prata', ui-serif, Georgia, 'Times New Roman', serif;
  --font-body-primary: 'Manrope', 'Inter', 'Outfit', 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.25rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 1.875rem;
  --font-size-3xl: 2.25rem;
  --font-size-4xl: 2.75rem;
  --font-size-5xl: 3.25rem;
  --line-height-tight: 1.15;
  --line-height-snug: 1.3;
  --line-height-normal: 1.5;
  --line-height-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-11: 44px;
  --space-12: 48px;
  --space-14: 56px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --radius-xs: 3px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 999px;
  --shadow-sm: 0 8px 18px rgba(0, 0, 0, 0.55);
  --shadow-md: 0 14px 40px rgba(0, 0, 0, 0.75);
  --shadow-soft: 0 18px 60px rgba(12, 10, 14, 0.9);
  --shadow-gold-glow: 0 0 0 1px rgba(212, 182, 110, 0.15), 0 0 30px rgba(212, 182, 110, 0.2);
  --transition-fast: 150ms ease-out;
  --transition-base: 220ms ease-out;
  --transition-slow: 320ms ease-out;
  --container-max: 1180px;
}

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

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul,
ol,
li,
button,
input,
textarea,
select {
  margin: 0;
  padding: 0;
}

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

body {
  min-height: 100vh;
  background: radial-gradient(circle at 0 0, #1c0a10 0, #111111 42%, #020617 100%);
  color: var(--color-text);
  font-family: var(--font-body-primary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  -webkit-font-smoothing: antialiased;
}

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

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

button,
[role='button'] {
  cursor: pointer;
}

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

a:focus {
  outline: none;
}

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

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

h1 {
  font-size: clamp(2.6rem, 3vw + 2rem, 3.5rem);
  letter-spacing: 0.03em;
}

h2 {
  font-size: clamp(2rem, 2.4vw + 1.6rem, 2.6rem);
}

h3 {
  font-size: clamp(1.6rem, 1.8vw + 1.2rem, 2.1rem);
}

h4 {
  font-size: 1.4rem;
}

h5 {
  font-size: 1.2rem;
}

h6 {
  font-size: 1rem;
}

h1 + p,
h2 + p,
h3 + p {
  margin-top: var(--space-2);
}

em {
  font-style: italic;
}

strong {
  font-weight: 600;
}

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

li {
  margin-bottom: 0.4rem;
}

::selection {
  background: rgba(220, 38, 38, 0.75);
  color: #fdfaf5;
}

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

[tabindex='-1']:focus {
  outline: none !important;
}

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

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

@media (min-width: 1024px) {
  .container {
    padding-inline: var(--space-6);
  }
}

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

.grid {
  display: grid;
}

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

@media (max-width: 900px) {
  .grid-2 {
    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: 0.5rem;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  font-size: var(--font-size-sm);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: radial-gradient(circle at 0 0, #c45f42 0, #dc2626 50%, #7f1d1d 100%);
  color: #fefcf8;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), transform var(--transition-base), background var(--transition-base), border-color var(--transition-base), color var(--transition-base);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 182, 110, 0.65);
}

.btn:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

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

.btn-secondary {
  background: transparent;
  border-color: rgba(212, 182, 110, 0.5);
  color: var(--color-text);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, rgba(212, 182, 110, 0.2), rgba(17, 24, 39, 0.95));
  box-shadow: var(--shadow-sm);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.9rem;
  background: rgba(15, 23, 42, 0.9);
  color: var(--color-text);
  font-size: var(--font-size-sm);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

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

input::placeholder,
textarea::placeholder {
  color: var(--color-neutral-500);
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 1px rgba(212, 182, 110, 0.7);
}

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

.card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  background: radial-gradient(circle at 0 0, rgba(212, 182, 110, 0.05) 0, rgba(15, 23, 42, 0.98) 38%, #020617 100%);
  border: 1px solid rgba(212, 182, 110, 0.16);
  box-shadow: var(--shadow-soft);
  color: var(--color-text);
}

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

.card-title {
  font-family: var(--font-heading-primary);
  font-size: var(--font-size-xl);
}

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

.rt-ribbon {
  width: 100%;
  background: linear-gradient(90deg, #0b0b0b, #1c0a10, #0f172a);
  color: var(--color-text-muted);
  font-size: var(--font-size-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.5rem 1.5rem;
  border-bottom: 1px solid rgba(212, 182, 110, 0.25);
}

.rt-ribbon__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: space-between;
}

.rt-ribbon__dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(212, 182, 110, 0.75);
}

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

.rt-brand__monogram {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 0 0, rgba(212, 182, 110, 0.35), rgba(15, 23, 42, 0.95));
  border: 1px solid rgba(212, 182, 110, 0.8);
  box-shadow: var(--shadow-gold-glow);
  font-family: var(--font-heading-primary);
  font-size: 1.15rem;
  color: var(--color-text);
}

.rt-brand__lockup {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rt-brand__name {
  font-family: var(--font-heading-primary);
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.rt-brand__tagline {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.home-hero {
  padding-block: var(--space-12) var(--space-16);
}

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

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

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

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

.home-hero__lead {
  max-width: 36rem;
  font-size: var(--font-size-md);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

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

.home-hero__ghost-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.home-hero__ghost-link span:last-child {
  transform-origin: left bottom;
}

.home-hero__ghost-link:hover {
  color: var(--color-gold);
}

.home-hero__ghost-link:hover span:last-child {
  transform: translateY(1px) translateX(1px);
}

.home-hero__fineprint {
  font-size: var(--font-size-xs);
  color: var(--color-neutral-500);
}

.home-hero__media {
  position: relative;
}

.home-hero__image-wrap {
  position: relative;
  border-radius: clamp(18px, 2vw, 26px);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.55);
  background: radial-gradient(circle at 0 0, rgba(15, 23, 42, 0.9), #020617);
}

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

.home-hero__seal {
  position: absolute;
  right: 7%;
  bottom: 12%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 10%, rgba(255, 255, 255, 0.16), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(212, 182, 110, 0.9);
  box-shadow: var(--shadow-gold-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.75rem;
}

.home-hero__seal-text {
  font-family: var(--font-heading-primary);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.home-hero__caption {
  margin-top: var(--space-3);
  font-size: var(--font-size-xs);
  color: var(--color-neutral-500);
}

@media (max-width: 960px) {
  .home-hero__seal {
    width: 96px;
    height: 96px;
    bottom: 8%;
    right: 6%;
  }
}

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

.section-header {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
}

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

.section-index {
  font-family: var(--font-heading-primary);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.section-index span {
  opacity: 0.6;
}

.section-title {
  max-width: 32rem;
}

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

.home-facts {
  width: 100%;
  border-radius: var(--radius-full);
  border: 1px solid rgba(212, 182, 110, 0.28);
  background: linear-gradient(90deg, rgba(12, 10, 14, 0.96), rgba(17, 24, 39, 0.96));
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.home-facts__item {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  white-space: nowrap;
}

.home-facts__label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-neutral-400);
}

.home-facts__value {
  font-size: 0.9rem;
  color: var(--color-text);
}

.home-facts__dot {
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.7);
}

@media (max-width: 640px) {
  .home-facts {
    border-radius: var(--radius-lg);
    padding-inline: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    overflow-x: visible;
  }

  .home-facts__item {
    display: flex;
    flex-wrap: wrap;
    white-space: normal;
  }

  .home-facts__value {
    min-width: 0;
  }

  .home-facts__dot {
    display: none;
  }
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

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