:root {
  --ink: #132334;
  --text: #344356;
  --muted: #6c7888;
  --paper: #fffdf9;
  --soft: #f6efe9;
  --blue: #dff1f2;
  --teal: #5a9ca0;
  --teal-dark: #226a70;
  --coral: #e47766;
  --rose: #d89a97;
  --line: rgba(19, 35, 52, 0.14);
  --shadow: 0 18px 40px rgba(19, 35, 52, 0.1);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 249, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  text-decoration: none;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  line-height: 1;
}

.brand span {
  display: block;
  color: var(--coral);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  color: var(--ink);
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--coral);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 6px;
  background: var(--coral);
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  text-align: center;
}

.button.secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.button.teal {
  background: var(--teal-dark);
}

.container {
  width: min(1120px, calc(100% - 44px));
  margin: 0 auto;
}

.section {
  padding: 84px 0;
}

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

.section.blue {
  background: var(--blue);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3,
.display {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

h1 {
  margin: 0;
  font-size: 88px;
  line-height: 0.98;
}

h2 {
  margin: 0;
  font-size: 54px;
  line-height: 1.05;
}

h3 {
  margin: 0;
  font-size: 26px;
  line-height: 1.15;
}

p {
  font-size: 18px;
  line-height: 1.75;
  margin: 0;
}

.lead {
  font-size: 22px;
  line-height: 1.55;
}

.muted {
  color: var(--muted);
}

.home-hero {
  position: relative;
  min-height: 82svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 253, 249, 0.95) 0%, rgba(255, 253, 249, 0.78) 43%, rgba(255, 253, 249, 0.18) 72%),
    linear-gradient(0deg, rgba(19, 35, 52, 0.24), rgba(19, 35, 52, 0.02));
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 73% 42%;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(680px, calc(100% - 44px));
  margin-left: max(22px, calc((100vw - 1120px) / 2));
  padding: 80px 0;
}

.hero-content p {
  max-width: 560px;
  margin-top: 22px;
}

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

.section-grid {
  margin-top: 34px;
}

.hero-meta {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--ink);
  font-size: 14px;
}

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

.service-strip div {
  background: var(--paper);
  padding: 26px;
}

.service-strip strong {
  display: block;
  color: var(--ink);
  margin-bottom: 6px;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.portrait-frame {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: white;
}

.portrait-frame img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.text-stack {
  display: grid;
  gap: 18px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card,
.feature,
.resume-panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.card {
  padding: 28px;
  position: relative;
}

.card.featured {
  border-color: var(--coral);
}

.price {
  margin: 14px 0;
  color: var(--coral);
  font-size: 34px;
  font-weight: 700;
}

.tag {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 6px;
  background: var(--blue);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 0;
}

.card .tag {
  position: absolute;
  top: -14px;
  left: 24px;
  box-shadow: 0 8px 18px rgba(19, 35, 52, 0.08);
}

.card ul,
.resume-panel ul,
.content-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.8;
}

.card-actions {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature {
  padding: 24px;
}

.feature h3 {
  overflow-wrap: anywhere;
}

.feature .kicker {
  color: var(--teal-dark);
  font-weight: 700;
  margin-bottom: 12px;
}

.page-hero {
  position: relative;
  min-height: 480px;
  padding: 96px 0 74px;
  background: var(--ink);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.page-hero .container {
  position: static;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(255, 253, 249, 0.96) 0%, rgba(255, 253, 249, 0.82) 44%, rgba(255, 253, 249, 0.2) 74%),
    linear-gradient(0deg, rgba(19, 35, 52, 0.2), rgba(19, 35, 52, 0.02));
}

.page-hero .container > div:first-child {
  position: relative;
  z-index: 1;
  max-width: 710px;
}

.page-hero p {
  margin-top: 18px;
}

.page-hero .portrait-frame {
  position: absolute;
  inset: 0;
  z-index: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.page-hero .portrait-frame img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: 76% 42%;
}

.content-section {
  padding: 70px 0;
}

.content-narrow {
  max-width: 850px;
  margin: 0 auto;
}

.story-copy {
  display: grid;
  gap: 22px;
}

.signature {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.resume-panel {
  padding: 34px;
}

.resume-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 28px;
}

.resume-item {
  margin-top: 30px;
}

.resume-item:first-child {
  margin-top: 0;
}

.resume-item p {
  font-size: 17px;
}

.contact-band {
  background: var(--teal-dark);
  color: white;
  padding: 64px 0;
}

.contact-band h2,
.contact-band p {
  color: white;
}

.contact-band .eyebrow,
.eyebrow.light {
  color: rgba(255, 255, 255, 0.82);
}

.contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-actions .button {
  background: white;
  color: var(--ink);
}

.contact-actions .button.secondary {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.7);
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  padding: 32px 0;
  font-size: 14px;
}

.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
}

@media (max-width: 920px) {
  .nav-wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    row-gap: 10px;
  }

  .nav-cta {
    display: none;
  }

  .home-hero {
    min-height: 78svh;
  }

  .home-hero::after {
    background: linear-gradient(90deg, rgba(255, 253, 249, 0.96), rgba(255, 253, 249, 0.72));
  }

  .page-hero::after {
    background: linear-gradient(90deg, rgba(255, 253, 249, 0.96), rgba(255, 253, 249, 0.78));
  }

  .hero-photo {
    object-position: 62% 45%;
  }

  .hero-content {
    padding: 58px 0;
  }

  .service-strip,
  .split,
  .card-grid,
  .feature-grid,
  .addon-grid,
  .resume-grid,
  .page-hero .container,
  .contact-card-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 42px;
  }

  .contact-row,
  .site-footer .container {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .container,
  .hero-content {
    width: min(1120px, calc(100% - 32px));
  }

  .hero-content {
    margin-left: 16px;
  }

  .section,
  .content-section {
    padding: 56px 0;
  }

  .page-hero {
    padding: 48px 0 38px;
    min-height: 430px;
  }

  .brand {
    font-size: 27px;
  }

  h1 {
    font-size: 42px;
    line-height: 1.04;
  }

  h2 {
    font-size: 34px;
  }

  h3 {
    font-size: 23px;
  }

  p,
  .resume-panel ul,
  .card ul,
  .content-list {
    font-size: 16px;
  }

  .lead {
    font-size: 19px;
  }

  .card,
  .feature,
  .resume-panel {
    padding: 22px;
  }

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

  .button {
    width: 100%;
  }

  .card-actions {
    grid-template-columns: 1fr;
  }
}
