:root {
  --bg: #fbf6f2;
  --bg-soft: #fffdfa;
  --surface: rgba(255, 252, 249, 0.84);
  --surface-strong: #fffdfb;
  --surface-muted: rgba(248, 239, 234, 0.82);
  --text: #332826;
  --text-soft: #736460;
  --text-muted: #9f8e88;
  --line: rgba(95, 73, 67, 0.12);
  --line-strong: rgba(95, 73, 67, 0.22);
  --accent: #d88a89;
  --accent-deep: #c77476;
  --accent-soft: #f2d9d5;
  --accent-gold: #f2b94b;
  --shadow-xl: 0 40px 90px rgba(91, 67, 61, 0.12);
  --shadow-lg: 0 24px 56px rgba(91, 67, 61, 0.1);
  --shadow-md: 0 16px 36px rgba(91, 67, 61, 0.08);
  --radius-2xl: 40px;
  --radius-xl: 32px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --radius-pill: 999px;
  --container: min(1180px, calc(100vw - 40px));
  --transition: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 0% 0%, rgba(244, 222, 217, 0.92), transparent 24%),
    radial-gradient(circle at 100% 12%, rgba(255, 247, 243, 0.88), transparent 18%),
    linear-gradient(180deg, #fffdfa 0%, var(--bg) 48%, #f8f0eb 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.44), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 36%);
  z-index: -1;
}

img,
iframe {
  display: block;
  width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

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

:focus-visible {
  outline: 2px solid rgba(199, 116, 118, 0.55);
  outline-offset: 4px;
}

.page-shell {
  overflow: clip;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 38px 0 104px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 0;
  background: linear-gradient(180deg, rgba(251, 246, 242, 0.94), rgba(251, 246, 242, 0.76));
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.75);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(252, 235, 230, 0.98), rgba(255, 250, 247, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-md);
}

.brand-mark svg {
  width: 26px;
  height: 26px;
  stroke: var(--accent-deep);
  stroke-width: 2.35;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-copy strong {
  font-size: 1.05rem;
  font-weight: 800;
}

.brand-copy span {
  color: var(--text-muted);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: var(--text-soft);
  font-size: 0.94rem;
  transition: color var(--transition), transform var(--transition);
}

.site-nav a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.button,
.text-link {
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background-color var(--transition),
    color var(--transition);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--accent-deep), var(--accent));
  color: #fff9f8;
  font-weight: 700;
  box-shadow: 0 18px 36px rgba(199, 116, 118, 0.22);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(199, 116, 118, 0.26);
}

.button-small {
  min-height: 46px;
  padding: 0 18px;
  font-size: 0.94rem;
}

.button-ghost {
  background: rgba(255, 255, 255, 0.55);
  color: var(--accent-deep);
  border-color: rgba(216, 138, 137, 0.35);
  box-shadow: none;
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-md);
}

.button-contrast {
  background: linear-gradient(135deg, #463431, #5a4341);
  box-shadow: 0 18px 36px rgba(70, 52, 49, 0.18);
}

.button-contrast:hover {
  box-shadow: 0 22px 40px rgba(70, 52, 49, 0.22);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-deep);
  font-weight: 700;
}

.text-link::after {
  content: "→";
}

.text-link:hover {
  transform: translateX(2px);
}

.eyebrow {
  margin: 0 0 18px;
  color: #b27b76;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-title,
.section h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.94;
}

.hero-title {
  font-size: clamp(3.1rem, 5.35vw, 4.7rem);
  max-width: 10.2ch;
  text-wrap: balance;
}

.section h2 {
  font-size: clamp(2.7rem, 4.6vw, 4.1rem);
  max-width: 10.5ch;
}

.hero-lead,
.section-head p:last-child,
.about-lead,
.contact-lead,
.contact-note,
.service-result,
.gallery-description,
.review-text,
.reviews-rating-card p,
.about-point {
  color: var(--text-soft);
  line-height: 1.72;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
  gap: 24px;
  align-items: end;
  max-width: none;
}

.section-side-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.section-side-copy p {
  margin: 0;
}

.hero-section {
  padding-top: 14px;
}

