:root {
  /* Light “artisan cafe” theme (distinct from dentist site) */
  --bg: #fbf6ee;
  --ink: #1f140e;
  --ink2: rgba(31, 20, 14, 0.72);
  --line: rgba(31, 20, 14, 0.12);
  --paper: #ffffff;
  --paper2: #fffaf3;

  --espresso: #2b1a12;
  --caramel: #c57b3b;
  --latte: #f1dfc9;
  --mint: #1aa980;

  --shadow: 0 18px 50px rgba(43, 26, 18, 0.12);
  --shadowSoft: 0 10px 26px rgba(43, 26, 18, 0.08);
  --radius: 14px;
  --radius2: 18px;
  --container: 1120px;
  --ring: 0 0 0 4px rgba(197, 123, 59, 0.22);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue";
  color: var(--ink);
  background: radial-gradient(1200px 900px at 18% -10%, rgba(197, 123, 59, 0.14), transparent 55%),
    radial-gradient(900px 700px at 112% 15%, rgba(26, 169, 128, 0.12), transparent 55%), var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.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;
}

.skip-link {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  transform: translateY(-140%);
  transition: transform 160ms ease;
  z-index: 9999;
  box-shadow: var(--shadowSoft);
}

.skip-link:focus {
  outline: none;
  box-shadow: var(--ring);
  transform: translateY(0);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.muted {
  color: var(--ink2);
}

.kicker {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(31, 20, 14, 0.62);
  margin: 0 0 8px;
  font-size: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  margin: 0 0 14px;
  box-shadow: var(--shadowSoft);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: radial-gradient(circle at 30% 30%, var(--caramel), rgba(197, 123, 59, 0.15));
  box-shadow: 0 0 0 4px rgba(197, 123, 59, 0.12);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 14px 0;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.topbar[data-elevate="true"] {
  background: rgba(251, 246, 238, 0.82);
  border-bottom-color: rgba(31, 20, 14, 0.08);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(43, 26, 18, 0.08);
}

.topbar__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, var(--espresso), var(--caramel));
  box-shadow: 0 14px 26px rgba(43, 26, 18, 0.12);
}

.brand__text strong {
  display: block;
  font-size: 14px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.brand__text span {
  display: block;
  font-size: 12px;
  color: var(--ink2);
}

.brand--footer .brand__mark {
  width: 38px;
  height: 38px;
  border-radius: 14px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav__toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  padding: 10px 12px;
  cursor: pointer;
}

.nav__toggle:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.nav__toggleLines {
  display: block;
  width: 20px;
  height: 12px;
  position: relative;
}

.nav__toggleLines::before,
.nav__toggleLines::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 99px;
  background: rgba(31, 20, 14, 0.86);
}

.nav__toggleLines::before {
  top: 0;
}
.nav__toggleLines::after {
  top: 10px;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 999px;
  border: 1px solid rgba(31, 20, 14, 0.12);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadowSoft);
}

.nav__menu a {
  font-size: 13px;
  color: rgba(31, 20, 14, 0.86);
  padding: 8px 10px;
  border-radius: 999px;
  transition: background 140ms ease, color 140ms ease;
}

.nav__menu a:hover {
  background: rgba(197, 123, 59, 0.14);
  color: rgba(31, 20, 14, 0.96);
}

.topbar__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  user-select: none;
  transition: transform 120ms ease, background 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.btn--primary {
  background: linear-gradient(135deg, var(--espresso), var(--caramel));
  color: #fff;
  border-color: rgba(31, 20, 14, 0.08);
  box-shadow: 0 14px 26px rgba(43, 26, 18, 0.14);
  font-weight: 800;
}

.btn--primary:hover {
  box-shadow: 0 18px 34px rgba(43, 26, 18, 0.16);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(31, 20, 14, 0.12);
  color: rgba(31, 20, 14, 0.9);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.92);
}

.btn--soft {
  background: rgba(197, 123, 59, 0.12);
  border-color: rgba(197, 123, 59, 0.22);
  color: rgba(31, 20, 14, 0.92);
}

.btn--soft:hover {
  background: rgba(197, 123, 59, 0.16);
}

.btn--whatsapp {
  background: rgba(26, 169, 128, 0.12);
  border-color: rgba(26, 169, 128, 0.22);
  color: rgba(31, 20, 14, 0.92);
}

