/* ================================================
   ALICIA PIÑATAS — Stylesheet
   Color palette: warm pinks, cream, dusty rose
   Fonts: Playfair Display (headings) + DM Sans (body)
   ================================================ */

/* ── Variables ── */
:root {
  --rose:        #E8768A;
  --rose-light:  #F5C0CB;
  --rose-pale:   #FEF0F2;
  --rose-deep:   #C25672;
  --cream:       #FDF8F4;
  --cream-dark:  #F5EDE6;
  --gold:        #D4A843;
  --gold-pale:   #FAF0D7;
  --text:        #2C1F1F;
  --text-mid:    #7A5050;
  --text-light:  #B08888;
  --white:       #FFFFFF;
  --border:      #F0E0E4;
  --border-dark: #DFC0C8;
  --wa:          #25D366;
  --wa-dark:     #1DA851;
  --shadow-sm:   0 2px 8px rgba(196,100,130,.10);
  --shadow-md:   0 6px 24px rgba(196,100,130,.14);
  --shadow-lg:   0 16px 48px rgba(196,100,130,.18);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-pill: 100px;
  --ease: cubic-bezier(.4,0,.2,1);
  --t: all .25s var(--ease);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ── Section headers ── */
.section-tag {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: .4rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 500;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: .6rem;
}
.section-desc {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 540px;
  line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header--left { text-align: left; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .75rem 1.5rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  transition: var(--t);
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.btn--primary {
  background: var(--rose);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(232,118,138,.35);
}
.btn--primary:hover {
  background: var(--rose-deep);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,118,138,.45);
}
.btn--whatsapp {
  background: var(--wa);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37,211,102,.3);
}
.btn--whatsapp:hover {
  background: var(--wa-dark);
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-dark);
}
.btn--outline:hover {
  background: var(--rose-pale);
  border-color: var(--rose-light);
  color: var(--rose-deep);
}
.btn--ghost {
  background: transparent;
  color: var(--rose);
  border: 1.5px solid var(--rose-light);
}
.btn--ghost:hover { background: var(--rose-pale); }
.btn--sm { padding: .45rem .9rem; font-size: .8rem; }

/* ── Badge ── */
.badge {
  display: inline-block;
  padding: .3rem .75rem;
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: .72rem;
  color: var(--text-mid);
}

/* ── Loading / empty ── */
.loading-state {
  grid-column: 1/-1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 3rem;
  color: var(--text-light);
  font-size: .9rem;
}
.spinner {
  width: 34px; height: 34px;
  border: 3px solid var(--rose-light);
  border-top-color: var(--rose);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
.empty-state {
  text-align: center;
  padding: 3rem;
  color: var(--text-mid);
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ── Animations ── */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ================================================
   NAVIGATION
   ================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: var(--t);
}
.nav.scrolled {
  background: rgba(253,248,244,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(196,100,130,.1);
  padding: .7rem 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav__logo {
  display: flex;
  align-items: baseline;
  gap: .3rem;
}
.nav__logo-img {
  height: 42px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav__logo-main {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--rose-deep);
  line-height: 1;
}
.nav__logo-sub {
  font-size: .75rem;
  font-weight: 500;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.nav__links {
  display: none;
  align-items: center;
  gap: .2rem;
}
.nav__link {
  padding: .45rem .7rem;
  font-size: .875rem;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition: var(--t);
}
.nav__link:hover { color: var(--rose); background: var(--rose-pale); }

/* Hamburger */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--t);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav__links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--white);
  padding: 1rem 1.25rem 1.25rem;
  gap: .2rem;
  box-shadow: var(--shadow-md);
  border-top: 1px solid var(--border);
}

/* ================================================
   HERO
   ================================================ */
.hero {
  padding: calc(76px + 4rem) 0 4rem;
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
/* Subtle dot grid texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--border) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: .6;
}
/* Warm glow top-right */
.hero::after {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, var(--rose-pale) 0%, transparent 65%);
  pointer-events: none;
}
.hero__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__eyebrow {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: .9rem;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 11vw, 6.5rem);
  font-weight: 500;
  line-height: 1.0;
  color: var(--text);
  margin-bottom: 1.1rem;
}
.hero__title em {
  color: var(--rose-deep);
  font-style: italic;
  display: block;
}
.hero__desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 420px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}

