:root {
  --ivory: #f6f8fb;
  --warm: #e7eef6;
  --paper: #ffffff;
  --ink: #142434;
  --muted: #5c6f7d;
  --line: #d8e1ea;
  --navy: #102f4a;
  --navy-deep: #0b2238;
  --blue: #256f9f;
  --blue-soft: #dcecf7;
  --slate-blue: #314d63;
  --champagne: #c8ab72;
  --champagne-dark: #8f733c;
  --whatsapp: #25d366;
  --phone: #2579b8;
  --shadow: 0 16px 36px rgba(16, 47, 74, 0.09);
  --shadow-strong: 0 24px 58px rgba(16, 47, 74, 0.14);
  --radius: 8px;
  --container: 1160px;
  --header-height: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 22px);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--ivory);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

img,
svg,
iframe {
  max-width: 100%;
}

img {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 82px 0;
}

.section--soft {
  background: #eef3f8;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--champagne-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
}

h1,
h2,
h3,
h4,
p {
  overflow-wrap: anywhere;
}

.hero__layout > *,
.about__layout > *,
.why__layout > *,
.contact-grid > *,
.cta-strip__inner > * {
  min-width: 0;
}

h1,
h2,
h3,
h4 {
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  line-height: 1.13;
  color: var(--ink);
}

.section-heading p:last-child {
  margin: 12px 0 0;
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(216, 225, 234, 0.95);
  background: rgba(246, 248, 251, 0.96);
  backdrop-filter: blur(14px);
}

.navbar {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(160px, 260px) 1fr minmax(44px, 260px);
  align-items: center;
  gap: 22px;
}

.logo {
  display: inline-flex;
  align-items: center;
  width: clamp(170px, 16vw, 220px);
  height: 62px;
  min-width: 0;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  display: inline-flex;
  padding: 9px 11px;
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue);
  background: var(--blue-soft);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  min-height: 680px;
  display: flex;
  align-items: center;
  padding: 56px 0 66px;
  color: var(--ink);
  background:
    linear-gradient(135deg, #ffffff 0%, #f6f8fb 48%, #e7eef6 100%);
}

.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  align-items: end;
  gap: 44px;
}

.hero__copy {
  max-width: 760px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 5.55rem);
  line-height: 0.98;
  text-wrap: balance;
  color: var(--ink);
}

.hero__text {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--muted);
  font-weight: 500;
  font-size: clamp(1rem, 1.6vw, 1.17rem);
}

.hero .section-kicker {
  color: var(--champagne-dark);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  text-align: center;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.btn--primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 14px 30px rgba(37, 111, 159, 0.24);
}

.btn--secondary {
  color: var(--navy);
  border-color: rgba(37, 111, 159, 0.3);
  background: rgba(255, 255, 255, 0.78);
}

.hero__editorial {
  align-self: stretch;
  min-height: 430px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.hero__editorial img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px;
  background: var(--paper);
}

.hero__note span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy);
  background: #f6f8fb;
  font-size: 0.84rem;
  font-weight: 800;
}

