:root {
  --ink: #111111;
  --text: #252525;
  --muted: #6f6f6f;
  --line: #e4ded3;
  --paper: #fffdf8;
  --warm: #f3ead9;
  --blue: #0a51b8;
  --blue-dark: #07377f;
  --gold: #dcae3b;
  --gold-soft: #f6df9f;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(17, 17, 17, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background: var(--paper);
  color: var(--text);
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 253, 248, 0.93);
  border-bottom: 1px solid rgba(228, 222, 211, 0.85);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  font-weight: 900;
  letter-spacing: 0;
  color: var(--ink);
}

.brand img {
  width: 58px;
  height: 58px;
  max-width: 58px;
  min-width: 58px;
  flex-shrink: 0;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.95rem;
  font-weight: 700;
  color: #313131;
}

.nav a,
.header-cta {
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav a:hover,
.header-cta:hover {
  color: var(--blue);
}

.header-cta {
  padding: 12px 18px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  font-weight: 900;
  color: var(--ink);
  background: var(--white);
  box-shadow: 4px 4px 0 var(--gold);
}

.hero {
  min-height: min(820px, calc(100vh - 87px));
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: clamp(34px, 6vw, 82px);
  padding: clamp(44px, 7vw, 92px) clamp(18px, 5vw, 76px) 54px;
  background:
    linear-gradient(120deg, rgba(10, 81, 184, 0.1), transparent 42%),
    linear-gradient(180deg, var(--white), var(--paper));
}

.hero-copy {
  max-width: 790px;
  min-width: 0;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.55rem, 6.4vw, 6.55rem);
  line-height: 0.94;
  letter-spacing: 0;
  color: var(--ink);
  overflow-wrap: break-word;
  text-wrap: balance;
}

.hero p {
  max-width: 650px;
  margin: 28px 0 0;
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
  line-height: 1.65;
  color: #3d3d3d;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 6px;
  border: 2px solid var(--ink);
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue-dark);
  box-shadow: 5px 5px 0 var(--gold);
}

.button.secondary,
.button.dark {
  color: var(--ink);
  background: var(--white);
  box-shadow: 5px 5px 0 var(--ink);
}

.button.dark {
  color: var(--white);
  background: var(--ink);
  box-shadow: 5px 5px 0 var(--gold);
}

.hero-panel {
  position: relative;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding: clamp(18px, 3vw, 30px);
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow), 10px 10px 0 var(--gold);
}

.hero-panel img {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 2px solid var(--line);
}

.trust-row span {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 6px;
  background: var(--warm);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  color: var(--ink);
}

.intro,
.discount {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 0 clamp(18px, 5vw, 76px);
  padding: clamp(26px, 4vw, 42px);
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
}

.intro h2,
.discount h2,
.section-heading h2,
.inquiry h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
  letter-spacing: 0;
}

.intro p,
.discount p {
  max-width: 760px;
  margin: 14px 0 0;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
}

.section {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 76px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: clamp(20px, 5vw, 70px);
  margin-bottom: clamp(28px, 5vw, 54px);
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.services-grid article,
.price-grid article,
.reason {
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 5px 5px 0 rgba(220, 174, 59, 0.72);
}

.services-grid article {
  min-height: 236px;
  padding: 26px;
}

.services-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-weight: 900;
}

.services-grid h3,
.reason h3 {
  margin: 28px 0 12px;
  color: var(--ink);
  font-size: 1.25rem;
}

.services-grid p,
.reason p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.discount {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  overflow: hidden;
}

