/* ============================================================
   Jolly Nail - landing page styles
   Direction: soft beauty palette, readable mobile layout,
   accessible motion, and image-ready presentation.
   ============================================================ */

:root {
  --ink: #2f3a35;
  --ink-soft: #59665f;
  --muted: #7b8780;
  --sage: #4fa46f;
  --teal: #3f9fba;
  --teal-dark: #2f879f;
  --coral: #f08a5a;
  --coral-dark: #dc7241;
  --rose: #ec4899;
  --rose-soft: #fce7f3;
  --blush: #fff7f8;
  --cream: #fffaf4;
  --champagne: #dcae62;
  --border: #efe5dd;
  --shadow-soft: 0 20px 48px rgba(79, 49, 55, 0.12);
  --shadow-button: 0 12px 28px rgba(240, 138, 90, 0.28);
  --container: 1240px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(252, 231, 243, 0.55), transparent 34rem),
    #ffffff;
  color: var(--ink);
  font-family: 'Cormorant Garamond', Georgia, serif;
}

::selection { background: #f9d7df; }

a { color: inherit; }

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

a:focus-visible,
button:focus-visible,
.nav-toggle-btn:focus-visible,
input:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 1000;
  background: var(--ink);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  padding: 12px 18px;
  text-decoration: none;
}

.skip-link:focus {
  left: 8px;
  top: 8px;
}

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

  .anim-ready .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ---------------- Motion ---------------- */
.anim-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.62s ease, transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.anim-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes jn-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

@keyframes jn-hero-zoom {
  from { transform: scale(1.045); }
  to { transform: scale(1); }
}

@keyframes jn-cta-glow {
  0% { box-shadow: var(--shadow-button); }
  50% { box-shadow: 0 16px 34px rgba(240, 138, 90, 0.42); }
  100% { box-shadow: var(--shadow-button); }
}

.anim-ready .hero__title,
.anim-ready .hero__subtitle,
.anim-ready .hero__badge,
.anim-ready .hero__actions {
  opacity: 0;
  animation: jn-fade-up 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.anim-ready .hero__title { animation-delay: 0.12s; }
.anim-ready .hero__subtitle { animation-delay: 0.25s; }
.anim-ready .hero__badge:nth-child(1) { animation-delay: 0.36s; }
.anim-ready .hero__badge:nth-child(2) { animation-delay: 0.44s; }
.anim-ready .hero__badge:nth-child(3) { animation-delay: 0.52s; }
.anim-ready .hero__actions { animation-delay: 0.62s; }

.anim-ready .hero__img {
  animation: jn-hero-zoom 10s ease-out forwards;
}

.anim-ready .hero__content .btn--orange {
  animation-name: jn-fade-up, jn-cta-glow;
  animation-duration: 0.72s, 1.1s;
  animation-delay: 0.62s, 1.35s;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1), ease-in-out;
  animation-fill-mode: forwards, none;
  animation-iteration-count: 1;
}

/* ---------------- Header ---------------- */
.site-header {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}

.brand svg { flex: 0 0 auto; }

.brand__name {
  min-width: 0;
  font-size: 24px;
  letter-spacing: 5px;
  font-weight: 500;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 600;
}

.main-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s ease;
}

.main-nav a:hover { color: var(--rose); }

/* ---------------- Language switcher ---------------- */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex: 0 0 auto;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 1px;
  font-weight: 600;
}

.lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  padding: 6px 8px;
  border-radius: 999px;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}

.lang-switch a:hover { color: var(--rose); }

