@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  --ink: #3d2f2f;
  --ink-soft: #695757;
  --rose: #b37575;
  --rose-dark: #8e5b5f;
  --rose-pale: #f0dfdc;
  --blush: #f6e9e5;
  --sand: #f8f3ef;
  --paper: #fffaf7;
  --line: #e8d9d4;
  --olive: #767d6c;
  --display: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
  --shadow-soft: 0 18px 55px rgba(83, 54, 52, .10);
  --shadow-card: 0 9px 30px rgba(86, 52, 47, .07);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.07'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

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

a {
  color: inherit;
}

.container-wide {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--rose-dark);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
}

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

.display {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: .98;
}

.section-heading {
  margin: 15px 0 0;
  font-family: var(--display);
  font-size: clamp(2.65rem, 7vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: .95;
}

.section-heading em {
  color: var(--rose-dark);
  font-style: italic;
}

.section-copy {
  max-width: 520px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 1rem;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  padding: 19px 0;
  background: #8e5b5f;
  color: var(--paper);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand-emblem {
  width: 46px;
  height: auto;
  flex: 0 0 auto;
}

.brand-identity {
  display: block;
  min-width: 0;
}

.brand-wordmark {
  width: 205px;
  height: auto;
}

.site-header .brand-emblem,
.site-header .brand-wordmark,
.site-footer .brand-emblem,
.site-footer .brand-wordmark {
  filter: brightness(0) invert(1);
}

.brand-subtitle {
  display: block;
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: .58rem;
  letter-spacing: .16em;
  line-height: 1;
  text-transform: uppercase;
}

.site-header .brand-subtitle {
  color: rgba(255, 250, 247, .72);
}

.site-nav {
  display: none;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none;
  transition: color .25s ease;
}

.site-header .site-nav a {
  color: rgba(255, 250, 247, .86);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--rose-dark);
}

.site-header .site-nav a:hover,
.site-header .site-nav a:focus-visible {
  color: var(--paper);
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--rose-dark);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.site-header .site-nav a::after {
  background: var(--paper);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta,
.btn-primary-rose,
.btn-outline-rose {
  border-radius: 999px;
  font-size: .79rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  transition: transform .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease;
}

.header-cta {
  display: none;
  padding: 11px 18px;
  border: 1px solid var(--rose-dark);
  color: var(--rose-dark);
}

.site-header .header-cta {
  border-color: rgba(255, 250, 247, .7);
  color: var(--paper);
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--rose-dark);
  color: var(--paper);
  transform: translateY(-2px);
}

.site-header .header-cta:hover,
.site-header .header-cta:focus-visible {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--rose-dark);
}

.nav-toggle {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 250, 247, .65);
  color: var(--ink);
}

.site-header .nav-toggle {
  border-color: rgba(255, 250, 247, .55);
  background: transparent;
  color: var(--paper);
}

.nav-toggle svg {
  width: 18px;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 72px;
  right: 20px;
  left: 20px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 250, 247, .98);
  box-shadow: var(--shadow-soft);
}

.mobile-menu.is-open {
  display: block;
  animation: menuIn .25s ease both;
}

.mobile-menu a {
  display: block;
  padding: 11px 7px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: .89rem;
  text-decoration: none;
}

.mobile-menu a:last-child {
  border-bottom: 0;
}

.hero {
  position: relative;
  min-height: 750px;
  overflow: hidden;
  padding: 123px 0 70px;
  background: #8e5b5f;
  color: var(--paper);
}

.hero::after {
  position: absolute;
  right: -110px;
  bottom: -175px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(255, 250, 247, .22);
  border-radius: 50%;
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "kicker"
    "heading"
    "intro"
    "actions"
    "visual"
    "credential";
}

.hero-copy {
  display: contents;
  max-width: 590px;
}

.hero-copy > .eyebrow { grid-area: kicker; }
.hero-copy > h1 { grid-area: heading; }
.hero-copy > .hero-intro { grid-area: intro; }
.hero-copy > .hero-actions { grid-area: actions; }
.hero-copy > .credential { grid-area: credential; }

.hero h1 {
  max-width: 600px;
  margin: 20px 0 0;
  font-family: var(--display);
  font-size: clamp(3.8rem, 13vw, 7.3rem);
  font-weight: 600;
  letter-spacing: -.055em;
  line-height: .81;
}

.hero h1 em {
  color: var(--rose-pale);
  font-style: italic;
}

.hero-intro {
  max-width: 415px;
  margin: 28px 0 0;
  color: rgba(255, 250, 247, .82);
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 29px;
}

.btn-primary-rose,
.btn-outline-rose {
  display: inline-flex;
  min-height: 47px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
}

.btn-primary-rose {
  border: 1px solid var(--rose-dark);
  background: var(--rose-dark);
  color: var(--paper);
}

