:root {
  --cream: #f8f2e9;
  --paper: #fffdf8;
  --coral: #78aaa2;
  --coral-dark: #568b83;
  --ink: #26352f;
  --sage: #7c9585;
  --sage-light: #dce7df;
  --line: rgba(38, 53, 47, 0.16);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
}

a {
  color: inherit;
}

svg {
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 104px;
  padding: 12px clamp(24px, 5vw, 76px);
  background: rgba(248, 242, 233, 0.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 26px rgba(38, 53, 47, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: clamp(270px, 25vw, 360px);
  height: 78px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--coral);
  border: 1px solid rgba(231, 111, 87, 0.3);
  border-radius: 50%;
}

.brand-mark svg {
  width: 36px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-family: var(--serif);
  font-size: 1.35rem;
}

.brand small {
  margin-top: 4px;
  color: var(--coral);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 38px);
}

.main-nav a {
  font-size: 0.85rem;
  font-weight: 650;
  text-decoration: none;
}

.main-nav a:not(.nav-cta):hover {
  color: var(--coral);
}

.nav-cta {
  padding: 12px 21px;
  color: white;
  background: var(--ink);
  border-radius: 100px;
}

.nav-cta:hover {
  background: var(--coral);
}

.menu-toggle {
  display: none;
  padding: 8px;
  background: none;
  border: 0;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: calc(100vh - 84px);
  overflow: hidden;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 75px clamp(30px, 7vw, 108px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--coral-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  content: "";
  background: currentColor;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 {
  max-width: 720px;
  font-size: clamp(4.1rem, 7vw, 7.8rem);
}

h2 {
  font-size: clamp(3rem, 5vw, 5.25rem);
}

h1 em,
h2 em {
  color: var(--coral);
  font-weight: 400;
}

.hero-text {
  max-width: 520px;
  margin: 32px 0;
  color: rgba(38, 53, 47, 0.76);
  font-size: 1.08rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 27px;
  border: 1px solid transparent;
  border-radius: 100px;
  font-size: 0.86rem;
  font-weight: 750;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

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

.button-primary:hover {
  background: var(--coral-dark);
}

.text-link {
  font-size: 0.86rem;
  font-weight: 750;
  text-underline-offset: 7px;
}

.text-link span {
  margin-left: 8px;
  color: var(--coral);
}

.rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
  font-size: 0.8rem;
}

.stars {
  color: #d89039;
  letter-spacing: 0.12em;
}

.hero-visual {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: var(--sage-light);
}

.hero-visual::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: auto;
  height: auto;
  content: "";
  background: linear-gradient(90deg, rgba(38, 53, 47, 0.08), transparent 48%);
  border: 0;
  border-radius: 0;
}

.hero-visual::before {
  position: absolute;
  z-index: 3;
  width: 160px;
  height: 160px;
  content: "";
  border: 1px solid rgba(124, 149, 133, 0.34);
  border-radius: 50%;
  top: 7%;
  right: 7%;
}

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

.care-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 18px;
  background: rgba(255, 253, 248, 0.94);
  border-radius: 12px;
  box-shadow: 0 14px 35px rgba(38, 53, 47, 0.12);
  transform: rotate(-3deg);
}

.care-card > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--coral);
  background: var(--cream);
  border-radius: 50%;
}

.care-card strong,
.care-card small {
  display: block;
  line-height: 1.25;
}

.care-card strong {
  font-family: var(--serif);
}

.care-card small {
  color: rgba(38, 53, 47, 0.6);
  font-size: 0.67rem;
}

.care-card-top {
  top: 22%;
  left: 5%;
}

.care-card-bottom {
  right: 7%;
  bottom: 12%;
  transform: rotate(3deg);
}

.care-card .heart {
  color: white;
  background: var(--coral);
}

.promise-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: white;
  background: var(--ink);
}

