:root {
  --red: #C41E3A;
  --red-soft: #fce8ec;
  --navy: #1a4a72;
  --navy-deep: #0f3558;
  --ink: #1e293b;
  --text: #334155;
  --muted: #64748b;
  --line: rgba(26, 74, 114, 0.1);
  --bg: #f3f7fb;
  --bg-warm: #faf8f5;
  --card: #ffffff;
  --sky: #dceaf5;
  --coral: #f4a9a0;
  --sand: #f0e6d8;
  --wa: #22c55e;
  --shadow-sm: 0 2px 8px rgba(26, 74, 114, 0.06);
  --shadow: 0 12px 36px rgba(26, 74, 114, 0.1);
  --shadow-lg: 0 20px 50px rgba(26, 74, 114, 0.14);
  --radius: 16px;
  --radius-sm: 12px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: "Outfit", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
  line-height: 1.6;
  font-size: 1rem;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(220, 234, 245, 0.9), transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(244, 169, 160, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(240, 230, 216, 0.35), transparent 60%),
    linear-gradient(180deg, #f6f9fc 0%, var(--bg) 40%, #eef4f9 100%);
  pointer-events: none;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--navy); color: #fff; padding: 8px 16px; z-index: 9999;
}
.skip-link:focus { left: 12px; top: 12px; }

/* Sale bar */
.sale-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 14px;
  padding: 11px 18px;
  padding-top: calc(11px + env(safe-area-inset-top, 0px));
  background: linear-gradient(90deg, var(--red) 0%, #d63a52 100%);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.01em;
}
.sale-bar-label {
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-weight: 800;
  font-size: 0.68rem;
  background: rgba(255,255,255,0.2);
  padding: 5px 12px;
  border-radius: 999px;
  animation: pulse-badge 2.5s ease-in-out infinite;
}
@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.25); }
  50% { box-shadow: 0 0 0 6px rgba(255,255,255,0); }
}
.sale-bar-date { font-weight: 800; font-size: 0.95rem; }
.sale-bar-sep { opacity: 0.45; }
.sale-bar-cta { opacity: 0.92; font-weight: 500; }

