@font-face {
  font-family: "Coquette";
  src: url("/assets/fonts/coquette-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Coquette";
  src: url("/assets/fonts/coquette-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Century Gothic Local";
  src: url("/assets/fonts/century-gothic.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #263136;
  --ink-strong: #172025;
  --muted: #657176;
  --rose: #d4a9aa;
  --rose-deep: #ad7b81;
  --rose-soft: #f2e2e3;
  --sage: #8a9b8c;
  --white: #ffffff;
  --shell: #fbfafa;
  --line: #e8dedf;
  --dark: #243138;
  --shadow: 0 18px 45px rgba(38, 49, 54, 0.14);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#contenuto,
main section[id] {
  scroll-margin-top: 104px;
}

body {
  margin: 0;
  font-family: "Century Gothic Local", "Century Gothic", Arial, sans-serif;
  color: var(--ink);
  background: var(--shell);
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

.skip-link,
.visually-hidden {
  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:focus {
  z-index: 50;
  width: auto;
  height: auto;
  margin: 16px;
  padding: 10px 14px;
  clip: auto;
  background: var(--white);
  border: 1px solid var(--ink);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
  padding: 18px 5vw;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  border-bottom: 1px solid rgba(232, 222, 223, 0.54);
  backdrop-filter: blur(14px);
}

.site-header.light {
  position: sticky;
  background: var(--white);
}

.brand img {
  width: 74px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 15px;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink);
}

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

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle span:not(.visually-hidden) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 100svh;
  padding-top: 84px;
  overflow: hidden;
  background: var(--white);
}

.hero-gallery {
  position: relative;
  min-height: calc(100svh - 84px);
  overflow: hidden;
  background: #eee6e4;
}

.hero-track,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  margin: 0;
  opacity: 0;
  transform: translateX(5%);
  transition: opacity 650ms ease, transform 820ms ease;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: translateX(0);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide:nth-child(1) img {
  object-position: 42% center;
}

.hero-slide:nth-child(2) img {
  object-position: center center;
}

.hero-slide:nth-child(3) img,
.hero-slide:nth-child(5) img {
  object-position: center center;
}

.hero-slide:nth-child(4) img,
.hero-slide:nth-child(6) img {
  object-position: center center;
}

.hero-socials {
  position: absolute;
  z-index: 3;
  left: 26px;
  bottom: 24px;
  display: grid;
  gap: 10px;
}

.hero-socials a {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  text-decoration: none;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.36);
  background: rgba(23, 32, 37, 0.24);
  backdrop-filter: blur(6px);
}

.hero-socials svg {
  display: block;
  width: 18px;
  height: 18px;
  filter: drop-shadow(0 1px 7px rgba(0, 0, 0, 0.34));
}

.hero-socials .icon-instagram {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero-socials .icon-facebook {
  fill: currentColor;
}

.hero-socials a:hover,
.hero-socials a:focus-visible {
  background: rgba(173, 123, 129, 0.72);
}

.hero-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 30px;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(168, 182, 222, 0.74);
  cursor: pointer;
}

.hero-dots button.is-active {
  background: var(--rose);
  box-shadow: 0 2px 6px rgba(212, 169, 170, 0.5);
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(42rem, 100%);
  padding: clamp(64px, 10vh, 130px) clamp(52px, 8vw, 120px);
}

.hero h1,
.section-heading h2,
.about-person h2,
.contacts-section h2,
.policy-article h1 {
  font-family: "Coquette", Georgia, serif;
  color: var(--ink-strong);
  font-weight: 700;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  font-family: "Century Gothic Local", "Century Gothic", Arial, sans-serif;
  font-size: clamp(46px, 3.9vw, 66px);
  line-height: 1.08;
}

.hero p {
  margin: 28px 0 0;
  font-size: 19px;
  color: var(--ink);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 14px;
  font-family: inherit;
  line-height: 1.2;
  text-align: center;
  box-shadow: none;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--white);
  background: var(--rose-deep);
  border: 1px solid var(--rose-deep);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
}

.section-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.intro-band {
  color: var(--white);
  background: var(--dark);
  padding: 92px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
}

.section-heading {
  grid-column: 1 / -1;
  text-align: center;
}

.section-heading.narrow {
  width: min(760px, 100%);
  margin: 0 auto 44px;
}

.section-heading h2,
.about-person h2,
.contacts-section h2 {
  margin: 0;
  font-size: 46px;
  line-height: 1.1;
}

.intro-band .section-heading h2,
.intro-band .story-block h3 {
  color: var(--white);
}

.section-heading p {
  margin: 18px auto 0;
  max-width: 860px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
}

.intro-band .section-heading p,
.intro-band .story-block p {
  color: rgba(255, 255, 255, 0.86);
}

.story-block {
  padding-left: 28px;
  border-left: 4px solid var(--rose);
}

.story-block h3 {
  margin: 0 0 16px;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 400;
}

.story-block p {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
}

.services-section,
.reviews-section {
  padding: 96px 0;
  background: var(--shell);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.reviews-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.service-card div {
  padding: 22px;
}

.service-card h3,
.reviews-grid h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.25;
  color: var(--ink-strong);
}

.service-card p,
.reviews-grid p,
.about-person p,
.contacts-section p,
.policy-article p {
  font-size: 15px;
  line-height: 1.7;
}

.service-card a {
  display: inline-block;
  margin-top: 12px;
  color: var(--rose-deep);
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.quote-band {
  padding: 44px 20px;
  text-align: center;
  color: var(--white);
  background: var(--sage);
}

.quote-band p {
  margin: 0;
  font-family: "Coquette", Georgia, serif;
  font-size: 28px;
  line-height: 1.4;
}

.about-person {
  padding: 100px 0;
  background: var(--white);
}

.person-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.84fr) 1.16fr;
  gap: 64px;
  align-items: center;
}

.person-grid figure {
  margin: 0;
}

.person-grid img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lead {
  margin-top: 18px;
  color: var(--rose-deep);
  font-size: 19px;
}

.reviews-grid {
  display: flex;
  gap: 18px;
  margin-inline: -2px;
  padding: 2px 2px 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--rose) rgba(212, 169, 170, 0.18);
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.reviews-grid:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 6px;
}

