@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url("assets/fonts/source-sans-3-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Source Serif 4";
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url("assets/fonts/source-serif-4-latin.woff2") format("woff2");
}
:root {
  --ivory: #f7f5f0;
  --navy: #142d3c;
  --teal: #245a60;
  --teal-hover: #19464b;
  --sand: #d8c9ac;
  --text: #45545b;
  --line: #d8dcd6;
  --serif: "Source Serif 4", Georgia, serif;
  --sans: "Source Sans 3", sans-serif;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --header-height: 100px;
  --gutter: clamp(24px, 5.6vw, 88px);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-padding-top: calc(var(--header-height) + 24px);
  scrollbar-color: #91a09d var(--ivory);
}
body {
  margin: 0;
  background: var(--ivory);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
::selection {
  background: var(--sand);
  color: var(--navy);
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
  text-underline-offset: 5px;
}
img {
  display: block;
  max-width: 100%;
}
svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  text-wrap: balance;
}
h1 {
  font-size: clamp(44px, 4.6vw, 70px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}
h2 {
  font-size: clamp(34px, 3.25vw, 48px);
  line-height: 1.18;
  letter-spacing: -0.025em;
}
h3 {
  font-size: 26px;
  line-height: 1.3;
  letter-spacing: -0.015em;
}
p {
  color: var(--text);
}
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 5px;
}
[tabindex="-1"]:focus {
  outline: none;
}
[hidden] {
  display: none !important;
}
.container {
  width: min(100% - var(--gutter) * 2, 1280px);
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 20;
  background: var(--navy);
  color: var(--ivory);
  padding: 12px 20px;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: translateY(0);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--ivory);
  border-bottom: 1px solid rgba(20, 45, 60, 0.09);
}
.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  flex-shrink: 0;
  display: inline-flex;
  flex-direction: column;
  line-height: 1.3;
}
.brand-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.04em;
}
.brand-dot {
  color: var(--teal);
}
.brand-description {
  font-size: 13px;
  letter-spacing: 0.055em;
  margin-top: 3px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 15px;
}
.main-nav > a:not(.button) {
  padding-block: 14px;
  position: relative;
}
.main-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  bottom: 9px;
  left: 0;
  right: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms var(--ease-out);
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  min-height: 56px;
  padding: 15px 24px;
  background: var(--teal);
  color: #fff;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 600;
  transition:
    background-color 180ms ease,
    transform 140ms var(--ease-out);
}
.button:active,
.menu-toggle:active {
  transform: scale(0.97);
}
.button-small {
  min-height: 46px;
  font-size: 15px;
  padding: 12px 18px;
  gap: 18px;
}
.hero {
  position: relative;
  isolation: isolate;
  min-height: 620px;
  height: min(49vw, 760px);
  background: var(--ivory);
}
.hero-picture {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}
@media (min-width: 1600px) {
  .hero-picture img {
    object-position: center 20%;
  }
}
.hero-inner {
  height: 100%;
  min-height: inherit;
  display: flex;
  align-items: center;
  padding-block: 60px;
}
.hero-copy {
  width: 51%;
  max-width: 640px;
}
.hero-credential {
  display: inline-flex;
  align-items: center;
  margin-bottom: 22px;
  padding: 8px 16px;
  border: 1px solid rgba(36, 90, 96, 0.24);
  border-radius: 999px;
  background: rgba(247, 245, 240, 0.55);
  color: var(--teal);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.035em;
}
.hero h1 {
  text-wrap: initial;
  font-size: clamp(44px, 4.35vw, 66px);
}
.hero-description {
  font-size: 20px;
  line-height: 1.55;
  max-width: 38ch;
  margin: 26px 0 30px;
  color: #34464d;
}
.hero-note {
  margin-top: 40px;
  font-family: var(--serif);
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-note span {
  width: 30px;
  height: 1px;
  background: var(--teal);
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  align-items: center;
  gap: 12px;
  min-width: 44px;
  min-height: 44px;
  padding: 8px 0 8px 12px;
  color: var(--navy);
  font-size: 15px;
  transition: transform 140ms var(--ease-out);
}
.menu-lines {
  display: block;
  width: 22px;
  height: 14px;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  position: relative;
}
.menu-lines::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  right: 0;
  border-top: 1px solid currentColor;
}
@media (hover: hover) and (pointer: fine) {
  .button:hover {
    background: var(--teal-hover);
  }
  .main-nav > a:not(.button):hover::after {
    transform: scaleX(1);
  }
}
@media (min-width: 768px) and (max-width: 1100px) {
  :root {
    --header-height: 88px;
    --gutter: 40px;
  }
  .main-nav {
    gap: 20px;
  }
  .main-nav > a[href="#atendimento"] {
    display: none;
  }
  .hero {
    min-height: 560px;
  }
  .hero-copy {
    width: 51%;
  }
  .hero-description {
    font-size: 18px;
  }
  .brand-name {
    font-size: 23px;
  }
}
@media (max-width: 767px) {
  :root {
    --header-height: 80px;
    --gutter: 24px;
  }
  .header-inner {
    gap: 16px;
    flex-wrap: wrap;
  }
  .brand-name {
    font-size: 23px;
  }
  .brand-description {
    font-size: 12px;
  }
  .main-nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px 22px;
    padding-bottom: 20px;
  }
  .main-nav .button {
    width: 100%;
  }
  .js .menu-toggle {
    display: inline-flex;
  }
  .js .header-inner {
    flex-wrap: nowrap;
  }
  .js .main-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 20px var(--gutter) 28px;
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
    gap: 6px;
  }
  .js .main-nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .js .main-nav > a:not(.button) {
    padding: 12px 0;
  }
  .js .main-nav .button {
    margin-top: 12px;
  }
  .hero {
    height: auto;
    min-height: 0;
    padding-top: 108vw;
  }
  .hero-picture {
    inset: 0 0 auto;
    height: 177.68vw;
  }
  .hero-picture::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 25%;
    background: linear-gradient(
      to bottom,
      rgba(247, 245, 240, 0),
      var(--ivory) 90%
    );
  }
  .hero-picture img {
    object-fit: cover;
    object-position: top center;
  }
  .hero-inner {
    display: block;
    padding-block: 0 48px;
    min-height: 0;
  }
  .hero-copy {
    width: 100%;
    max-width: 560px;
    margin-inline: auto;
  }
  .hero-credential {
    display: flex;
    width: fit-content;
    margin-inline: auto;
  }
  h1,
  .hero h1 {
    font-size: clamp(37px, 8.85vw, 59px);
    line-height: 1.1;
    letter-spacing: -0.035em;
  }
  .hero-description {
    font-size: 18px;
    max-width: 38ch;
    margin: 20px 0 24px;
  }
  .hero .button {
    width: 100%;
    justify-content: space-between;
  }
  .hero-note {
    margin-top: 24px;
    font-size: 15px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .button:active,
  .menu-toggle:active {
    transform: none;
  }
}
html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-stopped {
  overflow: clip;
}
.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

