@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,600;12..96,700;12..96,800&family=DM+Sans:wght@400;500;600;700&display=swap');
:root {
  color-scheme: light;
  --cream: #f7f2e7;
  --yellow: #f2d45c;
  --green: #173f36;
  --coral: #d9785f;
  --sage: #dce7d0;
  --line: #d8d1c2;
  --ink: #17372f;
  --white: #fffdf8;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}
button,
input,
textarea {
  font: inherit;
}
[hidden] {
  display: none !important;
}
.wrap {
  width: min(1240px, calc(100% - 56px));
  margin: auto;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
:focus-visible {
  outline: 3px solid #326bc5;
  outline-offset: 4px;
}
.proposal-bar {
  min-height: 42px;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #102d27;
  color: white;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.proposal-bar div {
  display: flex;
  align-items: center;
  gap: 18px;
}
.proposal-bar button {
  min-height: 28px;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}
.proposal-bar a {
  text-underline-offset: 4px;
}
.proposal-notes {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(15, 42, 35, 0.82);
}
.proposal-notes > div {
  width: min(660px, 100%);
  padding: clamp(30px, 5vw, 60px);
  border-radius: 32px 32px 8px 32px;
  background: var(--cream);
  box-shadow: 12px 12px 0 var(--yellow);
}
.proposal-notes h2 {
  margin: 0 0 20px;
  font:
    800 clamp(2.1rem, 5vw, 4rem)/0.95 'Bricolage Grotesque',
    sans-serif;
  letter-spacing: -0.05em;
}
.proposal-notes p:not(.eyebrow) {
  line-height: 1.7;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 15;
  background: rgba(255, 249, 233, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.header-inner {
  min-height: 90px;
  display: flex;
  align-items: center;
  gap: 34px;
}
.brand {
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-sun {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  font:
    800 1.7rem 'Bricolage Grotesque',
    sans-serif;
  transform: rotate(-8deg);
}
.brand > span:last-child {
  display: flex;
  flex-direction: column;
}
.brand strong {
  font:
    800 1.32rem/1 'Bricolage Grotesque',
    sans-serif;
}
.brand small {
  margin-top: 4px;
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.site-nav {
  display: flex;
  gap: clamp(18px, 3vw, 36px);
}
.site-nav a {
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}
.site-nav a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}
.pill {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--green);
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}
.pill-red {
  border-color: var(--coral);
  background: var(--coral);
  color: white;
}
.pill-yellow {
  background: var(--yellow);
}
.pill-dark {
  background: var(--green);
  color: white;
}
.header-cta {
  min-height: 44px;
  font-size: 0.8rem;
}
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--green);
  border-radius: 50%;
  background: none;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--green);
}
.hero {
  overflow: hidden;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  min-height: min(760px, calc(100vh - 132px));
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
  padding-block: clamp(60px, 8vw, 110px);
}
.hero-copy {
  position: relative;
  z-index: 1;
}
.hero-copy::before {
  position: absolute;
  z-index: -1;
  top: -38px;
  left: -58px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--yellow) 42%, transparent);
  content: '';
}
.eyebrow {
  margin: 0 0 20px;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero h1,
.section h2 {
  margin: 0;
  font:
    800 clamp(3.7rem, 6.5vw, 7rem)/0.9 'Bricolage Grotesque',
    sans-serif;
  letter-spacing: -0.075em;
}
.hero h1 em {
  color: var(--coral);
  font-style: normal;
}
.hero-intro {
  max-width: 610px;
  margin: 30px 0 0;
  font-size: clamp(1.08rem, 1.8vw, 1.38rem);
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 34px;
}
.phone {
  font-size: 0.9rem;
  font-weight: 800;
  text-underline-offset: 5px;
}
.google-note {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 14px;
  width: fit-content;
  margin-top: 40px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
}
.google-note strong {
  font-size: 1.3rem;
}
.google-note span {
  font-weight: 700;
}
.google-note small {
  width: 100%;
  font-size: 0.68rem;
}
.hero-photo {
  position: relative;
  margin: 0;
}
.hero-photo::before {
  position: absolute;
  inset: -28px -40px 22% 20%;
  border-radius: 50% 50% 20px 20px;
  background: var(--yellow);
  content: '';
}
.hero-photo img {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: 38% center;
  border: 1px solid var(--line);
  border-radius: 48% 48% 18px 18px;
}
.hero-photo figcaption {
  margin-top: 10px;
  font-size: 0.68rem;
}
.photo-sticker {
  position: absolute;
  right: -22px;
  top: 11%;
  display: grid;
  width: 100px;
  height: 100px;
  place-items: center;
  border: 1px solid var(--green);
  border-radius: 50%;
  background: var(--sage);
  font:
    800 1rem/1 'Bricolage Grotesque',
    sans-serif;
  text-align: center;
  transform: rotate(11deg);
}
.care-strip {
  width: min(1240px, calc(100% - 56px));
  margin: 0 auto;
  padding: 18px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  color: #49665f;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
}
.care-strip span + span {
  border-left: 1px solid var(--line);
}
.section {
  padding: clamp(80px, 10vw, 145px) 0;
  border-bottom: 1px solid var(--line);
}
.section h2 {
  font-size: clamp(2.8rem, 4.7vw, 5.1rem);
  line-height: 0.94;
}
.section-intro {
  display: grid;
  grid-template-columns: 0.42fr 1fr 0.6fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 64px;
}
.section-intro > p:last-child {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.65;
}
.care {
  background: var(--cream);
}
.care-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.care-cards article {
  min-height: 340px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 26px 26px 6px 26px;
  background: var(--white);
  box-shadow: 0 16px 45px rgba(23, 63, 54, 0.07);
}
.care-cards article:nth-child(2) {
  transform: translateY(18px);
}
.care-cards article:nth-child(3) {
  background: color-mix(in srgb, var(--sage) 32%, var(--white));
}
.care-cards span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  font-size: 1.3rem;
}
.care-cards h3 {
  margin: 76px 0 12px;
  font:
    800 1.85rem/1 'Bricolage Grotesque',
    sans-serif;
  letter-spacing: -0.04em;
}
.care-cards p {
  line-height: 1.6;
}
.review-source {
  margin: 50px 0 0;
  font-size: 0.72rem;
}
.groom {
  background: var(--green);
  color: white;
}
.groom h2 {
  font-size: clamp(3.2rem, 5.6vw, 6rem);
}
.groom-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(60px, 9vw, 130px);
}
.large-copy {
  max-width: 570px;
  margin-top: 32px;
  color: #dce9df;
  font-size: 1.12rem;
  line-height: 1.7;
}
.groom-list {
  border-top: 1px solid #78978e;
}
.groom-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 27px 0;
  border-bottom: 1px solid #78978e;
}
.groom-list b {
  color: var(--yellow);
  font-size: 0.76rem;
}
.groom-list h3 {
  margin: 0;
  font:
    800 1.65rem 'Bricolage Grotesque',
    sans-serif;
}
.groom-list p {
  margin: 7px 0 0;
  color: #cfdfda;
  line-height: 1.55;
}
.stephanie {
  background: var(--cream);
}
.stephanie-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(55px, 9vw, 130px);
  align-items: center;
}
.story-photo {
  position: relative;
  margin: 0;
}
.story-photo img {
  width: 100%;
  min-height: 530px;
  border-radius: 210px 210px 18px 18px;
  object-fit: cover;
}
.story-photo figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  padding: 20px 24px;
  display: grid;
  gap: 4px;
  border-radius: 18px;
  background: rgba(247, 242, 231, 0.92);
  backdrop-filter: blur(9px);
}
.story-photo figcaption strong {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.25rem;
}
.story-photo figcaption span {
  color: #49665f;
  font-size: 0.82rem;
}
.stephanie-grid > div:last-child > p:not(.eyebrow) {
  max-width: 650px;
  font-size: 1.06rem;
  line-height: 1.7;
}
.stephanie-grid .pill {
  margin-top: 20px;
}
.voices {
  background: var(--cream);
}
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.voice-grid blockquote {
  margin: 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px 28px 28px 28px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(23, 63, 54, 0.06);
}
.voice-grid blockquote:nth-child(2) {
  background: color-mix(in srgb, var(--yellow) 20%, var(--white));
}
.voice-grid p {
  margin: 0;
  font:
    700 clamp(1.5rem, 2.5vw, 2.3rem)/1.15 'Bricolage Grotesque',
    sans-serif;
}
.voice-grid cite {
  display: block;
  margin-top: 40px;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}
