@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin.woff2?v=6ac568fef27f") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-600-latin.woff2?v=6ac568fef27f") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --ink: #fff8f0;
  --ink-soft: #eadbd0;
  --cacao-950: #160806;
  --cacao-900: #24110f;
  --cacao-850: #2d1714;
  --cacao-800: #3a201b;
  --cacao-700: #543226;
  --copper: #cf946f;
  --copper-bright: #e5b18f;
  --cream: #fff8f0;
  --cream-muted: #f0e3d8;
  --line: rgba(255, 248, 240, 0.16);
  --shadow: 0 26px 80px rgba(10, 4, 3, 0.38);
  --radius-lg: 32px;
  --radius-md: 22px;
  --page-pad: clamp(18px, 4vw, 52px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  background: #0c1110;
}

body {
  margin: 0;
  min-width: 0;
  color: var(--ink);
  background: #0c1110;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-dialog-open {
  overflow: hidden;
}

.error-page {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 18%, rgba(207, 148, 111, 0.16), transparent 34rem),
    var(--cacao-950);
}

.error-shell {
  width: min(100%, 560px);
  padding: clamp(30px, 7vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--cacao-900);
  box-shadow: var(--shadow);
  text-align: center;
}

.error-shell img {
  width: 126px;
  height: auto;
  margin: 0 auto 24px;
}

.error-shell h1 {
  margin: 8px 0 14px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 8vw, 3.5rem);
  line-height: 0.98;
}

.error-shell > p:not(.eyebrow) {
  max-width: 40ch;
  margin: 0 auto 28px;
  color: var(--ink-soft);
}

.error-shell a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  color: var(--cacao-950);
  background: var(--cream);
  font-weight: 700;
  text-decoration: none;
}

.error-shell a:focus-visible {
  outline: 3px solid var(--copper-bright);
  outline-offset: 4px;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

img,
svg {
  display: block;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--cacao-950);
  background: var(--cream);
  border-radius: 999px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.page-shell {
  width: min(100%, 1120px);
  margin-inline: auto;
  overflow: hidden;
  background: var(--cacao-900);
  box-shadow: var(--shadow);
}

.topbar {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  display: flex;
  width: min(100%, 1120px);
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px var(--page-pad);
  border-bottom: 1px solid var(--line);
  transform: translateX(-50%);
}

.topbar__brand {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  gap: 0;
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  text-decoration: none;
  white-space: nowrap;
}

.topbar__city {
  max-width: 390px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  min-height: 360px;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 230px);
  align-items: center;
  gap: clamp(24px, 4vw, 46px);
  padding: 92px var(--page-pad) 34px;
  isolation: isolate;
  background: var(--cacao-900);
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(148deg, var(--cacao-800), var(--cacao-950));
  content: "";
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: -14%;
  bottom: -22%;
  width: 56%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 248, 240, 0.09);
  border-radius: 50%;
  content: "";
}

.hero__ornament {
  position: absolute;
  z-index: -1;
  top: 18%;
  left: -13%;
  width: 56%;
  aspect-ratio: 1;
  opacity: 0.45;
}

.hero__ornament span {
  position: absolute;
  inset: calc(var(--i, 0) * 42px);
  border: 1px solid rgba(207, 148, 111, 0.26);
  border-radius: 48% 52% 44% 56%;
  transform: rotate(calc(var(--i, 0) * 12deg));
}

.hero__ornament span:nth-child(1) { --i: 0; }
.hero__ornament span:nth-child(2) { --i: 1; }
.hero__ornament span:nth-child(3) { --i: 2; }

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
  color: var(--copper-bright);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
  content: "";
}

.hero h1,
.section-heading h2,
.contact h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  line-height: 0.99;
  text-wrap: balance;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(2.8rem, 4.5vw, 3.9rem);
  letter-spacing: -0.045em;
}

.hero__intro {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
}

.carousel-arrow svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero__mark {
  position: relative;
  display: grid;
  width: min(100%, 176px);
  aspect-ratio: 1;
  place-items: center;
  margin: 0 auto;
}

.hero__mark::before,
.hero__mark::after {
  position: absolute;
  width: 76%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 248, 240, 0.16);
  border-radius: 50%;
  content: "";
}

.hero__mark::after {
  width: 92%;
  border-color: rgba(207, 148, 111, 0.2);
}