/* Photo board */
.hero__visual { position: relative; height: 340px; }
.hero__photo-board { position: relative; width: 100%; height: 100%; }
.hero__photo {
  position: absolute;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--white);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__photo--1 { width: 48%; height: 86%; top: 0; left: 0;     transform: rotate(-2.5deg); z-index: 3; }
.hero__photo--2 { width: 44%; height: 74%; top: 14%; left: 28%;  transform: rotate(1.5deg);  z-index: 2; }
.hero__photo--3 { width: 38%; height: 64%; top: 28%; right: 0;   transform: rotate(-1deg);   z-index: 1; }

/* ================================================
   SHIPPING STRIP
   ================================================ */
.shipping-strip {
  background: #1A3A6B;
  padding: .85rem 0;
  position: relative;
  z-index: 1;
}
.shipping-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
}
.shipping-strip__item {
  display: flex;
  align-items: center;
  gap: .55rem;
  color: rgba(255,255,255,.9);
  font-size: .82rem;
  font-weight: 500;
}
.shipping-strip__item svg { flex-shrink: 0; opacity: .85; }
.shipping-strip__item--correo {
  background: #F5C400;
  color: #1A3A6B;
  padding: .3rem .85rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
}
.shipping-strip__item--correo svg { color: #1A3A6B; opacity: 1; }
.shipping-strip__correo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.shipping-strip__via {
  font-size: .65rem;
  font-weight: 400;
  opacity: .75;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.shipping-strip__correo-text strong { font-size: .85rem; }
.shipping-strip__divider {
  width: 1px; height: 20px;
  background: rgba(255,255,255,.2);
}
@media (max-width: 480px) {
  .shipping-strip__divider { display: none; }
  .shipping-strip__inner { gap: .6rem; }
}

/* ================================================
   FEATURED PRODUCTS
   ================================================ */
.featured {
  padding: 5rem 0;
  background: var(--white);
}
.featured__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.featured__cta { text-align: center; }

/* ================================================
   CATALOG
   ================================================ */
.catalog { padding: 5rem 0; }
.catalog__filters {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem;
}
.filter-btn {
  padding: .45rem 1rem;
  border-radius: var(--radius-pill);
  font-size: .83rem;
  font-weight: 500;
  background: var(--cream-dark);
  color: var(--text-mid);
  border: 1.5px solid var(--border);
  transition: var(--t);
}
.filter-btn:hover,
.filter-btn--active {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
}
.catalog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 1.5rem;
}

/* ================================================
   PRODUCT CARDS
   ================================================ */
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: var(--t);
  animation: fadeInUp .4s var(--ease) both;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose-light);
}
.product-card__img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--rose-pale);
  cursor: pointer;
}
.product-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .product-card__img img { transform: scale(1.04); }
.product-card__category {
  position: absolute;
  top: .7rem; left: .7rem;
  background: rgba(253,248,244,.92);
  backdrop-filter: blur(4px);
  padding: .2rem .55rem;
  border-radius: var(--radius-pill);
  font-size: .68rem;
  font-weight: 500;
  color: var(--rose-deep);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.product-card__placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--rose-light);
}
.product-card__body {
  padding: 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: .4rem;
}
.product-card__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}
.product-card__desc {
  font-size: .83rem;
  color: var(--text-mid);
  line-height: 1.5;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: .6rem;
  gap: .5rem;
}
.product-card__price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--rose-deep);
}
.product-card__actions { display: flex; gap: .4rem; }
.btn-detail {
  padding: .45rem .7rem;
  border-radius: var(--radius-sm);
  font-size: .76rem;
  font-weight: 500;
  background: var(--cream-dark);
  color: var(--text-mid);
  transition: var(--t);
}
.btn-detail:hover { background: var(--rose-pale); color: var(--rose-deep); }
.btn-wa-card {
  padding: .45rem .7rem;
  border-radius: var(--radius-sm);
  font-size: .76rem;
  font-weight: 500;
  background: var(--wa);
  color: var(--white);
  display: flex; align-items: center; gap: .3rem;
  transition: var(--t);
}
.btn-wa-card:hover { background: var(--wa-dark); }

