/* ==========================================================================
   Dunavsko Gnezdo — landing
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --c-bg: #fbf8f3;
  --c-bg-alt: #f3ede2;
  --c-ink: #1a2530;
  --c-ink-soft: #4a5765;
  --c-muted: #8a8378;
  --c-line: #e8e1d3;

  --c-river: #1b4d5e;       /* deep Danube teal */
  --c-river-deep: #133744;
  --c-sand: #d9c9a8;
  --c-gold: #b8935a;        /* warm accent */
  --c-gold-deep: #97743f;
  --c-leaf: #4a6b4f;        /* forest green */

  --c-white: #ffffff;

  --shadow-sm: 0 2px 12px rgba(19, 55, 68, 0.06);
  --shadow-md: 0 12px 40px rgba(19, 55, 68, 0.10);
  --shadow-lg: 0 30px 80px rgba(19, 55, 68, 0.18);

  --radius: 14px;
  --radius-lg: 22px;

  --container: 1200px;

  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  --ease: cubic-bezier(.2, .7, .2, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 .6em;
  color: var(--c-river-deep);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.6rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }

em {
  font-style: italic;
  color: var(--c-gold);
  font-family: var(--font-display);
}

::selection { background: var(--c-gold); color: var(--c-white); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.section {
  padding: clamp(4rem, 9vw, 7.5rem) 0;
}

.section__head {
  max-width: 720px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.section__sub {
  color: var(--c-ink-soft);
  font-size: 1.05rem;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 32px;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 22px; height: 1px;
  background: var(--c-gold);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: .01em;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--c-river);
  color: var(--c-white);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--c-river-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--ghost {
  background: transparent;
  color: var(--c-river-deep);
  border: 1.5px solid var(--c-river);
}
.btn--ghost:hover {
  background: var(--c-river);
  color: var(--c-white);
  transform: translateY(-2px);
}
.btn--small {
  padding: 10px 20px;
  font-size: 14px;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  background: rgba(251, 248, 243, 0.7);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, padding .3s;
}
.nav.is-scrolled {
  background: rgba(251, 248, 243, 0.92);
  border-bottom-color: var(--c-line);
  padding: 8px 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.05;
  color: var(--c-river-deep);
  font-weight: 600;
}
.nav__logo-mark { font-size: 1.6rem; }
.nav__logo-text em { color: var(--c-gold); font-weight: 500; }

.nav__links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
  margin-right: 1.5rem;
}
.nav__links a {
  font-size: 14px;
  color: var(--c-ink-soft);
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: color .25s;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1.5px;
  background: var(--c-gold);
  transition: width .3s var(--ease);
}
.nav__links a:hover { color: var(--c-river-deep); }
.nav__links a:hover::after { width: 100%; }

.nav__toggle {
  display: none;
  width: 36px; height: 36px;
  position: relative;
}
.nav__toggle span {
  position: absolute;
  left: 6px;
  width: 24px; height: 2px;
  background: var(--c-river-deep);
  border-radius: 2px;
  transition: transform .3s, opacity .25s, top .3s;
}
.nav__toggle span:nth-child(1) { top: 11px; }
.nav__toggle span:nth-child(2) { top: 17px; }
.nav__toggle span:nth-child(3) { top: 23px; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { top: 17px; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { top: 17px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--c-white);
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.95);
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(19, 55, 68, .25) 0%, rgba(19, 55, 68, .55) 60%, rgba(19, 55, 68, .80) 100%),
    radial-gradient(ellipse at 70% 30%, rgba(184, 147, 90, 0.20), transparent 60%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 920px;
}
.hero__eyebrow {
  font-size: 13px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--c-sand);
  margin-bottom: 1.2rem;
  font-weight: 500;
  opacity: 0;
  animation: fadeUp .9s .2s var(--ease) forwards;
}
.hero__title {
  color: var(--c-white);
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fadeUp 1s .4s var(--ease) forwards;
}
.hero__title em {
  color: var(--c-sand);
  font-style: italic;
  font-weight: 400;
}
.hero__sub {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: rgba(255, 255, 255, .92);
  max-width: 600px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 1s .6s var(--ease) forwards;
}
.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  opacity: 0;
  animation: fadeUp 1s .8s var(--ease) forwards;
}
.hero__cta .btn--ghost {
  border-color: rgba(255, 255, 255, .55);
  color: var(--c-white);
}
.hero__cta .btn--ghost:hover {
  background: var(--c-white);
  color: var(--c-river-deep);
  border-color: var(--c-white);
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .15);
  max-width: 620px;
  opacity: 0;
  animation: fadeUp 1s 1s var(--ease) forwards;
}
.hero__meta > div:not(.hero__meta-divider) {
  display: flex;
  flex-direction: column;
}
.hero__meta strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--c-sand);
  line-height: 1.2;
}
.hero__meta span {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
}
.hero__meta-divider {
  width: 1px; height: 30px;
  background: rgba(255, 255, 255, .2);
}