.hero__halo {
  position: absolute;
  width: 68%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(207, 148, 111, 0.12);
  filter: blur(24px);
}

.hero__mark img {
  position: relative;
  z-index: 1;
  width: min(67%, 116px);
  max-height: 74%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 38px rgba(8, 3, 2, 0.42));
}

.experience,
.procedures {
  padding: clamp(42px, 5vw, 58px) 0 clamp(48px, 6vw, 66px);
}

.experience {
  background: var(--cacao-900);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  padding-inline: var(--page-pad);
}

.section-heading--stacked {
  display: block;
}

.section-heading h2,
.contact h2 {
  max-width: 780px;
  font-size: clamp(2.05rem, 4vw, 3.25rem);
  letter-spacing: -0.035em;
}

.carousel-controls {
  display: flex;
  gap: 9px;
  padding-bottom: 6px;
  pointer-events: none;
  visibility: hidden;
}

.carousel-section.is-carousel-ready .carousel-controls {
  pointer-events: auto;
  visibility: visible;
}

.carousel-arrow {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.carousel-arrow:hover {
  color: var(--cacao-950);
  background: var(--cream);
}

.carousel {
  position: relative;
  margin-top: 18px;
  outline: none;
}

.carousel::before {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 64px;
  left: 0;
  width: var(--page-pad);
  pointer-events: none;
  content: "";
}

.experience .carousel::before {
  background: var(--cacao-900);
}

.procedures .carousel::before {
  background: #dfcec0;
}

.carousel__track {
  --carousel-card-width: min(70vw, 380px);
  display: flex;
  gap: clamp(14px, 2.3vw, 24px);
  overflow-x: auto;
  padding: 0 max(var(--page-pad), calc(100% - var(--carousel-card-width))) 12px var(--page-pad);
  scroll-padding-inline: var(--page-pad);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
}

.carousel__track::-webkit-scrollbar {
  display: none;
}

.story-card {
  position: relative;
  display: flex;
  flex: 0 0 var(--carousel-card-width);
  flex-direction: column;
  min-height: min(440px, 60vh);
  overflow: hidden;
  border: 1px solid rgba(255, 248, 240, 0.12);
  border-radius: var(--radius-lg);
  background: var(--cacao-800);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  isolation: isolate;
}

.story-card img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2, .7, .2, 1);
}

.story-card__shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 8, 6, 0.97), rgba(20, 8, 6, 0.08) 69%);
}

.story-card__copy {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: clamp(22px, 4vw, 30px);
  overflow-wrap: anywhere;
}

.story-card__copy > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 11px;
  color: var(--copper-bright);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.story-card__copy > span::before {
  width: 20px;
  height: 1px;
  background: currentColor;
  content: "";
}