/* Logo */
.logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  line-height: 1;
  transition: transform 0.3s var(--ease);
}
.logo:hover { transform: translateY(-1px); }
.logo-mague {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--red);
  letter-spacing: -0.5px;
}
.logo-bazar {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: 1px;
}
.logo-tags {
  display: flex;
  gap: 3px;
  align-items: flex-end;
  margin-top: 4px;
}
.tag {
  display: grid;
  place-items: center;
  width: 22px;
  height: 28px;
  border-radius: 5px;
  color: #fff;
  font-weight: 800;
  font-size: 0.72rem;
  box-shadow: 0 3px 8px rgba(0,0,0,0.12);
  position: relative;
  transition: transform 0.25s var(--ease);
}
.logo:hover .tag { transform: translateY(-2px); }
.logo:hover .tag:nth-child(2) { transition-delay: 0.03s; }
.logo:hover .tag:nth-child(3) { transition-delay: 0.06s; }
.logo:hover .tag:nth-child(4) { transition-delay: 0.09s; }
.logo:hover .tag:nth-child(5) { transition-delay: 0.12s; }
.tag::before {
  content: "";
  position: absolute;
  top: -6px;
  width: 1.5px;
  height: 6px;
  background: #94a3b8;
}
.tag-b { background: var(--red); }
.tag-a1 { background: #e07b4a; }
.tag-z { background: #3d9b6e; }
.tag-a2 { background: #4a8fd4; }
.tag-r { background: #6b6fd4; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.nav { display: flex; gap: 6px; font-weight: 600; font-size: 0.88rem; }
.nav a {
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.nav a:hover { color: var(--navy); background: var(--sky); }
.nav a.active { color: var(--navy); background: rgba(220, 234, 245, 0.7); font-weight: 700; }

.mobile-nav {
  display: none;
  gap: 8px;
  padding: 8px 16px 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.mobile-nav::-webkit-scrollbar { display: none; }
.mobile-nav a {
  flex: 0 0 auto;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--sky);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.82rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: background 0.2s, transform 0.2s;
}
.mobile-nav a:active { transform: scale(0.96); }
.mobile-nav a.active { background: var(--navy); color: #fff; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.94rem;
  border: none;
  cursor: pointer;
  min-height: 48px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn-wa {
  background: linear-gradient(135deg, #1aad4e, var(--wa));
  color: #fff;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.28);
}
.btn-wa:hover { box-shadow: 0 12px 32px rgba(34, 197, 94, 0.35); }
.btn-red {
  background: linear-gradient(135deg, var(--red), #d63a52);
  color: #fff;
  box-shadow: 0 8px 24px rgba(196, 30, 58, 0.22);
}
.btn-red:hover { box-shadow: 0 12px 32px rgba(196, 30, 58, 0.3); }
.btn-outline {
  background: var(--card);
  color: var(--navy);
  border: 2px solid var(--sky);
  box-shadow: var(--shadow-sm);
}
.btn-outline:hover {
  border-color: var(--navy);
  background: #fff;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 0 0 56px;
  background: linear-gradient(165deg, #e8f2fa 0%, #f5f8fc 35%, #faf6f2 100%);
  border-bottom: 1px solid var(--line);
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}
.hero-glow-1 {
  width: 420px; height: 420px;
  background: rgba(196, 30, 58, 0.18);
  top: -120px; left: -80px;
  animation: float-glow 8s ease-in-out infinite;
}
.hero-glow-2 {
  width: 360px; height: 360px;
  background: rgba(74, 143, 212, 0.22);
  top: 10%; right: -100px;
  animation: float-glow 10s ease-in-out infinite reverse;
}
.hero-glow-3 {
  width: 280px; height: 280px;
  background: rgba(34, 197, 94, 0.12);
  bottom: -60px; left: 35%;
  animation: float-glow 12s ease-in-out infinite;
}
@keyframes float-glow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -15px) scale(1.05); }
}

.hero-ticker {
  position: relative;
  z-index: 2;
  background: linear-gradient(90deg, var(--navy-deep), var(--navy));
  color: rgba(255,255,255,0.9);
  padding: 10px 0;
  overflow: hidden;
  border-bottom: 2px solid rgba(255,255,255,0.08);
}
.hero-ticker-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: ticker 28s linear infinite;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hero-ticker-track span {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 40px;
}
.hero-ticker-track span::after {
  content: "✦";
  color: var(--coral);
  font-size: 0.65rem;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 40px 20px 0;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-burst {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--red), #e85a6f);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
  box-shadow: 0 6px 20px rgba(196, 30, 58, 0.35);
  animation: burst-pop 2s ease-in-out infinite;
}
@keyframes burst-pop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

.hero-brand {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.3px;
  margin-bottom: 8px;
}

.hero h1 {
  display: flex;
  flex-direction: column;
  line-height: 0.92;
  margin: 0;
}
.hero-line {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: clamp(3.6rem, 13vw, 6.2rem);
  font-weight: 900;
  letter-spacing: -2px;
  color: var(--navy-deep);
  line-height: 0.92;
  -webkit-text-stroke: 0;
}
.hero-line-accent {
  color: var(--red);
}

.hero-date-block {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
  padding: 12px 20px;
  background: var(--card);
  border: 2px solid var(--sky);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}
.hero-day {
  font-size: clamp(1.1rem, 3vw, 1.45rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.3px;
}
.hero-year {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--red);
  background: var(--red-soft);
  padding: 4px 10px;
  border-radius: 8px;
}

.hero-lead {
  margin-top: 18px;
  font-size: clamp(1rem, 2.5vw, 1.12rem);
  line-height: 1.65;
  color: var(--text);
  max-width: 52ch;
}
.hero-lead strong { color: var(--navy); font-weight: 800; }

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.hero-chip {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  transition: transform 0.25s var(--ease), background 0.25s;
}
.hero-chip:hover {
  transform: translateY(-2px);
  background: #fff;
}

.hero-cta-stack {
  margin-top: 28px;
  display: grid;
  gap: 14px;
  max-width: 480px;
}

.btn-hero-wa {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 50%, #4ade80 100%);
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 32px rgba(34, 197, 94, 0.38), 0 0 0 0 rgba(34, 197, 94, 0.3);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  animation: wa-glow 2.5s ease-in-out infinite;
  min-height: 72px;
}
@keyframes wa-glow {
  0%, 100% { box-shadow: 0 10px 32px rgba(34, 197, 94, 0.38), 0 0 0 0 rgba(34, 197, 94, 0.2); }
  50% { box-shadow: 0 14px 40px rgba(34, 197, 94, 0.48), 0 0 0 10px rgba(34, 197, 94, 0); }
}
.btn-hero-wa:hover {
  transform: translateY(-3px) scale(1.01);
  animation: none;
  box-shadow: 0 16px 44px rgba(34, 197, 94, 0.5);
}
.btn-hero-wa:active { transform: scale(0.98); }
.btn-hero-wa-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.2);
  border-radius: 14px;
  display: grid;
  place-items: center;
}
.btn-hero-wa-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}
.btn-hero-wa-text strong {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.2px;
}
.btn-hero-wa-text small {
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.9;
}
.btn-hero-wa-phone {
  font-size: 0.95rem;
  font-weight: 800;
  background: rgba(255,255,255,0.22);
  padding: 8px 12px;
  border-radius: 10px;
  white-space: nowrap;
}

.hero-secondary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-btn-light {
  flex: 1;
  min-width: 140px;
  font-size: 0.88rem;
  padding: 12px 18px;
  min-height: 44px;
}

.hero-visual {
  position: relative;
}
.hero-sticker {
  position: absolute;
  top: -8px;
  right: -8px;
  z-index: 3;
  width: 88px;
  height: 88px;
  background: linear-gradient(145deg, var(--red), #d63a52);
  color: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 8px 24px rgba(196, 30, 58, 0.45);
  animation: sticker-spin 6s ease-in-out infinite;
  border: 3px solid #fff;
}
.hero-sticker-top {
  font-size: 0.62rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
}
.hero-sticker-main {
  font-size: 1.1rem;
  letter-spacing: -0.5px;
}
@keyframes sticker-spin {
  0%, 100% { transform: rotate(-6deg) scale(1); }
  50% { transform: rotate(6deg) scale(1.06); }
}

.hero-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 22px;
  padding: 14px;
  box-shadow: var(--shadow-lg);
}
.hero-showcase figure {
  margin: 0;
  background: var(--card);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.hero-showcase figure:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow);
  z-index: 2;
}
.hero-showcase img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.hero-showcase figure:hover img { transform: scale(1.06); }
.hero-showcase figcaption {
  font-size: 0.74rem;
  font-weight: 700;
  padding: 9px 10px;
  color: var(--navy);
  line-height: 1.3;
  background: var(--card);
}
.hero-showcase .featured { grid-column: 1 / -1; }
.hero-showcase .featured img { height: 220px; }

/* Strip */
.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px 8px;
}
.strip div {
  background: var(--card);
  padding: 20px 16px;
  text-align: center;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.strip div:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.strip strong {
  display: block;
  font-size: 0.98rem;
  color: var(--navy);
  font-weight: 800;
}
.strip span {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
  margin-top: 4px;
  display: block;
}

/* Sections */
.section {
  padding: 64px 20px;
  scroll-margin-top: 130px;
}
.section-inner { max-width: 1140px; margin: 0 auto; }
.section-head {
  text-align: center;
  margin-bottom: 36px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.section-head h2 {
  font-size: clamp(1.65rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.section-head p {
  margin-top: 12px;
  color: var(--muted);
  font-weight: 500;
  font-size: 1.02rem;
  line-height: 1.6;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* Sale callout */
.sale-callout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 32px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.sale-callout::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--red), #e07b4a);
  border-radius: 5px 0 0 5px;
}
.sale-callout h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
}
.sale-callout p {
  color: var(--text);
  line-height: 1.7;
  max-width: 58ch;
  font-size: 1rem;
}
.sale-callout em {
  font-style: normal;
  font-weight: 700;
  color: var(--red);
}

/* Categories */
.categories-section {
  background: linear-gradient(180deg, transparent, rgba(220, 234, 245, 0.35), transparent);
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.category-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(26, 74, 114, 0.15);
}
.category-badge {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 14px;
  transition: transform 0.3s var(--ease);
}
.category-card:hover .category-badge { transform: scale(1.08) rotate(-3deg); }
.category-card:nth-child(1) .category-badge { background: linear-gradient(135deg, var(--red), #d63a52); }
.category-card:nth-child(2) .category-badge { background: linear-gradient(135deg, #4a8fd4, #3b7fc4); }
.category-card:nth-child(3) .category-badge { background: linear-gradient(135deg, #e07b4a, #c96a3d); }
.category-card:nth-child(4) .category-badge { background: linear-gradient(135deg, #3d9b6e, #2d8a5e); }
.category-card:nth-child(5) .category-badge { background: linear-gradient(135deg, var(--navy), var(--navy-deep)); }
.category-card h3 {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
}
.category-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}
.category-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 18px;
  align-items: start;
  background: linear-gradient(135deg, #fff 0%, var(--bg-warm) 100%);
}
.category-wide .category-badge { grid-row: 1 / 3; margin-bottom: 0; align-self: center; }

/* Gallery */
.gallery-band { background: transparent; }
.gallery-note {
  margin-top: 10px !important;
  font-size: 0.9rem !important;
  color: var(--red) !important;
  font-weight: 600 !important;
  background: var(--red-soft);
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
}
.featured-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}
.featured-row figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease);
}
.featured-row figure:hover { transform: translateY(-4px); }
.featured-row img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.featured-row figure:hover img { transform: scale(1.03); }
.featured-row figcaption {
  text-align: center;
  font-weight: 600;
  padding: 12px;
  color: var(--navy);
  font-size: 0.9rem;
  background: var(--card);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 14px;
}
.gallery-item {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  border: 1px solid var(--line);
  padding: 0;
  text-align: left;
  font: inherit;
  color: inherit;
  touch-action: manipulation;
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.gallery-item:active { transform: scale(0.98); }
.gallery-item .img-wrap { overflow: hidden; }
.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item figcaption {
  padding: 12px 14px;
  font-weight: 600;
  font-size: 0.84rem;
  color: var(--navy);
  text-align: center;
  line-height: 1.35;
}
.gallery-cta { text-align: center; margin-top: 36px; }

/* About */
.about {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  border-radius: 28px;
  max-width: 1100px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 8px 0;
}
.about h2 {
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.2;
}
.about p {
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  margin-bottom: 14px;
  font-size: 1rem;
}
.about strong { color: #fff; }
.perks { display: grid; gap: 10px; }
.perk {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  transition: background 0.25s, transform 0.25s var(--ease);
}
.perk:hover {
  background: rgba(255,255,255,0.12);
  transform: translateX(4px);
}
.perk-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--coral);
  box-shadow: 0 0 8px rgba(244, 169, 160, 0.6);
}

/* Contact */
.contact { background: transparent; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  align-items: stretch;
}
.contact-card {
  background: var(--card);
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s var(--ease);
}
.contact-card:hover { transform: translateY(-3px); }
.contact-addr {
  margin-top: 22px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ink);
}
.contact-city {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.96rem;
  line-height: 1.55;
}
.phones {
  margin: 20px 0 8px;
  font-weight: 800;
  color: var(--navy);
  font-size: 1.02rem;
}
.phone-note {
  font-size: 0.86rem;
  color: var(--muted);
  margin-bottom: 20px;
}
.owner {
  margin-top: 18px;
  font-size: 0.86rem;
  color: var(--muted);
  font-weight: 500;
}

.map-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--card);
  border: 1px solid var(--line);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease);
}
.map-wrap:hover { transform: translateY(-2px); }
.map-wrap iframe {
  width: 100%;
  flex: 1;
  min-height: 320px;
  border: 0;
  display: block;
}
.map-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 16px;
  font-weight: 700;
  color: var(--navy);
  background: var(--bg-warm);
  border-top: 1px solid var(--line);
  min-height: 52px;
  transition: background 0.2s, color 0.2s;
}
.map-link:hover { background: var(--sky); color: var(--navy-deep); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(15, 40, 70, 0.92);
  backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
  animation: fade-in 0.25s var(--ease);
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(96vw, 1000px);
  max-height: 85vh;
  border-radius: 14px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
  animation: zoom-in 0.3s var(--ease);
}
@keyframes zoom-in {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.lightbox-cap {
  position: absolute;
  bottom: 28px; left: 0; right: 0;
  text-align: center;
  color: #fff;
  font-weight: 600;
  font-size: 0.96rem;
  padding: 0 20px;
}
.lightbox-close,
.lightbox-nav {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255,255,255,0.25);
  transform: scale(1.05);
}
.lightbox-close {
  position: absolute; top: 16px; right: 20px;
  width: 46px; height: 46px; border-radius: 50%;
  font-size: 1.5rem; line-height: 1;
}
.lightbox-nav {
  position: absolute; top: 50%;
  width: 50px; height: 50px; border-radius: 50%;
  font-size: 1.4rem;
}
.lightbox-prev { left: 16px; transform: translateY(-50%); }
.lightbox-next { right: 16px; transform: translateY(-50%); }
.lightbox-prev:hover { transform: translateY(-50%) scale(1.05); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.05); }

/* Footer & FAB */
.site-footer {
  background: var(--card);
  color: var(--muted);
  text-align: center;
  padding: 24px 16px;
  font-size: 0.84rem;
  font-weight: 500;
  border-top: 1px solid var(--line);
  margin-top: 24px;
}
.fab-wa {
  position: fixed;
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  right: calc(18px + env(safe-area-inset-right, 0px));
  z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, #1aad4e, var(--wa));
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 28px rgba(34, 197, 94, 0.4);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  animation: fab-pulse 3s ease-in-out infinite;
}
@keyframes fab-pulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(34, 197, 94, 0.4); }
  50% { box-shadow: 0 8px 36px rgba(34, 197, 94, 0.55), 0 0 0 8px rgba(34, 197, 94, 0.08); }
}
.fab-wa:hover {
  transform: scale(1.08);
  animation: none;
  box-shadow: 0 12px 36px rgba(34, 197, 94, 0.5);
}
.fab-wa svg { width: 28px; height: 28px; fill: currentColor; }