.about__layout,
.why__layout,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.about__media {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about__media img,
.service-card img,
.tailor-list img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__content {
  padding: 38px;
  border-left: 3px solid var(--champagne);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.about__content p {
  margin: 18px 0 0;
  color: var(--muted);
}

.about__address {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 800;
}

.service-band {
  margin-top: 34px;
}

.service-band__heading {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
}

.service-band__heading span {
  color: var(--champagne-dark);
  font-size: 0.9rem;
  font-weight: 900;
}

.service-band__heading h3 {
  margin: 0;
  font-size: 1.35rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  display: grid;
  grid-template-rows: 220px auto;
  min-height: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.service-card h4 {
  position: static;
  margin: 0;
  padding: 14px 16px 16px;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.22;
}

.tailor-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.tailor-list article {
  display: grid;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 10px 24px rgba(45, 55, 52, 0.06);
}

.tailor-list img {
  aspect-ratio: 1 / 1;
  border-radius: 6px;
}

.tailor-list span {
  min-height: 42px;
  display: flex;
  align-items: center;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.22;
}

.special-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.special-service {
  display: grid;
  grid-template-rows: 210px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.special-service img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.special-service div {
  padding: 18px;
}

.special-service .section-kicker {
  margin-bottom: 7px;
  color: var(--champagne-dark);
}

.special-service h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.2;
}

.special-service p:last-child {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.price-section {
  scroll-margin-top: calc(var(--header-height) + 12px);
  background: linear-gradient(180deg, #ffffff 0%, #eef5fb 100%);
}

.price-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.46fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.price-intro {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  padding-top: 8px;
}

.price-intro h2 {
  margin-bottom: 14px;
}

.price-intro p:last-child {
  margin: 0;
  color: var(--muted);
}

.price-panel {
  overflow: hidden;
  border: 1px solid #d6e5f0;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 42px rgba(20, 47, 71, 0.08);
}

.price-nav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 14px;
  border-bottom: 1px solid #dce8f1;
  scrollbar-width: none;
}

.price-nav::-webkit-scrollbar {
  display: none;
}

.price-tab {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 9px 13px;
  border: 1px solid #c8deee;
  border-radius: 999px;
  color: var(--navy);
  background: #ffffff;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
}

.price-tab.is-active {
  border-color: transparent;
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 10px 22px rgba(31, 111, 165, 0.22);
}

.price-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px 12px;
}

.price-panel__head span {
  display: block;
  margin-bottom: 4px;
  color: var(--champagne-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-panel__head h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.22rem, 2vw, 1.55rem);
  line-height: 1.15;
}

.price-panel__head a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 14px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--navy);
  font-size: 0.84rem;
  font-weight: 900;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-height: 416px;
  overflow-y: auto;
  padding: 0 18px 18px;
  scrollbar-color: #a8c8df transparent;
}

.price-card {
  display: grid;
  grid-template-rows: minmax(40px, auto) 118px minmax(42px, auto);
  align-items: center;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #dce8f1;
  border-radius: 8px;
  background: #fbfcfe;
  box-shadow: 0 12px 28px rgba(20, 47, 71, 0.06);
}

.price-card h4 {
  min-width: 0;
  margin: 0;
  padding: 12px 9px 4px;
  color: var(--ink);
  font-size: 0.88rem;
  line-height: 1.18;
  text-align: center;
  overflow-wrap: anywhere;
}

.price-card img {
  width: 100%;
  height: 100%;
  padding: 8px 16px;
  object-fit: contain;
  object-position: center;
  filter: none;
}

.price-card p {
  margin: 0;
  padding: 5px 8px 13px;
  color: var(--blue);
  font-size: clamp(1.08rem, 1.55vw, 1.46rem);
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
  letter-spacing: 0;
  white-space: normal;
}

.why__layout {
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.1fr);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.why-grid article {
  min-height: 142px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 28px rgba(45, 55, 52, 0.06);
}

.why-grid span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
}

.why-grid h3 {
  margin: 12px 0 0;
  font-size: 1.08rem;
  line-height: 1.25;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 190px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--warm);
  box-shadow: 0 12px 26px rgba(45, 55, 52, 0.08);
  cursor: pointer;
}

.gallery-item:first-child,
.gallery-item:nth-child(4) {
  grid-row: span 2;
}

