:root {
  --white: #ffffff;
  --paper: #f7f7f5;
  --soft: #efefec;
  --ink: #1c1c1c;
  --graphite: #464946;
  --muted: #767970;
  --petrol: #0f3f46;
  --gold: #a98d5a;
  --line: rgba(28, 28, 28, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.topbar {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 26px 20px 18px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: grid;
  justify-items: center;
  gap: 2px;
  text-align: center;
}

.brand span {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.95;
}

.brand small {
  color: var(--graphite);
  font-size: clamp(0.82rem, 1.4vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(18px, 4vw, 48px);
  color: var(--graphite);
  font-weight: 700;
}

.nav a:hover,
.quick-info a:hover,
.plan-grid a:hover,
.footer a:hover {
  color: var(--petrol);
}

.hero,
.section {
  padding: clamp(62px, 8vw, 112px) clamp(20px, 5vw, 80px);
}

.hero {
  display: grid;
  justify-items: center;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(247, 247, 245, 1)),
    var(--paper);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--petrol);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
  line-height: 1.04;
}

h1 {
  max-width: 1050px;
  font-size: clamp(2.7rem, 6.4vw, 6.4rem);
}

h2 {
  font-size: clamp(2.05rem, 4.6vw, 4.6rem);
}

h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
}

p {
  margin: 0;
  color: var(--graphite);
}

.hero-text {
  max-width: 760px;
  margin-top: 24px;
  font-size: clamp(1.02rem, 1.5vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 800;
}

.button-primary {
  background: var(--petrol);
  color: var(--white);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.profile-line {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  max-width: 720px;
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  padding: 12px;
  text-align: left;
}

.profile-line img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center 34%;
}

.profile-line strong {
  display: block;
  line-height: 1.2;
}

.profile-line span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.9rem;
}

.quick-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  max-width: 980px;
  margin-top: 28px;
}

.quick-info a,
.quick-info span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--graphite);
  font-size: 0.92rem;
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  background: var(--white);
}

.about-photo {
  width: min(360px, 100%);
  margin: 30px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 32%;
}

.text-stack {
  display: grid;
  gap: 18px;
  font-size: 1.06rem;
}

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

.section-heading {
  max-width: 850px;
  margin-bottom: 42px;
}

.mini-grid,
.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.mini-grid article,
.plan-grid article,
.note {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 22px;
}

.mini-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border: 1px solid rgba(15, 63, 70, 0.22);
  border-radius: 999px;
  color: var(--petrol);
}

.mini-icon svg {
  width: 17px;
  height: 17px;
}

.mini-grid p,
.plan-grid p,
.note p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.94rem;
}

.visual-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  background: var(--white);
}

.note {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
}

.note .mini-icon {
  margin: 0;
}

.audience {
  background: var(--paper);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: 9px 13px;
  color: var(--graphite);
  font-size: 0.88rem;
  font-weight: 800;
}

.plans {
  background: var(--white);
}

.plan-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plan-grid article {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.plan-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  min-height: 44px;
  width: min(100%, 250px);
  margin-top: 26px;
  border: 1px solid var(--petrol);
  border-radius: 999px;
  background: var(--petrol);
  color: var(--white);
  padding: 10px 18px;
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease;
}

.plan-grid a:hover {
  color: var(--white);
  transform: translateY(-1px);
}

.featured-plan {
  background: var(--petrol) !important;
  color: var(--white);
}

.featured-plan p {
  color: rgba(255, 255, 255, 0.78);
}

.featured-plan a {
  border-color: var(--white);
  background: var(--white);
  color: var(--petrol);
}

.featured-plan a:hover {
  color: var(--petrol);
}

.final {
  display: grid;
  justify-items: center;
  text-align: center;
  background: var(--petrol);
  color: var(--white);
}

.final p {
  max-width: 680px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.8);
}

.final .button {
  margin-top: 30px;
}

.final .button-primary {
  background: var(--white);
  color: var(--petrol);
}

.final .eyebrow {
  color: var(--gold);
}

.footer {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 28px clamp(20px, 5vw, 80px);
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.footer div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 20px;
}

.footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.footer svg {
  width: 15px;
  height: 15px;
}

@media (max-width: 980px) {
  .mini-grid,
  .visual-notes,
  .plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .about-photo {
    width: min(360px, 86vw);
    margin: 30px auto 0;
  }

  .about-photo img {
    aspect-ratio: 3 / 4;
    object-position: center 24%;
  }
}

@media (max-width: 640px) {
  .topbar {
    padding-top: 22px;
  }

  .brand span {
    font-size: 2.9rem;
  }

  .brand small {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
  }

  .nav {
    gap: 14px;
    font-size: 0.88rem;
  }

  .hero,
  .section {
    padding: 58px 18px;
  }

  h1 {
    font-size: 2.62rem;
  }

  h2 {
    font-size: 2.18rem;
  }

  .hero-actions,
  .quick-info,
  .tag-list {
    display: grid;
    width: 100%;
  }

  .button,
  .quick-info a,
  .quick-info span,
  .tag-list span {
    width: 100%;
  }

  .quick-info a,
  .quick-info span {
    justify-content: center;
  }

  .profile-line {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .profile-line img {
    width: 54px;
    height: 54px;
  }

  .split,
  .mini-grid,
  .visual-notes,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .about-photo {
    width: min(320px, 92vw);
    margin: 28px auto 0;
  }

  .about-photo img {
    aspect-ratio: 3 / 4;
    object-position: center 24%;
  }

  .footer {
    justify-items: start;
    text-align: left;
  }

  .footer div {
    justify-content: flex-start;
  }

  .footer a {
    justify-content: flex-start;
    width: 100%;
  }
}
