:root {
  --bg-deep: #0a0908;
  --bg: #12100e;
  --bg-elevated: #1a1714;
  --bg-soft: #221e19;
  --text: #f3ebe0;
  --text-muted: #b7aa98;
  --gold: #c9a66b;
  --gold-soft: #a8874f;
  --gold-bright: #e0c48a;
  --line: rgba(201, 166, 107, 0.22);
  --danger: #d9897a;
  --success: #8faf8a;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.75rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --max: 1120px;
  --header-h: 4.25rem;
  --radius: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(201, 166, 107, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 0%, rgba(90, 60, 30, 0.25), transparent 50%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 40%, #0e0c0a 100%);
  background-attachment: fixed;
  line-height: 1.65;
  min-height: 100vh;
}

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

a {
  color: var(--gold-bright);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  transition: color 0.25s var(--ease);
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin: 0 0 0.75rem;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.25rem); }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.75rem); }

p { margin: 0 0 1rem; color: var(--text-muted); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--bg-deep);
  padding: 0.5rem 1rem;
  z-index: 1000;
}

.skip-link:focus { left: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(10, 9, 8, 0.82);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.9rem var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.04em;
}

.brand:hover { color: var(--gold); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  padding: 0.45rem 0.8rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.15rem;
  align-items: center;
}

.site-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--gold-bright);
}

.nav-cta {
  border: 1px solid var(--gold);
  padding: 0.35rem 0.85rem;
  color: var(--gold-bright) !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 1.5rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.btn-primary {
  background: var(--gold);
  color: var(--bg-deep);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-bright);
  color: var(--bg-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--gold-bright);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--text);
}

.section {
  padding: var(--space-xl) var(--space-sm);
}

.section-narrow {
  max-width: 720px;
  margin: 0 auto;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 38rem;
}

.hero-cinematic {
  position: relative;
  min-height: min(88vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-cinematic .hero-media {
  position: absolute;
  inset: 0;
}

.hero-cinematic .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(0.85);
  animation: slowZoom 28s var(--ease) infinite alternate;
}

.hero-cinematic .hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 9, 8, 0.35) 0%, rgba(10, 9, 8, 0.55) 45%, rgba(10, 9, 8, 0.92) 100%),
    linear-gradient(90deg, rgba(10, 9, 8, 0.75) 0%, transparent 55%);
}

.hero-cinematic .hero-copy {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--space-xl) var(--space-sm) var(--space-lg);
  animation: riseIn 1s var(--ease) both;
}

.hero-cinematic .brand-hero {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.5rem;
  letter-spacing: 0.02em;
}

.hero-cinematic .hero-line {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-bright);
  max-width: 28rem;
  margin-bottom: 1.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-lg);
  align-items: center;
}

.split img {
  width: 100%;
  height: min(520px, 60vh);
  object-fit: cover;
  border: 1px solid var(--line);
}

.offer-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.offer-row {
  display: grid;
  grid-template-columns: 1.2fr 2fr auto;
  gap: 1.25rem;
  align-items: start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: background 0.3s var(--ease);
}

.offer-row:hover {
  background: rgba(201, 166, 107, 0.04);
}

.offer-row h3 {
  color: var(--text);
  margin: 0;
}

.offer-row p {
  margin: 0;
}

.offer-row .meta {
  color: var(--gold);
  font-size: 0.85rem;
  white-space: nowrap;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.media-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.media-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--line);
  margin-bottom: 0.85rem;
  transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
}

.media-card:hover img {
  transform: scale(1.02);
  filter: brightness(1.08);
}

.media-card h3 {
  color: var(--text);
  font-size: 1.45rem;
}

.quote-block {
  border-left: 2px solid var(--gold);
  padding: 0.25rem 0 0.25rem 1.25rem;
  margin: 1.5rem 0;
}

.quote-block p {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.4;
}

.quote-block cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.page-hero {
  padding: var(--space-xl) var(--space-sm) var(--space-lg);
  border-bottom: 1px solid var(--line);
}

.page-hero.with-image {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 0;
  padding: 0;
}

.page-hero.with-image .page-hero-media {
  position: absolute;
  inset: 0;
}

.page-hero.with-image .page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.page-hero.with-image .page-hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,9,8,0.2), rgba(10,9,8,0.9));
}

.page-hero.with-image .wrap {
  position: relative;
  z-index: 1;
  padding: var(--space-xl) var(--space-sm) var(--space-lg);
}

.prose {
  max-width: 680px;
}

.prose h2 {
  margin-top: 2.5rem;
}

.prose ul, .prose ol {
  color: var(--text-muted);
  padding-left: 1.2rem;
}

.prose li { margin-bottom: 0.45rem; }

.rate-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.rate-table th,
.rate-table td {
  text-align: left;
  padding: 1rem 0.75rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.rate-table th {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
}

.rate-table td { color: var(--text-muted); }

.form {
  display: grid;
  gap: 1.1rem;
  max-width: 560px;
}

.form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
}

.form input,
.form select,
.form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
}

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

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 1px solid var(--gold);
  border-color: var(--gold);
}

.field-error {
  color: var(--danger);
  font-size: 0.85rem;
  text-transform: none;
  letter-spacing: 0;
}

.form-status {
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  display: none;
}

.form-status.is-success {
  display: block;
  border-color: var(--success);
  color: var(--success);
}

.form-status.is-error {
  display: block;
  border-color: var(--danger);
  color: var(--danger);
}

.story-block {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
}

.story-block h3 {
  color: var(--text);
}

.process-steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.process-steps li {
  position: relative;
  padding: 1.5rem 0 1.5rem 4rem;
  border-bottom: 1px solid var(--line);
  color: var(--text-muted);
}

.process-steps li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
}

.legal-page h2 {
  margin-top: 2rem;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  margin: 1.25rem 0;
}

.cookie-table th,
.cookie-table td {
  border: 1px solid var(--line);
  padding: 0.75rem;
  text-align: left;
  color: var(--text-muted);
}

.cookie-table th {
  color: var(--text);
  background: var(--bg-elevated);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: var(--space-lg) var(--space-sm) var(--space-md);
  margin-top: var(--space-xl);
  background: rgba(0, 0, 0, 0.35);
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1.4fr 1fr 1fr;
  gap: 2rem;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.footer-tag,
.footer-address {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.site-footer h2 {
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li { margin-bottom: 0.4rem; }

.site-footer a {
  color: var(--text-muted);
  text-decoration: none;
}

.site-footer a:hover { color: var(--gold-bright); }

.footer-copy {
  max-width: var(--max);
  margin: 2.5rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  max-width: 640px;
  margin: 0 auto;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  animation: riseIn 0.5s var(--ease);
}

.cookie-inner {
  padding: 1.25rem 1.35rem;
}

.cookie-inner p {
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.cookie-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.not-found {
  min-height: 60vh;
  display: grid;
  place-content: center;
  text-align: center;
  padding: var(--space-xl) var(--space-sm);
}

.detail-hero-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border: 1px solid var(--line);
  margin: 0 0 2rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.muted-list {
  list-style: none;
  padding: 0;
}

.muted-list li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--text-muted);
}

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

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: rgba(10, 9, 8, 0.97);
    border-bottom: 1px solid var(--line);
    padding: 1rem;
  }

  .site-nav.is-open { display: block; }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .split,
  .footer-grid,
  .two-col,
  .media-grid {
    grid-template-columns: 1fr;
  }

  .offer-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}