.story-card h3 {
  max-width: 340px;
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.9rem, 3.5vw, 2.65rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.story-card p {
  max-width: 330px;
  margin: 14px 0 0;
  color: var(--cream-muted);
  font-size: 0.96rem;
}

.story-card.is-current img {
  transform: scale(1.025);
}

[data-clone] a {
  pointer-events: none;
}

.carousel__meta {
  display: flex;
  min-height: 48px;
  align-items: center;
  padding: 12px var(--page-pad) 0;
}

.carousel__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.carousel__dots button {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  overflow: hidden;
  color: transparent;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.carousel__dots button::before {
  width: 8px;
  height: 8px;
  background: rgba(255, 248, 240, 0.28);
  border-radius: 999px;
  content: "";
  transition: width 220ms ease, background-color 220ms ease;
}

.carousel__dots button[aria-current="true"]::before {
  width: 30px;
  background: var(--copper-bright);
}

.procedures .eyebrow,
.contact .eyebrow {
  color: var(--cacao-700);
}

.procedures {
  color: var(--cacao-950);
  background: #dfcec0;
}

.procedures .carousel-arrow {
  color: var(--cacao-950);
  border-color: rgba(84, 50, 38, 0.28);
}

.procedures .carousel-arrow:hover {
  color: var(--cream);
  background: var(--cacao-800);
}

.procedures .carousel__dots button::before {
  background: rgba(84, 50, 38, 0.25);
}

.procedures .carousel__dots button[aria-current="true"]::before {
  background: var(--cacao-700);
}

.procedure-card {
  min-height: 440px;
  color: var(--ink);
  background: #1d100e;
}

.procedures .carousel__track {
  --carousel-card-width: min(76vw, 390px);
}

.procedure-card img {
  height: calc(100% - 136px);
  padding: 14px 14px 0;
  object-fit: contain;
  object-position: center center;
}

.procedure-card .story-card__shade {
  background: linear-gradient(to top, rgba(20, 8, 6, 1) 0 29%, rgba(20, 8, 6, 0.58) 43%, transparent 66%);
}

.procedure-card .story-card__copy {
  padding: 21px 24px 24px;
}

.procedure-card h3 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
}

.procedure-card p {
  margin-top: 8px;
  font-size: 0.82rem;
}

.card-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  margin-top: 12px;
  padding-block: 8px;
  color: var(--copper-bright);
  border-bottom: 1px solid rgba(229, 177, 143, 0.45);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

.card-cta svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.results-note {
  max-width: 740px;
  margin: 16px var(--page-pad) 0;
  color: #6d5145;
  font-size: 0.73rem;
}

.testimonials {
  padding: clamp(42px, 5vw, 58px) 0;
  background: var(--cacao-950);
}

.testimonials .section-heading {
  padding-inline: var(--page-pad);
}

.testimonials .carousel::before {
  background: var(--cacao-950);
}

.testimonial-list {
  --carousel-card-width: min(82vw, 435px);
  align-items: flex-start;
  overflow-y: hidden;
}

.testimonial-shot {
  position: relative;
  flex: 0 0 var(--carousel-card-width);
  margin: 0;
  padding: 10px;
  background: #eadfd7;
  border: 1px solid rgba(255, 248, 240, 0.13);
  border-radius: 22px;
  box-shadow: 0 24px 50px rgba(8, 3, 2, 0.22);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.testimonial-shot__crop {
  overflow: hidden;
  background: #f3eee8;
  border-radius: 18px;
}

.testimonial-shot--short .testimonial-shot__crop {
  aspect-ratio: 3.25;
}

.testimonial-shot--long .testimonial-shot__crop {
  aspect-ratio: 1.04;
}

.testimonial-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.contact {
  position: relative;
  padding: clamp(42px, 5vw, 58px) var(--page-pad);
  color: var(--cacao-950);
  background: var(--cream);
  isolation: isolate;
}

.contact::before {
  position: absolute;
  z-index: -1;
  top: -130px;
  right: -130px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(84, 50, 38, 0.16);
  border-radius: 50%;
  content: "";
}

.contact__intro {
  display: block;
}

.contact__intro .eyebrow,
.contact__intro h2 {
  grid-column: 1;
}

.contact__intro > p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  max-width: 340px;
  margin: 0 0 6px;
  color: #6f5145;
}

.contact__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.contact-card {
  display: grid;
  min-height: 92px;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  color: var(--cacao-950);
  border: 1px solid rgba(84, 50, 38, 0.19);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.contact-card:hover {
  border-color: var(--cacao-700);
  transform: translateY(-3px);
}

.contact-card--accent {
  color: var(--cream);
  background: var(--cacao-800);
  border-color: var(--cacao-800);
}

.contact-card svg {
  width: 33px;
  height: 33px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

svg.icon-whatsapp {
  display: block;
  overflow: visible;
  fill: currentColor;
  stroke: none;
}

.contact-card--accent > .icon-whatsapp {
  width: 36px;
  height: 36px;
  padding: 1px;
  color: #25d366;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.contact-card span {
  min-width: 0;
}

.contact-card small,
.contact-card strong {
  display: block;
}

.contact-card small {
  margin-bottom: 3px;
  color: inherit;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0.62;
  text-transform: uppercase;
}

.contact-card strong {
  overflow: hidden;
  font-size: 0.95rem;
  text-overflow: ellipsis;
}

.contact-card i {
  font-style: normal;
  font-size: 1.4rem;
}

.triage-dialog {
  width: min(calc(100% - 28px), 540px);
  max-width: none;
  max-height: min(88vh, 720px);
  max-height: min(88svh, 720px);
  margin: auto;
  padding: 0;
  overflow: visible;
  color: var(--cacao-950);
  color-scheme: light;
  background: transparent;
  border: 0;
}

.triage-dialog:not([open]) {
  display: none;
}

.triage-dialog::backdrop {
  background: rgba(17, 7, 6, 0.78);
  backdrop-filter: blur(7px);
}

.triage-dialog__surface {
  position: relative;
  max-height: min(88vh, 720px);
  max-height: min(88svh, 720px);
  padding: clamp(24px, 5vw, 34px);
  overflow-y: auto;
  background: var(--cream);
  border: 1px solid rgba(84, 50, 38, 0.18);
  border-radius: 28px;
  box-shadow: 0 34px 90px rgba(8, 3, 2, 0.52);
}

.triage-dialog__close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  color: var(--cacao-800);
  background: #f1e4db;
  border: 1px solid rgba(84, 50, 38, 0.13);
  border-radius: 50%;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.triage-dialog__close:hover {
  color: var(--cream);
  background: var(--cacao-800);
  transform: rotate(4deg);
}

.triage-dialog__close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.triage-dialog__intro {
  padding-right: 48px;
}

.triage-dialog .eyebrow {
  margin-bottom: 14px;
  color: var(--cacao-700);
}

.triage-dialog h2 {
  max-width: 410px;
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 7vw, 2.75rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.triage-dialog__intro > p:last-child {
  max-width: 410px;
  margin: 16px 0 0;
  color: #6f5145;
  font-size: 0.94rem;
}

.triage-options {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.triage-option {
  display: grid;
  min-height: 84px;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  padding: 14px 16px;
  color: var(--cacao-950);
  background: #fffdf9;
  border: 1px solid rgba(84, 50, 38, 0.17);
  border-radius: 18px;
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.triage-option:hover {
  border-color: rgba(84, 50, 38, 0.48);
  box-shadow: 0 14px 34px rgba(58, 32, 27, 0.1);
  transform: translateY(-2px);
}

.triage-option__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #25d366;
  background: rgba(37, 211, 102, 0.09);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(37, 211, 102, 0.22);
}

.triage-option__icon svg {
  width: 23px;
  height: 23px;
}

.triage-option__copy,
.triage-option__copy strong,
.triage-option__copy small {
  display: block;
  min-width: 0;
}

.triage-option__copy strong {
  font-size: 0.96rem;
  line-height: 1.2;
}

.triage-option__copy small {
  margin-top: 4px;
  color: #74564a;
  font-size: 0.73rem;
  line-height: 1.35;
}

.triage-option i {
  color: var(--cacao-700);
  font-size: 1.2rem;
  font-style: normal;
}

.triage-dialog[open] .triage-dialog__surface {
  animation: triage-dialog-in 220ms cubic-bezier(.2, .75, .2, 1) both;
}

@keyframes triage-dialog-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 12px;
  margin-top: 10px;
}

.hours-card,
.location-card {
  min-height: 270px;
  border-radius: var(--radius-md);
}

.hours-card {
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 3vw, 26px);
  background: #eeddd1;
  border: 1px solid rgba(84, 50, 38, 0.16);
}

.hours-card__heading {
  display: flex;
  align-items: center;
  gap: 13px;
}

.hours-card__heading > span {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--cream);
  background: var(--cacao-800);
  border-radius: 50%;
  font-size: 1.2rem;
}

.hours-card h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.3rem, 2.3vw, 1.72rem);
  font-weight: 600;
  line-height: 1.05;
}

