/* =========================================================
   CAKE BY LOLA — design tokens
   ========================================================= */
:root{
  --cream:        #FFFDFB;
  --ivory:         #FFF9F7;
  --blush-bg:      #FDF1F4;
  --pink:          #D6316B;
  --pink-dark:     #B71F56;
  --pink-soft:     #F7DCE5;
  --pink-pale:     #FDF1F4;
  --sky:           #8FD0E8;
  --sky-pale:      #F1FAFD;
  --ink:           #2B2230;
  --ink-soft:      #6E6270;
  --white:         #FFFFFF;

  --font-display:  "Playfair Display", "Georgia", serif;
  --font-body:     "Outfit", -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --shadow-soft: 0 20px 45px -25px rgba(183, 31, 86, 0.28);
  --shadow-card: 0 14px 30px -18px rgba(43, 34, 48, 0.18);

  --container: 1180px;
}

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

html{ scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

h1, h2, h3{
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0 0 0.5em;
  line-height: 1.12;
  font-weight: 500;
}

h1{ font-size: clamp(2.4rem, 5.4vw, 3.8rem); letter-spacing: -0.01em; }
h2{ font-size: clamp(1.9rem, 3.6vw, 2.6rem); }
h3{ font-size: 1.25rem; font-weight: 600; }

p{ color: var(--ink-soft); margin: 0 0 1em; max-width: 62ch; }

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

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

button{ font-family: inherit; cursor: pointer; }

.section-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 5.5rem 1.5rem;
}

.section-head{
  max-width: 620px;
  margin: 0 0 3rem;
}
.section-head p{ font-size: 1.05rem; }

.eyebrow{
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--pink);
  margin-bottom: 0.9rem;
}
.eyebrow--light{ color: var(--pink-dark); }

/* ---------- buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  cursor: pointer;
}
.btn-primary{
  background: var(--pink);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover{
  background: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 22px 38px -18px rgba(183,31,86,0.42);
}
.btn-outline{
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline:hover{
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-small{ padding: 0.65rem 1.3rem; font-size: 0.92rem; }
.btn-full{ width: 100%; }
.btn-whatsapp{
  background: #25D366;
  color: var(--white);
  box-shadow: 0 16px 30px -16px rgba(37,211,102,0.5);
}
.btn-whatsapp:hover{ background: #1fb857; transform: translateY(-2px); }

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

/* =========================================================
   HEADER
   ========================================================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 251, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(43,34,48,0.06);
  transition: box-shadow 0.3s ease, padding 0.3s ease;
}
.site-header.scrolled{ box-shadow: 0 8px 24px -20px rgba(43,34,48,0.35); }

.header-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand{ display: flex; align-items: center; gap: 0.65rem; }
.brand-logo{ width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.brand-name{ font-family: var(--font-display); font-size: 1.25rem; color: var(--ink); }
.brand-name em{ color: var(--pink); font-style: italic; }

.main-nav{ display: flex; align-items: center; gap: 1.9rem; }
.main-nav a{
  font-size: 0.96rem;
  color: var(--ink-soft);
  position: relative;
  padding: 0.2rem 0;
  transition: color 0.2s ease;
}
.main-nav a::after{
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 2px;
  background: var(--pink);
  transition: width 0.25s ease;
}
.main-nav a:hover{ color: var(--ink); }
.main-nav a:hover::after{ width: 100%; }

.header-actions{ display: flex; align-items: center; gap: 1rem; }

.menu-toggle{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  background: var(--pink-pale);
  border: none;
  border-radius: 50%;
  align-items: center;
}
.menu-toggle span{
  width: 18px; height: 2px;
  background: var(--pink-dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.menu-toggle.is-open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2){ opacity: 0; }
.menu-toggle.is-open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position: relative;
  overflow: hidden;
  padding-top: 1rem;
}
.hero-blob{
  position: absolute;
  top: -180px; right: -220px;
  width: 640px; height: 640px;
  background: radial-gradient(circle at 30% 30%, var(--pink-pale), transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.hero-line{ position: absolute; color: var(--pink-soft); z-index: 0; pointer-events: none; }
.hero-line--1{ width: 90px; top: 18%; left: 4%; opacity: 0.6; }
.hero-line--2{ width: 130px; bottom: 8%; left: 46%; color: var(--sky); opacity: 0.5; }

.hero-inner{
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 3.5rem 1.5rem 5rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.hero-text{ font-size: 1.12rem; max-width: 46ch; }
.hero-actions{ display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.8rem; }

.hero-visual{ position: relative; }
.hero-cake-frame{
  position: relative;
  background: linear-gradient(160deg, var(--pink-pale), var(--white) 60%);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-card);
}
.hero-cake-frame--photo{ padding: 0.9rem; overflow: hidden; }
.hero-photo{
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 0.5rem);
}
.hero-cake-illustration{ display: flex; justify-content: center; }
.cake-svg{ width: 100%; max-width: 300px; height: auto; }
.frame-caption{
  display: block;
  text-align: center;
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 0.9rem;
  font-style: italic;
}
.frame-caption--light{ color: var(--ink-soft); }

.hero-tag{
  position: absolute;
  background: var(--white);
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-card);
}
.hero-tag--1{ top: 8%; left: -6%; color: var(--pink); }
.hero-tag--2{ bottom: 10%; right: -5%; color: var(--sky); }

/* =========================================================
   ESPECIALIDADES
   ========================================================= */