.appointment {
  background: var(--sage);
}
.appointment-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(60px, 9vw, 130px);
}
.appointment-grid > div > p:last-child {
  max-width: 500px;
  line-height: 1.65;
}
.appointment form {
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid #bcc9b2;
  border-radius: 28px;
  background: var(--cream);
}
label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}
input,
textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--green);
  border-radius: 12px;
  background: white;
  color: var(--green);
  font-size: 1rem;
}
textarea {
  resize: vertical;
}
form small {
  display: block;
  margin-top: 14px;
}
.success {
  padding: 14px;
  border-radius: 12px;
  background: var(--yellow);
  font-weight: 700;
}
.visit {
  background: var(--cream);
}
.visit-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.6fr 0.5fr 0.7fr;
  gap: 40px;
  align-items: end;
}
.visit address {
  font-style: normal;
  line-height: 1.8;
}
.visit p {
  margin: 8px 0 0;
}
.visit-links {
  display: grid;
  gap: 16px;
}
.visit-links a {
  font-weight: 800;
  text-underline-offset: 5px;
}
footer {
  padding: 42px 0;
  background: var(--green);
  color: white;
}
footer .wrap {
  display: flex;
  align-items: center;
  gap: 32px;
}
footer p {
  color: #c7dbd5;
  font-size: 0.72rem;
}
footer > .wrap > a:last-child {
  font-size: 0.75rem;
  font-weight: 700;
}
.brand {
  margin-right: auto;
}
@media (max-width: 980px) {
  .wrap {
    width: min(780px, calc(100% - 40px));
  }
  .site-nav {
    display: none;
    position: fixed;
    inset: 132px 0 0;
    padding: 32px 20px;
    flex-direction: column;
    background: var(--cream);
  }
  .site-nav.open {
    display: flex;
  }
  .site-nav a {
    padding: 17px 0;
    border-bottom: 1px solid var(--green);
    font:
      800 1.65rem 'Bricolage Grotesque',
      sans-serif;
  }
  .menu-toggle {
    display: block;
  }
  .header-cta {
    display: none;
  }
  .hero-grid,
  .groom-grid,
  .stephanie-grid,
  .appointment-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    padding-top: 20px;
  }
  .hero-photo {
    width: min(620px, 100%);
    margin: auto;
  }
  .hero-photo img {
    aspect-ratio: 5/4;
    border-radius: 42% 42% 18px 18px;
  }
  .section-intro {
    grid-template-columns: 1fr;
  }
  .section-intro > p:last-child {
    max-width: 600px;
  }
  .care-cards {
    grid-template-columns: 1fr;
  }
  .care-cards article {
    min-height: 250px;
  }
  .care-cards article:nth-child(2) {
    transform: none;
  }
  .care-cards h3 {
    margin-top: 45px;
  }
  .story-photo img {
    min-height: 440px;
  }
  .visit-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .wrap {
    width: calc(100% - 28px);
  }
  .proposal-bar {
    padding-inline: 14px;
  }
  .proposal-bar > span {
    display: none;
  }
  .proposal-bar div {
    gap: 10px;
  }
  .header-inner {
    min-height: 76px;
  }
  .brand-sun {
    width: 42px;
    height: 42px;
  }
  .brand strong {
    font-size: 1.1rem;
  }
  .site-nav {
    inset-block-start: 118px;
  }
  .hero h1 {
    font-size: clamp(3.3rem, 16vw, 5rem);
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .phone {
    text-align: center;
  }
  .hero-photo img {
    aspect-ratio: 4/5;
  }
  .photo-sticker {
    right: -4px;
    width: 82px;
    height: 82px;
  }
  .section h2 {
    font-size: clamp(2.65rem, 12vw, 4.25rem);
  }
  .care-strip {
    width: calc(100% - 28px);
    grid-template-columns: 1fr 1fr;
    gap: 12px 0;
  }
  .care-strip span:nth-child(3) {
    border-left: 0;
  }
  .voice-grid,
  .visit-grid {
    grid-template-columns: 1fr;
  }
  footer .wrap {
    align-items: flex-start;
    flex-direction: column;
  }
  footer .brand {
    margin: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