.hero-panel {
  position: relative;
  padding: 28px 28px 26px;
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(255, 253, 250, 0.98), rgba(248, 239, 234, 0.92)),
    var(--surface-strong);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  left: -88px;
  bottom: -88px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 221, 216, 0.92), transparent 72%);
}

.hero-panel::after {
  content: "";
  position: absolute;
  right: 18%;
  top: 8%;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.88), transparent 72%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
}

.hero-copy {
  padding: 4px 4px;
}

.hero-eyebrow {
  margin-bottom: 14px;
}

.hero-lead {
  margin: 18px 0 0;
  max-width: 30rem;
  font-size: 0.98rem;
}

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

.trust-list,
.benefits-list,
.about-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-md);
  font-weight: 600;
}

.benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.benefit-item {
  flex: 1 1 180px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 14px 16px;
  border-radius: 24px;
  background: rgba(255, 252, 250, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-md);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.benefit-item::before {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--accent), var(--accent-deep));
  box-shadow: 0 0 0 7px rgba(242, 217, 213, 0.74);
}

.hero-visual {
  position: relative;
  padding-left: 6px;
}

.hero-frame {
  overflow: hidden;
  border-radius: 34px;
  background: var(--surface-strong);
  box-shadow: var(--shadow-xl);
}

.hero-frame img {
  aspect-ratio: 1.14;
  object-fit: cover;
  object-position: 58% center;
}

.hero-floating-card {
  position: absolute;
  left: 0;
  bottom: 18px;
  max-width: 240px;
  padding: 18px 20px;
  border-radius: 28px;
  background: rgba(255, 252, 250, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
}

.hero-floating-label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-floating-card strong {
  display: block;
  font-size: 1.08rem;
}

.hero-floating-card p {
  margin: 8px 0 0;
  color: var(--text-soft);
  line-height: 1.5;
}

.services-section {
  padding-top: 48px;
}

.services-list-shell,
.about-card,
.review-card,
.contact-shell {
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-lg);
}

.services-list-shell {
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.68);
}

.services-list {
  display: grid;
}

.services-list-header,
.service-row {
  grid-template-columns: minmax(180px, 1.2fr) minmax(240px, 2fr) minmax(110px, 0.8fr) minmax(110px, 0.8fr);
  gap: 24px;
  align-items: start;
}

.services-list-header {
  padding: 18px 24px;
  background: rgba(248, 239, 234, 0.7);
  border-bottom: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-row {
  display: grid;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}

.service-row:last-child {
  border-bottom: none;
}

.service-title,
.service-duration,
.service-price {
  display: block;
}

.service-title {
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.35;
}

.service-result {
  margin: 0;
  font-size: 0.98rem;
}

.service-duration {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
}

.service-price {
  color: var(--accent-deep);
  font-size: 1rem;
  font-weight: 800;
  text-align: right;
}

.gallery-section {
  padding-top: 22px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  grid-auto-rows: 72px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: var(--surface-strong);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item[data-size="tall"] {
  grid-column: span 5;
  grid-row: span 7;
}

.gallery-item[data-size="square"] {
  grid-column: span 7;
  grid-row: span 3;
}

.gallery-item[data-size="wide"] {
  grid-column: span 7;
  grid-row: span 4;
}

.gallery-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(39, 29, 28, 0.78) 100%);
  color: #fff7f4;
}

.gallery-title {
  display: block;
  font-size: 1.36rem;
  line-height: 1.2;
}

.gallery-description {
  margin: 10px 0 0;
  max-width: 24rem;
  color: rgba(255, 247, 244, 0.9);
}

.about-section {
  padding-top: 54px;
}

.about-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  padding: 28px;
  border-radius: 38px;
  background:
    linear-gradient(155deg, rgba(255, 253, 250, 0.96), rgba(246, 237, 232, 0.9)),
    var(--surface-strong);
}

.about-media {
  position: relative;
}

.about-media::after {
  content: "";
  position: absolute;
  right: -12px;
  bottom: -14px;
  width: 120px;
  height: 120px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(242, 217, 213, 0.95), rgba(255, 255, 255, 0.14));
}

.portrait-image {
  position: relative;
  z-index: 1;
  aspect-ratio: 0.82;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
}