.btn--whatsapp:hover {
  background: rgba(26, 169, 128, 0.16);
}

.hero {
  padding: 62px 0 30px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: center;
}

.hero__copy {
  position: relative;
}

.hero__copy::before {
  content: "";
  position: absolute;
  inset: -12px -10px auto -10px;
  height: 180px;
  border-radius: 28px;
  background: radial-gradient(220px 160px at 18% 30%, rgba(197, 123, 59, 0.22), transparent 62%),
    radial-gradient(220px 160px at 75% 10%, rgba(26, 169, 128, 0.16), transparent 62%);
  z-index: -1;
  filter: blur(2px);
}

.hero h1 {
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.03;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.lead {
  margin: 0 0 18px;
  color: rgba(31, 20, 14, 0.78);
  font-size: 16px;
}

.hero__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0 18px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
}

.stat {
  padding: 12px 12px;
  border-radius: var(--radius2);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadowSoft);
}

.stat dt {
  font-weight: 800;
  font-size: 12px;
  color: rgba(31, 20, 14, 0.92);
  margin: 0 0 2px;
}

.stat dd {
  margin: 0;
  font-size: 12px;
  color: rgba(31, 20, 14, 0.68);
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin: 18px 0 0;
  color: rgba(31, 20, 14, 0.86);
  font-size: 13px;
}

.trust__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px dashed rgba(31, 20, 14, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}

.trust__icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(197, 123, 59, 0.16);
  border: 1px solid rgba(197, 123, 59, 0.22);
}

.hero__media {
  display: grid;
  gap: 12px;
}

.hero__mediaRow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.cardMedia {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(31, 20, 14, 0.12);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.cardMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cardMedia--main img {
  aspect-ratio: 11 / 8;
}

.cardMedia figcaption {
  padding: 10px 12px;
  color: rgba(31, 20, 14, 0.72);
  font-size: 12px;
  background: var(--paper2);
  border-top: 1px solid rgba(31, 20, 14, 0.1);
}

.cardMedia--map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
  filter: saturate(1.05) contrast(1.02);
}

.strip {
  padding: 14px 0 36px;
}

.strip__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.strip__item {
  padding: 18px 18px;
  border-radius: 26px;
  border: 1px solid rgba(31, 20, 14, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 243, 0.92));
  box-shadow: var(--shadowSoft);
}

.strip__item h2 {
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.strip__item p {
  margin: 0;
  color: rgba(31, 20, 14, 0.76);
  font-size: 14px;
}

.section {
  padding: 56px 0;
}

.section--alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.1));
  border-top: 1px solid rgba(31, 20, 14, 0.08);
  border-bottom: 1px solid rgba(31, 20, 14, 0.08);
}

.section__head {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
}

.section__head h2 {
  margin: 0;
  font-size: clamp(22px, 2.3vw, 30px);
  letter-spacing: -0.01em;
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
}

.grid {
  display: grid;
  gap: 14px;
}

.cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  padding: 18px;
  border-radius: 26px;
  border: 1px solid rgba(31, 20, 14, 0.12);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadowSoft);
}

.card--flat {
  background: rgba(255, 255, 255, 0.82);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.card p {
  margin: 0 0 12px;
  color: rgba(31, 20, 14, 0.76);
  font-size: 14px;
}

.priceLine {
  margin: 12px 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(31, 20, 14, 0.1);
  color: rgba(31, 20, 14, 0.86);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  color: rgba(31, 20, 14, 0.86);
  font-size: 13px;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checklist li::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: rgba(197, 123, 59, 0.16);
  border: 1px solid rgba(197, 123, 59, 0.22);
}

.ctaBand {
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 28px;
  border: 1px solid rgba(31, 20, 14, 0.12);
  background: linear-gradient(135deg, rgba(197, 123, 59, 0.12), rgba(26, 169, 128, 0.1));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-shadow: var(--shadowSoft);
}

.ctaBand__copy h3 {
  margin: 0 0 4px;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.ctaBand__copy p {
  margin: 0;
}

.gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reviews {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review {
  padding: 18px;
  margin: 0;
  border-radius: 26px;
  border: 1px solid rgba(31, 20, 14, 0.12);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadowSoft);
}

.review blockquote {
  margin: 0 0 14px;
  color: rgba(31, 20, 14, 0.84);
  font-size: 14px;
}

.review figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13px;
}

.booking {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
}

.form {
  padding: 18px;
  border-radius: 26px;
  border: 1px solid rgba(31, 20, 14, 0.12);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadowSoft);
}

