/* =========================================
   IASMYN MONTENEGRO — Design System
   Soft Luxury / Artisan Confectionery
   ========================================= */

/* ===== DESIGN TOKENS ===== */
:root {
  /* Brand Colors */
  --mint:         #82C5C0;
  --mint-light:   #B8E0DB;
  --mint-dark:    #5BA8A3;
  --mint-10:      rgba(130, 197, 192, 0.1);
  --mint-20:      rgba(130, 197, 192, 0.2);

  --rose:         #D98CA0;
  --rose-light:   #EDB8C8;
  --rose-dark:    #B86A82;
  --rose-10:      rgba(217, 140, 160, 0.1);
  --rose-20:      rgba(217, 140, 160, 0.2);

  --cream:        #FAF6F2;
  --cream-2:      #F3EDE7;
  --cream-3:      #E8DDD5;
  --cream-4:      #DDD0C7;

  --dark:         #1A1410;
  --dark-2:       #2C2018;
  --dark-3:       #3D2E24;

  --brown:        #5C4B3A;
  --brown-light:  #8A7060;
  --brown-2:      #A08870;

  --white:        #FFFFFF;
  --gold:         #C9A96E;
  --gold-light:   #E8D5A3;

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', system-ui, -apple-system, sans-serif;

  /* Shadows */
  --shadow-xs:   0 1px 6px rgba(90, 60, 40, 0.06);
  --shadow-sm:   0 2px 12px rgba(90, 60, 40, 0.09);
  --shadow-md:   0 8px 32px rgba(90, 60, 40, 0.12);
  --shadow-lg:   0 20px 60px rgba(90, 60, 40, 0.16);
  --shadow-xl:   0 40px 80px rgba(90, 60, 40, 0.2);
  --shadow-rose: 0 8px 32px rgba(185, 106, 130, 0.3);
  --shadow-mint: 0 8px 32px rgba(91, 168, 163, 0.3);
  --shadow-gold: 0 8px 32px rgba(201, 169, 110, 0.3);

  /* Radius */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   32px;
  --r-2xl:  48px;
  --r-full: 9999px;

  /* Transitions */
  --t:      0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 0.55s cubic-bezier(0.4, 0, 0.2, 1);

  /* Spacing */
  --section-py: 96px;
  --section-py-sm: 64px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ===== LAYOUT ===== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 780px; }
.container--wide   { max-width: 1320px; }

/* ===== TYPOGRAPHY ===== */
.label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin-bottom: 10px;
}

.h1 { font-family: var(--font-serif); font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 300; line-height: 1.1; }
.h2 { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; line-height: 1.15; }
.h3 { font-family: var(--font-serif); font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 400; line-height: 1.25; }
.h4 { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 400; }

.h1 em, .h2 em, .h3 em { font-style: italic; color: var(--rose-dark); }
.h1 strong, .h2 strong { font-weight: 600; color: var(--mint-dark); }

.body-lg { font-size: 1.05rem; line-height: 1.8; color: var(--brown); }
.body-md { font-size: 0.95rem; line-height: 1.75; color: var(--brown-light); }
.body-sm { font-size: 0.85rem; color: var(--brown-2); }

/* ===== SECTION HEADERS ===== */
.sec-header { text-align: center; margin-bottom: 56px; }
.sec-header .label { display: block; text-align: center; margin-bottom: 12px; }
.sec-header .h2 { margin-bottom: 14px; }
.sec-header .body-lg { max-width: 580px; margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 34px;
  border-radius: var(--r-full);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--t);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: var(--t);
}
.btn:hover::after { background: rgba(255,255,255,0.12); }
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-rose);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 42px rgba(185, 106, 130, 0.45); }

