:root {
  --ink: #172421;
  --muted: #5b6761;
  --paper: #fbf8f1;
  --white: #ffffff;
  --moss: #2d5a4d;
  --moss-dark: #173c35;
  --fern: #8aa768;
  --coral: #d9775f;
  --clay: #cda07b;
  --line: rgba(23, 36, 33, 0.16);
  --shadow: 0 22px 70px rgba(23, 36, 33, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(10, 23, 20, 0.74), rgba(10, 23, 20, 0));
}

.brand,
.nav-links,
.hero-actions,
.hero-stats,
.pricing-header,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  font-family: Fraunces, Georgia, serif;
  font-size: 21px;
  line-height: 1;
}

.nav-links {
  gap: clamp(14px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a,
.nav-cta {
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--white);
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.14);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: #10231f;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 22, 19, 0.88) 0%, rgba(11, 22, 19, 0.68) 42%, rgba(11, 22, 19, 0.18) 100%),
    linear-gradient(0deg, rgba(11, 22, 19, 0.74) 0%, rgba(11, 22, 19, 0) 45%);
}

.hero-content {
  position: relative;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 140px 0 38px;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffc4aa;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2 {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 780px;
  font-size: clamp(3.2rem, 8vw, 7.9rem);
}

h2 {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
}

h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.87);
  font-size: clamp(1.03rem, 2vw, 1.25rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 20px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 14px 30px rgba(92, 33, 20, 0.25);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
}

.hero-stats {
  align-items: stretch;
  flex-wrap: wrap;
  gap: 12px;
  margin: 58px 0 0;
  padding: 0;
}

.hero-stats div {
  width: min(100%, 210px);
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.hero-stats strong {
  display: block;
  margin-bottom: 3px;
  font-size: 1.1rem;
  font-weight: 900;
}

.hero-stats span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.89rem;
}

section {
  padding: clamp(70px, 9vw, 130px) clamp(18px, 4vw, 54px);
}

.section-grid,
.section-heading,
.service-grid,
.differentiator,
.about,
.package-grid,
.pricing-plans,
.pricing,
.audience,
.contact {
  width: min(1120px, 100%);
  margin: 0 auto;
}

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

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1fr);
  gap: clamp(28px, 7vw, 94px);
  align-items: start;
}

.section-grid p:last-child {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.service-band {
  background: #eef2e6;
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 760px;
}

.service-grid,
.package-grid,
.pricing-plans,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-card,
.package-card,
.pricing-plans article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.service-card {
  min-height: 265px;
  padding: 26px;
}

.service-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--moss);
  font-size: 0.75rem;
  font-weight: 900;
}

.service-card p,
.package-card p,
.package-card li,
.process-list p,
.pricing-header p,
.pricing-note,
.audience-grid p,
.contact-copy p,
.site-footer p {
  color: var(--muted);
}

.service-card p {
  margin: 12px 0 0;
}

.differentiator {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 7vw, 86px);
  align-items: center;
}

.differentiator-copy p:last-child {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.process-list {
  display: grid;
  gap: 12px;
}

.process-list div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px 22px;
  align-items: start;
  padding: 24px;
  border-left: 5px solid var(--coral);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(23, 36, 33, 0.08);
}

.process-list span {
  grid-row: span 2;
  color: var(--moss);
  font-weight: 900;
}

.process-list p {
  margin: 0;
}

.about {
  display: grid;
  grid-template-columns: minmax(260px, 380px) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.about-photo {
  width: min(100%, 320px);
  justify-self: center;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(45, 90, 77, 0.18), rgba(217, 119, 95, 0.14)),
    #f5f0e6;
  box-shadow: 0 18px 48px rgba(23, 36, 33, 0.08);
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: contrast(1.04) saturate(1.04);
}

.about-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.packages {
  background: var(--moss-dark);
  color: var(--white);
}

.packages .section-heading h2 {
  color: var(--white);
}