/* ================================================
   GALLERY
   ================================================ */
.gallery {
  padding: 5rem 0;
  background: var(--cream-dark);
}
.gallery__masonry {
  columns: 2;
  column-gap: 1rem;
}
.gallery__item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery__item img {
  width: 100%; height: auto; display: block;
  transition: transform .4s ease;
}
.gallery__item:hover img { transform: scale(1.04); }
.gallery__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(44,31,31,.65) 0%, transparent 55%);
  display: flex; align-items: flex-end;
  padding: .9rem;
  opacity: 0;
  transition: opacity .3s ease;
}
.gallery__item:hover .gallery__overlay { opacity: 1; }
.gallery__overlay span {
  color: var(--white);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .04em;
}

/* ================================================
   HOW TO ORDER
   ================================================ */
.how-to {
  padding: 5rem 0;
  background: var(--white);
}
.how-to__steps {
  display: flex;
  flex-direction: column;
  margin-bottom: 3rem;
}
.step {
  display: flex;
  gap: 1.2rem;
  padding: 1.4rem 0;
  align-items: flex-start;
}
.step__number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--rose-light);
  line-height: 1;
  min-width: 44px;
  flex-shrink: 0;
}
.step__content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: .3rem;
}
.step__content p {
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.step__connector {
  width: 1px; height: 22px;
  background: var(--border-dark);
  margin-left: 21px;
}
.how-to__cta { text-align: center; }
.how-to__cta p { color: var(--text-mid); margin-bottom: 1rem; }

/* ================================================
   CONTACT
   ================================================ */
.contact { padding: 5rem 0; }
.contact__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.contact__desc {
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.75rem;
  max-width: 440px;
}
.contact__links { display: flex; flex-direction: column; gap: 1rem; }
.contact__link {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .9rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  background: var(--white);
  transition: var(--t);
}
.contact__link:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
.contact__link--wa:hover  { border-color: var(--wa);      background: #F0FFF5; }
.contact__link--ig:hover  { border-color: #E1306C;        background: #FFF0F5; }
.contact__link--wa svg { color: var(--wa); }
.contact__link--ig svg { color: #E1306C; }
.contact__link strong { display: block; font-size: .88rem; font-weight: 500; color: var(--text); }
.contact__link span   { font-size: .78rem; color: var(--text-light); }

.contact__decoration { display: flex; justify-content: center; }
.contact__deco-card {
  background: var(--rose-pale);
  border: 1.5px solid var(--rose-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  max-width: 280px;
  text-align: center;
}
.contact__deco-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--rose-deep);
  line-height: 1.4;
}
.contact__deco-bar {
  width: 44px; height: 3px;
  background: var(--rose-light);
  border-radius: 2px;
  margin: 1.25rem auto .75rem;
}
.contact__deco-sub {
  font-size: .8rem;
  color: var(--text-light);
  letter-spacing: .04em;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--text);
  color: rgba(255,255,255,.55);
  padding: 2.5rem 0;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
.footer__brand { display: flex; flex-direction: column; align-items: center; gap: .25rem; }
.footer__logo {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--rose-light);
}
.footer__brand p { font-size: .8rem; }
.footer__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem 1.4rem; }
.footer__nav a { font-size: .83rem; transition: color .2s; }
.footer__nav a:hover { color: var(--rose-light); }
.footer__copy { font-size: .72rem; opacity: .45; }

/* ================================================
   FLOATING WHATSAPP
   ================================================ */
.float-wa {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 90;
  background: var(--wa);
  color: var(--white);
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: var(--t);
}
.float-wa:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,.5); }