.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 24px; height: 38px;
  border: 1.5px solid rgba(255, 255, 255, .5);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.hero__scroll span {
  width: 3px; height: 8px;
  background: var(--c-white);
  border-radius: 2px;
  animation: scrollDot 1.8s infinite;
}
@keyframes scrollDot {
  0% { opacity: 0; transform: translateY(-4px); }
  40% { opacity: 1; }
  80%, 100% { opacity: 0; transform: translateY(10px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- About ---------- */
.about {
  background: var(--c-bg);
}
.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.about__text p {
  color: var(--c-ink-soft);
  margin-bottom: 1.2em;
}
.about__text strong {
  color: var(--c-river-deep);
  font-weight: 600;
}
.about__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 5;
}
.about__visual::after {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(184, 147, 90, .3);
  border-radius: var(--radius-lg);
  pointer-events: none;
}
.about__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.about__visual:hover img { transform: scale(1.04); }

/* ---------- Amenities ---------- */
.amenities { background: var(--c-bg-alt); }

.amenities__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}
.amenity {
  background: var(--c-white);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  border: 1px solid var(--c-line);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.amenity:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-sand);
}
.amenity__icon {
  font-size: 2rem;
  width: 56px; height: 56px;
  display: flex;
  align-items: center; justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--c-bg-alt), var(--c-sand));
  margin-bottom: 1.2rem;
}
.amenity h3 {
  font-size: 1.15rem;
  margin-bottom: .35em;
}
.amenity p {
  font-size: .92rem;
  color: var(--c-ink-soft);
  margin: 0;
  line-height: 1.55;
}

/* ---------- Gallery ---------- */
.gallery { background: var(--c-bg); padding-bottom: clamp(3rem, 6vw, 5rem); }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 10px;
  padding: 0 10px;
}
.gallery__item {
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: var(--c-bg-alt);
  cursor: zoom-in;
  position: relative;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease), filter .4s;
}
.gallery__item:hover img {
  transform: scale(1.06);
  filter: brightness(1.05);
}
.gallery__item--big {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery__item:nth-child(4) { grid-column: span 2; }
.gallery__item:nth-child(7) { grid-column: span 2; }

.gallery__cta {
  text-align: center;
  margin-top: 3rem;
}

/* ---------- Pricing ---------- */
.pricing {
  background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-bg-alt) 100%);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.price-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem;
  border: 1px solid var(--c-line);
  position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.price-card--featured {
  background: linear-gradient(160deg, var(--c-river-deep) 0%, var(--c-river) 100%);
  color: var(--c-white);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}
.price-card--featured h3,
.price-card--featured p { color: var(--c-white); }
.price-card--featured .price-card__head p { color: rgba(255, 255, 255, .75); }
.price-card--featured strong { color: var(--c-sand); }
.price-card--featured li { border-bottom-color: rgba(255, 255, 255, .12); }

.price-card__badge {
  position: absolute;
  top: 1.4rem; right: 1.4rem;
  background: var(--c-gold);
  color: var(--c-white);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}
.price-card__head {
  margin-bottom: 1.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--c-line);
}
.price-card--featured .price-card__head { border-bottom-color: rgba(255, 255, 255, .15); }
.price-card__head h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: .15em;
}
.price-card__head p {
  font-size: .9rem;
  color: var(--c-muted);
  margin: 0;
}

.price-card__list {
  list-style: none;
  margin: 0; padding: 0;
}
.price-card__list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: .85rem 0;
  border-bottom: 1px dashed var(--c-line);
  font-size: .98rem;
}
.price-card__list li:last-child { border-bottom: none; }
.price-card__list strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--c-gold-deep);
  font-weight: 600;
}
.price-card--featured .price-card__list strong { color: var(--c-sand); }

.pricing__note {
  max-width: 720px;
  margin: 2.5rem auto 0;
  text-align: center;
  background: var(--c-white);
  padding: 1rem 1.5rem;
  border-radius: 999px;
  border: 1px solid var(--c-line);
  font-size: .95rem;
  color: var(--c-ink-soft);
}
.pricing__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

/* ---------- Rules ---------- */
.rules { background: var(--c-bg); }

