/* =========================================
   EL RICO CUY — styles.css
   Paleta:
   Primario:    #F5A709 (naranja dorado)
   Oscuro:      #BA5B22 (marrón cuy)
   Negro:       #000000
   Blanco:      #FFFFFF
   Rosa:        #F07F6E
   Rojo:        #E53130
   Vino:        #6C242F
   ========================================= */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Nunito', sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ===== CSS VARIABLES ===== */
:root {
  --color-primary:    #F5A709;
  --color-primary-dk: #d48e00;
  --color-brown:      #BA5B22;
  --color-red:        #E53130;
  --color-wine:       #6C242F;
  --color-pink:       #F07F6E;
  --color-black:      #111111;
  --color-white:      #FFFFFF;
  --color-off-white:  #FDF8F0;
  --color-gray-light: #f5f5f5;
  --color-gray:       #888888;
  --color-gray-dark:  #444444;
  --color-text:       #1a1a1a;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 6px 24px rgba(0,0,0,.12);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.16);

  --transition: .25s ease;
  --header-h:   70px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--color-black);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 700; }
p  { color: var(--color-gray-dark); }

em { font-style: italic; color: var(--color-primary); }

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

/* ===== SECTION UTILITIES ===== */
.section { padding: 5rem 0; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-brown);
  background: rgba(186,91,34,.1);
  padding: .3rem .9rem;
  border-radius: 99px;
  margin-bottom: .8rem;
}
.section-title { margin-bottom: .6rem; }
.section-sub { color: var(--color-gray); max-width: 520px; margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.6rem;
  border-radius: 99px;
  font-weight: 700;
  font-size: .95rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--color-primary);
  color: var(--color-black);
}
.btn-primary:hover { background: var(--color-primary-dk); }

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline:hover { background: rgba(255,255,255,.15); border-color: #fff; }

.btn-white {
  background: var(--color-white);
  color: var(--color-brown);
  font-weight: 700;
}
.btn-white:hover { background: var(--color-off-white); }

.btn-sm { padding: .45rem 1rem; font-size: .85rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-nav-cta {
  background: var(--color-primary);
  color: var(--color-black);
  padding: .45rem 1.2rem;
  border-radius: 99px;
  font-weight: 700;
}
.btn-nav-cta:hover { background: var(--color-primary-dk); }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  max-width: 480px;
  background: var(--color-black);
  color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 9999;
  box-shadow: var(--shadow-lg);
  font-size: .88rem;
}
.cookie-banner a { color: var(--color-primary); text-decoration: underline; }
.cookie-banner.hidden { display: none; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.07);
  height: var(--header-h);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo { display: flex; align-items: center; gap: .6rem; }
.logo-img { width: 42px; height: 42px; object-fit: contain; border-radius: 8px; }
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--color-black);
}

/* Nav */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-link {
  font-weight: 600;
  font-size: .92rem;
  color: var(--color-gray-dark);
  padding: .5rem .75rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--color-brown); background: rgba(186,91,34,.07); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .4rem;
  border-radius: var(--radius-sm);
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--color-black);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,17,17,.72) 0%, rgba(186,91,34,.45) 60%, rgba(245,167,9,.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 3rem;
  padding-bottom: 5rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(245,167,9,.2);
  border: 1px solid rgba(245,167,9,.5);
  color: var(--color-primary);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 99px;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(4px);
}
.hero-title {
  color: var(--color-white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.hero-sub {
  color: rgba(255,255,255,.88);
  font-size: 1.1rem;
  max-width: 540px;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 3rem; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; color: white; }
.stat strong { font-size: 1.3rem; font-weight: 900; color: var(--color-primary); }
.stat span { font-size: .8rem; opacity: .8; text-transform: uppercase; letter-spacing: .05em; }
.stat-div { width: 1px; height: 36px; background: rgba(255,255,255,.25); }

.scroll-down {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.6);
  animation: bounce 2s infinite;
  z-index: 1;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

.hide-mobile { display: inline; }

/* ===== ABOUT ===== */
.about { background: var(--color-off-white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-media { position: relative; }
.about-img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.about-badge-float {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--color-primary);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  color: var(--color-black);
}
.about-badge-float span { font-size: 1.75rem; display: block; margin-bottom: .25rem; }
.about-badge-float p { font-size: .8rem; font-weight: 700; line-height: 1.3; color: var(--color-black); }

.about-text .section-label { display: inline-block; margin-bottom: .75rem; }
.about-text .section-title { margin-bottom: 1.25rem; }
.about-text p { margin-bottom: 1rem; }

.about-cards { margin-top: 1.75rem; display: flex; flex-direction: column; gap: 1rem; }
.about-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-primary);
}
.about-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: .1rem; }
.about-card strong { display: block; margin-bottom: .25rem; color: var(--color-black); }
.about-card p { font-size: .9rem; margin: 0; }

