:root {
  color-scheme: light;
  --ink: #151515;
  --muted: #615f58;
  --line: #e4ddcf;
  --paper: #f8f4eb;
  --soft: #efe7d8;
  --white: #ffffff;
  --gold: #c9992b;
  --gold-dark: #765514;
  --black: #111111;
  --green: #526556;
  --blue: #355c72;
  --shadow: 0 18px 45px rgba(21, 21, 21, 0.11);
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(248, 244, 235, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  width: min(250px, 52vw);
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: clamp(10px, 1.8vw, 24px);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.top-nav a {
  padding: 8px 0;
  text-decoration: none;
}

.top-nav a.active {
  color: var(--gold-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 480px);
  align-items: center;
  gap: clamp(26px, 5vw, 70px);
  min-height: calc(100vh - 86px);
  padding: clamp(32px, 6vw, 76px) clamp(18px, 5vw, 76px);
  background:
    linear-gradient(110deg, rgba(248, 244, 235, 0.98), rgba(248, 244, 235, 0.88)),
    var(--paper);
}

.hero-copy {
  width: 100%;
  min-width: 0;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-dark);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.7rem, 5.6vw, 5.2rem);
  line-height: 0.97;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.3vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  line-height: 1.22;
  text-transform: uppercase;
}

.tagline {
  margin: 18px 0 0;
  color: var(--blue);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-weight: 800;
  line-height: 1.3;
}

.lead {
  max-width: 610px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
  line-height: 1.5;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button,
.contact-link {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border: 1px solid var(--black);
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold);
}

.button.secondary {
  color: var(--black);
  background: rgba(255, 255, 255, 0.72);
}

.hero-media {
  width: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-media img {
  width: min(100%, 455px);
  max-height: calc(100vh - 145px);
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.story-band {
  padding: clamp(46px, 7vw, 92px) clamp(18px, 5vw, 76px);
  color: var(--white);
  background: var(--green);
}

.story-inner {
  max-width: 900px;
}

.story-inner p {
  margin: 16px 0 0;
  font-size: clamp(1.08rem, 1.8vw, 1.34rem);
  line-height: 1.55;
}

.story-inner p:first-child {
  margin-top: 0;
}

.story-opener,
.story-close {
  color: #f0d899;
  font-weight: 900;
}

.section {
  padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 76px);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  background: var(--white);
}

.section-media {
  min-width: 0;
}

.logo-panel {
  padding: clamp(24px, 4vw, 44px);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.logo-panel img {
  display: block;
  width: 100%;
  height: auto;
}

.section-copy {
  max-width: 760px;
}

.section-copy p,
.resources-copy p,
.contact-section p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.6;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(20px, 5vw, 70px);
  align-items: start;
  margin-bottom: 36px;
}

.section-heading.compact {
  max-width: 1040px;
}

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

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

.service-grid article {
  min-height: 240px;
  padding: 28px;
  background: var(--white);
}

.service-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-weight: 900;
}

.service-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.pricing-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: var(--soft);
}

.pricing-copy p {
  max-width: 580px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.6;
}

.price-list {
  padding: clamp(24px, 4vw, 36px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: baseline;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.price-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.price-row span {
  color: var(--ink);
  font-weight: 900;
  line-height: 1.3;
}

.price-row strong {
  color: var(--gold-dark);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.pricing-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.4;
}

.why-section {
  background: var(--white);
}

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

.reason-list div {
  min-height: 132px;
  display: flex;
  align-items: center;
  padding: 24px 26px 24px 52px;
  color: var(--ink);
  background: var(--white);
  font-size: 1.04rem;
  font-weight: 800;
  line-height: 1.35;
  position: relative;
}

.reason-list div::before {
  content: "";
  position: absolute;
  left: 24px;
  width: 12px;
  height: 12px;
  border: 3px solid var(--gold);
  border-radius: 50%;
}

.notebook-section {
  color: var(--white);
  background: var(--black);
}

.notebook-section .eyebrow {
  color: #f0d899;
}

.notebook-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.notebook-grid article {
  min-height: 170px;
  padding: 24px;
  background: #1b1b1b;
}

.notebook-grid span {
  display: block;
  margin-bottom: 18px;
  color: #f0d899;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.resources-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: var(--soft);
}

.resource-list {
  display: grid;
  gap: 10px;
}

.resource-list a {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 16px 18px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 76px);
  color: var(--white);
  background: var(--blue);
}

.contact-section .eyebrow,
.contact-section p {
  color: #f0d899;
}

.contact-actions {
  flex-direction: column;
  margin-top: 0;
}

.contact-link {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.contact-link span {
  color: #f0d899;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-link strong {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

@media (max-width: 980px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .split-section,
  .pricing-section,
  .contact-section,
  .resources-section,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    justify-content: flex-start;
  }

  .hero-media img {
    max-height: none;
  }

  .service-grid,
  .reason-list,
  .notebook-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header,
  .hero,
  .section,
  .story-band,
  .contact-section {
    padding-left: 22px;
    padding-right: 22px;
  }

  h1 {
    font-size: 2.28rem;
    line-height: 1;
  }

  h2 {
    font-size: 2rem;
  }

  .tagline {
    font-size: 1.14rem;
  }

  .lead,
  .story-inner p {
    font-size: 1rem;
  }

  .hero-copy,
  .hero-media,
  .lead {
    width: calc(100vw - 44px);
    max-width: 346px;
  }

  .hero-media {
    justify-content: flex-start;
  }

  .hero-media img {
    width: 100%;
    max-width: 100%;
  }

  .top-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
    font-size: 0.76rem;
  }

  .top-nav a {
    padding-right: 8px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .service-grid,
  .reason-list,
  .notebook-grid {
    grid-template-columns: 1fr;
  }

  .service-grid article,
  .reason-list div,
  .notebook-grid article {
    min-height: auto;
  }
}