.hero .btn-primary-rose {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--rose-dark);
}

.btn-primary-rose:hover,
.btn-primary-rose:focus-visible {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
  transform: translateY(-2px);
}

.hero .btn-primary-rose:hover,
.hero .btn-primary-rose:focus-visible {
  border-color: var(--rose-pale);
  background: var(--rose-pale);
  color: var(--ink);
}

.btn-outline-rose {
  border: 1px solid var(--rose-dark);
  color: var(--rose-dark);
}

.hero .btn-outline-rose {
  border-color: rgba(255, 250, 247, .72);
  color: var(--paper);
}

.btn-outline-rose:hover,
.btn-outline-rose:focus-visible {
  background: var(--rose-pale);
  color: var(--ink);
  transform: translateY(-2px);
}

.hero .btn-outline-rose:hover,
.hero .btn-outline-rose:focus-visible {
  border-color: var(--paper);
  background: rgba(255, 250, 247, .12);
  color: var(--paper);
}

.credential {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 34px;
  color: rgba(255, 250, 247, .78);
  font-size: .74rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.credential::before {
  width: 38px;
  height: 1px;
  background: var(--rose-pale);
  content: "";
}

.hero-visual {
  grid-area: visual;
  position: relative;
  width: min(100%, 360px);
  margin: 18px auto 0;
}

.hero-photo-frame {
  position: relative;
  width: 100%;
}

.hero-photo-frame img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 575px) {
  .brand-lockup {
    gap: 8px;
  }

  .brand-emblem {
    width: 36px;
  }

  .brand-wordmark {
    width: min(47vw, 180px);
  }

  .brand-subtitle {
    font-size: .5rem;
    letter-spacing: .12em;
  }

  .hero {
    padding-top: 102px;
    padding-bottom: 48px;
  }

  .hero h1 {
    margin-top: 14px;
    font-size: clamp(3.2rem, 14vw, 3.8rem);
  }

  .hero-intro {
    margin-top: 16px;
  }

  .hero-visual {
    margin-top: 12px;
  }

  .hero-photo-frame {
    width: min(100%, 250px);
  }

  .hero-actions {
    gap: 10px;
    margin-top: 16px;
  }

  .credential {
    margin-top: 16px;
    font-size: .68rem;
  }
}

.section {
  padding: 95px 0;
}

.section-tinted {
  background: var(--blush);
}

.services-heading {
  display: grid;
  gap: 22px;
  margin-bottom: 43px;
}

.services-heading .section-copy {
  margin-top: 0;
}

.service-list {
  display: grid;
  gap: 1px;
  border-top: 1px solid var(--line);
}

.service-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 17px;
  padding: 23px 0 22px;
  border-bottom: 1px solid var(--line);
}

.service-number {
  color: var(--rose);
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 600;
}

.service-title {
  margin: 0;
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1;
}

.service-description {
  max-width: 450px;
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: .89rem;
}

.quote-section {
  position: relative;
  overflow: hidden;
  padding: 102px 0 114px;
  background: var(--rose-dark);
  color: var(--paper);
}

.quote-section::before {
  position: absolute;
  top: -130px;
  right: -70px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(255, 250, 247, .22);
  border-radius: 50%;
  content: "";
}

.quote-section::after {
  position: absolute;
  bottom: -185px;
  left: -90px;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(255, 250, 247, .13);
  border-radius: 50%;
  content: "";
}

.quote-inner {
  position: relative;
  z-index: 1;
  max-width: 845px;
  margin: auto;
  text-align: center;
}

.quote-mark {
  display: block;
  margin-bottom: 12px;
  color: var(--rose-pale);
  font-family: var(--display);
  font-size: 5.5rem;
  line-height: .65;
}

.quote-text {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.65rem, 7vw, 5.45rem);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .93;
}

.quote-caption {
  margin: 27px 0 0;
  color: rgba(255, 250, 247, .72);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.about-grid {
  display: grid;
  gap: 46px;
}

.about-image {
  width: min(100%, 520px);
}

.about-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.about-content {
  align-self: center;
}

.about-content p {
  max-width: 560px;
  margin: 26px 0 0;
  color: var(--ink-soft);
}

.about-signature {
  margin-top: 25px;
  color: var(--rose-dark);
  font-family: var(--display);
  font-size: 1.95rem;
  font-style: italic;
}

.differentials {
  display: grid;
  gap: 13px;
  margin-top: 38px;
}

.differential {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.differential:last-child {
  border-bottom: 1px solid var(--line);
}

.differential-icon {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border: 1px solid var(--rose);
  border-radius: 50%;
  color: var(--rose-dark);
  font-size: .77rem;
  font-weight: 700;
}

.differential span {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
}

.birth-note {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--blush);
}

.birth-note-media {
  min-width: 0;
  height: 290px;
  overflow: hidden;
}

.birth-note img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 26%;
}