/* Content follows the same editorial system as the approved opening. */
.section-space {
  padding-block: 104px;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 52px;
}
.section-heading > p {
  max-width: 39ch;
  font-size: 18px;
  line-height: 1.6;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 80px;
  row-gap: 42px;
}
.service-item {
  border-top: 1px solid #bcc6c4;
  padding-top: 28px;
}
.service-item h3 {
  margin-bottom: 14px;
  font-size: 29px;
}
.service-item p {
  max-width: 48ch;
  min-height: 87px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-block: 10px;
  color: var(--teal);
  font-size: 16px;
  font-weight: 600;
  background: none;
  border: 0;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color 180ms ease;
}
.text-link svg {
  width: 20px;
  height: 20px;
  transition: transform 180ms var(--ease-out);
}
.service-item .text-link {
  margin-top: 16px;
}
.about {
  background: #ebe8df;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
}
.about-portrait {
  margin: 0;
  position: relative;
}
.portrait-frame {
  overflow: hidden;
}
.about-portrait img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: 88% center;
}
.about-portrait img[src*="sobre-selfie"] {
  object-position: center 35%;
}
.about-copy h2 {
  margin-bottom: 30px;
}
.about-copy > p {
  margin-top: 20px;
  max-width: 48ch;
}
.about-principle {
  margin: 30px 0 18px;
}
.fine-rule {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--teal);
  margin-bottom: 18px;
}
.about-principle p {
  font-family: var(--serif);
  font-size: 23px;
  color: var(--navy);
  line-height: 1.5;
}
.process-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
}
.process-list li {
  position: relative;
  border-top: 1px solid #bcc6c4;
  padding-top: 24px;
}
.step-number {
  display: block;
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1.1;
  color: var(--teal);
  font-variant-numeric: tabular-nums;
  margin-bottom: 27px;
}
.process-list h3 {
  font-size: 25px;
  margin-bottom: 14px;
}
.process-list p {
  max-width: 34ch;
}
.faq {
  padding-top: 80px;
  border-top: 1px solid var(--line);
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
}
.faq-intro p {
  margin-top: 24px;
  max-width: 32ch;
}
.faq-intro .text-link {
  margin-top: 20px;
}
.faq-list {
  border-top: 1px solid #bcc6c4;
}
.faq-list details {
  border-bottom: 1px solid #bcc6c4;
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 19px;
  line-height: 1.4;
  font-weight: 600;
  touch-action: manipulation;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary svg {
  width: 20px;
  height: 20px;
  transition: transform 180ms var(--ease-out);
}
.faq-list details[open] summary svg {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 40px 25px 0;
}
.faq-answer p {
  font-size: 17px;
  line-height: 1.65;
}
.contact {
  background: var(--navy);
  color: var(--ivory);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 9vw, 128px);
}
.contact h2 {
  font-size: clamp(40px, 3.8vw, 56px);
  line-height: 1.15;
}
.contact-copy > p {
  color: #d1dcd9;
  max-width: 36ch;
  margin-top: 26px;
  font-size: 20px;
}
.contact-note {
  margin-top: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  max-width: 40ch;
}
.contact-note svg {
  margin-top: 5px;
  color: var(--sand);
}
.contact-note p {
  font-size: 16px;
  color: #c3d0cf;
}
.contact-copy .demo-note {
  border-top: 1px solid #3a515e;
  padding-top: 20px;
  margin-top: 24px;
  max-width: 44ch;
  font-size: 14px;
  line-height: 1.7;
  color: #c3d0cf;
}
.field {
  margin-bottom: 23px;
}
.field label {
  display: block;
  margin-bottom: 9px;
  font-weight: 600;
  font-size: 16px;
}
.field label span {
  font-weight: 400;
  color: #c3d0cf;
}
.field input,
.field select,
.field textarea {
  display: block;
  width: 100%;
  min-height: 54px;
  padding: 13px 16px;
  border: 1px solid #697e85;
  border-radius: 2px;
  background: #1d3847;
  color: var(--ivory);
  font-size: 17px;
  line-height: 1.5;
  caret-color: var(--sand);
}
.field input::placeholder,
.field textarea::placeholder {
  color: #b8c8ca;
  opacity: 1;
}
.field textarea {
  resize: vertical;
  min-height: 118px;
  max-height: 300px;
}
.select-wrap {
  position: relative;
}
.select-wrap select {
  appearance: none;
  padding-right: 44px;
}
.select-wrap > svg {
  pointer-events: none;
  position: absolute;
  right: 15px;
  top: 17px;
  width: 20px;
  height: 20px;
  color: #c3d0cf;
}
.field select option {
  background: var(--navy);
  color: var(--ivory);
}
.contact :focus-visible {
  outline-color: var(--sand);
}
.button-light {
  background: var(--sand);
  color: var(--navy);
}
.contact-form > .button {
  width: 100%;
  justify-content: space-between;
}
.button:disabled {
  cursor: not-allowed;
  opacity: 0.65;
  transform: none;
}
.form-help {
  font-size: 13px;
  color: #c3d0cf;
  margin-top: 14px;
}
.form-help a {
  text-decoration: underline;
  white-space: nowrap;
}
.message-result {
  margin-top: 26px;
  border-top: 1px solid #697e85;
  padding-top: 24px;
}
.message-result h3 {
  font-size: 25px;
  margin-bottom: 14px;
}
#message-preview {
  color: var(--ivory);
  font-size: 17px;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.result-note,