/* ===== SERVICES ===== */
.services { background: var(--color-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card.featured { border: 2px solid var(--color-primary); }

.service-img-wrap {
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--color-gray-light);
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.service-card:hover .service-img-wrap img { transform: scale(1.06); }

.service-body { padding: 1.25rem; }
.service-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-brown);
  background: rgba(186,91,34,.1);
  padding: .25rem .7rem;
  border-radius: 99px;
  margin-bottom: .6rem;
}
.service-tag--gold {
  color: #7a5400;
  background: rgba(245,167,9,.2);
}
.service-body h3 { margin-bottom: .4rem; font-size: 1.05rem; }
.service-body p  { font-size: .88rem; }

.services-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: var(--color-off-white);
  border-radius: var(--radius-lg);
}
.services-cta p { font-size: 1.05rem; color: var(--color-gray-dark); margin-bottom: 1rem; }

/* ===== DELIVERY BANNER ===== */
.delivery-banner {
  background: linear-gradient(135deg, var(--color-brown) 0%, var(--color-wine) 100%);
  color: var(--color-white);
  padding: 3rem 0;
}
.delivery-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.delivery-icon { font-size: 3.5rem; flex-shrink: 0; }
.delivery-banner h2 { color: var(--color-white); margin-bottom: .4rem; font-size: 1.5rem; }
.delivery-banner p { color: rgba(255,255,255,.85); max-width: 520px; }
.delivery-inner .btn-white { margin-left: auto; flex-shrink: 0; }

/* ===== GALLERY ===== */
.gallery { background: var(--color-off-white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  position: relative;
  background: var(--color-gray-light);
}
.gallery-item--wide  { grid-column: span 2; }
.gallery-item--tall  { grid-row: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-item figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.65));
  color: white;
  font-size: .8rem;
  font-weight: 600;
  padding: 1.5rem .8rem .6rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover figcaption { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9990;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
}
.lightbox[hidden] { display: none; }
.lightbox-content {
  max-width: 880px;
  width: 100%;
  text-align: center;
}
.lightbox-content img {
  max-height: 80vh;
  width: 100%;
  object-fit: contain;
  border-radius: var(--radius-md);
}
.lightbox-content p { color: rgba(255,255,255,.7); margin-top: .5rem; font-size: .9rem; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  color: white;
  font-size: 2rem;
  line-height: 1;
  padding: .5rem;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  transition: background var(--transition);
  flex-shrink: 0;
}
.lightbox-close { position: absolute; top: 1rem; right: 1rem; font-size: 1.75rem; }
.lightbox-prev, .lightbox-next { font-size: 2.5rem; }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.25); }