.btn-secondary {
  background: linear-gradient(135deg, var(--mint) 0%, var(--mint-dark) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-mint);
}
.btn-secondary:hover { transform: translateY(-3px); box-shadow: 0 14px 42px rgba(91, 168, 163, 0.45); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #9E7940 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 14px 42px rgba(201, 169, 110, 0.5); }

.btn-outline {
  background: transparent;
  color: var(--brown);
  border-color: var(--cream-3);
}
.btn-outline:hover { background: var(--cream-2); border-color: var(--rose-light); }

.btn-outline-white {
  background: transparent;
  color: rgba(250,246,242,0.9);
  border-color: rgba(250,246,242,0.3);
}
.btn-outline-white:hover { background: rgba(250,246,242,0.1); border-color: rgba(250,246,242,0.6); }

.btn-lg { padding: 18px 44px; font-size: 0.95rem; }
.btn-xl { padding: 22px 56px; font-size: 1rem; }
.btn-full { width: 100%; }
.btn-icon-left svg, .btn-icon-left img { flex-shrink: 0; }

/* ===== NAV / HEADER ===== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition: var(--t);
}
.site-header.solid {
  background: rgba(250,246,242,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--cream-3), var(--shadow-xs);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav__logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: var(--t);
}
.nav__logo:hover img { opacity: 0.85; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__link {
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--brown);
  position: relative;
  transition: color var(--t);
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--rose);
  border-radius: 2px;
  transition: width var(--t);
}
.nav__link:hover { color: var(--dark); }
.nav__link:hover::after { width: 100%; }
.nav__link.active { color: var(--rose-dark); }
.nav__link.active::after { width: 100%; }

.nav__cta {
  padding: 10px 24px;
  border-radius: var(--r-full);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  color: #fff;
  box-shadow: var(--shadow-rose);
  transition: var(--t);
}
.nav__cta:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(185,106,130,0.4); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 10;
}
.nav__burger span {
  display: block; width: 26px; height: 2px;
  background: var(--brown); border-radius: 2px;
  transition: var(--t);
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 76px 0 0;
  background: rgba(250,246,242,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 40px 24px;
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav__link { font-size: 1.4rem; font-family: var(--font-serif); }

/* ===== FLOATING WHATSAPP ===== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 998;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: var(--t);
}
.wa-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 10px 36px rgba(37,211,102,0.55);
}
.wa-float svg { width: 26px; height: 26px; }

/* ===== REVEAL ANIMATIONS ===== */
[data-fade] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-fade].visible {
  opacity: 1;
  transform: translateY(0);
}
[data-fade-left] {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-fade-left].visible { opacity: 1; transform: translateX(0); }
[data-fade-right] {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-fade-right].visible { opacity: 1; transform: translateX(0); }

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.text-rose { color: var(--rose-dark); }
.text-mint { color: var(--mint-dark); }
.text-cream { color: var(--cream); }
.bg-cream { background: var(--cream); }
.bg-cream2 { background: var(--cream-2); }
.bg-white { background: var(--white); }
.bg-dark { background: var(--dark); }
.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }

/* ===== DIVIDER ===== */
.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  my: 48px;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--cream-3);
}

/* ===== BADGE ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.badge-rose  { background: var(--rose-10);  color: var(--rose-dark);  border: 1px solid var(--rose-20); }
.badge-mint  { background: var(--mint-10);  color: var(--mint-dark);  border: 1px solid var(--mint-20); }
.badge-cream { background: rgba(255,255,255,0.1); color: rgba(250,246,242,0.85); border: 1px solid rgba(255,255,255,0.2); }

/* ===== CHECK LIST ===== */
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--brown);
  line-height: 1.55;
}
.check-list li .chk {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint) 0%, var(--mint-dark) 100%);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  margin-top: 1px;
}
.check-list.dark li { color: rgba(250,246,242,0.85); }

/* ===== CARD STYLES ===== */
.card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--cream-3);
  box-shadow: var(--shadow-sm);
  transition: var(--t);
  overflow: hidden;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.card-dark {
  background: var(--dark-2);
  border-color: rgba(255,255,255,0.06);
  color: var(--cream);
}
.card-dark:hover { border-color: var(--rose); }

/* ===== MODULE CARD ===== */
.module-card {
  background: var(--cream-2);
  border: 1px solid var(--cream-3);
  border-radius: var(--r-md);
  padding: 22px 24px;
  transition: var(--t);
}
.module-card:hover { border-color: var(--mint); background: var(--cream); }
.module-card__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.module-card__title .icon { font-size: 1.3rem; }

/* ===== PRICE BOX ===== */
.price-box {
  background: var(--white);
  border: 1px solid var(--cream-3);
  border-radius: var(--r-xl);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.price-box.featured {
  background: var(--dark);
  border-color: rgba(255,255,255,0.08);
  color: var(--cream);
}
.price-box .old-price {
  font-size: 0.95rem;
  color: var(--brown-2);
  text-decoration: line-through;
  margin-bottom: 4px;
}
.price-box.featured .old-price { color: rgba(250,246,242,0.4); }
.price-box .price-main {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 4px;
}
.price-box.featured .price-main { color: var(--cream); }
.price-box .price-installments {
  font-size: 0.88rem;
  color: var(--brown-light);
  margin-bottom: 28px;
}
.price-box.featured .price-installments { color: rgba(250,246,242,0.6); }
.price-box .price-label {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 6px;
}
.price-box .price-tag {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown-2);
  margin-bottom: 20px;
}
.price-box.featured .price-tag { color: rgba(250,246,242,0.5); }

/* ===== GUARANTEE BOX ===== */
.guarantee-box {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--cream-2);
  border: 1px solid var(--cream-3);
  border-radius: var(--r-lg);
  padding: 28px 32px;
}
.guarantee-box .g-img { width: 80px; flex-shrink: 0; }
.guarantee-box h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 6px;
}

/* ===== TESTIMONIAL CARD ===== */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--cream-3);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--t);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-card img { width: 100%; display: block; }

