﻿:root {
  --bg: #fbf8f1;
  --bg-alt: #f2ede4;
  --surface: rgba(255, 255, 255, 0.92);
  --text: #222222;
  --muted: #5b5b5b;
  --brand: #d4ab61;
  --brand-dark: #11284d;
  --line: rgba(17, 40, 77, 0.08);
  --max: 1040px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}
body {
  margin: 0;
  color: var(--text);
  font-family: Manrope, system-ui, sans-serif;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  line-height: 1.65;
}

a { color: inherit; }

.section {
  width: 100%;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 150px;
}

.section:nth-child(even) {
  background: var(--bg-alt);
}

.wrap {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 72px 0;
}

.masthead {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid rgba(17, 40, 77, 0.08);
  overflow: hidden;
  position: sticky;
  top: 0;
  z-index: 20;
}

.masthead__inner {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  min-height: 128px;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
}

.masthead__logo {
  display: block;
  width: auto;
  max-width: min(690px, 100%);
  max-height: 145px;
  object-fit: contain;
  flex: 0 0 auto;
  justify-self: start;
}

.masthead__nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--brand-dark);
  flex: 0 0 auto;
}

.masthead__nav a {
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

.masthead__nav a:hover {
  border-bottom-color: var(--brand);
}

.masthead__fallback {
  display: none;
  text-align: center;
  font-weight: 800;
  color: var(--brand-dark);
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(17, 40, 77, 0.08);
  color: var(--brand-dark);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand-dark);
  flex: none;
}

h1, h2, h3, .display {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--brand-dark);
}

.display {
  font-size: clamp(3.4rem, 9vw, 6.4rem);
  max-width: 17ch;
}

h2 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  max-width: 21ch;
}

h3 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  max-width: 24ch;
}

p {
  margin: 0;
  color: var(--muted);
  max-width: 105ch;
  font-size: 1.03rem;
}

.lead {
  font-size: 1.1rem;
  max-width: 93ch;
  margin-top: 18px;
}

.text {
  max-width: 102ch;
  margin-top: 14px;
}

.quote {
  margin-top: 24px;
  padding: 22px 24px;
  border-left: 4px solid var(--brand-dark);
  background: rgba(255, 255, 255, 0.6);
  border-radius: 0 18px 18px 0;
  max-width: 93ch;
  font-size: 1.14rem;
  color: var(--text);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 26px;
}

.card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
}

.card strong {
  display: block;
  font-size: 1.02rem;
  margin-bottom: 8px;
  color: var(--brand-dark);
}

.list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  max-width: 102ch;
}

.list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text);
}

.list li::before {
  content: "•";
  color: var(--brand-dark);
  font-weight: 900;
  line-height: 1.2;
}

.numbered {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.item {
  padding: 22px 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid var(--line);
}

.item__top {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 8px;
}

.item__num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(17, 40, 77, 0.08);
  color: var(--brand-dark);
  font-weight: 900;
  flex: none;
}

.contact {
  margin-top: 22px;
  padding: 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  max-width: 60rem;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px 28px;
  align-items: start;
}

.contact__label {
  display: block;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin-bottom: 8px;
}

.contact__name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand-dark);
  margin-bottom: 10px;
}

.contact__text {
  color: var(--text);
  max-width: 34ch;
}

.contact__actions {
  display: grid;
  gap: 10px;
  justify-items: start;
  align-content: start;
}

.contact__actions a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--brand-dark);
  font-weight: 800;
  padding: 8px 0;
}

.contact strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.02rem;
  color: var(--brand-dark);
}

.contact a {
  margin-right: 0;
  margin-top: 0;
}

.footer {
  padding: 24px 0 34px;
  color: var(--muted);
  font-size: 0.94rem;
}

.footer .wrap {
  padding: 0;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.bonus-hero {
  padding-top: 40px;
}

.bonus-kicker {
  max-width: 24ch;
}

.bonus-section {
  display: grid;
  gap: 18px;
}

.bonus-copy {
  display: grid;
  gap: 18px;
  max-width: 100ch;
}

.bonus-copy p {
  max-width: none;
}

.bonus-card {
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
}

.bonus-card h3 {
  margin-bottom: 10px;
}

.bonus-signoff {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  align-items: start;
  column-gap: 24px;
  row-gap: 18px;
  margin-left: 0;
  width: 100%;
  max-width: none;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.bonus-photo {
  width: 240px;
  height: 300px;
  max-width: 240px;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(17, 40, 77, 0.12);
  background: transparent;
  display: block;
  justify-self: start;
}

.bonus-contact {
  display: grid;
  gap: 10px;
  align-content: start;
  margin-left: 0;
  width: 100%;
  max-width: none;
}

.bonus-contact .contact__text {
  max-width: none;
}

@media (max-width: 800px) {
  .wrap {
    padding: 54px 0;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .masthead__inner {
    flex-direction: column;
    justify-content: center;
    min-height: auto;
    padding: 22px 0;
  }

  .masthead__logo {
    width: min(100%, 480px);
    max-width: 100%;
    max-height: 120px;
    height: auto;
  }

  .masthead__nav {
    justify-content: center;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .bonus-hero {
    padding-top: 18px;
  }

  .bonus-signoff {
    grid-template-columns: 1fr;
    gap: 22px;
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .bonus-photo {
    width: min(240px, 100%);
    height: 300px;
    max-width: 240px;
  }

  .bonus-contact {
    margin-left: 0;
    width: 100%;
    max-width: none;
  }
}