.specialties{ background: var(--white); }

.spec-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.spec-card{
  background: var(--blush-bg);
  border-radius: var(--radius-md);
  padding: 2rem 1.6rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  overflow: hidden;
}
.spec-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  background: var(--white);
}
.spec-card--photo{ padding: 0; }
.spec-photo{
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.spec-card--photo:hover .spec-photo{ transform: scale(1.05); }
.spec-card--photo .spec-icon,
.spec-card--photo h3,
.spec-card--photo p{
  padding-left: 1.6rem;
  padding-right: 1.6rem;
}
.spec-card--photo .spec-icon{ margin-top: 1.4rem; }
.spec-card--photo p{ padding-bottom: 1.8rem; }
.spec-icon{ font-size: 1.9rem; margin-bottom: 0.9rem; }
.spec-card h3{ margin-bottom: 0.4rem; }
.spec-card p{ font-size: 0.94rem; margin-bottom: 0; }

/* =========================================================
   BODAS
   ========================================================= */
.wedding{ position: relative; overflow: hidden; border-top: 1px solid var(--pink-soft); border-bottom: 1px solid var(--pink-soft); }
.wedding-bg{
  position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--ivory), var(--blush-bg) 75%);
  z-index: 0;
}
.wedding-inner{
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
}
.wedding-copy h2{ color: var(--ink); }
.wedding-copy p{ color: var(--ink-soft); font-size: 1.08rem; }

.wedding-frame{
  background: var(--white);
  border: 1px solid var(--pink-soft);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}
.wedding-frame .cake-svg{ max-width: 260px; margin: 0 auto; }
.wedding-frame--photo{ padding: 0.7rem; overflow: hidden; }
.wedding-photo{
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 0.4rem);
  display: block;
}

/* =========================================================
   PERSONALIZADAS
   ========================================================= */
.custom-inner{ text-align: center; }
.custom-inner .section-head{ margin-left: auto; margin-right: auto; }
.custom-inner .section-head p{ margin-left: auto; margin-right: auto; }

.custom-list{
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  padding: 0;
  margin: 0 auto 3rem;
  max-width: 640px;
}
.custom-list li{
  background: var(--sky-pale);
  color: var(--ink);
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
}

.collage{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-bottom: 2.6rem;
}
.collage-item{
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.3s ease;
}
.collage-item:hover{ transform: scale(1.04) rotate(-1deg); }
.collage-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================================================
   SABORES
   ========================================================= */
.flavors{ background: var(--white); }

.flavor-chips{
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 2.2rem;
}
.chip{
  background: var(--blush-bg);
  border: 2px solid transparent;
  color: var(--ink);
  padding: 0.65rem 1.3rem;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 500;
  transition: all 0.2s ease;
}
.chip:hover{ background: var(--pink-soft); }
.chip.is-active{
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}