.promise-strip div {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.promise-strip span {
  color: var(--coral);
  font-family: var(--serif);
  font-style: italic;
}

.promise-strip strong {
  font-size: 0.8rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.section {
  padding: 120px clamp(24px, 7vw, 110px);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.6fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 64px;
}

.section-heading > p {
  max-width: 480px;
  margin: 0 0 8px;
  color: rgba(38, 53, 47, 0.68);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 380px;
  padding: 34px 30px;
  background: rgba(255, 253, 248, 0.38);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease, transform 180ms ease;
}

.service-card:hover {
  z-index: 2;
  background: var(--paper);
  transform: translateY(-5px);
}

.service-card.featured {
  color: white;
  background: var(--coral);
}

.service-number {
  display: block;
  color: rgba(38, 53, 47, 0.48);
  font-family: var(--serif);
  font-style: italic;
}

.featured .service-number {
  color: rgba(255, 255, 255, 0.72);
}

.service-icon {
  display: grid;
  width: 74px;
  height: 74px;
  margin: 56px 0 32px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.service-icon svg {
  width: 39px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.service-card h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
}

.service-card p {
  margin: 0;
  color: rgba(38, 53, 47, 0.65);
  font-size: 0.9rem;
}

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

.price-note {
  margin: 31px 0 0;
  color: rgba(38, 53, 47, 0.62);
  font-size: 0.82rem;
  text-align: center;
}

.price-note a {
  color: var(--coral-dark);
  font-weight: 700;
  text-underline-offset: 4px;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 9vw, 150px);
  align-items: center;
  background: var(--paper);
}

.about-art {
  position: relative;
  min-height: 620px;
}

.about-blob {
  position: absolute;
  inset: 2% 5% 12%;
  background: var(--sage-light);
  border-radius: 48% 48% 42% 58% / 42% 44% 56% 58%;
  transform: rotate(-4deg);
}

.about-photo {
  position: absolute;
  z-index: 2;
  inset: 4% 7% 10%;
  width: 86%;
  height: 86%;
  object-fit: cover;
  border-radius: 48% 48% 42% 58% / 42% 44% 56% 58%;
  filter: saturate(0.88);
}

.about-art > p {
  position: absolute;
  z-index: 3;
  right: -2%;
  bottom: 3%;
  max-width: 255px;
  margin: 0;
  padding: 22px 24px;
  color: white;
  background: var(--coral);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.45;
  transform: rotate(2deg);
}

.about-copy {
  max-width: 600px;
}

.about-copy .lead {
  margin-top: 35px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.about-copy > p:not(.eyebrow):not(.lead) {
  color: rgba(38, 53, 47, 0.67);
}

.signature-link {
  display: inline-block;
  margin-top: 22px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
  text-decoration: none;
}

.signature-link span {
  color: var(--coral);
}

.gallery {
  background: var(--cream);
}

.gallery-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 60px;
}

.gallery-heading > img {
  width: 170px;
  height: 170px;
  object-fit: cover;
  border-radius: 50%;
  mix-blend-mode: multiply;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.8fr;
  grid-template-rows: 330px 330px;
  gap: 18px;
}

.gallery-item {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--sage-light);
}

.gallery-wide {
  grid-row: span 2;
}

.gallery-landscape {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-item figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 12px 15px;
  color: white;
  background: rgba(38, 53, 47, 0.82);
  font-family: var(--serif);
  font-size: 0.98rem;
  backdrop-filter: blur(8px);
}

.testimonials {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: clamp(50px, 8vw, 130px);
  align-items: center;
  color: white;
  background: var(--ink);
}

.testimonial-intro h2 {
  font-size: clamp(2.9rem, 4.5vw, 5rem);
}

.google-rating {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}

.rating-number {
  font-family: var(--serif);
  font-size: 4.2rem;
  line-height: 1;
}

.google-rating small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.55);
}

.testimonial-card {
  position: relative;
  padding: clamp(40px, 6vw, 75px);
  color: var(--ink);
  background: var(--cream);
  border-radius: 4px;
}

.quote-mark {
  position: absolute;
  top: 22px;
  right: 35px;
  color: var(--coral);
  font-family: var(--serif);
  font-size: 8rem;
  line-height: 1;
  opacity: 0.3;
}

.testimonial-card blockquote {
  position: relative;
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.6vw, 2.35rem);
  font-style: italic;
  line-height: 1.3;
}

.testimonial-card p {
  color: rgba(38, 53, 47, 0.62);
}

.testimonial-card a {
  display: inline-block;
  margin-top: 20px;
  color: var(--coral-dark);
  font-size: 0.82rem;
  font-weight: 750;
  text-underline-offset: 5px;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: clamp(60px, 10vw, 160px);
  color: white;
  background: var(--coral);
}

.contact .eyebrow {
  color: white;
}

.contact h2 em {
  color: var(--ink);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 580px;
  margin: 30px 0;
  color: rgba(255, 255, 255, 0.85);
}

.button-light {
  color: var(--ink);
  background: var(--paper);
}

.button-outline {
  color: white;
  border-color: rgba(255, 255, 255, 0.65);
}

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