.rules__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}
.rule {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.4rem;
  background: var(--c-white);
  border-radius: var(--radius);
  border: 1px solid var(--c-line);
  transition: border-color .3s, transform .3s;
}
.rule:hover {
  border-color: var(--c-sand);
  transform: translateY(-2px);
}
.rule > span {
  font-size: 1.6rem;
  width: 44px; height: 44px;
  display: flex;
  align-items: center; justify-content: center;
  background: var(--c-bg-alt);
  border-radius: 12px;
  flex-shrink: 0;
}
.rule strong {
  display: block;
  color: var(--c-river-deep);
  margin-bottom: .15em;
  font-weight: 600;
  font-size: .98rem;
}
.rule p {
  font-size: .9rem;
  color: var(--c-ink-soft);
  margin: 0;
  line-height: 1.5;
}

/* ---------- Location ---------- */
.location { background: var(--c-bg-alt); }

.location__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 9;
  border: 1px solid var(--c-line);
}
.location__map iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: saturate(.85);
}

/* ---------- Contact ---------- */
.contact {
  background: var(--c-river-deep);
  color: var(--c-white);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184, 147, 90, .18), transparent 60%);
  pointer-events: none;
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}
.contact h2 { color: var(--c-white); }
.contact .eyebrow { color: var(--c-sand); }
.contact .eyebrow::before { background: var(--c-sand); }
.contact__text p {
  color: rgba(255, 255, 255, .8);
  font-size: 1.05rem;
}

.contact__cards {
  display: grid;
  gap: 1rem;
}
.contact-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 0 1.2rem;
  padding: 1.4rem 1.6rem;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  transition: background .3s, transform .3s, border-color .3s;
}
.contact-card:hover {
  background: rgba(255, 255, 255, .12);
  border-color: var(--c-sand);
  transform: translateX(4px);
}
.contact-card__icon {
  grid-row: 1 / 3;
  width: 48px; height: 48px;
  display: flex;
  align-items: center; justify-content: center;
  background: var(--c-gold);
  border-radius: 12px;
  font-size: 1.4rem;
}
.contact-card strong {
  color: var(--c-white);
  font-weight: 600;
  font-size: 1rem;
  align-self: end;
}
.contact-card span {
  color: rgba(255, 255, 255, .7);
  font-size: .9rem;
}

/* ---------- Footer ---------- */
.footer {
  background: #0d2530;
  color: rgba(255, 255, 255, .6);
  padding: 3rem 0 2rem;
  font-size: .9rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem 3rem;
  align-items: start;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer__brand strong {
  color: var(--c-white);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  display: block;
}
.footer__brand p {
  margin: 0;
  font-size: .85rem;
}
.footer__nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer__nav a {
  font-size: .9rem;
  transition: color .25s;
}
.footer__nav a:hover { color: var(--c-sand); }
.footer__copy {
  grid-column: 1 / -1;
  margin: 1.5rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: .82rem;
  color: rgba(255, 255, 255, .4);
  text-align: center;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(13, 37, 48, .95);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
  padding: 2rem;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  width: auto; height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  color: var(--c-white);
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center; justify-content: center;
  transition: background .25s, transform .25s;
}
.lightbox__close {
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  font-size: 1.6rem;
  line-height: 1;
}
.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 50px; height: 50px;
  font-size: 2rem;
  line-height: 1;
}
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }
.lightbox__close:hover,
.lightbox__nav:hover {
  background: rgba(255, 255, 255, .25);
}
.lightbox__nav:hover { transform: translateY(-50%) scale(1.08); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .about__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about__visual { aspect-ratio: 16/11; max-height: 460px; }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery__item--big,
  .gallery__item:nth-child(4),
  .gallery__item:nth-child(7) { grid-column: span 2; }

  .contact__inner { grid-template-columns: 1fr; gap: 2.5rem; }

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

  .nav__links { display: none; }
  .nav__toggle { display: block; }

  .nav.is-mobile-open .nav__links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: var(--c-bg);
    padding: 1.5rem 1.5rem 2rem;
    margin: 0;
    gap: 1.2rem;
    border-bottom: 1px solid var(--c-line);
    box-shadow: var(--shadow-sm);
  }
  .nav.is-mobile-open .nav__links a { font-size: 1.05rem; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }

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

  .gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
    padding: 0 1rem;
  }
  .gallery__item,
  .gallery__item--big,
  .gallery__item:nth-child(4),
  .gallery__item:nth-child(7) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { justify-content: center; }

  .hero__meta-divider { display: none; }
  .hero__meta { gap: 1.5rem 2rem; }

  .nav__inner > .btn { display: none; }

  .price-card { padding: 1.8rem 1.4rem; }

  .footer__nav { gap: 1rem; }
}

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