/* ===== CONTACT ===== */
.contact { background: var(--color-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info .section-label { display: inline-block; margin-bottom: .75rem; }
.contact-info .section-title { margin-bottom: 1rem; }
.contact-info > p { margin-bottom: 1.5rem; }

.contact-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-icon {
  font-size: 1.35rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(245,167,9,.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-list strong { display: block; font-weight: 700; color: var(--color-black); font-size: .9rem; }
.contact-list a { color: var(--color-brown); font-weight: 600; }
.contact-list a:hover { text-decoration: underline; }
.contact-list span { font-size: .9rem; }

/* Social */
.social-links { display: flex; flex-wrap: wrap; gap: .6rem; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .5rem 1rem;
  border-radius: 99px;
  font-size: .85rem;
  font-weight: 700;
  transition: opacity var(--transition), transform var(--transition);
}
.social-btn:hover { opacity: .85; transform: translateY(-2px); }
.social-fb { background: #1877f2; color: white; }
.social-ig { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: white; }
.social-tt { background: var(--color-black); color: white; }

/* Form */
.contact-form-wrap {
  background: var(--color-off-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.contact-form-wrap h3 { margin-bottom: .3rem; }
.form-note { font-size: .85rem; color: var(--color-gray); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: .4rem;
  color: var(--color-gray-dark);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid #ddd;
  border-radius: var(--radius-md);
  font-size: .95rem;
  background: white;
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(245,167,9,.18);
}
.form-group input.error,
.form-group textarea.error { border-color: var(--color-red); }
.form-error { display: block; color: var(--color-red); font-size: .78rem; margin-top: .25rem; min-height: 1em; }
.form-success {
  text-align: center;
  color: #2d7a2d;
  background: #eafaea;
  border-radius: var(--radius-md);
  padding: .75rem;
  margin-top: .75rem;
  font-weight: 600;
  font-size: .9rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #111;
  color: rgba(255,255,255,.8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 2.5rem;
  padding: 4rem 0 2.5rem;
}
.footer-logo { width: 52px; border-radius: 8px; margin-bottom: .75rem; }
.footer-brand p { font-size: .9rem; line-height: 1.7; }
.footer-tagline { font-style: italic; color: var(--color-primary); margin-top: .5rem !important; font-size: .88rem !important; }
.footer-links h4, .footer-contact h4 {
  font-family: 'Playfair Display', serif;
  color: white;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.footer-links ul li { padding: .25rem 0; font-size: .88rem; }
.footer-links ul li a { color: rgba(255,255,255,.7); transition: color var(--transition); }
.footer-links ul li a:hover { color: var(--color-primary); }
.footer-contact p { font-size: .88rem; margin-bottom: .4rem; }
.footer-contact a { color: var(--color-primary); }
.footer-contact a:hover { text-decoration: underline; }

.footer-social { display: flex; gap: .5rem; margin-top: 1rem; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--color-primary); color: #111; }

/* Legal */
.footer-legal {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0;
}
.footer-legal summary {
  cursor: pointer;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  transition: color var(--transition);
  user-select: none;
}
.footer-legal summary:hover { color: rgba(255,255,255,.7); }
.legal-text {
  margin-top: 1rem;
  padding: 1.25rem;
  background: rgba(255,255,255,.04);
  border-radius: var(--radius-md);
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
}
.legal-text h4 { color: rgba(255,255,255,.7); font-size: .9rem; margin: 1rem 0 .4rem; }
.legal-text h4:first-child { margin-top: 0; }
.legal-text strong { color: rgba(255,255,255,.8); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.1rem 0;
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 999;
  background: #25D366;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37,211,102,.6);
}
.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: #111;
  color: white;
  font-size: .78rem;
  font-weight: 700;
  padding: .35rem .75rem;
  border-radius: 99px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -5px; top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right: none;
  border-left-color: #111;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ===== BACK TO TOP ===== */
.back-top {
  position: fixed;
  bottom: 5.75rem;
  right: 1.75rem;
  z-index: 998;
  background: var(--color-white);
  border: 1.5px solid rgba(0,0,0,.1);
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-gray-dark);
  box-shadow: var(--shadow-sm);
  transition: opacity var(--transition), transform var(--transition);
  opacity: 0;
}
.back-top:not([hidden]) { opacity: 1; }
.back-top:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* ===== FADE-IN ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

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

/* Tablet: ≤900px */
@media (max-width: 900px) {
  :root { --header-h: 64px; }

  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-badge-float { bottom: -1rem; right: -0.5rem; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

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

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: span 2; }

  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; }
  .gallery-item--wide { grid-column: span 2; }

  .delivery-inner .btn-white { margin-left: 0; }
}

/* Mobile: ≤600px */
@media (max-width: 600px) {
  :root { --header-h: 60px; }
  .section { padding: 3.5rem 0; }

  .hide-mobile { display: none; }

  /* Hamburger visible */
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(12px);
    padding: 1rem 1.25rem 2rem;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform .3s ease, opacity .3s ease;
    border-bottom: 1px solid rgba(0,0,0,.07);
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .main-nav ul { flex-direction: column; gap: .25rem; }
  .nav-link { display: block; padding: .75rem 1rem; font-size: 1rem; }
  .btn-nav-cta { display: block; text-align: center; margin-top: .5rem; }

  /* Hero */
  .hero { min-height: 92vh; }
  .hero-stats { gap: 1rem; }
  .stat-div { height: 28px; }

  /* About */
  .about-badge-float { display: none; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Delivery */
  .delivery-inner { flex-direction: column; text-align: center; gap: 1.25rem; }
  .delivery-inner .btn-white { width: 100%; justify-content: center; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }
  .gallery-item--wide  { grid-column: span 2; }
  .gallery-item--tall  { grid-row: span 1; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }

  /* WhatsApp float */
  .whatsapp-float { bottom: 1.25rem; right: 1.25rem; }
  .back-top        { bottom: 5.25rem; right: 1.25rem; }

  /* Cookie */
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: .6rem; }
}

/* Large screens */
@media (min-width: 1300px) {
  .container { max-width: 1260px; }
}