.birth-note figcaption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 28px 26px 32px;
}

.birth-note-kicker {
  color: var(--rose-dark);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.birth-note-kicker::before {
  display: inline-block;
  width: 24px;
  height: 1px;
  margin-right: 10px;
  background: currentColor;
  content: "";
  vertical-align: middle;
}

.birth-note figcaption strong {
  max-width: 650px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(2.5rem, 8vw, 4.8rem);
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: .95;
}

.birth-note figcaption em {
  color: var(--rose-dark);
  font-style: italic;
}

.locations {
  background: var(--sand);
}

.locations-heading {
  margin-bottom: 42px;
}

.location-grid {
  display: grid;
  gap: 20px;
}

.location-card {
  position: relative;
  min-height: 235px;
  overflow: hidden;
  padding: 28px 25px;
  background: var(--paper);
}

.location-card::before {
  position: absolute;
  top: -50px;
  right: -40px;
  width: 175px;
  height: 175px;
  border: 1px solid rgba(179, 117, 117, .24);
  border-radius: 50%;
  content: "";
}

.location-type {
  color: var(--rose-dark);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.location-card h3 {
  margin: 16px 0 7px;
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
}

.location-card p {
  max-width: 290px;
  margin: 0;
  color: var(--ink-soft);
  font-size: .86rem;
}

.location-note {
  display: inline-block;
  margin-top: 24px;
  color: var(--rose-dark);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.faq-grid {
  display: grid;
  gap: 40px;
}

.faq-intro {
  max-width: 390px;
}

.faq-intro .section-copy {
  font-size: .95rem;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.05;
  text-align: left;
}

.faq-question:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 5px;
}

.faq-plus {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border: 1px solid var(--rose);
  border-radius: 50%;
  color: var(--rose-dark);
}

.faq-plus::before,
.faq-plus::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
}

.faq-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform .25s ease;
}

.faq-item.is-open .faq-plus::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  margin: -3px 40px 20px 0;
  color: var(--ink-soft);
  font-size: .88rem;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 99px 0 108px;
  background: var(--blush);
  text-align: center;
}

.final-cta::before {
  position: absolute;
  top: -120px;
  left: 50%;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(179, 117, 117, .23);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.final-cta > .container-wide {
  position: relative;
  z-index: 1;
}

.final-cta .section-heading {
  max-width: 720px;
  margin-inline: auto;
}

.final-cta p {
  max-width: 480px;
  margin: 25px auto 0;
  color: var(--ink-soft);
}

.final-cta .contact-number,
.final-cta .contact-email {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: .82rem;
}

.final-cta .contact-email {
  margin-top: 6px;
  overflow-wrap: anywhere;
}

.contact-number a,
.contact-email a {
  color: var(--rose-dark);
  font-weight: 700;
  text-underline-offset: 3px;
}

.final-cta .btn-primary-rose {
  margin-top: 29px;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 22px;
  color: var(--rose-dark);
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
}

.instagram-link:hover {
  color: var(--ink);
}

.site-footer {
  padding: 30px 0 96px;
  background: var(--ink);
  color: rgba(255, 250, 247, .78);
}

.legal-main {
  min-height: 100vh;
  padding: 132px 0 80px;
}

.legal-copy {
  max-width: 820px;
}

.legal-copy h1 {
  margin: 16px 0 28px;
}

.legal-copy h2 {
  margin: 30px 0 10px;
  color: var(--rose-dark);
  font-family: var(--display);
  font-size: 1.8rem;
}

.legal-copy p,
.legal-copy li {
  color: var(--ink-soft);
}

.legal-back {
  display: inline-block;
  margin-top: 30px;
  color: var(--rose-dark);
  font-weight: 700;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.site-footer .brand-subtitle {
  color: rgba(255, 250, 247, .6);
}

.footer-meta {
  color: rgba(255, 250, 247, .62);
  font-size: .72rem;
}

.footer-meta p {
  margin: 3px 0;
}

.footer-meta a {
  color: rgba(255, 250, 247, .85);
  text-decoration-color: rgba(255, 250, 247, .4);
  text-underline-offset: 3px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 24px;
  font-size: .75rem;
}

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

.footer-links a:hover {
  color: var(--paper);
}

.footer-credit {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 250, 247, .16);
  color: rgba(255, 250, 247, .64);
  font-size: .74rem;
  text-align: center;
}

.footer-heart {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin: 0 2px;
  color: var(--rose-pale);
  vertical-align: -2px;
}

.footer-credit a {
  color: var(--paper);
  text-decoration-color: rgba(255, 250, 247, .5);
  text-underline-offset: 3px;
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
  color: var(--rose-pale);
}

.whatsapp-fab {
  position: fixed;
  right: 17px;
  bottom: 17px;
  z-index: 15;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 250, 247, .45);
  border-radius: 999px;
  background: var(--rose-dark);
  box-shadow: 0 8px 25px rgba(68, 35, 35, .2);
  color: var(--paper);
  font-size: .76rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform .25s ease, background-color .25s ease;
}