.reviews-grid article {
  flex: 0 0 clamp(280px, 30vw, 360px);
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 26px;
  scroll-snap-align: start;
}

.reviews-grid article::before {
  content: "“";
  display: block;
  height: 36px;
  color: var(--rose);
  font-family: Georgia, serif;
  font-size: 48px;
  line-height: 0.8;
}

.reviews-grid article a {
  display: inline-block;
  width: fit-content;
  margin-top: auto;
  color: var(--rose-deep);
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.reviews-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin: -22px 0 18px;
}

.review-scroll-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--rose-deep);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, color 160ms ease, opacity 160ms ease;
}

.review-scroll-button svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.review-scroll-button:hover,
.review-scroll-button:focus-visible {
  color: var(--ink-strong);
  border-color: var(--rose-deep);
  transform: translateY(-1px);
}

.review-scroll-button:disabled {
  cursor: default;
  opacity: 0.42;
  transform: none;
}

.contacts-section {
  padding: 96px 0;
  background: var(--white);
}

.contacts-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px 56px;
  align-items: start;
}

address {
  margin-top: 24px;
  font-style: normal;
  line-height: 1.7;
}

.contact-copy a {
  color: var(--rose-deep);
}

.contact-copy .button-primary {
  color: var(--white);
}

.contact-details {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
}