.about-copy {
  align-self: center;
  padding: 12px 6px;
}

.about-lead {
  margin: 0;
  max-width: 34rem;
  font-size: 1.04rem;
}

.about-points {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.about-point {
  position: relative;
  padding-left: 24px;
}

.about-point::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--accent), var(--accent-deep));
}

.about-signature {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 26px;
}

.about-signature span {
  color: var(--text-muted);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-signature strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  font-weight: 600;
}

.reviews-section {
  padding-top: 42px;
}

.reviews-summary {
  display: flex;
  justify-content: flex-end;
}

.reviews-rating-card {
  width: min(100%, 260px);
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-md);
}

.reviews-rating-card strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.reviews-rating-card span {
  display: block;
  margin-top: 10px;
  color: var(--accent-gold);
  letter-spacing: 0.18em;
}

.reviews-rating-card p {
  margin: 12px 0 0;
}

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

.review-card {
  min-height: 250px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
}

.review-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.review-avatar {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(245, 227, 222, 0.98), rgba(255, 249, 246, 0.96));
  color: var(--accent-deep);
  font-weight: 800;
}

.review-author-copy {
  min-width: 0;
}

.review-name {
  display: block;
  font-size: 1rem;
}

.review-meta {
  display: block;
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 0.84rem;
}

.review-rating {
  flex: 0 0 auto;
  text-align: right;
}

.review-rating strong {
  display: block;
  font-size: 1rem;
}

.review-rating span {
  display: block;
  margin-top: 4px;
  color: var(--accent-gold);
  font-size: 0.84rem;
  letter-spacing: 0.14em;
}

.review-text {
  margin: 18px 0 0;
  color: var(--text);
  font-size: 1rem;
}

.contact-section {
  padding-top: 42px;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 30px;
  padding: 34px;
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(248, 240, 235, 0.96), rgba(255, 253, 250, 0.95)),
    var(--surface-strong);
}

.contact-copy h2 {
  max-width: 11ch;
}

.contact-lead {
  margin: 18px 0 0;
  max-width: 31rem;
}

.location-pill {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  margin-top: 22px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-md);
  font-weight: 600;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.contact-note {
  margin: 18px 0 0;
}

.route-link {
  min-height: 48px;
}

.map-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

.map-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.map-card-head strong {
  font-size: 1.02rem;
}

.map-card-head span {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.map-frame {
  overflow: hidden;
  min-height: 420px;
  border-radius: 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.map-frame iframe {
  height: 100%;
  min-height: 420px;
  border: 0;
}

.site-footer {
  padding: 0 0 34px;
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 28px;
  padding: 30px 32px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 252, 249, 0.95), rgba(245, 235, 230, 0.92)),
    var(--surface-strong);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-lg);
}

.footer-brand-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

.footer-brand {
  width: fit-content;
}

.footer-brand-mark {
  width: 64px;
  height: 64px;
  border-radius: 24px;
}

.footer-brand .brand-copy strong {
  font-size: 1.2rem;
}

.footer-brand .brand-copy span {
  font-size: 0.76rem;
}

.footer-note {
  margin: 0;
  max-width: 32rem;
  color: var(--text-soft);
  line-height: 1.72;
}

.footer-location {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 44px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.76);
  color: var(--text);
  font-weight: 600;
}

.footer-links-block {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 10px 0;
}

.footer-title {
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-soft);
  font-weight: 600;
  transition: color var(--transition), transform var(--transition);
}