.contact-details {
  display: grid;
  align-content: center;
}

.contact-card-photo {
  width: 100%;
  height: 300px;
  margin-bottom: 10px;
  object-fit: contain;
  object-position: center;
  background: white;
  border: 14px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
}

.contact-details > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.27);
}

.contact-details span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-details a,
.contact-details p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.14rem;
  text-decoration: none;
}

.social-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 34px clamp(24px, 5vw, 76px);
  background: var(--cream);
}

.footer-brand .brand-mark {
  font-size: 1.2rem;
}

.footer-brand .brand-logo {
  width: 190px;
  height: 44px;
}

footer > p {
  color: rgba(38, 53, 47, 0.55);
  font-size: 0.78rem;
}

footer > div {
  display: flex;
  gap: 20px;
  color: rgba(38, 53, 47, 0.54);
  font-size: 0.72rem;
}

.footer-link {
  padding: 0;
  color: inherit;
  background: none;
  border: 0;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

dialog {
  width: min(680px, calc(100vw - 32px));
  max-height: 82vh;
  padding: 42px;
  color: var(--ink);
  background: var(--paper);
  border: 0;
  border-radius: 10px;
  box-shadow: 0 30px 100px rgba(38, 53, 47, 0.3);
}

dialog::backdrop {
  background: rgba(38, 53, 47, 0.65);
  backdrop-filter: blur(5px);
}

.dialog-close {
  position: absolute;
  top: 15px;
  right: 18px;
  color: var(--ink);
  background: none;
  border: 0;
  font-size: 1.8rem;
  cursor: pointer;
}

#dialog-content h2 {
  margin-bottom: 25px;
  font-size: 2.6rem;
}

#dialog-content p {
  color: rgba(38, 53, 47, 0.72);
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 670px;
  }

  .hero-visual {
    min-height: 650px;
  }

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

  .about {
    gap: 50px;
  }

  .testimonials,
  .contact {
    grid-template-columns: 1fr;
  }

  .testimonial-intro {
    max-width: 700px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 420px 300px 300px;
  }

  .gallery-wide {
    grid-column: span 2;
    grid-row: auto;
  }

  .gallery-landscape {
    grid-column: span 2;
  }
}

@media (max-width: 800px) {
  .site-header {
    min-height: 72px;
  }

  .site-header .brand-logo {
    width: 230px;
    height: 58px;
  }

  .menu-toggle {
    z-index: 22;
    display: block;
    cursor: pointer;
  }

  .main-nav {
    position: fixed;
    z-index: 21;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 30px;
    background: var(--cream);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    font-family: var(--serif);
    font-size: 1.8rem;
  }

  .nav-cta {
    margin-top: 12px;
    color: white;
    font-family: var(--sans) !important;
    font-size: 0.9rem !important;
  }

  .hero-copy {
    min-height: 620px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .section-heading,
  .about {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 30px;
  }

  .about-art {
    min-height: 550px;
  }

  .promise-strip {
    grid-template-columns: 1fr;
  }

  .promise-strip div {
    justify-content: flex-start;
    padding-left: 12%;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  footer {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gallery-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-right: 20px;
    padding-left: 20px;
  }

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

  .brand-logo {
    width: 185px;
    height: 44px;
  }

  .brand strong {
    font-size: 1.15rem;
  }

  h1 {
    font-size: clamp(3.5rem, 17vw, 5rem);
  }

  h2 {
    font-size: clamp(2.7rem, 13vw, 4.1rem);
  }

  .hero-copy {
    min-height: 690px;
    padding: 55px 24px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual {
    min-height: 520px;
  }

  .care-card {
    padding: 10px 12px;
  }

  .care-card-top {
    top: 14%;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 330px;
  }

  .service-icon {
    margin-top: 38px;
  }

  .about-art {
    min-height: 430px;
  }

  .about-art > p {
    right: 0;
    max-width: 220px;
    font-size: 0.9rem;
  }

  .testimonial-card {
    padding-top: 75px;
  }

  .gallery-heading > img {
    width: 130px;
    height: 130px;
  }

  .gallery-grid {
    display: block;
  }

  .gallery-item {
    height: 310px;
    margin-bottom: 16px;
  }

  .gallery-item:first-child {
    height: 370px;
  }

  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-details > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-card-photo {
    width: min(100%, 360px);
    height: auto;
    aspect-ratio: 1;
    margin-right: auto;
    margin-left: auto;
  }

  footer > div {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