.whatsapp-fab:hover,
.whatsapp-fab:focus-visible {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-3px);
}

.whatsapp-fab svg {
  width: 17px;
  height: 17px;
}

.cookie-notice {
  position: fixed;
  bottom: 76px;
  left: 20px;
  z-index: 30;
  display: grid;
  gap: 10px;
  width: min(360px, calc(100% - 40px));
  padding: 21px 22px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  box-shadow: 0 18px 55px rgba(49, 29, 28, .19);
  color: var(--ink);
}

.cookie-notice[hidden] {
  display: none;
}

.cookie-notice h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1;
}

.cookie-notice p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .79rem;
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 3px;
}

.cookie-actions a {
  color: var(--rose-dark);
  font-size: .78rem;
  font-weight: 700;
  text-underline-offset: 3px;
}

.cookie-dismiss {
  padding: 8px 18px;
  border: 0;
  border-radius: 999px;
  background: var(--rose-dark);
  color: var(--paper);
  cursor: pointer;
  font-size: .78rem;
  font-weight: 700;
}

.cookie-dismiss:hover,
.cookie-dismiss:focus-visible {
  background: var(--ink);
}

.placeholder-notice {
  display: none;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .js-ready .reveal,
  .mobile-menu.is-open {
    animation: none;
    transition: none;
  }
}

@keyframes menuIn {
  from { opacity: 0; transform: translateY(-7px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 576px) {
  .cookie-notice {
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
  }

  .container-wide {
    width: min(1180px, calc(100% - 72px));
  }

  .hero {
    min-height: 820px;
  }

  .hero-visual {
    width: min(100%, 460px);
  }

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

@media (min-width: 768px) {
  .container-wide {
    width: min(1180px, calc(100% - 96px));
  }

  .site-nav,
  .header-cta {
    display: flex;
  }

  .nav-toggle,
  .mobile-menu {
    display: none !important;
  }

  .hero {
    min-height: 760px;
    padding-top: 164px;
  }

  .hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
    grid-template-areas: "copy visual";
    align-items: center;
    gap: 37px;
  }

  .hero-copy {
    display: block;
    grid-area: copy;
    max-width: 590px;
  }

  .hero-copy > .eyebrow,
  .hero-copy > h1,
  .hero-copy > .hero-intro,
  .hero-copy > .hero-actions,
  .hero-copy > .credential {
    grid-area: auto;
  }

  .hero-visual {
    width: min(100%, 405px);
    margin: -10px 0 0 auto;
  }

  .services-heading {
    grid-template-columns: .85fr 1fr;
    align-items: end;
    gap: 60px;
  }

  .service-item {
    grid-template-columns: 90px 1fr;
    padding: 28px 0 25px;
  }

  .service-number {
    font-size: 2.15rem;
  }

  .service-title {
    font-size: 2.15rem;
  }

  .about-grid {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
    gap: clamp(48px, 5vw, 75px);
    align-items: start;
  }

  .birth-note {
    grid-template-columns: 41% minmax(0, 1fr);
  }

  .birth-note-media {
    height: 380px;
  }

  .birth-note figcaption {
    padding: clamp(36px, 5vw, 72px);
  }

  .birth-note figcaption strong {
    font-size: clamp(3.1rem, 5vw, 5.2rem);
  }

  .location-card {
    min-height: 260px;
    padding: 33px 31px;
  }

  .faq-grid {
    grid-template-columns: .7fr 1.3fr;
    gap: 95px;
  }

  .footer-grid {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .brand-emblem {
    width: 38px;
  }

  .brand-wordmark {
    width: 165px;
  }

  .site-nav {
    gap: 16px;
  }

  .header-cta {
    padding-inline: 14px;
  }
}

@media (min-width: 992px) {
  .hero {
    min-height: 850px;
  }

  .hero-inner {
    grid-template-columns: 1.05fr .75fr;
    gap: 90px;
  }

  .hero h1 {
    font-size: clamp(5rem, 8.2vw, 7.3rem);
  }

  .hero-visual {
    width: min(100%, 440px);
    margin-top: 0;
  }

  .section {
    padding: 124px 0;
  }

  .quote-section {
    padding: 145px 0 155px;
  }

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

  .whatsapp-fab {
    right: 28px;
    bottom: 26px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}