/* ================================================
   MODAL
   ================================================ */
.modal {
  position: fixed; inset: 0;
  z-index: 200;
  display: none;
  align-items: flex-end;
  justify-content: center;
}
.modal.open { display: flex; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(44,31,31,.58);
  backdrop-filter: blur(4px);
}
.modal__panel {
  position: relative;
  background: var(--white);
  width: 100%;
  max-height: 92svh;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow-y: auto;
  padding: 1.5rem 1.25rem 2rem;
  transform: translateY(100%);
  transition: transform .35s var(--ease);
  scrollbar-width: thin;
}
.modal.open .modal__panel { transform: translateY(0); }
.modal__close {
  position: sticky; top: 0; float: right; z-index: 10;
  background: var(--cream-dark);
  border-radius: 50%;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; color: var(--text-mid);
  margin-bottom: 1rem;
  transition: var(--t);
}
.modal__close:hover { background: var(--rose-pale); color: var(--rose-deep); }

/* Modal product content */
.modal-img {
  width: 100%; aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--rose-pale);
  margin-bottom: 1.25rem;
}
.modal-img img { width: 100%; height: 100%; object-fit: cover; }
.modal-cat {
  font-size: .7rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--rose); margin-bottom: .4rem;
}
.modal-name {
  font-family: var(--font-display);
  font-size: 1.55rem; font-weight: 500;
  color: var(--text); margin-bottom: .5rem;
  line-height: 1.2;
}
.modal-price {
  font-family: var(--font-display);
  font-size: 1.9rem; font-weight: 600;
  color: var(--rose-deep); margin-bottom: .9rem;
}
.modal-desc {
  font-size: .93rem; color: var(--text-mid);
  line-height: 1.7; margin-bottom: 1.4rem;
}
.modal-cta { margin-bottom: 2rem; }
.modal-cta .btn { width: 100%; justify-content: center; padding: .9rem; font-size: .95rem; }

/* Related products */
.modal-related h4 {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 500;
  color: var(--text); margin-bottom: .9rem;
}
.modal-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .65rem;
}
.modal-related__item {
  border-radius: var(--radius-sm);
  overflow: hidden; cursor: pointer;
  background: var(--rose-pale);
}
.modal-related__item img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  transition: transform .3s ease;
}
.modal-related__item:hover img { transform: scale(1.05); }
.modal-related__name {
  padding: .35rem .45rem;
  font-size: .7rem; color: var(--text-mid); font-weight: 500;
  line-height: 1.3;
}

/* ================================================
   RESPONSIVE
   ================================================ */

/* ≥ 480px — slightly larger mobile */
@media (min-width: 480px) {
  .hero__visual { height: 380px; }
}

/* ≥ 640px — tablet portrait */
@media (min-width: 640px) {
  .gallery__masonry { columns: 3; column-gap: 1rem; }
  .how-to__steps { flex-direction: row; align-items: flex-start; }
  .step {
    flex-direction: column;
    flex: 1; padding: 0;
    align-items: center; text-align: center;
  }
  .step__connector {
    width: auto; height: 1px;
    background: var(--border-dark);
    flex: 1;
    margin: 26px 0 0;
    min-width: 1rem;
  }
}

/* ≥ 768px — tablet landscape / small desktop */
@media (min-width: 768px) {
  .nav__links { display: flex; }
  .nav__hamburger { display: none; }

  .hero__layout {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
  .hero__visual { height: 460px; }

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

/* ≥ 1024px — desktop */
@media (min-width: 1024px) {
  .gallery__masonry { columns: 4; column-gap: 1.1rem; }

  .modal__panel {
    max-width: 680px;
    border-radius: var(--radius-lg);
    align-self: center;
    max-height: 88vh;
    padding: 2rem 2rem 2.5rem;
  }
  .modal { align-items: center; }
}