.lang-switch a.is-active {
  color: #fff;
  background: var(--teal);
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.nav-toggle-btn {
  display: none;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 9px;
  cursor: pointer;
}

.nav-toggle-btn span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ---------------- Buttons ---------------- */
.btn {
  min-height: 44px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
  cursor: pointer;
}

.btn:hover { transform: translateY(-1px); }

.btn--teal {
  color: #ffffff;
  background: var(--teal);
  padding: 13px 24px;
  box-shadow: 0 12px 26px rgba(63, 159, 186, 0.2);
}

.btn--teal:hover { background: var(--teal-dark); }

.btn--orange {
  color: #ffffff;
  background: linear-gradient(135deg, var(--coral), #f6a46f);
  padding: 15px 28px;
  box-shadow: var(--shadow-button);
}

.btn--orange:hover { background: linear-gradient(135deg, var(--coral-dark), #f08a5a); }

.btn--ghost,
.btn--soft {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(220, 174, 98, 0.42);
  padding: 14px 26px;
}

.btn--ghost:hover,
.btn--soft:hover {
  background: var(--cream);
  border-color: var(--champagne);
}

/* ---------------- Hero ---------------- */
.hero {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.hero__frame {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(135deg, #fff8f4 0%, #fff 43%, #f8efe8 100%);
  box-shadow: 0 28px 80px rgba(76, 58, 49, 0.12);
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__img.img-placeholder {
  align-items: center;
  justify-content: flex-end;
  padding: 0 8% 0 42%;
  background:
    radial-gradient(circle at 72% 44%, rgba(249, 168, 212, 0.3) 0 8rem, transparent 8.2rem),
    radial-gradient(circle at 85% 64%, rgba(220, 174, 98, 0.22) 0 6rem, transparent 6.2rem),
    linear-gradient(135deg, #fff 0%, #fff7f8 48%, #f4eee7 100%);
  color: rgba(88, 102, 95, 0.5);
}

.hero__scrim {
  position: absolute;
  inset: 0;
  width: 66%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 250, 246, 0.84) 58%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.hero__content {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: min(100%, 560px);
  padding: 0 72px;
  pointer-events: none;
}

.hero__title {
  margin: 0 0 18px;
  font-size: clamp(3rem, 5.2vw, 4.6rem);
  font-weight: 500;
  line-height: 1.04;
  color: var(--ink);
  text-wrap: balance;
}

.hero__subtitle {
  margin: 0 0 24px;
  max-width: 32rem;
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink-soft);
  text-wrap: pretty;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(252, 231, 243, 0.72);
  border: 1px solid rgba(236, 72, 153, 0.18);
  color: #8a224f;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__content .btn,
.hero__badge,
.hero__actions { pointer-events: auto; }

.img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(255, 247, 248, 0.92), rgba(244, 248, 245, 0.94)),
    repeating-linear-gradient(45deg, rgba(220, 174, 98, 0.08) 0 12px, transparent 12px 24px);
  color: rgba(89, 102, 95, 0.58);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  padding: 18px;
}

/* ---------------- Services row ---------------- */
.services {
  max-width: 1120px;
  margin: 0 auto;
  padding: 86px 40px 70px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
}

.service {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.service__icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 30px rgba(75, 63, 57, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service:hover .service__icon {
  transform: translateY(-4px);
  box-shadow: 0 22px 38px rgba(75, 63, 57, 0.13);
}

.service__label {
  max-width: 100%;
  overflow-wrap: anywhere;
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  letter-spacing: 1.6px;
  line-height: 1.55;
  font-weight: 700;
  color: var(--ink-soft);
}

/* ---------------- Feature band ---------------- */
.features {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px 96px;
}

.features__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr 1.15fr;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 18px 54px rgba(67, 54, 48, 0.08);
}

.feature-text {
  background: rgba(255, 250, 244, 0.94);
  padding: 50px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.feature-text h2 {
  margin: 0;
  font-size: 30px;
  font-weight: 500;
  color: var(--ink);
}

.feature-text p {
  margin: 0;
  font-size: 16px;
  line-height: 1.72;
  color: var(--ink-soft);
  text-wrap: pretty;
}

.rule {
  width: 34px;
  height: 1px;
  background: var(--champagne);
  margin: 0 auto;
  transform-origin: center;
}

.anim-ready .reveal.is-visible .rule,
.anim-ready .section__head.is-visible .rule {
  animation: jn-rule-draw 0.55s ease-out forwards;
}

@keyframes jn-rule-draw {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.feature-img {
  width: 100%;
  height: 390px;
  object-fit: cover;
}

/* ---------------- Section heading ---------------- */
.section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px 96px;
}

.section__head {
  text-align: center;
  margin-bottom: 48px;
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 800;
  color: var(--rose);
  margin-bottom: 14px;
}

.section__title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 500;
  color: var(--ink);
}

/* ---------------- Pricing ---------------- */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.price-card {
  position: relative;
  overflow: hidden;
  padding: 40px 34px;
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, rgba(236, 72, 153, 0.34), rgba(220, 174, 98, 0.42));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(220, 174, 98, 0.45);
}

.price-card:hover::before { opacity: 1; }

.price-card__title {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 2px;
  text-align: center;
  color: var(--ink);
}

.price-card__rule {
  width: 38px;
  height: 1px;
  margin: 0 auto 26px;
}

.price-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 14px;
  font-size: 17px;
  line-height: 1.5;
}

.price-row__label {
  min-width: 0;
  overflow-wrap: anywhere;
}

.price-row__value {
  color: var(--ink);
  font-weight: 600;
  white-space: nowrap;
}

/* ---------------- Gallery ---------------- */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 210px;
  gap: 20px;
}

.gallery__link {
  position: relative;
  display: block;
  min-width: 0;
  overflow: hidden;
  border-radius: 18px;
  text-decoration: none;
  background: var(--blush);
  box-shadow: 0 18px 42px rgba(67, 54, 48, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery__link--tall { grid-row: span 2; }
.gallery__link--wide { grid-column: span 2; }

.gallery__item {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.35s ease, transform 0.35s ease;
}

.gallery__link:hover,
.gallery__link:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(67, 54, 48, 0.14);
}

.gallery__link:hover .gallery__item,
.gallery__link:focus-visible .gallery__item {
  filter: brightness(1.04) saturate(1.05);
  transform: scale(1.025);
}

.gallery__overlay {
  position: absolute;
  inset: auto 14px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(47, 58, 53, 0.12);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery__overlay strong {
  color: #8a224f;
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.gallery__link:hover .gallery__overlay,
.gallery__link:focus-visible .gallery__overlay {
  opacity: 1;
  transform: none;
}

/* ---------------- Contact ---------------- */
.contact {
  background:
    radial-gradient(circle at 85% 15%, rgba(252, 231, 243, 0.72), transparent 26rem),
    #fafdfb;
}

.contact__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 84px 40px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.74fr);
  gap: 48px;
  align-items: center;
}

.contact__left {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact__left h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.65rem);
  font-weight: 500;
  color: var(--ink);
}

.contact__phone {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--ink);
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.contact__card {
  padding: 30px;
  border-radius: 24px;
  border: 1px solid rgba(220, 174, 98, 0.28);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.contact__card-kicker {
  margin-bottom: 10px;
  color: var(--rose);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.contact__card p {
  margin: 0 0 20px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.6;
}

.contact__list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.contact__list div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(220, 174, 98, 0.22);
}

.contact__list dt {
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.contact__list dd {
  margin: 0;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

/* ---------------- Mobile booking ---------------- */
.mobile-booking {
  display: none;
}

/* ---------------- Footer ---------------- */
.site-footer {
  text-align: center;
  padding: 58px 40px 68px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.site-footer__name {
  font-size: 20px;
  letter-spacing: 5px;
  font-weight: 500;
  color: var(--ink);
}

.site-footer__phone {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--muted);
}

/* ---------------- Responsive ---------------- */
@media (max-width: 1080px) {
  .site-header { gap: 22px; }
  .main-nav { gap: 22px; }
  .brand__name { letter-spacing: 4px; }
}

@media (max-width: 960px) {
  .services__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .features__grid { grid-template-columns: 1fr; }
  .feature-img { height: 320px; }
  .pricing__grid { grid-template-columns: 1fr; }
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .hero__content {
    width: min(100%, 540px);
    padding: 0 46px;
  }
}

@media (max-width: 768px) {
  body { padding-bottom: 76px; }

  .site-header {
    position: relative;
    flex-wrap: nowrap;
    gap: 12px;
    padding: 16px 18px;
  }

  .site-header > .btn--teal { display: none; }
  .lang-switch { order: 2; }
  .nav-toggle-btn { display: flex; order: 3; }

  .nav-toggle:checked ~ .nav-toggle-btn span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-toggle-btn span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-toggle-btn span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 18px;
    right: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255, 255, 255, 0.96);
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    border-radius: 0 0 18px 18px;
    box-shadow: var(--shadow-soft);
    transition: max-height 0.28s ease;
    z-index: 50;
  }

  .nav-toggle:checked ~ .main-nav { max-height: 320px; }

  .main-nav a {
    padding: 16px 0;
    font-size: 12px;
    border-bottom: 1px solid rgba(239, 229, 221, 0.9);
  }

  .main-nav a:last-child { border-bottom: none; }

  .brand { order: 1; flex: 1 1 auto; }
  .brand__name {
    font-size: clamp(1rem, 5vw, 1.25rem);
    letter-spacing: clamp(2px, 1.1vw, 4px);
  }

  .hero { padding: 0 16px; }

  .hero__frame {
    display: flex;
    align-items: center;
    min-height: 520px;
    border-radius: 22px;
  }

  .hero__scrim {
    width: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 250, 246, 0.86) 72%, rgba(255, 255, 255, 0.44) 100%);
  }

  .hero__img.img-placeholder {
    justify-content: center;
    padding: 220px 24px 26px;
  }

  .hero__content {
    position: relative;
    z-index: 1;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    padding: 48px 28px;
  }

  .hero__title {
    font-size: clamp(2rem, 11vw, 3.4rem);
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  .hero__subtitle {
    max-width: 100%;
    font-size: 17px;
    line-height: 1.55;
  }

  .hero__badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 22px;
  }

  .hero__badge {
    justify-content: center;
    min-width: 0;
    min-height: 30px;
    padding: 7px 10px;
    font-size: 10px;
    letter-spacing: 0.8px;
    text-align: center;
    white-space: normal;
  }

  .hero__badge:last-child { grid-column: 1 / -1; }

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

  .hero__actions .btn {
    width: 100%;
    max-width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }

  .services { padding: 58px 20px 52px; }
  .services__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 16px;
  }
  .service__icon {
    width: 74px;
    height: 74px;
  }
  .service__label {
    font-size: 10px;
    letter-spacing: 1.1px;
  }

  .features { padding: 0 16px 68px; }
  .feature-text { padding: 42px 24px; }
  .feature-img { height: 280px; }

  .section { padding: 0 16px 68px; }
  .section__head { margin-bottom: 34px; }
  .section__title { font-size: 30px; }

  .price-card { padding: 32px 24px; }
  .price-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
  }
  .price-row__value {
    justify-self: start;
    color: #8a224f;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 190px;
    gap: 14px;
  }
  .gallery__overlay {
    inset: auto 10px 10px;
    opacity: 1;
    transform: none;
    border-radius: 14px;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .contact__inner { padding: 60px 20px; }
  .contact__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .contact__card { padding: 24px; }
  .contact__list div { grid-template-columns: 1fr; gap: 6px; }

  .mobile-booking {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 12px;
    z-index: 90;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 42px rgba(47, 58, 53, 0.18);
    backdrop-filter: blur(14px);
  }

  .mobile-booking a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-booking__call { background: var(--teal); }
  .mobile-booking__zalo { background: linear-gradient(135deg, var(--coral), #f6a46f); }

  .site-footer { padding: 46px 20px 56px; }
}

@media (max-width: 430px) {
  .site-header { padding-inline: 14px; }
  .brand__name { max-width: 13rem; }

  .hero { padding: 0 12px; }
  .hero__frame { min-height: 510px; }
  .hero__content { padding: 44px 22px; }

  .services {
    padding-left: 14px;
    padding-right: 14px;
  }

  .services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 12px;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }
  .gallery__link--tall,
  .gallery__link--wide {
    grid-row: span 1;
    grid-column: span 1;
  }

  .section__title { font-size: 26px; }
  .site-footer__name { letter-spacing: 4px; }
}
