:root {
  --ink: #151515;
  --paper: #f5efe5;
  --paper-soft: #fbf7ef;
  --white: #fffdf8;
  --muted: #69645d;
  --line: rgba(21, 21, 21, .12);
  --red: #a9362b;
  --red-dark: #731f1a;
  --blue: #263d6b;
  --sage: #6f8268;
  --champagne: #d7b16d;
  --shadow: 0 24px 60px rgba(24, 20, 16, .12);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(21, 21, 21, .035) 1px, transparent 1px),
    linear-gradient(var(--paper) 0%, #efe5d6 100%);
  background-size: 80px 80px, auto;
  font-family: Inter, system-ui, sans-serif;
}

a { color: inherit; text-decoration: none; }
button, .btn { font: inherit; }

.container {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(245, 239, 229, .86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper-soft);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .08em;
  box-shadow: 8px 8px 0 var(--champagne);
}

.brand-eyebrow,
.eyebrow {
  display: block;
  margin: 0 0 .45rem;
  color: var(--red);
  font-size: .73rem;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.brand-eyebrow {
  margin-bottom: .12rem;
  color: var(--muted);
  font-size: .65rem;
}

.brand-title {
  display: block;
  font-size: 1rem;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: .2rem;
  color: var(--muted);
  font-size: .94rem;
  font-weight: 800;
}

.site-nav a {
  border-radius: 8px;
  padding: .72rem .9rem;
  transition: background .2s ease, color .2s ease;
}

.site-nav a:hover {
  background: rgba(169, 54, 43, .09);
  color: var(--red-dark);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: .75rem .95rem;
  cursor: pointer;
  font-weight: 900;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) 0 3.5rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 12rem;
  background: linear-gradient(90deg, rgba(169, 54, 43, .14), rgba(38, 61, 107, .12), rgba(111, 130, 104, .12));
  border-bottom: 1px solid rgba(21, 21, 21, .08);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .72fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-copy h1,
.section-heading h2,
.contact-box h2 {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-copy h1 {
  max-width: 13ch;
  font-size: clamp(3.25rem, 7.5vw, 7.1rem);
  line-height: .9;
}

.hero-lead {
  max-width: 43rem;
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.17rem);
  line-height: 1.8;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  border-radius: 8px;
  padding: .95rem 1.2rem;
  font-weight: 900;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.btn-primary {
  border: 1px solid var(--red-dark);
  background: var(--red);
  color: var(--white);
  box-shadow: 7px 7px 0 rgba(115, 31, 26, .22);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.event-pass {
  position: relative;
  border: 1px solid rgba(21, 21, 21, .16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .16), transparent 35%),
    linear-gradient(160deg, #1f2430 0%, #131313 58%, #241512 100%);
  color: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.event-pass::before,
.event-pass::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: var(--paper);
  transform: translateY(-50%);
}

.event-pass::before { left: -1.3rem; }
.event-pass::after { right: -1.3rem; }

.pass-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px dashed rgba(255, 253, 248, .24);
  padding: 1rem 1.2rem;
  color: rgba(255, 253, 248, .72);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.pass-top strong { color: var(--champagne); }

.pass-main {
  min-height: 23rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
  background:
    radial-gradient(circle at 72% 22%, rgba(215, 177, 109, .28), transparent 8rem),
    radial-gradient(circle at 24% 70%, rgba(169, 54, 43, .28), transparent 10rem);
}

.pass-label {
  width: fit-content;
  border: 1px solid rgba(255, 253, 248, .26);
  border-radius: 999px;
  padding: .45rem .7rem;
  color: var(--champagne);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.pass-main h2 {
  margin: 1rem 0 0;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: .9;
}

.pass-main p {
  margin: 1rem 0 0;
  color: rgba(255, 253, 248, .74);
  line-height: 1.7;
}

.pass-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px dashed rgba(255, 253, 248, .24);
}

.pass-details span {
  min-height: 5.5rem;
  display: grid;
  align-content: center;
  gap: .25rem;
  border-right: 1px solid rgba(255, 253, 248, .12);
  padding: .9rem;
  color: rgba(255, 253, 248, .68);
  font-size: .76rem;
  line-height: 1.35;
}

.pass-details span:last-child { border-right: 0; }

.pass-details strong {
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1;
}

.signal-band {
  border-block: 1px solid var(--line);
  background: var(--ink);
  color: var(--paper-soft);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.signal-grid span {
  min-height: 4.5rem;
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(255, 253, 248, .14);
  text-align: center;
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.signal-grid span:last-child { border-right: 0; }

.section {
  padding: clamp(3.8rem, 7vw, 6rem) 0;
}

.method-section {
  background: var(--paper-soft);
}

.method-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.section-heading {
  max-width: 48rem;
}

.section-heading h2,
.contact-box h2 {
  font-size: clamp(2.25rem, 4.5vw, 4.5rem);
  line-height: .96;
}

.section-heading p,
.contact-box p {
  max-width: 40rem;
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.timeline {
  display: grid;
  border-top: 1px solid var(--line);
}

.timeline article {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding: 1.25rem 0;
}

.timeline span {
  color: var(--red);
  font-family: Fraunces, Georgia, serif;
  font-size: 2rem;
  font-weight: 800;
}

.timeline h3,
.service-card h3 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.15;
}

.timeline p,
.service-card p {
  margin: .7rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.services-heading {
  margin-bottom: 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-card {
  min-height: 20rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  padding: 1.2rem;
}

.service-card:last-child { border-right: 0; }

.service-card-dark {
  background: var(--blue);
  color: var(--white);
}

.service-card-dark p { color: rgba(255, 253, 248, .76); }

.service-number {
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  background: rgba(169, 54, 43, .1);
  color: var(--red-dark);
  font-weight: 900;
}

.service-card-dark .service-number {
  background: rgba(255, 253, 248, .13);
  color: var(--champagne);
}

.proof-section {
  padding-top: 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.proof-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, .62);
  padding: 1.35rem;
}

.proof-grid strong {
  display: block;
  color: var(--red);
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: .9;
}

.proof-grid span {
  display: block;
  margin-top: .8rem;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.4;
}

.contact-section {
  padding-top: 0;
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(215, 177, 109, .18), transparent 38%),
    var(--ink);
  color: var(--white);
  padding: clamp(1.4rem, 4vw, 3rem);
  box-shadow: var(--shadow);
}

.contact-box .eyebrow { color: var(--champagne); }
.contact-box p { color: rgba(255, 253, 248, .72); }
.contact-actions { justify-content: flex-end; min-width: 18rem; }
.contact-box .btn-secondary {
  background: transparent;
  border-color: rgba(255, 253, 248, .28);
  color: var(--white);
}

.site-footer {
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  color: var(--muted);
  font-size: .92rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .method-grid,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .event-pass {
    max-width: 34rem;
  }

  .signal-grid,
  .services-grid,
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    border-bottom: 0;
  }

  .service-card {
    min-height: 16rem;
    border-bottom: 1px solid var(--line);
  }

  .service-card:nth-child(2) {
    border-right: 0;
  }

  .contact-actions {
    justify-content: flex-start;
    min-width: 0;
  }

  .site-nav {
    position: absolute;
    top: 4.85rem;
    right: 1.25rem;
    display: none;
    min-width: 14rem;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(251, 247, 239, .98);
    padding: .5rem;
    box-shadow: var(--shadow);
  }

  .site-nav.open { display: flex; }
  .menu-toggle { display: inline-flex; }
}

@media (max-width: 640px) {
  .container { padding: 0 1rem; }
  .brand-mark { width: 2.65rem; height: 2.65rem; box-shadow: 5px 5px 0 var(--champagne); }
  .brand-eyebrow { display: none; }
  .hero { padding-top: 3.4rem; }
  .hero-copy h1 { font-size: clamp(3rem, 16vw, 4.25rem); }
  .hero-actions,
  .contact-actions { flex-direction: column; }
  .btn { width: 100%; }
  .pass-main { min-height: 19rem; }
  .pass-details { grid-template-columns: 1fr; }
  .pass-details span { min-height: auto; border-right: 0; border-bottom: 1px solid rgba(255, 253, 248, .12); }
  .pass-details span:last-child { border-bottom: 0; }
  .signal-grid,
  .services-grid,
  .proof-grid { grid-template-columns: 1fr; }
  .signal-grid span { border-right: 0; border-bottom: 1px solid rgba(255, 253, 248, .14); }
  .signal-grid span:last-child { border-bottom: 0; }
  .timeline article { grid-template-columns: 1fr; gap: .35rem; }
  .service-card { border-right: 0; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