.gallery-item img {
  transition: transform 0.28s ease, filter 0.28s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.cta-strip {
  padding: 58px 0;
  color: var(--ink);
  background: linear-gradient(135deg, #eef3f8, #ffffff 56%, #dcecf7);
}

.cta-strip__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.cta-strip h2 {
  color: var(--ink);
}

.cta-strip p:last-child {
  max-width: 620px;
  margin: 12px 0 0;
  color: var(--muted);
}

.contact-grid {
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  align-items: stretch;
}

.contact-card,
.map-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.contact-card {
  padding: 26px;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 2px 12px;
  align-items: center;
}

.contact-icon {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: #fff;
  background: var(--phone);
}

.contact-icon--whatsapp {
  background: var(--whatsapp);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-list strong {
  line-height: 1.1;
}

.contact-list a,
.contact-list span:not(.contact-icon) {
  color: var(--muted);
  font-weight: 800;
}

.map-card {
  min-height: 360px;
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr auto;
}

.map-card iframe {
  width: 100%;
  min-height: 310px;
  border: 0;
}

.btn--map {
  margin: 14px;
  color: var(--navy);
  border-color: var(--line);
  background: var(--warm);
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  display: grid;
  gap: 10px;
}

.floating-btn {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 16px 30px rgba(45, 55, 52, 0.16);
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.floating-btn:hover {
  transform: translateY(-2px);
}

.floating-btn svg {
  width: 27px;
  height: 27px;
}

.floating-btn--phone {
  background: var(--phone);
}

.floating-btn--whatsapp {
  background: var(--whatsapp);
}

.floating-btn--top {
  opacity: 0;
  pointer-events: none;
  background: var(--navy-deep);
}

.floating-btn--top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(31, 52, 66, 0.72);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-height: min(82vh, 760px);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(31, 103, 140, 0.72);
  font-size: 1.6rem;
  cursor: pointer;
}

.site-footer {
  padding: 48px 0 24px;
  color: #eef5fb;
  background: var(--navy-deep);
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(150px, 0.55fr) minmax(190px, 0.7fr) minmax(230px, 0.8fr);
  gap: 28px;
}

.footer-logo {
  width: min(100%, 390px);
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 14px 18px;
  border-radius: var(--radius);
  background: #ffffff;
}

.footer-logo img {
  width: 100%;
  height: auto;
  max-height: 92px;
  object-fit: contain;
}

.footer-brand p,
.footer-column ul,
.footer-bottom p {
  margin: 0;
}

.footer-brand p,
.footer-column,
.footer-column a,
.footer-column li,
.footer-bottom {
  color: #c8d7e3;
}

.footer-column h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 0.98rem;
}

.footer-column ul {
  display: grid;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.footer-column a:hover,
.digital-signature a {
  color: #b9dfff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.93rem;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 12px;
    right: 12px;
    z-index: 110;
    display: none;
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100vh - var(--header-height) - 24px);
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow-strong);
    overflow-y: auto;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-link {
    width: 100%;
    padding: 13px 12px;
  }

  .hero__layout,
  .about__layout,
  .why__layout,
  .contact-grid,
  .cta-strip__inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero__editorial {
    min-height: 300px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-shell {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .price-intro {
    position: static;
    padding-top: 0;
  }

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

  .tailor-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .navbar {
    display: flex;
    justify-content: space-between;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 66px;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .section {
    padding: 58px 0;
  }

  .logo {
    width: clamp(160px, 48vw, 210px);
    height: 54px;
  }

  .hero {
    align-items: start;
    padding: 38px 0 42px;
    background: linear-gradient(135deg, #ffffff 0%, #f6f8fb 48%, #e7eef6 100%);
  }

  .hero__layout {
    gap: 24px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.82rem, 8.4vw, 2.08rem);
    line-height: 1.05;
    text-wrap: wrap;
  }

  .hero__text {
    margin-top: 14px;
    max-width: 29ch;
    font-size: 0.96rem;
  }

  .hero__actions,
  .cta-strip__inner {
    gap: 10px;
  }

  .btn {
    width: 100%;
    min-height: 44px;
    padding: 11px 14px;
  }

  .hero__editorial {
    min-height: 210px;
  }

  .about__content,
  .contact-card {
    padding: 22px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-template-rows: 188px auto;
  }

  .price-nav {
    gap: 8px;
    padding: 11px;
  }

  .price-tab {
    flex: 0 0 auto;
    min-height: 36px;
    padding: 8px 11px;
    font-size: 0.78rem;
  }

  .price-panel__head {
    padding: 15px 12px 10px;
  }

  .price-panel__head a {
    min-height: 34px;
    padding: 8px 11px;
    font-size: 0.76rem;
  }

  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-height: 386px;
    padding: 0 12px 12px;
  }

  .price-card {
    grid-template-rows: minmax(40px, auto) 106px minmax(42px, auto);
  }

  .price-card h4 {
    padding: 13px 8px 5px;
    font-size: 0.88rem;
  }

  .price-card img {
    padding: 8px 14px;
  }

  .price-card p {
    padding: 5px 7px 14px;
    font-size: clamp(1.06rem, 6.2vw, 1.42rem);
  }

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

  .special-service-grid {
    grid-template-columns: 1fr;
  }

  .special-service {
    grid-template-rows: 188px 1fr;
  }

  .tailor-list span {
    min-height: 38px;
    font-size: 0.82rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-grid article {
    min-height: 112px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 132px;
    gap: 9px;
  }

  .gallery-item:first-child,
  .gallery-item:nth-child(4) {
    grid-row: span 1;
  }

  .map-card {
    min-height: 0;
  }

  .map-card iframe {
    min-height: 230px;
  }

  .floating-actions {
    right: 12px;
    bottom: 12px;
    gap: 8px;
  }

  .floating-btn {
    width: 50px;
    height: 50px;
  }

  .footer__grid,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 360px) {
  .container {
    width: min(100% - 20px, var(--container));
  }

  .logo {
    width: 160px;
  }

  .tailor-list span {
    font-size: 0.78rem;
  }

  .price-grid {
    gap: 8px;
    max-height: 360px;
    padding-inline: 10px;
  }

  .price-card {
    grid-template-rows: minmax(40px, auto) 96px minmax(40px, auto);
  }

  .price-card h4 {
    padding-inline: 6px;
    font-size: 0.8rem;
  }

  .price-card img {
    padding: 8px 10px;
  }

  .price-card p {
    font-size: clamp(0.98rem, 6vw, 1.24rem);
  }

  .gallery-grid {
    grid-auto-rows: 118px;
  }
}
