:root {
  --bg: #0c0a09;
  --bg-elevated: #161210;
  --bg-soft: #1c1712;
  --text: #f5f0e8;
  --text-muted: #b8a99a;
  --gold: #d4af37;
  --gold-soft: #c4a35a;
  --line: rgba(212, 175, 55, 0.22);
  --danger: #e8a0a0;
  --success: #a8c9a0;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", sans-serif;
  --space: clamp(1rem, 2vw, 2rem);
  --max: 1120px;
  --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 10% -10%, rgba(212, 175, 55, 0.08), transparent 50%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(80, 50, 20, 0.35), transparent 45%),
    var(--bg);
  line-height: 1.65;
  min-height: 100vh;
}

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

a {
  color: var(--gold-soft);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

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

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

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

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.9rem var(--space);
  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.02em;
}

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

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  width: 2.75rem;
  height: 2.75rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  display: block;
  width: 1.1rem;
  height: 1px;
  background: var(--text);
  position: relative;
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bar::before { top: -6px; }
.nav-toggle-bar::after { top: 6px; }

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

.site-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 400;
  transition: color 0.25s var(--ease);
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.85rem 1.4rem;
  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: #e0c056;
  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: clamp(3.5rem, 8vw, 6.5rem) var(--space);
}

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

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.75rem;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 1rem;
}

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

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

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 18s var(--ease) forwards;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 10, 9, 0.35) 0%, rgba(12, 10, 9, 0.72) 45%, rgba(12, 10, 9, 0.96) 100%),
    linear-gradient(90deg, rgba(12, 10, 9, 0.75) 0%, transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 12vw, 7rem) var(--space) clamp(3rem, 6vw, 5rem);
  width: 100%;
  animation: riseIn 1.1s var(--ease) both;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  margin: 0 0 0.5rem;
  color: var(--text);
  line-height: 0.95;
}

.hero-line {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  color: var(--gold-soft);
  margin: 0 0 1.25rem;
  max-width: 22ch;
}

.hero-support {
  color: var(--text-muted);
  max-width: 34rem;
  margin: 0 0 2rem;
}

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

.page-hero {
  padding: clamp(4rem, 10vw, 6rem) var(--space) 2rem;
  border-bottom: 1px solid var(--line);
}

.page-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.page-hero.has-media .page-hero-inner {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin: 0 0 1rem;
}

.page-hero-media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
  animation: fadeFrame 1.2s var(--ease) both;
}

.split {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 860px) {
  .split-2 {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.offer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.offer-item {
  display: grid;
  gap: 1.25rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  animation: riseIn 0.9s var(--ease) both;
}

@media (min-width: 800px) {
  .offer-item {
    grid-template-columns: 180px 1fr auto;
    align-items: center;
  }
}

.offer-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.offer-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.6rem;
}

.offer-item p {
  margin: 0;
  color: var(--text-muted);
}

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

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

.quote-block p {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-style: italic;
  margin: 0 0 0.75rem;
}

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

.prose {
  max-width: 42rem;
}

.prose p {
  color: var(--text-muted);
}

.prose h2, .prose h3 {
  color: var(--text);
  margin-top: 2rem;
}

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

.prose li + li {
  margin-top: 0.4rem;
}

.detail-hero {
  display: grid;
  gap: 2rem;
  padding: clamp(3rem, 7vw, 5rem) var(--space);
  max-width: var(--max);
  margin: 0 auto;
}

@media (min-width: 900px) {
  .detail-hero {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }
}

.detail-hero img {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
  margin: 1.5rem 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.meta-row strong {
  display: block;
  color: var(--gold-soft);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.rate-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 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;
}

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

.note-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.5rem;
}

.note-item {
  display: grid;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 720px) {
  .note-item {
    grid-template-columns: 220px 1fr;
  }
}

.note-item img {
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
}

.note-item h3 {
  margin: 0 0 0.4rem;
  font-size: 1.45rem;
}

.note-item time {
  color: var(--gold-soft);
  font-size: 0.85rem;
}

.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 1.5rem;
}

.steps li {
  position: relative;
  padding-left: 3.5rem;
  color: var(--text-muted);
}

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

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

.form-row {
  display: grid;
  gap: 0.4rem;
}

.form label {
  font-size: 0.9rem;
  color: var(--text);
}

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

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

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

.field-error {
  color: var(--danger);
  font-size: 0.85rem;
  min-height: 1.1em;
}

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

.form-status.is-visible {
  display: block;
}

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

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

.contact-aside {
  color: var(--text-muted);
}

.contact-aside h2 {
  color: var(--text);
  font-size: 1.5rem;
}

.contact-aside img {
  margin-top: 1.5rem;
  aspect-ratio: 5/4;
  object-fit: cover;
  width: 100%;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 3.5rem var(--space) 2rem;
  margin-top: 2rem;
  background: var(--bg-elevated);
}

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

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1.4fr 0.8fr 0.8fr;
  }
}

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

.footer-tag,
.footer-address {
  color: var(--text-muted);
  margin: 0 0 0.75rem;
}

.footer-heading {
  font-size: 1rem;
  margin: 0 0 0.75rem;
  color: var(--gold-soft);
}

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

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

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

.footer-links li + li {
  margin-top: 0.4rem;
}

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

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  padding: 1rem;
  background: rgba(12, 10, 9, 0.96);
  border-top: 1px solid var(--line);
  animation: riseIn 0.6s var(--ease) both;
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-inner p {
  margin: 0;
  color: var(--text-muted);
  max-width: 42rem;
  font-size: 0.95rem;
}

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

.legal-page {
  padding: clamp(3rem, 7vw, 5rem) var(--space);
}

.legal-page .section-inner {
  max-width: 46rem;
}

.story {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.story h3 {
  margin: 0 0 0.5rem;
}

.story p {
  color: var(--text-muted);
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}

.faq summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.faq p {
  color: var(--text-muted);
  margin: 0.75rem 0 0;
}

.error-page {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: var(--space);
}

.error-page h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  margin: 0 0 0.5rem;
}

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

@keyframes heroZoom {
  from { transform: scale(1.06); }
  to { transform: scale(1); }
}

@keyframes fadeFrame {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--line);
    display: none;
    padding: 1rem var(--space) 1.25rem;
  }

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

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

  .page-hero.has-media .page-hero-inner {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