.hours-card__rows {
  display: grid;
  margin-top: 18px;
  border-top: 1px solid rgba(84, 50, 38, 0.18);
}

.hours-card__rows p {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid rgba(84, 50, 38, 0.18);
  font-size: 0.78rem;
}

.hours-card__rows strong {
  font-weight: 700;
}

.hours-card__rows span,
.hours-card > small {
  color: #735449;
}

.hours-card > small {
  margin-top: auto;
  padding-top: 24px;
  font-size: 0.68rem;
}

.location-card {
  position: relative;
  display: block;
  overflow: hidden;
  color: var(--cream);
  background: var(--cacao-900);
  text-decoration: none;
  isolation: isolate;
}

.location-card > img,
.location-card__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.location-card > img {
  z-index: -2;
  object-fit: cover;
  object-position: center 56%;
  transition: transform 420ms ease;
}

.location-card:hover > img {
  transform: scale(1.025);
}

.location-card__shade {
  z-index: -1;
  background: linear-gradient(to top, rgba(28, 12, 9, 0.9), rgba(28, 12, 9, 0.04) 68%);
}

.location-card__pin {
  position: absolute;
  top: 20px;
  right: 20px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--cacao-950);
  background: var(--cream);
  border-radius: 50%;
}

.location-card__pin svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.location-card__copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 7px;
  padding: 22px;
}

