:root {
  --bg-deep: #0a0908;
  --bg: #12100e;
  --bg-elevated: #1a1714;
  --bg-soft: #221e1a;
  --gold: #c4a574;
  --gold-bright: #e0c79a;
  --gold-dim: #8a734f;
  --cream: #f3ebe0;
  --cream-muted: #c9bdb0;
  --text: #f3ebe0;
  --text-muted: #a89a8c;
  --line: rgba(196, 165, 116, 0.28);
  --danger: #d9897a;
  --success: #8fbf9a;
  --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;
  --space-2xl: 7.5rem;
  --max: 72rem;
  --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;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(196, 165, 116, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 20%, rgba(80, 55, 35, 0.35), transparent 50%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 40%, #0e0c0a 100%);
  background-attachment: fixed;
  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(--cream);
}

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

h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
}

p {
  margin: 0 0 1rem;
  color: var(--cream-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.5rem;
  top: 0.5rem;
}

.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 var(--space-md);
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}

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

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

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

.nav-toggle-bars {
  display: inline-block;
  width: 1.1rem;
  height: 2px;
  margin-left: 0.5rem;
  background: var(--gold);
  box-shadow: 0 5px 0 var(--gold), 0 -5px 0 var(--gold);
  vertical-align: middle;
}

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

.site-nav a {
  color: var(--cream-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-dim);
  padding: 0.45rem 0.9rem;
  color: var(--gold-bright) !important;
}

.nav-cta:hover {
  background: rgba(196, 165, 116, 0.12);
}

.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;
  letter-spacing: 0.04em;
  padding: 0.85rem 1.5rem;
  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:hover {
  transform: translateY(-1px);
}

.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(--cream);
  border-color: var(--line);
}

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

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

.section-tight {
  padding: var(--space-lg) var(--space-md);
}

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

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

.section-lead {
  max-width: 38rem;
  font-size: 1.1rem;
}

.hero-cinematic {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: end;
  overflow: hidden;
}

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

.hero-cinematic .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) contrast(1.08) saturate(0.9);
  animation: heroDrift 28s var(--ease) infinite alternate;
}

.hero-cinematic .hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  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.7) 0%, transparent 55%);
}

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

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  color: var(--cream);
  margin: 0 0 0.35rem;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.45);
}

.hero-cinematic .hero-line {
  max-width: 28rem;
  font-size: 1.15rem;
  color: var(--cream-muted);
  margin-bottom: var(--space-md);
}

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

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

.page-hero .wrap {
  display: grid;
  gap: var(--space-md);
}

.page-hero.has-media {
  padding: 0;
  border: none;
}

.page-hero.has-media .hero-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 28rem;
}

.page-hero.has-media .hero-split-copy {
  padding: var(--space-xl) var(--space-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 36rem;
  margin-left: auto;
  width: 100%;
}

.page-hero.has-media .hero-split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 22rem;
  filter: brightness(0.7) contrast(1.05);
}

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.offer-list {
  display: grid;
  gap: var(--space-lg);
}

.offer-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-md);
  align-items: center;
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(1.25rem);
  animation: riseIn 0.8s var(--ease) forwards;
}

.offer-row:nth-child(1) { animation-delay: 0.1s; }
.offer-row:nth-child(2) { animation-delay: 0.2s; }
.offer-row:nth-child(3) { animation-delay: 0.3s; }
.offer-row:nth-child(4) { animation-delay: 0.4s; }

.offer-row img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: brightness(0.78) saturate(0.95);
}

.offer-meta {
  font-size: 0.85rem;
  color: var(--gold-dim);
  letter-spacing: 0.04em;
}

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

.story-block img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: brightness(0.75);
}

.quote-stack {
  display: grid;
  gap: var(--space-md);
}

.quote {
  padding: var(--space-md) 0;
  border-top: 1px solid var(--line);
}

.quote blockquote {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.45;
}

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

.rate-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-md) 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(--cream);
}

.note-list {
  display: grid;
  gap: var(--space-md);
}

.note-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--line);
}

.note-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: brightness(0.8);
}

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

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

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

.prose {
  max-width: 42rem;
}

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

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

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

.detail-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 24rem;
}

.detail-hero img {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
  filter: brightness(0.72);
}

.detail-hero-copy {
  padding: var(--space-xl) var(--space-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-elevated);
}

.detail-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  margin: var(--space-md) 0;
}

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

.detail-meta dd {
  margin: 0.15rem 0 0.75rem;
  color: var(--cream-muted);
}

.form {
  display: grid;
  gap: var(--space-sm);
  max-width: 36rem;
}

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

.form label {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

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

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

.form .error {
  color: var(--danger);
  font-size: 0.88rem;
  min-height: 1.2em;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-lg);
}

.contact-aside {
  padding: var(--space-md);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  height: fit-content;
}

.contact-aside p {
  word-break: break-word;
}

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

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 0.8fr;
  gap: var(--space-lg);
}

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

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

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

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

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

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

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(18, 16, 14, 0.96);
  border-top: 1px solid var(--line);
  padding: var(--space-md);
  animation: riseIn 0.5s var(--ease);
}

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

.cookie-inner p {
  margin: 0;
  flex: 1 1 20rem;
  color: var(--cream-muted);
  font-size: 0.95rem;
}

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

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

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

.legal-table th {
  background: var(--bg-elevated);
  color: var(--cream);
}

.timeline {
  display: grid;
  gap: 0;
  border-left: 1px solid var(--line);
  margin-left: 0.5rem;
  padding-left: var(--space-md);
}

.timeline-item {
  position: relative;
  padding-bottom: var(--space-md);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: calc(-1 * var(--space-md) - 0.3rem);
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--gold);
}

.cta-band {
  margin: var(--space-xl) var(--space-md);
  padding: var(--space-lg);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(196, 165, 116, 0.08), transparent 55%),
    var(--bg-elevated);
  text-align: center;
  animation: riseIn 0.9s var(--ease) both;
}

.cta-band h2 {
  margin-top: 0;
}

.study-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.study-gallery figure {
  margin: 0;
}

.study-gallery img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  filter: brightness(0.78);
}

.study-gallery figcaption {
  margin-top: 0.65rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

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

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

@keyframes heroDrift {
  from {
    transform: scale(1.05) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.12) translate3d(-1.5%, -1%, 0);
  }
}

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

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

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

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

  .grid-2,
  .grid-3,
  .offer-row,
  .story-block,
  .detail-hero,
  .contact-grid,
  .footer-grid,
  .page-hero.has-media .hero-split,
  .note-item,
  .study-gallery {
    grid-template-columns: 1fr;
  }

  .offer-row:nth-child(even) img {
    order: -1;
  }
}