.contact-details div {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.contact-details dt {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 0;
  line-height: 1.6;
}

.contact-cta-row {
  grid-column: 1 / -1;
  display: grid;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.contact-cta-row .contact-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 0;
}

.contact-cta-row .button {
  width: 100%;
}

.contact-booking-note {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.contact-visual {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-visual img,
.map-frame iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 0;
  object-fit: cover;
  box-shadow: none;
}

.map-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  margin: 0;
  padding: 12px 18px;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.map-button:hover,
.map-button:focus-visible {
  border-color: var(--rose);
  background: var(--shell);
}

.map-frame {
  display: none;
}

.contact-visual.map-loaded img,
.contact-visual.map-loaded .map-button {
  display: none;
}

.contact-visual.map-loaded .map-frame {
  display: block;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 38px 5vw;
  color: var(--ink);
  background: var(--shell);
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 66px;
  margin-bottom: 14px;
}

.site-footer p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  align-content: flex-start;
}

.site-footer a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.booking-chat {
  position: fixed;
  z-index: 35;
  right: 18px;
  bottom: 88px;
  display: none;
  width: min(390px, calc(100vw - 36px));
}

.booking-chat.is-open {
  display: block;
}

.booking-chat-panel {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(232, 222, 223, 0.82);
  border-radius: var(--radius);
  box-shadow: 0 22px 60px rgba(23, 32, 37, 0.22);
}

.booking-chat-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  color: var(--white);
  background: #1f6556;
}

.booking-chat-header img {
  width: 52px;
  height: 52px;
  padding: 8px;
  background: var(--rose-soft);
  border-radius: 50%;
}

.booking-chat-header p,
.booking-chat-header h2 {
  margin: 0;
}

.booking-chat-header p {
  font-size: 16px;
  font-weight: 700;
}

.booking-chat-header h2 {
  margin-top: 3px;
  font: inherit;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
}

