:root {
  --bg: #0c0a09;
  --bg-elevated: #161210;
  --bg-muted: #1a1612;
  --bg-accent: #1f1810;
  --text: #f3ebe0;
  --text-soft: #cbbba8;
  --text-muted: #9a8b78;
  --gold: #c9a66b;
  --gold-soft: #a8864f;
  --line: rgba(201, 166, 107, 0.22);
  --danger: #d9897a;
  --success: #8fbf9a;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --shell: min(1120px, calc(100% - 2.5rem));
  --header-h: 4.25rem;
  --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(1200px 600px at 80% -10%, rgba(201, 166, 107, 0.08), transparent 60%),
    radial-gradient(900px 500px at 0% 20%, rgba(90, 60, 30, 0.18), transparent 55%),
    var(--bg);
  line-height: 1.65;
  min-height: 100vh;
}

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

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

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--text);
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); margin: 0 0 0.75rem; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin: 0 0 0.75rem; }
h3 { font-size: clamp(1.35rem, 2vw, 1.7rem); margin: 0 0 0.5rem; }

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.narrow { width: min(720px, calc(100% - 2.5rem)); }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--gold);
  color: var(--bg);
  padding: 0.5rem 1rem;
  z-index: 100;
}

.skip-link:focus { top: 1rem; }

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

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

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

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

.site-nav a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 400;
}

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

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

.nav-cta:hover {
  background: var(--gold);
  color: var(--bg) !important;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  padding: 0.45rem 0.7rem;
  cursor: pointer;
  font-family: var(--font-body);
}

.nav-toggle-bars {
  display: block;
  width: 1.15rem;
  height: 1px;
  background: var(--text);
  box-shadow: 0 5px 0 var(--text), 0 -5px 0 var(--text);
  margin-top: 2px;
}

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

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.42) contrast(1.05);
  animation: heroDrift 18s var(--ease) infinite alternate;
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 5rem 0 4rem;
  max-width: 38rem;
  animation: riseIn 1s var(--ease) both;
}

.hero-page { min-height: min(70vh, 620px); }

.brand-hero {
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: var(--text);
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.45);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--gold);
  margin-bottom: 0.85rem;
  font-weight: 500;
}

.lede {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--text-soft);
  max-width: 36rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.35rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  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);
}

.btn-primary:hover {
  background: var(--text);
  color: var(--bg);
}

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

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

.section {
  padding: 5rem 0;
}

.section-muted { background: var(--bg-muted); }
.section-accent { background: linear-gradient(180deg, var(--bg-accent), var(--bg)); }

.section-head {
  margin-bottom: 2.5rem;
  max-width: 40rem;
}

.feature-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.feature-split.reverse { direction: rtl; }
.feature-split.reverse > * { direction: ltr; }

.feature-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}

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

.offer-item h3 a {
  color: var(--text);
  text-decoration: none;
}

.offer-item h3 a:hover { color: var(--gold); }

.meta {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.plain-list,
.process-list {
  padding-left: 1.15rem;
  color: var(--text-soft);
}

.plain-list li,
.process-list li {
  margin-bottom: 0.45rem;
}

.process-list.wide {
  max-width: 46rem;
  font-size: 1.05rem;
}

.quote-stack {
  display: grid;
  gap: 1.75rem;
}

blockquote {
  margin: 0;
  padding: 1.5rem 0 1.5rem 1.25rem;
  border-left: 1px solid var(--gold);
}

blockquote p {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--text);
  font-style: italic;
}

blockquote footer {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 0.75rem;
}

.review-block {
  background: var(--bg-elevated);
  padding: 1.75rem;
  border-left: 1px solid var(--gold);
}

.cta-band {
  text-align: center;
  padding: 3rem 1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta-band .btn { margin-top: 0.5rem; }

.page-hero {
  padding: 4.5rem 0 2rem;
  animation: riseIn 0.8s var(--ease) both;
}

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

.media-card-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.7s var(--ease);
}

.media-card:hover .media-card-image img {
  transform: scale(1.03);
  filter: brightness(1.05);
}

.media-card-body {
  padding-top: 1rem;
}

.media-card h2 {
  font-size: 1.6rem;
}

.media-card h2 a {
  color: var(--text);
  text-decoration: none;
}

.media-card h2 a:hover { color: var(--gold); }

.detail-hero-image {
  margin: 0 auto 2rem;
}

.detail-hero-image img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 2.5rem;
}

.detail-aside {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  padding: 1.5rem;
  align-self: start;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.detail-aside dl {
  margin: 0 0 1.25rem;
}

.detail-aside dl > div {
  margin-bottom: 0.9rem;
}

.detail-aside dt {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.detail-aside dd {
  margin: 0.2rem 0 0;
  color: var(--text-soft);
}

.rate-table {
  width: 100%;
  border-collapse: collapse;
}

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

.rate-table th {
  color: var(--gold);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.5rem;
}

.contact-panel {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  padding: 1.75rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.form-field label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text);
  font-size: 0.92rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 0.75rem 0.85rem;
  font: inherit;
}

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

.field-error {
  color: var(--danger);
  font-size: 0.85rem;
  margin: 0.35rem 0 0;
}

.form-status {
  margin: 0.5rem 0 0;
}

.form-status.is-success { color: var(--success); }
.form-status.is-error { color: var(--danger); }

.prose h2 { margin-top: 2rem; }
.prose.legal p { font-size: 0.98rem; }

.text-link {
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
}

.site-footer {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  padding: 3rem 0 1.5rem;
  background: #090807;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 0.9fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

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

.footer-tag { color: var(--text-muted); }

.footer-nav {
  display: grid;
  gap: 0.4rem;
}

.footer-nav a {
  color: var(--text-soft);
  text-decoration: none;
}

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

.footer-base {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background: rgba(22, 18, 16, 0.96);
  border-top: 1px solid var(--line);
  padding: 1.1rem 0;
  animation: riseIn 0.45s var(--ease);
}

.cookie-inner {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-inner p {
  margin: 0;
  font-size: 0.92rem;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

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

@keyframes heroDrift {
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}

@media (max-width: 900px) {
  .feature-split,
  .feature-split.reverse,
  .offer-grid,
  .detail-grid,
  .contact-layout,
  .footer-grid,
  .card-grid {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .nav-toggle { display: inline-flex; align-items: center; gap: 0.5rem; }

  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(12, 10, 9, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.25rem 1.25rem;
  }

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

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

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .detail-aside { position: static; }
}