.discount-badge {
  flex: 0 0 auto;
  width: clamp(150px, 18vw, 230px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  align-content: center;
  border: 3px solid var(--gold);
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold-soft);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.discount-badge strong {
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.9;
}

.discount-badge span {
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-section {
  padding-top: clamp(40px, 6vw, 72px);
  padding-bottom: clamp(40px, 6vw, 72px);
}

.gallery-heading {
  margin-bottom: clamp(28px, 4vw, 44px);
}

.gallery-groups {
  display: grid;
  gap: 14px;
}

.gallery-group {
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 5px 5px 0 rgba(220, 174, 59, 0.72);
  overflow: hidden;
}

.gallery-toggle {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: clamp(12px, 2vw, 20px);
  padding: clamp(16px, 2.5vw, 22px);
  border: 0;
  background: var(--white);
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease;
}

.gallery-toggle:hover,
.gallery-group.is-open .gallery-toggle {
  background: var(--warm);
}

.gallery-toggle-text {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.gallery-group-title {
  margin: 0;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  color: var(--ink);
}

.gallery-group-desc {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.gallery-preview {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.gallery-preview img {
  width: clamp(44px, 8vw, 64px);
  height: clamp(34px, 6vw, 48px);
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--line);
}

.gallery-group.is-open .gallery-preview {
  opacity: 0.45;
}

.gallery-meta {
  flex-shrink: 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.gallery-chevron {
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.gallery-group.is-open .gallery-chevron {
  transform: rotate(-135deg);
  margin-top: 6px;
}

.gallery-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.gallery-group.is-open .gallery-panel {
  grid-template-rows: 1fr;
  border-top: 2px solid var(--line);
}

.gallery-panel-inner {
  overflow: hidden;
  display: grid;
  gap: 12px;
  padding: 0 clamp(14px, 2.5vw, 22px);
  opacity: 0;
  transition: opacity 0.25s ease, padding 0.35s ease;
}

.gallery-group.is-open .gallery-panel-inner {
  grid-template-rows: repeat(2, auto);
  grid-auto-flow: column;
  grid-auto-columns: clamp(200px, 22vw, 260px);
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x proximity;
  scrollbar-color: var(--blue) var(--warm);
  opacity: 1;
  padding-top: clamp(14px, 2.5vw, 22px);
  padding-bottom: clamp(14px, 2.5vw, 22px);
}

.gallery-group.is-open .gallery-panel-inner::-webkit-scrollbar {
  height: 10px;
}

.gallery-group.is-open .gallery-panel-inner::-webkit-scrollbar-track {
  background: var(--warm);
  border-radius: 999px;
}

.gallery-group.is-open .gallery-panel-inner::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 999px;
}

.gallery-group.is-open .gallery-item {
  scroll-snap-align: start;
}

.gallery-item {
  margin: 0;
  padding: 0;
  aspect-ratio: 4 / 3;
  border: 2px solid var(--ink);
  border-radius: 8px;
  overflow: hidden;
  background: var(--warm);
  cursor: zoom-in;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-item:hover {
  transform: translateY(-2px);
  box-shadow: 4px 4px 0 rgba(220, 174, 59, 0.72);
}

.gallery-item:focus-visible {
  outline: 3px solid rgba(10, 81, 184, 0.35);
  outline-offset: 2px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(12px, 3vw, 28px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.88);
  backdrop-filter: blur(6px);
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(1100px, 100%);
  max-height: calc(100vh - 40px);
  display: grid;
  gap: 10px;
}

.lightbox-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(8px, 2vw, 16px);
}

.lightbox-figure {
  margin: 0;
  display: grid;
  gap: 10px;
  justify-items: center;
  min-width: 0;
}

.lightbox-image {
  max-width: 100%;
  max-height: min(78vh, 820px);
  width: auto;
  height: auto;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  object-fit: contain;
}

.lightbox-caption {
  max-width: 720px;
  text-align: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.5;
}

.lightbox-counter {
  margin: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  font-weight: 700;
}

.lightbox-close,
.lightbox-nav {
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-close {
  position: absolute;
  top: -6px;
  right: 0;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lightbox-nav {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover,
.lightbox-nav:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.lightbox-nav:disabled {
  opacity: 0.25;
  cursor: default;
}

.lightbox-close svg,
.lightbox-nav svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.price-section {
  padding-bottom: clamp(32px, 5vw, 70px);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.price-grid article {
  min-height: 148px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.price-grid span {
  color: var(--muted);
  font-weight: 700;
}

.price-grid strong {
  color: var(--ink);
  font-size: 1.65rem;
  line-height: 1.05;
}

.price-note {
  margin: 24px 0 0;
  color: var(--muted);
}

.reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 0;
}

.reason {
  padding: 28px;
}

.reason h3 {
  margin-top: 0;
  text-transform: uppercase;
}

.local-info {
  padding-top: 0;
}

.local-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.local-card {
  padding: 26px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 5px 5px 0 rgba(220, 174, 59, 0.72);
}

.local-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1.15rem;
}

.local-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.local-note {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.local-note a {
  color: var(--blue);
  font-weight: 800;
}

.inquiry {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background: var(--warm);
}

.inquiry-copy {
  position: sticky;
  top: 112px;
}

.inquiry-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-list a {
  padding: 16px 18px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: var(--white);
  font-weight: 900;
  box-shadow: 4px 4px 0 var(--gold);
}

.inquiry-form {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  font-weight: 900;
  color: var(--ink);
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 2px solid #cfc7b9;
  border-radius: 6px;
  padding: 14px 15px;
  font: inherit;
  color: var(--text);
  background: #fffefa;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  outline: 3px solid rgba(10, 81, 184, 0.22);
  border-color: var(--blue);
}

.full {
  grid-column: 1 / -1;
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 2px solid var(--line);
  border-radius: 6px;
  background: #fffefa;
}

.privacy-check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  flex-shrink: 0;
  accent-color: var(--blue);
  cursor: pointer;
}

.inquiry-form .privacy-check label {
  display: block;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.55;
  color: var(--text);
  cursor: pointer;
}

.privacy-check a {
  color: var(--blue);
  font-weight: 800;
}

.privacy-check a:hover {
  color: var(--blue-dark);
}

.privacy-check:has(input:focus-visible) {
  outline: 3px solid rgba(10, 81, 184, 0.22);
  border-color: var(--blue);
}

.anfrage-status {
  margin: 0;
  padding: 14px 16px;
  border-radius: 6px;
  border: 2px solid var(--ink);
  font-weight: 700;
  line-height: 1.55;
}

.anfrage-status.is-success {
  background: #e8f5ec;
  color: #1f5f34;
  box-shadow: 4px 4px 0 var(--gold);
}

.anfrage-status.is-error {
  background: #fdeeee;
  color: #8b1f1f;
  box-shadow: 4px 4px 0 var(--gold);
}

.inquiry-form button:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.floating-actions {
  position: fixed;
  right: clamp(14px, 2.5vw, 28px);
  bottom: clamp(14px, 2.5vw, 28px);
  z-index: 40;
  display: grid;
  gap: 12px;
}

.floating-button {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  border-radius: 8px;
  color: var(--white);
  box-shadow: 5px 5px 0 var(--gold);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-button:hover {
  transform: translateY(-3px);
  box-shadow: 7px 7px 0 var(--gold);
}

.floating-button svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.floating-button.whatsapp {
  background: #18b35b;
}

.floating-button.scroll-top {
  background: var(--ink);
}

.footer {
  display: grid;
  gap: 30px;
  padding: clamp(42px, 6vw, 72px) clamp(18px, 5vw, 76px) 28px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.76);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1fr);
  gap: 24px;
  align-items: start;
}

.footer h2,
.footer h3 {
  margin: 0;
  color: var(--white);
}

.footer h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
}

.footer h3 {
  font-size: 1.05rem;
}

.footer p {
  margin: 0;
  line-height: 1.65;
}

.footer p + p {
  margin-top: 8px;
}

.footer a {
  color: var(--white);
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.footer-menu a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 2px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.footer-menu a:hover {
  color: var(--ink);
  background: var(--gold-soft);
  border-color: var(--gold-soft);
}

.footer-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.footer-details section {
  min-height: 180px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.footer-details p {
  margin-top: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .hero,
  .section-heading,
  .inquiry {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-panel {
    max-width: 560px;
  }

  .services-grid,
  .price-grid,
  .reasons,
  .local-info-grid,
  .footer-details {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro,
  .discount {
    align-items: flex-start;
    flex-direction: column;
  }

  .inquiry-copy {
    position: static;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-menu {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: 100vw;
    max-width: 100vw;
    padding: 12px 16px;
    gap: 12px;
    justify-content: flex-start;
    overflow: hidden;
  }

  .brand span {
    display: none;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .header-cta {
    margin-left: auto;
    max-width: calc(100vw - 96px);
    white-space: nowrap;
    padding: 10px 12px;
    font-size: 0.85rem;
  }

  .nav {
    gap: 10px;
    font-size: 0.83rem;
  }

  .hero {
    width: 100vw;
    max-width: 100vw;
    overflow: hidden;
    padding: 34px 16px 44px;
  }

  .hero-copy,
  .hero-panel {
    max-width: calc(100vw - 32px);
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.9rem, 9vw, 2.28rem);
    line-height: 1.04;
    text-wrap: auto;
  }

  .hero p {
    font-size: 1rem;
  }

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

  .trust-row,
  .price-grid,
  .reasons,
  .local-info-grid,
  .inquiry-form,
  .footer-details {
    grid-template-columns: 1fr;
  }

  .services-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    padding: 2px 16px 16px;
    margin: 0 -16px;
    scrollbar-color: var(--blue) var(--warm);
  }

  .services-grid::-webkit-scrollbar {
    height: 10px;
  }

  .services-grid::-webkit-scrollbar-track {
    background: var(--warm);
    border-radius: 999px;
  }

  .services-grid::-webkit-scrollbar-thumb {
    background: var(--blue);
    border-radius: 999px;
  }

  .services-grid article {
    flex: 0 0 min(84vw, 340px);
    scroll-snap-align: start;
  }

  .intro,
  .discount {
    margin: 0 16px;
    padding: 24px;
  }

  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .gallery-preview {
    order: 3;
  }

  .gallery-meta {
    justify-self: start;
  }

  .gallery-chevron {
    position: absolute;
    top: 22px;
    right: 18px;
  }

  .gallery-group {
    position: relative;
  }

  .gallery-group.is-open .gallery-panel-inner {
    grid-auto-columns: min(72vw, 280px);
  }

  .lightbox-main {
    grid-template-columns: 1fr;
  }

  .lightbox-prev,
  .lightbox-next {
    display: none;
  }

  .discount-badge {
    width: 150px;
  }

  .full {
    grid-column: auto;
  }

  .floating-actions {
    right: 12px;
    bottom: 12px;
    gap: 10px;
  }

  .floating-button {
    width: 50px;
    height: 50px;
  }

  .footer {
    padding-bottom: 86px;
  }

  .footer-menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    display: block;
  }
}
