:root {
  --ink: #2b1720;
  --muted: #735b64;
  --paper: #fffaf4;
  --paper-strong: #fff4e7;
  --rose: #cf7f86;
  --burgundy: #651f35;
  --burgundy-dark: #34101d;
  --gold: #c79a55;
  --line: rgba(101, 31, 53, 0.16);
  --shadow: 0 24px 70px rgba(52, 16, 29, 0.18);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 48px);
  color: #fffaf4;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 250, 244, 0.94);
  box-shadow: 0 12px 40px rgba(52, 16, 29, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand strong,
.footer-brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1;
  font-weight: 500;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: currentColor;
  opacity: 0.72;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 250, 244, 0.45);
  border-radius: 50%;
  background: rgba(255, 250, 244, 0.12);
}

.is-scrolled .brand-mark {
  border-color: var(--line);
  background: #fff;
}

.brand-mark svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 14px;
}

.main-nav a,
.header-action {
  opacity: 0.86;
}

.main-nav a:hover,
.header-action:hover {
  opacity: 1;
}

.header-action {
  justify-self: end;
  padding: 10px 16px;
  border: 1px solid rgba(255, 250, 244, 0.5);
  border-radius: 999px;
  font-size: 14px;
}

.is-scrolled .header-action {
  border-color: var(--line);
  background: var(--burgundy);
  color: #fffaf4;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 140px clamp(20px, 5vw, 70px) 42px;
  color: #fffaf4;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(35, 9, 18, 0.88) 0%, rgba(62, 18, 31, 0.67) 38%, rgba(52, 16, 29, 0.18) 72%),
    linear-gradient(180deg, rgba(25, 7, 12, 0.48), rgba(25, 7, 12, 0.22) 40%, rgba(25, 7, 12, 0.68));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.04;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(58px, 10vw, 128px);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 5vw, 64px);
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
}

.hero-lead {
  max-width: 640px;
  margin-bottom: 30px;
  color: rgba(255, 250, 244, 0.88);
  font-size: clamp(18px, 2.1vw, 24px);
}

.hero-actions,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}

.button-primary {
  background: var(--paper);
  color: var(--burgundy);
}

.button-secondary {
  border-color: rgba(255, 250, 244, 0.5);
  color: #fffaf4;
}

.form-submit {
  width: 100%;
  background: var(--burgundy);
  color: #fffaf4;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 880px;
  margin: 54px 0 0;
  background: rgba(255, 250, 244, 0.25);
  border: 1px solid rgba(255, 250, 244, 0.25);
}

.hero-facts div {
  min-height: 128px;
  padding: 20px;
  background: rgba(52, 16, 29, 0.42);
  backdrop-filter: blur(12px);
}

.hero-facts dt {
  margin-bottom: 12px;
  color: var(--gold);
  font-weight: 800;
}

.hero-facts dd {
  margin: 0;
  color: rgba(255, 250, 244, 0.86);
}

.section {
  padding: clamp(72px, 9vw, 124px) clamp(20px, 5vw, 70px);
}

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

.section-tinted {
  background: var(--paper-strong);
}

.two-columns,
.request-layout,
.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}

.intro-copy {
  color: var(--muted);
  font-size: 18px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 44px;
}

.section-heading p {
  color: var(--muted);
  font-size: 18px;
}

.section-heading.narrow {
  max-width: 560px;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--line);
}

.format-grid article {
  min-height: 310px;
  padding: 28px;
  background: var(--paper-strong);
}

.format-grid span,
.process-list span {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--gold);
  font-weight: 800;
}

.format-grid p,
.process-list p,
.trust-items p,
.club-copy p,
.request-copy p,
.site-footer p {
  color: var(--muted);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-list li {
  padding: 30px 24px;
  border-right: 1px solid var(--line);
}

.process-list li:last-child {
  border-right: 0;
}

.process-list span {
  margin-bottom: 20px;
  font-size: 18px;
}

.club-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  min-height: 650px;
  background: var(--burgundy-dark);
  color: #fffaf4;
}

.club-image-wrap {
  min-height: 420px;
}

.club-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.club-copy {
  align-self: center;
  padding: clamp(46px, 7vw, 88px);
}

.club-copy p {
  color: rgba(255, 250, 244, 0.8);
  font-size: 18px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 250, 244, 0.88);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.trust-items {
  display: grid;
  gap: 18px;
}

.trust-items article {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.trust-items article:first-child {
  padding-top: 0;
}

.request-layout {
  align-items: stretch;
}

.privacy-note {
  margin-top: 32px;
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.55);
  color: var(--muted);
}

.request-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--line);
  background: rgba(255, 250, 244, 0.86);
  box-shadow: var(--shadow);
}

.request-form label {
  display: grid;
  gap: 8px;
}

.request-form label > span {
  color: var(--burgundy);
  font-size: 14px;
  font-weight: 800;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(101, 31, 53, 0.22);
  border-radius: 0;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  outline: none;
}

.request-form textarea {
  resize: vertical;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(101, 31, 53, 0.12);
}

.consent {
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 12px;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--burgundy);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--burgundy);
  font-weight: 700;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px clamp(20px, 5vw, 70px);
  color: #fffaf4;
  background: var(--burgundy-dark);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
}

.site-footer p {
  margin-bottom: 0;
  color: rgba(255, 250, 244, 0.7);
}

.site-footer nav a {
  color: rgba(255, 250, 244, 0.82);
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .format-grid,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .format-grid article,
  .process-list li {
    min-height: auto;
  }

  .process-list li:nth-child(2n) {
    border-right: 0;
  }

  .club-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: absolute;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px 20px;
  }

  .header-action {
    display: none;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 100vh;
    padding: 118px 20px 28px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(35, 9, 18, 0.92), rgba(52, 16, 29, 0.42)),
      linear-gradient(180deg, rgba(25, 7, 12, 0.24), rgba(25, 7, 12, 0.72));
  }

  .hero-actions {
    display: grid;
  }

  .hero-facts,
  .two-columns,
  .request-layout,
  .trust-grid,
  .format-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .hero-facts div {
    min-height: auto;
  }

  .format-grid article {
    padding: 24px;
  }

  .format-grid span {
    margin-bottom: 18px;
  }

  .process-list li {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-list li:last-child {
    border-bottom: 0;
  }

  .club-copy {
    padding: 44px 20px 54px;
  }

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