.form-feedback {
  margin-top: 16px;
  color: #c3d0cf;
  font-size: 15px;
}
.message-result .text-link {
  color: var(--sand);
  margin-top: 12px;
}
.message-result .button {
  margin-top: 20px;
}
.site-footer {
  padding-top: 56px;
}
.site-footer.family-footer { padding-top: 0; }
.footer-scene { position: relative; height: clamp(260px, 25vw, 380px); isolation: isolate; overflow: hidden; }
.footer-picture { position: absolute; inset: 0; z-index: -2; }
.footer-picture img { width: 100%; height: 100%; object-fit: cover; object-position: center 56%; }
.footer-scene::after { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(9, 29, 33, .35); }
.footer-invitation { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px; padding: 24px; text-align: center; color: var(--ivory); }
.footer-invitation h2 { font-size: clamp(30px, 2.6vw, 40px); line-height: 1.15; }
.footer-socials { display: flex; gap: 14px; }
.footer-socials a { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; padding: 9px; background: transparent; border-radius: 4px; transition: opacity 180ms ease; }
.footer-socials img { width: 28px; height: 28px; object-fit: contain; }
.footer-socials [data-social="whatsapp"] img { width: 30px; height: 30px; }
.footer-socials a:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.family-footer .footer-main { display: grid; grid-template-columns: 1.2fr 1fr .8fr; align-items: start; padding-block: 30px; gap: 28px; }
.footer-oab { font-size: 13px; margin-top: 10px; }
.footer-address { font-style: normal; font-size: 15px; line-height: 1.65; }
.footer-address > span, .footer-phone > span { display: block; color: var(--text); font-size: 12px; margin-bottom: 6px; }
.footer-phone p { color: var(--navy); font-size: 15px; }
.footer-phone > a { display: inline-block; color: var(--teal); text-decoration: underline; font-size: 13px; padding-block: 6px; }
@media (hover: hover) { .footer-socials a:hover { opacity: .75; } }
@media (max-width: 767px) {
  .family-footer { padding-top: 0; }
  .footer-scene { height: 350px; }
  .footer-picture img { object-position: center top; }
  .footer-invitation { justify-content: center; padding: 26px 16px; gap: 16px; }
  .footer-invitation h2 { font-size: 29px; }
  .family-footer .footer-main { grid-template-columns: 1fr 1fr; gap: 20px 16px; padding-block: 24px; }
  .footer-identity { grid-column: 1 / -1; }
  .footer-address { font-size: 13px; }
  .footer-phone p { font-size: 13px; }
}
.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 40px;
}
.footer-main > p {
  font-family: var(--serif);
  font-size: 19px;
}
.back-top {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding-block: 12px;
  font-size: 15px;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-block: 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  color: var(--text);
}
.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;
}
.privacy-page {
  max-width: 760px;
  padding-block: 80px 100px;
}
.privacy-page h1 {
  font-size: clamp(38px, 5vw, 58px);
  margin: 26px 0;
}
.privacy-page h2 {
  font-size: 28px;
  margin: 36px 0 14px;
}
.privacy-page p {
  margin-bottom: 18px;
}
.privacy-page a {
  text-decoration: underline;
}
.privacy-page ul {
  padding-left: 24px;
  color: var(--text);
}
@media (hover: hover) and (pointer: fine) {
  .text-link:hover {
    text-decoration-color: currentColor;
  }
  .text-link:hover svg {
    transform: translateX(3px);
  }
  .button-light:hover {
    background: #e7dac1;
  }
  .back-top:hover {
    text-decoration: underline;
  }
  .faq-list summary:hover {
    color: var(--teal);
  }
}
@media (min-width: 768px) and (max-width: 1100px) {
  .service-grid {
    column-gap: 40px;
  }
  .about-grid,
  .faq-grid {
    gap: 40px;
  }
  .about-portrait img {
    height: 480px;
  }
  .process-list {
    gap: 24px;
  }
  .process-list h3 {
    font-size: 22px;
  }
  .contact-grid {
    gap: 48px;
  }
  .footer-main > p {
    display: none;
  }
}
@media (max-width: 767px) {
  .section-space {
    padding-block: 60px;
  }
  .section-heading {
    display: block;
    margin-bottom: 34px;
  }
  .section-heading > p {
    margin-top: 20px;
  }
  .desktop-break {
    display: none;
  }
  .service-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .service-item {
    padding-top: 24px;
  }
  .service-item h3 {
    font-size: 27px;
  }
  .service-item p {
    min-height: 0;
  }
  .service-item .text-link {
    margin-top: 12px;
  }
  .about-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .about-portrait img {
    height: auto;
    aspect-ratio: 4/4.5;
    object-position: 88% center;
  }
  .about-grid {
    gap: 24px;
  }
  .about-copy h2 {
    margin-bottom: 24px;
  }
  .about-copy > p {
    margin-top: 18px;
  }
  .about-principle p {
    font-size: 22px;
  }
  .process-list {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .process-list li {
    padding-top: 22px;
    padding-left: 52px;
  }
  .step-number {
    position: absolute;
    left: 0;
    top: 24px;
    font-size: 25px;
  }
  .process-list h3 {
    font-size: 25px;
  }
  .process-list p {
    max-width: none;
  }
  .faq-grid {
    gap: 28px;
  }
  .faq-intro p {
    max-width: 38ch;
  }
  .faq-intro .text-link {
    margin-top: 12px;
  }
  .faq-list summary {
    padding-block: 21px;
    font-size: 18px;
  }
  .faq-answer {
    padding-right: 20px;
  }
  .contact h2 {
    font-size: 40px;
  }
  .contact-copy > p {
    font-size: 18px;
    max-width: 40ch;
  }
  .contact-note {
    margin-top: 26px;
  }
  .contact-copy .demo-note {
    margin-top: 26px;
    padding-top: 20px;
  }
  .contact-grid {
    gap: 34px;
  }
  .site-footer {
    padding-top: 36px;
  }
  .footer-main {
    flex-wrap: wrap;
    gap: 24px;
    padding-bottom: 28px;
  }
  .footer-main > p {
    order: 3;
    width: 100%;
    font-size: 18px;
  }
  .back-top {
    font-size: 0;
    gap: 0;
    min-width: 44px;
    justify-content: center;
  }
  .back-top svg {
    width: 22px;
    height: 22px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 6px 16px;
  }
  .footer-bottom > p:first-child {
    width: 100%;
  }
  .footer-bottom > a {
    margin-left: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  .text-link:hover svg {
    transform: none;
  }
}

/* Illustrative reviews and a real map of an explicitly illustrative region. */
.reviews {
  background: var(--ivory);
}
.reviews .section-heading {
  align-items: center;
  margin-bottom: 40px;
}
.example-label {
  font-size: 14px;
  margin-top: 14px;
  color: var(--text);
}
.review-controls {
  display: flex;
  gap: 10px;
}
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid #a8b7b5;
  border-radius: 50%;
  background: transparent;
  color: var(--teal);
  transition:
    background-color 180ms ease,
    transform 140ms var(--ease-out);
}
.icon-button:active {
  transform: scale(0.97);
}
.icon-button:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
}
.reviews-layout {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}
.review-overview {
  text-align: center;
}
.rating-number {
  font-family: var(--serif);
  font-size: 54px;
  line-height: 1.1;
}
.review-stars {
  margin: 12px auto 8px;
  width: 120px;
}
.review-stars svg {
  width: 120px;
  height: 24px;
  fill: #d79813;
  stroke: none;
}
.review-overview p {
  font-size: 14px;
}
.google-wordmark {
  display: block;
  width: 94px;
  height: auto;
  margin: 16px auto 0;
}
.review-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: #bcc6c4 transparent;
  padding: 6px 1px 20px;
  overscroll-behavior-x: contain;
}
.review-card {
  flex: 0 0 calc((100% - 36px) / 3);
  min-width: 0;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid #e4e6e0;
  border-radius: 12px;
  padding: 24px 22px;
  min-height: 245px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 17px;
  font-weight: 600;
}
.avatar-rose {
  background: #eee0e4;
  color: #843c58;
}
.avatar-olive {
  background: #e7e8d9;
  color: #606926;
}
.avatar-teal {
  background: #dbe9e3;
  color: #306d57;
}
.avatar-blue {
  background: #dee8ee;
  color: #335d7d;
}
.review-author h3 {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
}
.review-author p {
  font-size: 11px;
  color: var(--text);
  line-height: 1.5;
  white-space: nowrap;
}
.google-g {
  margin-left: auto;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  object-fit: contain;
}
.card-stars {
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 1.3;
  color: #b67a00;
  margin: 20px 0 10px;
}
.review-card > p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--navy);
}
.location {
  border-top: 1px solid var(--line);
  padding-top: 80px;
}
.location-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.location-address {
  display: flex;
  gap: 13px;
  margin-top: 26px;
  align-items: flex-start;
}
.location-address > svg {
  margin-top: 4px;
  color: var(--teal);
}
.location-address small {
  display: block;
  font-size: 13px;
  margin-top: 2px;
}
.location-faq {
  margin-top: 34px;
}
.location-faq > h3 {
  font-size: 24px;
  margin-bottom: 18px;
}
.location-faq summary {
  font-size: 17px;
  padding-block: 18px;
}
.location-faq .faq-answer p {
  font-size: 16px;
}
.location-map iframe {
  display: block;
  border: 0;
  width: 100%;
  height: 510px;
  background: #e4e6dc;
  border-radius: 2px;
}
.location-map > p {
  font-size: 13px;
  margin-top: 12px;
}
@media (hover: hover) and (pointer: fine) {
  .icon-button:not(:disabled):hover {
    background: #e8eeea;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .reviews-layout {
    grid-template-columns: 155px minmax(0, 1fr);
    gap: 28px;
  }
  .review-card {
    flex-basis: calc((100% - 18px) / 2);
  }
  .location-grid {
    gap: 40px;
  }
  .location-map iframe {
    height: 530px;
  }
}
@media (max-width: 767px) {
  .reviews .section-heading {
    display: flex;
    align-items: flex-end;
    gap: 18px;
    margin-bottom: 26px;
  }
  .reviews .section-heading h2 {
    font-size: 32px;
  }
  .review-controls {
    gap: 6px;
  }
  .icon-button {
    width: 40px;
    height: 40px;
  }
  .example-label {
    font-size: 13px;
    margin-top: 12px;
  }
  .reviews-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .review-overview {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    text-align: left;
    column-gap: 14px;
  }
  .rating-number {
    font-size: 42px;
    grid-row: 1/3;
  }
  .review-stars {
    margin: 0;
    width: 110px;
  }
  .review-stars svg {
    width: 110px;
  }
  .review-overview p {
    grid-column: 2;
    grid-row: 2;
    font-size: 12px;
  }
  .google-wordmark {
    grid-column: 3;
    grid-row: 1/3;
    margin: 0;
    width: 78px;
  }
  .review-card {
    flex-basis: 88%;
    min-height: 220px;
    padding: 24px;
  }
  .review-track {
    gap: 14px;
    padding-bottom: 16px;
  }
  .review-author h3 {
    font-size: 16px;
  }
  .review-author p {
    font-size: 12px;
  }
  .review-card > p {
    font-size: 17px;
  }
  .location-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .location-map {
    grid-row: 2;
  }
  .location-map iframe {
    height: 330px;
  }
  .location-faq {
    margin-top: 28px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .icon-button:active {
    transform: none;
  }
}

.card-stars svg {
  width: 110px;
  height: 22px;
  fill: currentColor;
  stroke: none;
}
@media (max-width: 400px) {
  .reviews .section-heading {
    display: block;
  }
  .review-controls {
    margin-top: 18px;
    justify-content: flex-end;
  }
}