.location-card__copy small {
  color: var(--copper-bright);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.location-card__copy strong {
  max-width: 620px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.04rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.12;
}

.location-card__copy em {
  margin-top: 7px;
  color: var(--cream);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
}

.footer {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 62px var(--page-pad);
  text-align: center;
  background: var(--cacao-950);
}

.footer img {
  width: 58px;
  height: 68px;
  object-fit: contain;
}

.footer p {
  margin: 17px 0 2px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.5rem;
}

.footer > span {
  color: var(--ink-soft);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer small {
  max-width: 600px;
  margin-top: 40px;
  color: rgba(255, 248, 240, 0.48);
  font-size: 0.67rem;
}

:focus-visible {
  outline: 3px solid var(--cream);
  outline-offset: 2px;
  box-shadow: 0 0 0 7px var(--cacao-800);
}

@media (min-width: 821px) {
  .hero h1 {
    font-size: clamp(2.75rem, 4vw, 3.75rem);
  }

  .section-heading h2,
  .contact h2 {
    font-size: clamp(2rem, 3.2vw, 3rem);
  }

  .story-card h3 {
    font-size: clamp(1.85rem, 3vw, 2.5rem);
  }
}

@media (max-width: 820px) {
  .topbar {
    min-height: 64px;
    padding-block: 11px;
  }

  .topbar__city {
    max-width: 200px;
    font-size: 0.62rem;
  }

  .hero {
    min-height: 0;
    grid-template-columns: minmax(106px, 0.34fr) minmax(0, 1fr);
    gap: 22px;
    padding-top: 82px;
    padding-bottom: 24px;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 6.8vw, 3rem);
  }

  .hero__mark {
    order: -1;
    width: min(100%, 140px);
    aspect-ratio: 1;
    margin-bottom: 0;
  }

  .hero__mark img {
    width: 66%;
  }

  .hero__ornament {
    top: 5%;
    left: -45%;
    width: 100%;
  }

  .hero .eyebrow {
    display: none;
  }

  .section-heading {
    align-items: center;
  }

  .section-heading h2,
  .contact h2 {
    font-size: clamp(2rem, 6.8vw, 2.75rem);
  }

  .testimonial-list[data-testimonial-enhanced="true"][data-testimonial-resize="shrink"] {
    transition: height 220ms cubic-bezier(.2, .7, .2, 1);
  }

  .testimonial-list::-webkit-scrollbar {
    display: none;
  }

  .testimonial-list {
    --carousel-card-width: min(74vw, 390px);
  }

  .contact__intro {
    display: block;
  }

  .contact__intro > p:last-child {
    margin-top: 20px;
  }

  .contact__actions,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    min-height: 78px;
  }
}

@media (min-width: 561px) and (max-width: 820px) {
  .contact__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-card {
    min-height: 88px;
  }
}

@media (min-width: 621px) and (max-width: 820px) {
  .visit-grid {
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  }
}

