:root {
  --bg: #080809;
  --bg-elevated: #111114;
  --bg-soft: #16161a;
  --text: #f4f0e8;
  --text-muted: #a39e94;
  --accent: #c9a962;
  --accent-soft: #a88b4a;
  --line: rgba(201, 169, 98, 0.22);
  --danger: #c97b6a;
  --success: #8faf8a;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --space: clamp(1.25rem, 3vw, 2.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 50% -10%, rgba(201, 169, 98, 0.08), transparent 55%),
    linear-gradient(180deg, #0c0c0e 0%, var(--bg) 40%, #050506 100%);
  min-height: 100vh;
}

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

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

a:hover {
  color: #e0c888;
}

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

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

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

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: #111;
  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;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  background: rgba(8, 8, 9, 0.55);
  backdrop-filter: blur(14px);
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(8, 8, 9, 0.92);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--space);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.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 {
  color: var(--text);
}

.site-nav .nav-cta {
  color: #111;
  background: var(--accent);
  padding: 0.45rem 0.9rem;
  text-decoration: none;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.site-nav .nav-cta:hover {
  background: #e0c888;
  color: #111;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 1px;
  background: var(--text);
  margin: 0.4rem 0;
  transition: transform 0.3s var(--ease);
}

.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.03em;
  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(--accent);
  color: #111;
}

.btn-primary:hover {
  background: #e0c888;
  color: #111;
}

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

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

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.section {
  padding: clamp(3.5rem, 8vw, 6.5rem) var(--space);
}

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

.section-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

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

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  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;
  filter: brightness(0.45) contrast(1.05);
  animation: heroSettle 1.4s var(--ease) both;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 8, 9, 0.35) 0%,
    rgba(8, 8, 9, 0.55) 45%,
    rgba(8, 8, 9, 0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3rem, 10vh, 6rem) var(--space);
  animation: riseIn 0.9s var(--ease) 0.15s both;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.hero h1 {
  color: var(--text);
  max-width: 14ch;
}

.hero .lede {
  color: rgba(244, 240, 232, 0.78);
  max-width: 34rem;
}

.page-hero {
  padding: clamp(3rem, 8vw, 5rem) 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-image .page-hero-inner {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
}

.page-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: brightness(0.7);
  animation: riseIn 0.8s var(--ease) both;
}

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

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

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

.offer-list li {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 720px) {
  .offer-list li {
    grid-template-columns: 140px 1fr auto;
    align-items: start;
  }
}

.offer-list img {
  width: 140px;
  height: 100px;
  object-fit: cover;
  filter: brightness(0.75);
}

.offer-list h3 {
  margin-bottom: 0.35rem;
  color: var(--text);
}

.offer-list h3 a {
  color: inherit;
  text-decoration: none;
}

.offer-list h3 a:hover {
  color: var(--accent);
}

.offer-meta {
  font-size: 0.85rem;
  color: var(--accent-soft);
}

.evidence-block {
  border-left: 1px solid var(--accent);
  padding-left: 1.5rem;
  margin: 2rem 0;
}

.evidence-block blockquote {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.35;
}

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

.story-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .story-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

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

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

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

.rate-note {
  font-size: 0.95rem;
  max-width: 40rem;
}

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

.article-list li {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 780px) {
  .article-list li {
    grid-template-columns: 240px 1fr;
  }
}

.article-list img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: brightness(0.72);
}

.article-meta {
  font-size: 0.85rem;
  color: var(--accent-soft);
  margin-bottom: 0.4rem;
}

.prose {
  max-width: 42rem;
}

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

.detail-hero img {
  width: 100%;
  max-height: 28rem;
  object-fit: cover;
  filter: brightness(0.65);
  margin-bottom: 2rem;
}

.detail-meta {
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

@media (min-width: 700px) {
  .detail-meta {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

.detail-meta dd {
  margin: 0;
  color: var(--text-muted);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.checklist li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.55rem;
  color: var(--text-muted);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.45rem;
  height: 1px;
  background: var(--accent);
}

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

.steps li {
  counter-increment: step;
  padding: 1.25rem 0 1.25rem 3rem;
  border-top: 1px solid var(--line);
  position: relative;
  color: var(--text-muted);
}

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

.contact-layout {
  display: grid;
  gap: 3rem;
}

@media (min-width: 880px) {
  .contact-layout {
    grid-template-columns: 1fr 1.1fr;
  }
}

.contact-card p {
  margin-bottom: 0.65rem;
}

label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--text);
}

.field {
  margin-bottom: 1.25rem;
}

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

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

textarea {
  min-height: 9rem;
  resize: vertical;
}

.field-error {
  display: block;
  min-height: 1.2rem;
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: var(--danger);
}

.form-status {
  margin-top: 1rem;
  font-size: 0.95rem;
}

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(17, 17, 20, 0.96);
  border-top: 1px solid var(--line);
  padding: 1.25rem var(--space);
  backdrop-filter: blur(12px);
  animation: riseIn 0.5s var(--ease);
}

.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;
  max-width: 42rem;
  font-size: 0.92rem;
}

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

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

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

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

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

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

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

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

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

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--accent);
}

.footer-address {
  font-size: 0.92rem;
}

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

.legal {
  max-width: 46rem;
}

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

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

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

.legal th {
  color: var(--text);
}

.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.team-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

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

.team-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: brightness(0.78) contrast(1.05);
  margin-bottom: 1rem;
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.timeline li {
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.5rem;
}

@media (min-width: 700px) {
  .timeline li {
    grid-template-columns: 6rem 1fr;
  }
}

.timeline .year {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 1.2rem;
}

.phase-list {
  display: grid;
  gap: 1.75rem;
  margin-top: 2rem;
}

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

.phase-list .phase-num {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

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

@keyframes heroSettle {
  from {
    transform: scale(1.06);
    opacity: 0.6;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
    z-index: 120;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    background: rgba(8, 8, 9, 0.97);
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s var(--ease);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    font-family: var(--font-display);
    font-size: 1.6rem;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
