:root {
  --ink: #172423;
  --text: #334340;
  --muted: #687672;
  --paper: #fbfaf7;
  --white: #ffffff;
  --porcelain: #eef5f4;
  --mist: #e7eef5;
  --copper: #b96d51;
  --spruce: #1d5b55;
  --fig: #50384a;
  --linen: #f3e7dc;
  --line: rgba(23, 36, 35, 0.13);
  --shadow: 0 18px 48px rgba(23, 36, 35, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--white);
  border-radius: 4px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 76px;
  padding: 10px max(18px, 5vw);
  background: rgba(251, 250, 247, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 230px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}

.brand img {
  width: 226px;
  height: auto;
  max-height: 60px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-links a,
.header-cta {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.menu-open .menu-toggle span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.header-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  color: var(--white);
  background: var(--spruce);
  border-radius: 4px;
  white-space: nowrap;
}

.hero {
  padding: 54px max(18px, 5vw) 70px;
  background: var(--porcelain);
  border-bottom: 1px solid var(--line);
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 58px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-photo {
  position: relative;
  min-height: 630px;
}

.hero-photo img {
  width: 100%;
  height: 630px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.photo-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.91);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.photo-caption span {
  color: var(--copper);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.photo-caption strong {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.28rem;
  line-height: 1.35;
}

.hero-content {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  font-family: "Libre Baskerville", Georgia, serif;
  color: var(--ink);
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: 4.55rem;
  line-height: 1.04;
}

.hero-lede {
  max-width: 650px;
  margin: 24px 0 30px;
  color: var(--text);
  font-size: 1.16rem;
  line-height: 1.75;
}

.hero-actions,
.quote-actions,
.source-links,
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 700;
  line-height: 1.15;
  text-decoration: none;
  cursor: pointer;
}

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

.button.primary:hover {
  background: #3f2c39;
}

.button.quiet,
.button.light,
.button.ghost {
  color: var(--spruce);
  background: var(--white);
  border-color: var(--line);
}

.button.quiet:hover,
.button.light:hover,
.button.ghost:hover {
  background: var(--linen);
}

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

.hero-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
  margin-top: 34px;
}

.hero-checklist span {
  padding: 14px 16px;
  color: var(--ink);
  background: var(--white);
  border-left: 4px solid var(--copper);
  border-radius: 4px;
  font-weight: 700;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1180px;
  margin: -34px auto 0;
  position: relative;
  z-index: 2;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.proof-strip div {
  min-height: 160px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Libre Baskerville", Georgia, serif;
  color: var(--spruce);
  font-size: 1.7rem;
}

.proof-strip span {
  color: var(--muted);
  line-height: 1.55;
}

section {
  padding: 90px max(18px, 5vw);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 58px;
  align-items: center;
}

.copy-block h2,
.section-heading h2,
.faq-section h2,
.gift h2,
.contact h2 {
  margin: 0;
  font-size: 3rem;
  line-height: 1.15;
}

.copy-block p,
.section-heading p,
.faq-section p,
.gift p,
.contact p,
.tier-note,
.source-date {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

.copy-block p {
  max-width: 650px;
}

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

.image-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.image-pair img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 8px;
}

.image-pair img:first-child {
  margin-top: 38px;
}

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

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

.section-heading.invert {
  color: var(--ink);
}

.section-heading.invert p:not(.eyebrow) {
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-grid article,
.audience-grid article,
.planning-cards article {
  min-height: 228px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-grid article:nth-child(even) {
  background: var(--porcelain);
}

.service-grid h3,
.audience-grid h3,
.planning-cards h3 {
  margin: 0 0 10px;
  font-size: 1.34rem;
  line-height: 1.35;
}

.service-grid p,
.audience-grid p,
.seo-list p,
.faq-grid p,
.planning-cards p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

.local-seo {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.seo-list article {
  min-height: 216px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(23, 36, 35, 0.08);
}

.seo-list article:nth-child(2) {
  background: var(--porcelain);
}

.seo-list h3,
.faq-grid h3 {
  margin: 0 0 10px;
  font-size: 1.32rem;
  line-height: 1.35;
}

.tiers {
  background: var(--linen);
}

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

.tier-card {
  position: relative;
  min-height: 610px;
  padding: 30px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.tier-card.featured {
  border-top: 6px solid var(--spruce);
}

.tier-label {
  position: absolute;
  top: 18px;
  right: 18px;
  margin: 0;
  padding: 6px 10px;
  color: var(--white);
  background: var(--spruce);
  border-radius: 4px;
  font-size: 0.76rem;
  font-weight: 700;
}

.tier-number {
  margin: 0 0 14px;
  color: var(--copper);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 2.7rem;
}

.tier-card h3 {
  margin: 0;
  font-size: 1.9rem;
}

.tier-subtitle {
  margin: 8px 0 22px;
  color: var(--spruce);
  font-weight: 700;
}

.tier-card ul {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.tier-card li {
  padding: 10px 0;
  color: var(--text);
  line-height: 1.5;
  border-bottom: 1px solid var(--line);
}

.tier-card li::before,
.included-care li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--copper);
  vertical-align: 1px;
}

.tier-card a {
  display: inline-flex;
  color: var(--fig);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--fig);
}

.tier-note {
  max-width: 920px;
  margin: 26px 0 0;
}

.gallery-band {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 1fr 1.1fr;
  gap: 0;
  padding: 0;
  background: var(--ink);
}

.gallery-band img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.gallery-band img:nth-child(2) {
  filter: saturate(0.92);
}

.calculator-section {
  background: var(--porcelain);
}

.calculator-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 24px;
  align-items: start;
}

.calculator-panel,
.quote-panel,
.contact-form {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.calculator-panel {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
}

.tier-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
  border: 0;
}

.tier-picker legend {
  grid-column: 1 / -1;
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 700;
}

.tier-option {
  display: grid;
  gap: 5px;
  min-height: 118px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  background: var(--paper);
}

.tier-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--fig);
}

.tier-option span {
  color: var(--ink);
  font-weight: 700;
}

.tier-option small {
  color: var(--muted);
  line-height: 1.4;
}

.tier-option.active {
  border-color: var(--fig);
  background: #f6eef4;
}

.included-care {
  margin-bottom: 24px;
  padding: 22px;
  color: var(--ink);
  background: var(--linen);
  border-radius: 8px;
}

.included-care h3 {
  margin: 0 0 12px;
  font-size: 1.55rem;
}

.included-care ul {
  columns: 2;
  column-gap: 28px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.included-care li {
  break-inside: avoid;
  margin: 0 0 9px;
  line-height: 1.45;
}

.calculator-groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.calc-group {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.calc-group label,
.hours-field label,
.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
}

.calc-group label {
  font-size: 0.94rem;
}

.calc-group select,
.hours-field input,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.hours-field {
  display: none;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: end;
  margin-top: 12px;
}

.hours-field.visible {
  display: grid;
}

.hours-rate {
  min-width: 92px;
  padding: 13px 10px;
  color: var(--white);
  background: var(--spruce);
  border-radius: 4px;
  text-align: center;
  font-weight: 700;
}

.quote-panel {
  position: sticky;
  top: 96px;
  padding: 26px;
  color: var(--white);
  background: var(--fig);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.quote-panel .eyebrow,
.quote-panel h3 {
  color: var(--white);
}

.quote-panel h3 {
  margin: 0;
  font-size: 1.85rem;
}

.quote-tier {
  display: inline-flex;
  margin: 14px 0 18px;
  padding: 7px 10px;
  color: var(--ink);
  background: var(--linen);
  border-radius: 4px;
  font-weight: 700;
}

.quote-items {
  display: grid;
  gap: 12px;
  min-height: 120px;
}

.quote-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.quote-item strong {
  color: var(--white);
}

.quote-total {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin: 22px 0 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.quote-total span,
.quote-note {
  color: rgba(255, 255, 255, 0.68);
}

.quote-total strong {
  color: var(--white);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 2.15rem;
}

.quote-note {
  line-height: 1.55;
  font-size: 0.86rem;
}

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

.planning-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.planning-cards article {
  border-top: 5px solid var(--spruce);
}

.source-links a,
.contact-methods a {
  display: inline-flex;
  padding: 10px 12px;
  color: var(--spruce);
  background: var(--porcelain);
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
}

.source-date {
  max-width: 1000px;
  margin: 30px 0 0;
  font-size: 0.9rem;
}

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

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

.faq-section {
  background: var(--porcelain);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.faq-grid article {
  min-height: 190px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--copper);
  border-radius: 8px;
}

.faq-grid article:nth-child(even) {
  border-left-color: var(--spruce);
}

.gift {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
  color: var(--white);
  background: var(--spruce);
}

.gift h2 {
  color: var(--white);
}

.gift .eyebrow {
  color: var(--linen);
}

.gift p {
  color: rgba(255, 255, 255, 0.82);
}

.gift img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 8px;
}

.gift-amounts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}

.gift-amounts span {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  font-weight: 700;
}

.testimonials {
  color: var(--white);
  background: var(--ink);
}

.testimonials h2,
.testimonials .eyebrow {
  color: var(--white);
}

.testimonials .section-heading.invert p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

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

.testimonial-grid figure {
  margin: 0;
  padding: 30px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.testimonial-grid blockquote {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.84);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.18rem;
  line-height: 1.6;
}

.testimonial-grid figcaption {
  color: var(--linen);
  font-weight: 700;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 48px;
  background: var(--paper);
}

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

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  padding: 40px max(18px, 5vw);
  color: rgba(255, 255, 255, 0.74);
  background: var(--ink);
}

.site-footer img {
  width: 260px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 16px;
}

.site-footer p {
  max-width: 420px;
  margin: 0;
  line-height: 1.65;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 14px;
}

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

.site-footer a:hover {
  color: var(--linen);
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.46);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    grid-column: 1 / -1;
    justify-content: start;
  }

  .hero-shell,
  .calculator-shell,
  .section-grid,
  .gift,
  .contact {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .audience-grid,
  .seo-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .quote-panel {
    position: static;
  }
}

@media (max-width: 840px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .nav-links {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 16px 34px rgba(23, 36, 35, 0.1);
  }

  .site-header.menu-open .nav-links {
    display: flex;
  }

  .nav-links a {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 10px 8px;
    border-bottom: 1px solid var(--line);
    font-size: 0.95rem;
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .header-cta {
    display: none;
    grid-column: 1 / -1;
    justify-content: center;
    width: 100%;
  }

  .site-header.menu-open .header-cta {
    display: inline-flex;
  }

  h1 {
    font-size: 3.2rem;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-photo,
  .hero-photo img {
    min-height: 0;
    height: 460px;
  }

  .proof-strip {
    grid-template-columns: 1fr;
    margin: 0;
    border-radius: 0;
  }

  .proof-strip div {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  section {
    padding: 66px 18px;
  }

  .tier-grid,
  .calculator-groups,
  .planning-cards,
  .testimonial-grid,
  .tier-picker,
  .gallery-band,
  .service-grid,
  .audience-grid,
  .seo-list,
  .faq-grid,
  .image-pair {
    grid-template-columns: 1fr;
  }

  .copy-block h2,
  .section-heading h2,
  .faq-section h2,
  .gift h2,
  .contact h2 {
    font-size: 2.35rem;
  }

  .image-pair img,
  .gift img {
    height: 420px;
  }

  .image-pair img:first-child {
    margin-top: 0;
  }

  .hero-checklist {
    grid-template-columns: 1fr;
  }

  .included-care ul {
    columns: 1;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: start;
  }
}

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

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 158px;
    max-height: 50px;
  }

  .header-cta {
    padding: 9px 11px;
  }

  .nav-links {
    gap: 0;
  }

  .nav-links a {
    font-size: 0.95rem;
  }

  h1 {
    font-size: 2.52rem;
  }

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

  .photo-caption {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .tier-card {
    min-height: auto;
  }

  .calculator-panel,
  .quote-panel,
  .contact-form {
    padding: 20px;
  }
}