/* ===== SECTION PATTERNS ===== */
.bg-pattern-dots {
  background-image: radial-gradient(circle, var(--cream-3) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* ===== TICKER / MARQUEE ===== */
.ticker { background: var(--dark); overflow: hidden; padding: 12px 0; }
.ticker__track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(237,184,200,0.7);
}
.ticker__track span { flex-shrink: 0; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== PILL ROW ===== */
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 500;
  background: var(--cream-2);
  border: 1px solid var(--cream-3);
  color: var(--brown);
  transition: var(--t);
}
.pill:hover { background: var(--white); border-color: var(--mint); }

/* ===== PHOTO GRID ===== */
.photo-grid {
  display: grid;
  gap: 12px;
}
.photo-grid img {
  width: 100%;
  border-radius: var(--r-md);
  object-fit: cover;
  aspect-ratio: 1;
  transition: var(--t);
}
.photo-grid img:hover { transform: scale(1.03); }
.photo-grid--2 { grid-template-columns: repeat(2, 1fr); }
.photo-grid--3 { grid-template-columns: repeat(3, 1fr); }
.photo-grid--6 { grid-template-columns: repeat(3, 1fr); }

/* ===== COURSE NAV BREADCRUMB ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--brown-2);
  padding: 96px 0 0;
}
.breadcrumb a { color: var(--rose-dark); transition: var(--t); }
.breadcrumb a:hover { color: var(--dark); }
.breadcrumb .sep { opacity: 0.4; }

/* ===== HERO (SALES PAGE) ===== */
.sp-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.sp-hero--dark {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 60%, #2E1A10 100%);
  color: var(--cream);
}
.sp-hero--cream {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-2) 50%, rgba(184,224,219,0.15) 100%);
}
.sp-hero__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}
.sp-hero__glow1 {
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(130,197,192,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.sp-hero__glow2 {
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,140,160,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.sp-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.sp-hero__grid.reverse { direction: rtl; }
.sp-hero__grid.reverse > * { direction: ltr; }

.sp-hero__img-wrap {
  position: relative;
}
.sp-hero__img {
  width: 100%;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  display: block;
}
.sp-hero__img-accent {
  position: absolute;
  top: -16px; right: -16px; bottom: -16px; left: -16px;
  border-radius: calc(var(--r-xl) + 16px);
  border: 1.5px solid rgba(130,197,192,0.2);
  pointer-events: none;
}
.sp-hero__img-badge {
  position: absolute;
  bottom: -20px; right: 24px;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  color: #fff;
  border-radius: var(--r-full);
  padding: 14px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-rose);
  text-align: center;
  white-space: nowrap;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #0E0B08;
  padding: 60px 0 0;
}
.site-footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-brand img {
  height: 44px; width: auto; object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.75);
  margin-bottom: 14px;
}
.footer-brand p { font-size: 0.88rem; color: rgba(250,246,242,0.45); line-height: 1.7; max-width: 240px; }

.footer-col h5 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: rgba(250,246,242,0.85);
  margin-bottom: 16px;
  font-weight: 400;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a {
  font-size: 0.84rem;
  color: rgba(250,246,242,0.45);
  transition: color var(--t);
}
.footer-col a:hover { color: var(--rose-light); }

.footer-social { display: flex; flex-direction: column; gap: 10px; }
.footer-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  border-radius: var(--r-full);
  font-size: 0.82rem;
  font-weight: 500;
  transition: var(--t);
  color: rgba(250,246,242,0.8);
}
.footer-social-btn--yt { background: rgba(255,60,60,0.12); border: 1px solid rgba(255,60,60,0.2); }
.footer-social-btn--wa { background: rgba(37,211,102,0.1);  border: 1px solid rgba(37,211,102,0.2); }
.footer-social-btn:hover { transform: translateX(4px); }
.footer-social-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.site-footer__bottom {
  padding: 18px 0;
  text-align: center;
  font-size: 0.74rem;
  color: rgba(250,246,242,0.22);
  letter-spacing: 0.04em;
}
.site-footer__legal {
  padding: 0 24px 20px;
  text-align: center;
  font-size: 0.68rem;
  color: rgba(250,246,242,0.18);
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }
  .sp-hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .sp-hero__grid.reverse { direction: ltr; }
  .photo-grid--6 { grid-template-columns: repeat(2, 1fr); }
  .site-footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-py: 56px; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .photo-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .price-box { padding: 32px 24px; }
  .guarantee-box { flex-direction: column; text-align: center; }
  .guarantee-box .g-img { margin: 0 auto; }
  .site-footer__top { grid-template-columns: 1fr; gap: 32px; }
  .breadcrumb { padding-top: 80px; }
}

@media (max-width: 480px) {
  .photo-grid--2, .photo-grid--3, .photo-grid--6 { grid-template-columns: 1fr; }
  .pill-row { gap: 6px; }
  .btn-xl { padding: 18px 32px; font-size: 0.9rem; }
}