.package-card {
  min-height: 390px;
  padding: 28px;
  color: var(--ink);
}

.package-card.featured {
  background: #fdf8ed;
  border-color: rgba(217, 119, 95, 0.5);
  box-shadow: var(--shadow);
}

.package-label {
  margin: 0 0 18px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-card h3 {
  font-size: 1.45rem;
}

.package-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0 0 0 20px;
}

.pricing {
  padding: 0;
}

.pricing-header {
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 32px;
}

.pricing-header p {
  max-width: 420px;
  margin: 0;
}

.pricing-plans {
  margin-bottom: 22px;
}

.pricing-plans article {
  min-height: 210px;
  padding: 24px;
  background: #fffdfa;
}

.pricing-plans h3 {
  font-size: 1.25rem;
}

.pricing-plans p:last-child {
  margin: 12px 0 0;
  color: var(--muted);
}

.pricing-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(23, 36, 33, 0.08);
}

.pricing-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.pricing-table th {
  color: var(--white);
  background: var(--moss);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-table tr:last-child td {
  border-bottom: 0;
}

.pricing-table td:nth-child(2) {
  font-weight: 800;
}

.pricing-table .pricing-group-start td {
  border-top: 3px solid rgba(45, 90, 77, 0.28);
}

.pricing-note {
  margin: 18px 0 0;
  font-size: 0.93rem;
}

.audience {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(26px, 7vw, 78px);
  align-items: start;
}

.audience-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.audience-grid p {
  min-height: 128px;
  margin: 0;
  padding: 22px;
  border-top: 4px solid var(--fern);
  background: var(--white);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 7vw, 86px);
  align-items: start;
}

.contact-copy p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(23, 36, 33, 0.22);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fffdfa;
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-button {
  width: 100%;
  border: 0;
}

.contact-form .button.secondary {
  justify-content: center;
  color: var(--moss);
  border: 1px solid rgba(255, 255, 255, 0);
  background: #eef2e6;
}

.schedule {
  display: grid;
  gap: 24px;
  background: #eef4ea;
}

.schedule .section-heading p:last-child {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.calendly-inline-widget {
  min-width: 320px;
  height: 720px;
}

.calendly-fallback {
  display: flex;
  margin: 0 24px 24px;
}

.site-footer {
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 54px);
  border-top: 1px solid var(--line);
  background: #f3eee3;
}

.site-footer p {
  margin: 0;
  font-size: 0.94rem;
}

.site-footer p:first-child {
  color: var(--ink);
  font-weight: 900;
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 880px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(11, 22, 19, 0.9) 0%, rgba(11, 22, 19, 0.58) 100%),
      linear-gradient(0deg, rgba(11, 22, 19, 0.82) 0%, rgba(11, 22, 19, 0) 54%);
  }

  .section-grid,
  .differentiator,
  .about,
  .audience,
  .contact,
  .pricing-header {
    grid-template-columns: 1fr;
  }

  .pricing-header {
    display: grid;
  }

  .service-grid,
  .package-grid,
  .pricing-plans {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand span:last-child {
    max-width: 128px;
    white-space: normal;
    line-height: 1.05;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .nav-cta {
    padding: 10px 13px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 820px;
  }

  .hero-content {
    width: min(100% - 28px, 1120px);
    padding-bottom: 24px;
  }

  h1 {
    font-size: clamp(3.1rem, 17vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2.1rem, 12vw, 3.35rem);
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-stats div {
    width: 100%;
  }

  .calendly-inline-widget {
    height: 660px;
  }

  .service-grid,
  .package-grid,
  .pricing-plans,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .package-card,
  .pricing-plans article {
    min-height: auto;
  }

  .process-list div {
    grid-template-columns: 1fr;
  }

  .process-list span {
    grid-row: auto;
  }

  .contact-form {
    padding: 20px;
  }

  .site-footer {
    display: grid;
  }
}