@media (max-width: 900px) {
  .nav { display: none; }
  .mobile-nav { display: flex; }
  .header-inner { padding: 12px 14px; gap: 10px; }
  .btn-header-wa {
    padding: 10px 14px;
    min-height: 44px;
    font-size: 0.82rem;
  }
  .section { padding: 48px 16px; scroll-margin-top: 118px; }
  .hero { padding: 0 0 40px; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 16px 0;
  }
  .hero-main { order: 1; }
  .hero-visual { order: 2; }
  .hero-line { letter-spacing: -2px; }
  .hero-cta-stack { max-width: none; }
  .btn-hero-wa {
    grid-template-columns: auto 1fr;
    gap: 12px;
  }
  .btn-hero-wa-phone {
    grid-column: 1 / -1;
    text-align: center;
    justify-self: stretch;
  }
  .hero-secondary-actions { flex-direction: column; }
  .hero-btn-light { width: 100%; }
  .hero-showcase .featured img { height: 190px; }
  .hero-showcase img { height: 140px; }
  .hero-sticker {
    width: 72px; height: 72px;
    top: -4px; right: 4px;
  }
  .hero-sticker-main { font-size: 0.95rem; }
  .strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 16px 8px;
  }
  .about {
    border-radius: 20px;
    margin: 0 16px;
  }
  .about-grid, .contact-grid, .featured-row { grid-template-columns: 1fr; }
  .sale-callout {
    flex-direction: column;
    align-items: stretch;
    padding: 24px 20px 24px 28px;
  }
  .sale-callout .btn { width: 100%; }
  .categories-grid { grid-template-columns: 1fr; }
  .category-wide { grid-template-columns: 1fr; gap: 8px; }
  .category-wide .category-badge { grid-row: auto; }
  .featured-row img { height: 220px; }
  .contact-card { padding: 28px 20px; }
  .map-wrap { min-height: 300px; }
  .map-wrap iframe { min-height: 260px; }
  .sale-bar-sep, .sale-bar-cta { display: none; }
}

@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .gallery-item img { height: 140px; }
  .gallery-item figcaption {
    font-size: 0.74rem;
    padding: 9px 8px;
  }
  .section-head h2 { font-size: 1.5rem; }
  .phones { font-size: 0.94rem; }
}

@media (max-width: 380px) {
  .btn-header-wa .btn-label { display: none; }
  .btn-header-wa { padding: 10px 12px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}