.footer-links a:hover {
  color: var(--text);
  transform: translateX(2px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 6px 0;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.mobile-booking-bar {
  display: none;
}

.mobile-booking-bar.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

.reveal-ready {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 1100px) {
  .hero-grid,
  .about-card,
  .contact-shell,
  .section-head-split,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .contact-copy h2,
  .section h2 {
    max-width: none;
  }

  .hero-visual {
    max-width: 760px;
    margin-inline: auto;
  }

  .services-list-header,
  .service-row {
    grid-template-columns: minmax(160px, 1.1fr) minmax(220px, 1.6fr) 110px 110px;
  }

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

@media (min-width: 921px) and (max-height: 940px) {
  .site-header {
    padding: 10px 0;
  }

  .hero-panel {
    padding: 20px 20px 16px;
  }

  .hero-grid {
    gap: 20px;
    align-items: end;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.98fr);
  }

  .hero-title {
    font-size: clamp(2.3rem, 3.7vw, 3.45rem);
    max-width: 13.8ch;
    line-height: 0.9;
  }

  .hero-lead {
    margin-top: 12px;
    max-width: 34rem;
    font-size: 0.9rem;
    line-height: 1.54;
  }

  .hero-actions {
    margin-top: 14px;
    gap: 12px;
  }

  .trust-list {
    margin-top: 10px;
    gap: 10px;
  }

  .trust-item {
    min-height: 44px;
    padding: 0 16px;
    font-size: 0.94rem;
  }

  .benefits-list {
    margin-top: 10px;
    gap: 12px;
  }

  .benefit-item {
    min-height: 50px;
    padding: 10px 14px;
    font-size: 0.86rem;
  }

  .hero-frame img {
    aspect-ratio: 1.42;
    object-position: 61% center;
  }

  .hero-floating-card {
    bottom: 10px;
    max-width: 196px;
    padding: 12px 14px;
  }

  .hero-floating-label {
    margin-bottom: 8px;
    font-size: 0.66rem;
  }

  .hero-floating-card strong {
    font-size: 1rem;
  }

  .hero-floating-card p {
    font-size: 0.92rem;
  }
}

@media (max-width: 920px) {
  .site-nav {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 240px;
  }

  .gallery-item[data-size],
  .gallery-item[data-size="wide"] {
    grid-column: span 1;
    grid-row: span 1;
  }

  .benefits-list {
    display: grid;
    grid-template-columns: 1fr;
  }

  .services-list-header {
    display: none;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .service-price {
    text-align: left;
  }

  .service-duration,
  .service-price {
    display: inline-flex;
    width: fit-content;
    min-height: 38px;
    align-items: center;
    padding: 0 14px;
    border-radius: var(--radius-pill);
    background: rgba(248, 239, 234, 0.76);
  }

  .service-price {
    color: var(--accent-deep);
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 98px;
  }

  .section {
    padding: 30px 0 84px;
  }

  .site-header {
    padding: 12px 0;
  }

  .header-inner {
    gap: 12px;
  }

  .header-inner .button-small {
    display: none;
  }

  .hero-panel,
  .about-card,
  .contact-shell,
  .services-list-shell,
  .footer-shell {
    padding: 22px;
    border-radius: 30px;
  }

  .hero-grid {
    gap: 18px;
  }

  .hero-copy {
    padding: 0;
  }

  .hero-title {
    font-size: clamp(2.2rem, 10.4vw, 3.15rem);
    max-width: 11.6ch;
    line-height: 0.92;
  }

  .hero-lead {
    margin-top: 12px;
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .trust-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 16px;
  }

  .trust-item {
    justify-content: center;
    min-height: 44px;
    padding: 0 14px;
    font-size: 0.94rem;
    text-align: center;
  }

  .hero-visual {
    padding-left: 0;
  }

  .hero-frame img {
    aspect-ratio: 1;
    object-position: 60% center;
  }

  .hero-floating-card {
    position: static;
    max-width: none;
    margin-top: 12px;
    padding: 16px 18px;
  }

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

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

  .map-frame,
  .map-frame iframe {
    min-height: 320px;
  }

  .footer-links-block {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 16px;
  }

  .mobile-booking-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 252, 249, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 34px rgba(70, 52, 47, 0.16);
    backdrop-filter: blur(16px);
    transition: opacity var(--transition), transform var(--transition);
  }

  .mobile-booking-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
  }

  .mobile-booking-copy strong {
    font-size: 0.92rem;
  }

  .mobile-booking-copy span {
    color: var(--text-soft);
    font-size: 0.78rem;
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(100vw - 24px, 100%);
  }

  .button,
  .button-small,
  .trust-item,
  .location-pill,
  .footer-location {
    width: 100%;
  }

  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }

  .gallery-item[data-size],
  .gallery-item[data-size="wide"] {
    grid-column: span 1;
    grid-row: span 1;
  }
}