.flavor-preview{
  background: linear-gradient(120deg, var(--pink-pale), var(--sky-pale));
  border-radius: var(--radius-md);
  padding: 2rem 2.2rem;
}
.flavor-preview-label{
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}
.flavor-preview h3{ margin: 0.4rem 0 0.5rem; font-size: 1.5rem; color: var(--pink-dark); }
.flavor-preview p{ margin-bottom: 0; }

.flavor-note{ margin-top: 1.6rem; font-size: 0.92rem; font-style: italic; }

/* =========================================================
   GALERÍA
   ========================================================= */
.gallery{ background: var(--blush-bg); }

.gallery-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  grid-auto-flow: dense;
  gap: 1rem;
}
.gallery-item{
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform 0.35s ease;
  background: var(--white);
}
.gallery-item:hover{ transform: scale(0.98); }
.gallery-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img{ transform: scale(1.08); }
.gallery-item span{
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.6rem 0.8rem 0.6rem;
  background: linear-gradient(0deg, rgba(43,34,48,0.7), transparent);
  font-size: 0.78rem;
  color: var(--white);
  font-style: italic;
}
.gallery-item--wide{ grid-column: span 2; }
.gallery-item--tall{ grid-row: span 2; }

.lightbox{
  position: fixed; inset: 0;
  background: rgba(43,34,48,0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 2rem;
}
.lightbox.is-open{ display: flex; }
.lightbox-content{
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
}
.lightbox-content svg{ width: 60%; margin: 0 auto 1rem; }
.lightbox-close{
  position: absolute;
  top: 1.8rem; right: 1.8rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
}

/* =========================================================
   SOBRE LOLA
   ========================================================= */
.about-inner{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}
.about-frame{
  background: var(--blush-bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.about-frame .cake-svg{ max-width: 240px; margin: 0 auto; }
.about-frame--video{ padding: 0.8rem; }
.about-video{
  width: 100%;
  max-height: 420px;
  border-radius: calc(var(--radius-lg) - 0.4rem);
  display: block;
  background: #000;
}

/* =========================================================
   OPINIONES
   ========================================================= */
.testimonials{ background: var(--white); }

.testimonial-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.testimonial-card{
  background: var(--blush-bg);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-card); }
.stars{ color: var(--pink); letter-spacing: 0.1em; margin-bottom: 0.8rem; }
.testimonial-card p{ font-style: italic; color: var(--ink); font-size: 0.98rem; }
.testimonial-author{ display: flex; flex-direction: column; margin-top: 1.2rem; }
.author-name{ font-weight: 600; font-size: 0.95rem; }
.author-event{ font-size: 0.82rem; color: var(--ink-soft); }

/* =========================================================
   PRESUPUESTO / FORMULARIO
   ========================================================= */
.budget{ background: var(--blush-bg); }

.budget-layout{
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2.6rem;
  align-items: start;
}

.budget-form{
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  box-shadow: var(--shadow-card);
}

.form-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-field{ margin-bottom: 1.2rem; }
.form-field label{
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
  color: var(--ink);
}
.form-field input,
.form-field select,
.form-field textarea{
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid #EEDDE3;
  background: var(--cream);
  font-family: inherit;
  font-size: 0.96rem;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus{
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(214,49,107,0.12);
}
.form-field textarea{ resize: vertical; }

.file-upload{ position: relative; }
.file-upload input[type="file"]{
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.file-upload label{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px dashed var(--pink-soft);
  background: var(--pink-pale);
  color: var(--pink-dark);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

.form-note{
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--pink-dark);
  min-height: 1.2em;
}

.budget-aside{ position: sticky; top: 100px; }
.aside-card{
  background: var(--white);
  border: 1px solid var(--pink-soft);
  border-left: 4px solid var(--pink);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  color: var(--ink);
  box-shadow: var(--shadow-card);
}
.aside-card h3{ color: var(--pink-dark); }
.aside-card p{ color: var(--ink-soft); font-size: 0.95rem; }

/* =========================================================
   CONTACTO
   ========================================================= */
.contact{ background: var(--white); }

.contact-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.contact-item{
  background: var(--blush-bg);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.contact-icon{ font-size: 1.5rem; margin-bottom: 0.3rem; }
.contact-label{ font-weight: 600; font-size: 0.9rem; }
.contact-value{ font-size: 0.92rem; color: var(--ink-soft); }
.contact-link{
  color: var(--pink-dark);
  font-weight: 600;
  transition: color 0.2s ease;
}
.contact-link:hover{ color: var(--pink); text-decoration: underline; }
.placeholder-text{
  color: var(--pink-dark);
  font-style: italic;
  opacity: 0.75;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{ background: var(--ink); color: rgba(255,255,255,0.75); }

.footer-inner{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
.footer-brand{ display: flex; flex-direction: column; gap: 0.8rem; }
.footer-logo{ width: 52px; height: 52px; border-radius: 50%; }
.footer-brand p{ color: rgba(255,255,255,0.6); font-size: 0.9rem; }

.footer-links{ display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links h4{
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.4rem;
}
.footer-links a{
  font-size: 0.92rem;
  color: rgba(255,255,255,0.78);
  transition: color 0.2s ease;
}
.footer-links a:hover{ color: var(--pink-soft); }
.footer-links a.placeholder-text{ color: rgba(255,255,255,0.4); }

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.4rem 1.5rem;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* =========================================================
   WHATSAPP FLOTANTE
   ========================================================= */
.whatsapp-float{
  position: fixed;
  bottom: 26px; right: 26px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 14px 30px -10px rgba(37,211,102,0.55);
  z-index: 200;
  transition: transform 0.25s ease;
}
.whatsapp-float:hover{ transform: scale(1.08); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px){
  .spec-grid{ grid-template-columns: repeat(2, 1fr); }
  .gallery-grid{ grid-template-columns: repeat(3, 1fr); }
  .collage{ grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid{ grid-template-columns: 1fr 1fr; }
  .contact-grid{ grid-template-columns: 1fr 1fr; }
  .footer-inner{ grid-template-columns: 1fr 1fr; }
  .wedding-inner, .about-inner{ gap: 2.4rem; }
}

@media (max-width: 860px){
  .main-nav{
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 82%);
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 6.5rem 2rem 2rem;
    gap: 1.6rem;
    box-shadow: -20px 0 40px -20px rgba(43,34,48,0.3);
    transition: right 0.35s ease;
    z-index: 99;
  }
  .main-nav.is-open{ right: 0; }
  .main-nav a{ font-size: 1.05rem; }
  .menu-toggle{ display: flex; }
  .header-actions .btn-small{ display: none; }

  .hero-inner{ grid-template-columns: 1fr; padding-top: 2rem; }
  .hero-visual{ order: -1; max-width: 380px; margin: 0 auto; }
  .hero-tag{ display: none; }

  .wedding-inner{ grid-template-columns: 1fr; text-align: center; }
  .wedding-copy p{ margin-left: auto; margin-right: auto; }
  .wedding-frame{ max-width: 340px; margin: 0 auto; }

  .about-inner{ grid-template-columns: 1fr; text-align: center; }
  .about-copy p{ margin-left: auto; margin-right: auto; }
  .about-frame{ max-width: 320px; margin: 0 auto; }

  .budget-layout{ grid-template-columns: 1fr; }
  .budget-aside{ position: static; }
}

@media (max-width: 720px){
  .section-inner{ padding: 4rem 1.3rem; }
  .spec-grid{ grid-template-columns: 1fr 1fr; gap: 1rem; }
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .gallery-item--wide{ grid-column: span 1; }
  .collage{ grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .footer-inner{ grid-template-columns: 1fr 1fr; }
  .form-row{ grid-template-columns: 1fr; }
  .whatsapp-float{ width: 54px; height: 54px; bottom: 18px; right: 18px; }
}

@media (max-width: 480px){
  .spec-grid{ grid-template-columns: 1fr; }
  .footer-inner{ grid-template-columns: 1fr; }
  .brand-name{ font-size: 1.05rem; }
  .btn{ padding: 0.85rem 1.5rem; font-size: 0.95rem; }
  h1{ font-size: 2.1rem; }
}

/* keyboard focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible{
  outline: 2.5px solid var(--pink);
  outline-offset: 2px;
}
