:root {
  --bg: #0c0a09;
  --bg-elevated: #161210;
  --bg-alt: #12100e;
  --text: #f3ebe1;
  --text-muted: #b8a99a;
  --gold: #c9a227;
  --gold-soft: #e0c56a;
  --line: rgba(201, 162, 39, 0.28);
  --danger: #e8a090;
  --success: #a8c9a0;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --space: clamp(1.25rem, 3vw, 2.5rem);
  --wrap: min(1120px, calc(100% - 2.5rem));
  --narrow: min(720px, 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(ellipse 80% 50% at 50% -10%, rgba(201, 162, 39, 0.12), transparent 55%),
    linear-gradient(180deg, #100e0c 0%, var(--bg) 40%, #090807 100%);
  min-height: 100vh;
  line-height: 1.7;
}

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

a {
  color: var(--gold-soft);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  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;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  margin: 0 0 0.85rem;
}

h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin: 0 0 0.65rem;
}

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

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

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

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

.wrap.narrow,
.narrow {
  width: var(--narrow);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(12, 10, 9, 0.82);
  border-bottom: 1px solid transparent;
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.header-inner {
  width: var(--wrap);
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  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-soft);
}

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

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

.nav-cta {
  border: 1px solid var(--line);
  padding: 0.45rem 0.9rem;
}

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

.hero-cinematic {
  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.45) saturate(0.85);
  animation: hero-ken 18s var(--ease) infinite alternate;
}

@keyframes hero-ken {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: var(--wrap);
  margin: 0 auto;
  padding: clamp(4rem, 12vh, 7rem) 0 clamp(3rem, 8vh, 5rem);
  animation: rise 1s var(--ease) both;
}

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

.brand-mark {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--gold);
  margin-bottom: 0.35rem;
  letter-spacing: 0.04em;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.45rem;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold);
  color: #14110e;
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-soft);
  color: #14110e;
}

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

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

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section-tight {
  padding-top: 2.5rem;
}

.section.alt {
  background: var(--bg-alt);
  border-block: 1px solid var(--line);
}

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

.section-foot {
  margin-top: 1.75rem;
}

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

.meta {
  color: var(--gold-soft);
  font-size: 0.92rem;
}

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

.page-hero {
  padding: clamp(3rem, 8vw, 5rem) 0 1rem;
}

.page-hero.with-image {
  padding-bottom: 0;
}

.page-hero-img {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 2rem auto 0;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  filter: brightness(0.7);
  animation: rise 1.1s var(--ease) both;
}

.feature-block {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.feature-block.reverse {
  grid-template-columns: 1fr 1.05fr;
}

.feature-block img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: brightness(0.78);
}

.offer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.offer-list a {
  display: block;
  padding: 1.35rem 1.5rem;
  background: var(--bg-elevated);
  text-decoration: none;
  color: inherit;
  transition: background 0.3s var(--ease);
}

.offer-list a:hover {
  background: #1c1814;
}

.offer-title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.offer-summary {
  display: block;
  color: var(--text-muted);
}

.card-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

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

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

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

.media-card-body {
  padding: 1.1rem 0 0;
}

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

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

.quote-stack.wide {
  grid-template-columns: repeat(2, 1fr);
}

blockquote {
  margin: 0;
  padding: 1.5rem 1.6rem;
  background: var(--bg-elevated);
  border-left: 2px solid var(--gold);
}

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

blockquote footer {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: normal;
}

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

.story-block:last-child {
  border-bottom: 0;
}

.split-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.plain-list {
  margin: 0 0 1.5rem;
  padding-left: 1.15rem;
  color: var(--text-muted);
}

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

.steps {
  margin: 0 0 1.75rem;
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.steps li {
  margin-bottom: 0.55rem;
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

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

.fee-table th {
  color: var(--gold);
  font-weight: 500;
}

.cta-band {
  text-align: center;
  background:
    linear-gradient(180deg, rgba(201, 162, 39, 0.08), transparent),
    var(--bg-elevated);
  border-block: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 3rem;
}

.contact-form .field {
  margin-bottom: 1.15rem;
}

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

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form 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-top: 1rem;
}

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

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

.article-cover {
  width: 100%;
  margin: 1.5rem 0 2rem;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: brightness(0.78);
}

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

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

.footer-grid {
  width: var(--wrap);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.3fr 1.2fr 0.8fr 0.8fr;
  gap: 2rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}

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

.footer-heading {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.footer-address {
  font-style: normal;
  display: grid;
  gap: 0.25rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

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

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

.footer-copy {
  width: var(--wrap);
  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;
  animation: rise 0.55s var(--ease) both;
}

.cookie-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 1.25rem 1.4rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

.cookie-inner p {
  margin: 0;
  flex: 1 1 280px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

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

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

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

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

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

  .feature-block,
  .feature-block.reverse,
  .split-two,
  .contact-grid,
  .quote-stack.wide,
  .card-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-media img,
  .hero-copy,
  .page-hero-img,
  .cookie-banner {
    animation: none;
  }
}