.booking-chat-close {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-left: auto;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.booking-chat-close svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.booking-chat-body {
  display: grid;
  gap: 14px;
  max-height: min(680px, calc(100vh - 130px));
  padding: 18px 20px 20px;
  overflow-y: auto;
  background: #f6f1ed;
}

.chat-message {
  width: fit-content;
  max-width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 14px;
  line-height: 1.55;
}

.chat-message p {
  margin: 0;
}

.chat-message-in {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.chat-message-out {
  justify-self: end;
  color: var(--white);
  background: #1f6556;
  white-space: pre-line;
}

.chat-service-options,
.chat-client-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.chat-service-options legend,
.chat-client-options legend {
  width: 100%;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.chat-service-options label,
.chat-client-options label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 7px 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 13px;
}

.chat-service-options input,
.chat-client-options input {
  accent-color: var(--rose-deep);
}

.chat-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.chat-field-wide {
  grid-column: 1 / -1;
}

.chat-field-grid label,
.chat-notes-label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.chat-field-grid input,
.chat-notes-label textarea {
  width: 100%;
  min-width: 0;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  font-size: 14px;
  text-transform: none;
}

.chat-field-grid input {
  min-height: 42px;
  padding: 9px 11px;
}

.chat-notes-label textarea {
  padding: 10px 11px;
  resize: vertical;
}

.booking-chat-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.booking-chat-actions .button-primary {
  color: var(--white);
  background: #25d366;
  border-color: #25d366;
}

.floating-whatsapp {
  position: fixed;
  z-index: 25;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: var(--white);
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.28);
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.back-to-top {
  position: fixed;
  z-index: 24;
  right: max(25px, calc(env(safe-area-inset-right) + 7px));
  bottom: max(88px, calc(env(safe-area-inset-bottom) + 88px));
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--rose-deep);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(173, 123, 129, 0.38);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(38, 49, 54, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, border-color 160ms ease, background 160ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  color: var(--ink-strong);
  background: var(--white);
  border-color: var(--rose-deep);
}

.policy-main {
  padding: 76px 20px 96px;
}

.policy-article {
  width: min(860px, 100%);
  margin: 0 auto;
  padding: 48px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.policy-article h1 {
  margin: 0 0 8px;
  font-size: 48px;
}

.policy-date {
  color: var(--muted);
}

.policy-article h2 {
  margin: 34px 0 10px;
  font-size: 22px;
  color: var(--ink-strong);
}

.policy-article a {
  color: var(--rose-deep);
}

@media (max-width: 980px) {
  .hero-content {
    padding-inline: 46px;
  }

  .hero h1 {
    font-size: 52px;
  }

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

  .person-grid,
  .contacts-grid,
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .contact-cta-row,
  .contact-visual {
    grid-column: auto;
    grid-row: auto;
  }

  .person-grid {
    gap: 38px;
  }
}

@media (max-width: 720px) {
  #contenuto,
  main section[id] {
    scroll-margin-top: 86px;
  }

  .site-header {
    min-height: 70px;
    padding: 14px 20px;
  }

  .brand img {
    width: 58px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.visible,
  .site-nav[data-open="true"] {
    display: flex;
  }

  .policy-page .site-nav.visible {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    width: auto;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .policy-page .site-nav.visible a {
    padding: 8px 5px;
    font-size: 13px;
  }

  .site-nav a {
    padding: 14px;
  }

  .policy-page .site-nav.visible a {
    padding: 8px 5px;
    font-size: 13px;
  }

  .hero {
    display: flex;
    min-height: 86svh;
    padding-top: 70px;
    align-items: flex-end;
  }

  .hero-gallery {
    position: absolute;
    inset: 70px 0 0;
    min-height: auto;
  }

  .hero-gallery::after {
    position: absolute;
    z-index: 2;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.78) 58%, rgba(255, 255, 255, 0.98) 100%);
  }

  .hero-dots {
    display: none;
  }

  .hero-socials {
    top: 98px;
    bottom: auto;
    left: 24px;
  }

  .hero-content {
    z-index: 3;
    align-items: center;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    padding: 0 24px 58px;
    text-align: center;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero p {
    font-size: 18px;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .hero-actions {
    width: min(280px, 100%);
    margin-top: 28px;
  }

  .button {
    width: 100%;
  }

  .intro-band,
  .services-section,
  .about-person,
  .reviews-section,
  .contacts-section {
    padding: 70px 0;
  }

  .intro-band {
    padding-top: 128px;
  }

  .section-heading h2,
  .about-person h2,
  .contacts-section h2 {
    font-size: 36px;
  }

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

  .reviews-controls {
    justify-content: center;
    margin-top: -18px;
  }

  .reviews-grid {
    width: calc(100% + 20px);
    margin-inline: 0 -20px;
    padding-right: 20px;
  }

  .reviews-grid article {
    flex-basis: min(330px, calc(100vw - 56px));
  }

  .quote-band p {
    font-size: 23px;
  }

  .site-footer {
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .map-button {
    width: 100%;
    margin-left: 0;
  }

  .contacts-grid {
    gap: 34px;
  }

  .contact-copy {
    width: min(100%, 34rem);
    margin-inline: auto;
    text-align: center;
  }

  .contact-copy > p {
    max-width: 25rem;
    margin: 18px auto 0;
    line-height: 1.7;
  }

  .contact-copy address {
    margin-inline: auto;
  }

  .contact-details dt,
  .contact-details dd {
    text-align: center;
  }

  .contact-cta-row {
    width: min(100%, 34rem);
    margin-inline: auto;
    padding-top: 28px;
  }

  .contact-booking-note {
    max-width: 27rem;
    margin-inline: auto;
    font-size: 15px;
    line-height: 1.75;
    text-align: center;
  }

  .contact-cta-row .contact-actions {
    grid-template-columns: 1fr;
  }

  .booking-chat {
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
  }

  .booking-chat-panel {
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .booking-chat-body {
    max-height: min(72vh, 680px);
    padding-bottom: max(20px, calc(env(safe-area-inset-bottom) + 18px));
  }

  .chat-field-grid,
  .booking-chat-actions {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 46px;
    height: 46px;
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.26);
  }

  .floating-whatsapp svg {
    width: 26px;
    height: 26px;
  }

  .back-to-top {
    right: max(16px, calc(env(safe-area-inset-right) + 2px));
    bottom: max(72px, calc(env(safe-area-inset-bottom) + 72px));
    width: 40px;
    height: 40px;
  }

  .policy-main {
    padding: 34px 20px 70px;
  }

  .policy-article {
    padding: 28px 22px;
  }

  .policy-article h1 {
    font-size: 38px;
  }
}

@media (max-width: 560px) {
  .hero-socials {
    display: none;
  }
}

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

  .button {
    transition: none;
  }

  .review-scroll-button,
  .back-to-top {
    transition: none;
  }
}