@media (max-width: 560px) {
  :root {
    --page-pad: 18px;
    --radius-lg: 24px;
  }

  .topbar__city {
    max-width: 230px;
  }

  .hero {
    align-content: center;
    grid-template-columns: 94px minmax(0, 1fr);
    gap: 16px;
    padding-top: 76px;
    padding-bottom: 22px;
  }

  .hero__content {
    text-align: left;
  }

  .hero__mark {
    width: 94px;
  }

  .hero__mark::before {
    width: 96%;
    background: #fffaf6;
    border-color: rgba(207, 148, 111, 0.42);
    box-shadow: 0 24px 58px rgba(8, 3, 2, 0.32);
  }

  .hero__mark::after {
    width: 106%;
  }

  .hero__mark img {
    width: 66%;
  }

  .hero__intro {
    margin-block: 16px 0;
  }

  .section-heading {
    align-items: flex-end;
  }

  .carousel-controls .carousel-arrow {
    display: none;
  }

  .carousel__track {
    --carousel-card-width: 82vw;
  }

  .story-card {
    min-height: min(400px, 58svh);
  }

  .story-card__copy {
    padding: 26px;
  }

  .procedure-card {
    min-height: 440px;
  }

  .testimonial-list {
    margin-top: 20px;
  }

  .testimonial-shot {
    flex-basis: var(--carousel-card-width);
  }

  .contact {
    padding-block: 32px 36px;
  }

  .contact__actions {
    gap: 9px;
    margin-top: 18px;
  }

  .contact-card {
    min-height: 76px;
    grid-template-columns: 36px minmax(0, 1fr) auto;
    gap: 11px;
    padding: 13px 16px;
  }

  .contact-card svg {
    width: 29px;
    height: 29px;
  }

  .contact-card--accent > .icon-whatsapp {
    width: 32px;
    height: 32px;
    padding: 1px;
  }

  .triage-dialog {
    width: calc(100% - 20px);
    max-height: 92vh;
    max-height: 92svh;
  }

  .triage-dialog__surface {
    max-height: 92vh;
    max-height: 92svh;
    padding: 24px 16px 18px;
    border-radius: 24px;
  }

  .triage-dialog__close {
    position: sticky;
    top: 10px;
    right: auto;
    margin-bottom: -44px;
    margin-left: auto;
  }

  .triage-dialog__intro {
    padding-right: 44px;
  }

  .triage-dialog h2 {
    font-size: clamp(1.85rem, 9vw, 2.35rem);
  }

  .triage-dialog__intro > p:last-child {
    margin-top: 13px;
    font-size: 0.88rem;
  }

  .triage-options {
    gap: 8px;
    margin-top: 20px;
  }

  .triage-option {
    min-height: 80px;
    grid-template-columns: 40px minmax(0, 1fr) auto;
    gap: 11px;
    padding: 12px;
  }

  .triage-option__icon {
    width: 40px;
    height: 40px;
  }

  .visit-grid {
    gap: 9px;
    margin-top: 9px;
  }

  .hours-card {
    min-height: 156px;
    padding: 18px;
  }

  .location-card {
    min-height: 228px;
  }

  .hours-card__rows {
    margin-top: 12px;
  }

  .hours-card__rows p {
    padding: 8px 0;
  }

  .location-card__copy {
    gap: 4px;
    padding: 18px;
  }
}

@media (max-width: 380px) {
  .location-card {
    min-height: 232px;
  }

  .location-card__pin {
    display: none;
  }
}

@media (max-width: 360px) {
  .topbar__city {
    display: none;
  }

  .hero {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 12px;
    padding-top: 72px;
    padding-bottom: 20px;
  }

  .hero__mark {
    width: 82px;
    margin-bottom: 0;
  }

  .hero h1 {
    font-size: clamp(1.82rem, 8.8vw, 2.18rem);
  }

  .hero__intro {
    margin-block: 16px 22px;
    font-size: 0.9rem;
  }

  .story-card h3 {
    font-size: clamp(1.82rem, 9.8vw, 2.3rem);
  }

  .story-card p {
    font-size: 0.88rem;
  }

}

@media (max-width: 300px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 74px;
    text-align: center;
  }

  .hero__content {
    text-align: center;
  }

  .hero__mark {
    width: 74px;
    margin-inline: auto;
  }

  .hero h1 {
    max-width: 205px;
    margin-inline: auto;
    font-size: clamp(1.85rem, 13vw, 2.05rem);
  }

  .contact-card {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 8px;
    padding-inline: 12px;
  }

  .contact-card i {
    display: none;
  }

  .contact-card small {
    font-size: 0.58rem;
    letter-spacing: 0.07em;
  }

  .contact-card strong {
    font-size: 0.86rem;
  }

  .contact-card--accent > .icon-whatsapp {
    width: 30px;
    height: 30px;
  }

  .section-heading h2,
  .contact h2 {
    font-size: clamp(1.75rem, 11.5vw, 2rem);
    overflow-wrap: anywhere;
  }

  .carousel__meta {
    min-height: 0;
    justify-content: center;
    padding-top: 8px;
  }

  .carousel__dots {
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2px;
  }
}

@media (max-width: 560px) and (max-height: 760px) {
  .hero {
    gap: 12px;
    padding-top: 70px;
    padding-bottom: 18px;
  }

  .hero__mark {
    width: 82px;
    margin-bottom: 0;
  }

  .hero h1 {
    font-size: clamp(1.78rem, 8.5vw, 2.1rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  body {
    color: #111;
    background: #fff;
  }

  .topbar,
  .carousel-controls,
  .carousel__dots {
    display: none;
  }
}