.form label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  color: rgba(31, 20, 14, 0.92);
}

.form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(31, 20, 14, 0.14);
  background: rgba(251, 246, 238, 0.65);
  padding: 11px 12px;
  color: rgba(31, 20, 14, 0.92);
  outline: none;
  transition: box-shadow 140ms ease, border-color 140ms ease, background 140ms ease;
}

.form textarea {
  resize: vertical;
  min-height: 110px;
}

.form input::placeholder,
.form textarea::placeholder {
  color: rgba(31, 20, 14, 0.52);
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  box-shadow: var(--ring);
  border-color: rgba(197, 123, 59, 0.38);
  background: rgba(251, 246, 238, 0.9);
}

.form__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.form__note {
  margin: 10px 0 0;
  font-size: 12px;
}

.toast {
  margin-top: 12px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(26, 169, 128, 0.22);
  background: rgba(26, 169, 128, 0.1);
  color: rgba(31, 20, 14, 0.92);
  font-size: 13px;
}

.toast--error {
  border-color: rgba(185, 70, 70, 0.28);
  background: rgba(185, 70, 70, 0.1);
}

.panel {
  padding: 18px;
  border-radius: 26px;
  border: 1px solid rgba(31, 20, 14, 0.12);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadowSoft);
}

.panel h3 {
  margin: 0 0 10px;
  font-size: 16px;
  letter-spacing: -0.01em;
}

hr {
  border: 0;
  border-top: 1px solid rgba(31, 20, 14, 0.12);
  margin: 14px 0;
}

.meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  color: rgba(31, 20, 14, 0.78);
  font-size: 13px;
}

.meta--spaced {
  gap: 10px;
}

.panel__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.contact {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.contact__details {
  display: grid;
  gap: 14px;
}

.contact__buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

details {
  border-top: 1px solid rgba(31, 20, 14, 0.12);
  padding-top: 10px;
}

details:first-of-type {
  border-top: 0;
  padding-top: 0;
}

summary {
  cursor: pointer;
  font-weight: 800;
  color: rgba(31, 20, 14, 0.92);
}

details p {
  margin: 10px 0 0;
  font-size: 13px;
}

.footer {
  padding: 36px 0;
  border-top: 1px solid rgba(31, 20, 14, 0.1);
  background: rgba(255, 255, 255, 0.45);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.5fr 0.8fr;
  gap: 18px;
  align-items: start;
}

.footer__links {
  display: grid;
  gap: 10px;
  color: rgba(31, 20, 14, 0.88);
  font-size: 13px;
}

.footer__links a {
  padding: 8px 10px;
  border-radius: 16px;
  border: 1px solid rgba(31, 20, 14, 0.12);
  background: rgba(255, 255, 255, 0.78);
}

.footer__links a:hover {
  background: rgba(255, 255, 255, 0.92);
}

.footer__meta {
  font-size: 13px;
}

.fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(26, 169, 128, 0.26);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 40px rgba(43, 26, 18, 0.14);
}

.fab:hover {
  background: rgba(255, 255, 255, 0.95);
}

@media (max-width: 980px) {
  .topbar__inner {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand cta"
      "nav nav";
  }

  .brand {
    grid-area: brand;
  }

  .topbar__cta {
    grid-area: cta;
  }

  .nav {
    grid-area: nav;
    justify-content: flex-start;
  }

  .nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav__menu {
    display: none;
    width: 100%;
    margin-top: 10px;
    border-radius: 18px;
    padding: 10px;
    justify-content: space-between;
  }

  .nav__menu.is-open {
    display: flex;
  }

  .hero__grid {
    grid-template-columns: 1fr;
  }

  .strip__grid {
    grid-template-columns: 1fr;
  }

  .section__head {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .reviews {
    grid-template-columns: 1fr;
  }

  .booking {
    grid-template-columns: 1fr;
  }

  .contact {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .topbar__cta a.btn--ghost {
    display: none;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .hero__mediaRow {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .form__row {
    grid-template-columns: 1fr;
  }
}
