/* Katzemiel — estilos */

:root {
  --honey-50: #faf6f0;
  --honey-100: #f3ebe0;
  --honey-200: #e8d4c0;
  --honey-300: #d4955a;
  --honey-400: #c86a28;
  --honey-500: #c05010;
  --honey-600: #a3440e;
  --honey-700: #7a340c;
  --honey-800: #4a220a;
  --honey-900: #2a1406;

  --forest-600: #3d5a3a;
  --forest-800: #2a3d28;

  --cream: #f5f0e8;
  --ink: #2a1f18;
  --muted: #6b5a4e;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(42, 24, 8, 0.08);
  --shadow-lg: 0 20px 60px rgba(42, 24, 8, 0.15);
  --header-h: 72px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: var(--honey-600);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--honey-500);
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: var(--honey-600);
  color: white;
  border-radius: var(--radius);
  z-index: 9999;
}

.skip-link:focus {
  top: 1rem;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(250, 246, 239, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 122, 26, 0.1);
  transition: box-shadow 0.3s var(--ease);
}

.site-header.scrolled {
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink);
  text-decoration: none;
}

.logo:hover {
  color: var(--honey-600);
}

.logo-img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: contain;
  background: #fff;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo-text small {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 500;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
}

.nav a:hover {
  color: var(--honey-600);
}

.nav-cta {
  padding: 0.5rem 1.1rem;
  background: var(--honey-500);
  color: white !important;
  border-radius: 999px;
}

.nav-cta:hover {
  background: var(--honey-600);
  color: white !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s, border-color 0.2s, color 0.2s;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--honey-500);
  color: white;
  border-color: var(--honey-500);
}

.btn-primary:hover {
  background: var(--honey-600);
  border-color: var(--honey-600);
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: rgba(26, 20, 16, 0.2);
}

.btn-outline:hover {
  border-color: var(--honey-500);
  color: var(--honey-600);
}

.btn-full {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 2rem) 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(245, 199, 106, 0.35), transparent),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(61, 90, 58, 0.12), transparent),
    linear-gradient(165deg, var(--honey-50) 0%, var(--cream) 45%, var(--honey-100) 100%);
  z-index: 0;
}

.hero-illustration {
  position: absolute;
  top: 12%;
  right: 8%;
  width: 140px;
  color: var(--honey-500);
  opacity: 0.12;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--honey-600);
  margin: 0 0 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: italic;
  color: var(--honey-600);
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 32rem;
  margin: 0 0 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-badges li {
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.35rem 0.85rem;
  background: white;
  border: 1px solid var(--honey-200);
  border-radius: 999px;
  color: var(--honey-700);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.jar-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 400px;
}

.jar-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.jar-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  color: white;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.jar-label span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.9;
}

.jar-label strong {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
}

/* Story timeline */
.story {
  background: white;
}

.story-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  list-style: none;
  margin: 0 0 3.5rem;
  padding: 0;
}

.story-item {
  padding: 1.75rem;
  background: var(--honey-50);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--honey-500);
}

.story-year {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--honey-500);
  margin-bottom: 0.5rem;
}

.story-item h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
}

.story-item p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.about-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-highlight .about-img-main {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-highlight h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin: 0 0 1rem;
}

.about-highlight p {
  color: var(--muted);
  margin: 0 0 1rem;
}

.packaging-note {
  margin-top: 2.5rem;
  padding: 2rem;
  background: white;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--honey-500);
}

.packaging-note h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 1rem;
}

.packaging-note ul {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--muted);
}

.packaging-note li {
  margin-bottom: 0.5rem;
}

/* Quality */
.quality {
  background: var(--forest-800);
  color: white;
}

.quality .section-label {
  color: var(--honey-300);
}

.quality h2 {
  color: white;
}

.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.quality-block p {
  opacity: 0.9;
  margin: 0 0 1rem;
}

.quality-visual img {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  margin-bottom: 1rem;
}

.quality-visual blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  opacity: 0.85;
  border-left: 3px solid var(--honey-400);
  padding-left: 1rem;
}

/* Dónde conseguirla */
.donde {
  background: var(--honey-50);
}

.retailers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  list-style: none;
  margin: 0 0 3rem;
  padding: 0;
}

.retailer-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  height: 100%;
  padding: 1.5rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
}

.retailer-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 88px;
  flex-shrink: 0;
}

.retailer-logo {
  max-width: 180px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.retailer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  flex: 1;
  width: 100%;
}

.retailer-name {
  display: block;
  min-height: 2.75em;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.35;
}

.retailer-type,
.retailer-address {
  display: block;
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--muted);
}

.retailer-type {
  min-height: 1.45em;
}

.retailer-address {
  min-height: 4.35em;
}

.retailer-cta {
  margin-top: auto;
  flex-shrink: 0;
}

.donde-b2b {
  padding-top: 2.5rem;
  border-top: 1px solid var(--honey-200);
}

.donde-b2b h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}

.locations-grid:has(.location-card:only-child) {
  grid-template-columns: 1fr;
  max-width: 360px;
  margin-inline: auto;
}

.location-contact {
  padding: 0;
}

.location-contact-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1.5rem;
  color: var(--ink);
  text-align: center;
  text-decoration: none;
  transition: background 0.2s var(--ease);
}

.location-contact-link:hover {
  background: var(--honey-50);
  color: var(--ink);
}

.location-contact-link strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.location-contact-link span:not(.location-badge) {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--honey-600);
}

.location-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.location-city strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.location-city span {
  font-size: 0.85rem;
  color: var(--muted);
}

.location-soon {
  opacity: 0.75;
}

.location-badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--honey-600);
  padding: 0.4rem 0.8rem;
  background: var(--honey-100);
  border-radius: 999px;
}

.btn-small {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

.partner-card {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
}

.partner-card p {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.partner-link {
  display: inline-flex;
  flex-direction: column;
  color: var(--ink);
  text-decoration: none;
}

.partner-link:hover {
  color: var(--honey-600);
}

.partner-link span {
  font-size: 0.85rem;
  color: var(--muted);
}

.address-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

.address-note {
  font-size: 0.8rem;
  color: var(--honey-600);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.gallery-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-cta {
  text-align: center;
  margin: 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.footer-logo {
  border-radius: 8px;
  background: #fff;
}

/* Sections */
.section {
  padding: 5.5rem 0;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--honey-600);
  margin: 0 0 0.5rem;
}

.section-header h2,
.about-copy h2,
.benefits-copy h2,
.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.section-header.center {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
  margin-bottom: 3rem;
}

.section-desc {
  color: var(--muted);
  margin: 0;
}

/* About */
.about {
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-img-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  width: 55%;
  border-radius: var(--radius);
  border: 4px solid white;
  box-shadow: var(--shadow);
}

.about-copy p {
  color: var(--muted);
  margin: 0 0 1rem;
}

.about-features {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-features li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.about-features strong {
  display: block;
  margin-bottom: 0.15rem;
}

.about-features p {
  margin: 0;
  font-size: 0.9rem;
}

/* Products */
.products {
  background: var(--honey-50);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.product-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.product-card.featured .product-img {
  aspect-ratio: auto;
  min-height: 280px;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.product-card:hover .product-img img {
  transform: scale(1.05);
}

.product-body {
  padding: 1.5rem;
}

.product-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.6rem;
  background: var(--honey-100);
  color: var(--honey-700);
  border-radius: 999px;
  margin-bottom: 0.5rem;
}

.product-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
}

.product-body p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 0.5rem;
}

.product-note {
  font-size: 0.85rem !important;
  font-weight: 600;
  color: var(--honey-600) !important;
}

.products-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Process */
.process {
  background: var(--forest-800);
  color: white;
}

.process .section-label {
  color: var(--honey-300);
}

.process .section-header.light h2 {
  color: white;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
}

.timeline li {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--honey-400);
  margin-bottom: 0.75rem;
  opacity: 0.8;
}

.timeline h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}

.timeline p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.5;
}

/* Benefits */
.benefits {
  background: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.benefits-copy p {
  color: var(--muted);
}

.benefits-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.benefits-list li {
  padding: 1.25rem 1.5rem;
  background: var(--honey-50);
  border-left: 3px solid var(--honey-500);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.benefits-list strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--honey-800);
}

/* Gallery / Instagram */
.gallery {
  background: var(--cream);
}

.instagram-card {
  display: block;
  max-width: 640px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  color: var(--ink);
  text-decoration: none;
  transition: transform 0.3s var(--ease);
}

.instagram-card:hover {
  transform: scale(1.02);
  color: var(--ink);
}

.ig-preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.ig-preview img {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
}

.ig-cta {
  padding: 2rem;
  text-align: center;
}

.ig-cta svg {
  color: #e1306c;
  margin-bottom: 0.5rem;
}

.ig-cta span {
  display: block;
  font-weight: 600;
  font-size: 1.1rem;
}

.ig-cta p {
  margin: 0.5rem 0 0;
  color: var(--honey-600);
  font-weight: 500;
}

/* Contact */
.contact {
  background: linear-gradient(180deg, var(--honey-100) 0%, var(--cream) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info > p {
  color: var(--muted);
  margin-bottom: 2rem;
}

.contact-methods {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-link,
.contact-location {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--ink);
  text-decoration: none;
  transition: transform 0.2s var(--ease);
}

.contact-link:hover {
  transform: translateX(4px);
  color: var(--ink);
}

.contact-link.whatsapp:hover {
  background: #e8f5e9;
}

.contact-icon {
  font-size: 1.5rem;
}

.contact-link strong,
.contact-location strong {
  display: block;
  font-size: 0.95rem;
}

.contact-link small,
.contact-location small {
  color: var(--muted);
  font-size: 0.85rem;
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 0 1.25rem;
}

.contact-form label:not(.checkbox-label) {
  display: block;
  margin-bottom: 1rem;
}

.contact-form label:not(.checkbox-label) span {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.contact-form input:not([type="checkbox"]),
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--honey-200);
  border-radius: var(--radius);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input[type="checkbox"] {
  width: auto;
  padding: 0;
  margin: 0;
  accent-color: var(--honey-600);
}

.contact-form input:not([type="checkbox"]):focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--honey-500);
  box-shadow: 0 0 0 3px rgba(196, 122, 26, 0.15);
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

/* Footer */
.site-footer {
  background: var(--honey-900);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 2rem;
}

.footer-inner {
  display: grid;
  gap: 1.5rem;
  text-align: center;
}

.footer-brand strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--honey-300);
}

.footer-brand p {
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.footer-nav a:hover {
  color: var(--honey-300);
}

.footer-copy {
  font-size: 0.8rem;
  opacity: 0.6;
  margin: 0;
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: white;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  z-index: 90;
  transition: transform 0.2s var(--ease);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  color: white;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .about-highlight,
  .benefits-grid,
  .contact-grid,
  .quality-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
    max-width: 320px;
    margin-inline: auto;
  }

  .story-timeline {
    grid-template-columns: 1fr;
  }

  .locations-grid,
  .retailers-grid {
    grid-template-columns: 1fr;
  }

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

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

  .product-card.featured {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 1.5rem;
    background: var(--cream);
    border-bottom: 1px solid var(--honey-200);
    gap: 1rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

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

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

/* Newsletter / suscripción */
.newsletter {
  background: white;
}

.newsletter-grid,
.blog-subscribe-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.newsletter-copy p {
  color: var(--muted);
  margin: 0;
}

.subscribe-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.subscribe-message {
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  background: var(--honey-50);
  color: var(--honey-800);
}

.subscribe-message.is-error {
  background: #fdecea;
  color: #8a2a1f;
}

.subscribe-message.is-success {
  background: #e8f5e9;
  color: #2e5c32;
}

.subscribe-field.has-error input,
.subscribe-field.has-error textarea {
  border-color: #c0392b;
}

.field-error {
  display: block;
  font-size: 0.8rem;
  color: #c0392b;
  margin-top: 0.35rem;
}

.captcha-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.captcha-question {
  margin: 0.35rem 0 0.5rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.captcha-refresh {
  padding: 0.2rem 0.55rem;
  font-size: 1rem;
  line-height: 1;
  border: 1px solid var(--honey-200);
  border-radius: 999px;
  background: var(--cream);
  color: var(--honey-700);
  cursor: pointer;
}

.captcha-refresh:hover {
  border-color: var(--honey-500);
  color: var(--honey-600);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--muted);
  cursor: pointer;
}

.checkbox-label span {
  display: inline;
  font-weight: 400;
  margin: 0;
  line-height: 1.45;
}

.checkbox-label input {
  width: auto;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.subscribe-form label span:first-child {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.subscribe-form input[type="email"],
.subscribe-form input[type="text"] {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--honey-200);
  border-radius: var(--radius);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.subscribe-form input:focus {
  outline: none;
  border-color: var(--honey-500);
  box-shadow: 0 0 0 3px rgba(196, 122, 26, 0.15);
}

/* Blog */
.blog-hero {
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: 2rem;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(245, 199, 106, 0.25), transparent),
    var(--cream);
}

.blog-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3rem);
  margin: 0 0 0.75rem;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 2.5rem;
  align-items: start;
}

.blog-posts {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.blog-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.blog-card-link {
  display: grid;
  grid-template-columns: 220px 1fr;
  color: inherit;
  text-decoration: none;
}

.blog-card-link:hover {
  color: inherit;
}

.blog-card-image {
  margin: 0;
  min-height: 100%;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.5rem 1.75rem;
}

.blog-date {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--honey-600);
  margin-bottom: 0.5rem;
}

.blog-card-body h2 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  margin: 0 0 0.65rem;
  line-height: 1.2;
}

.blog-card-body p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.blog-read-more {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--honey-600);
}

.sidebar-card {
  background: white;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 1.25rem;
}

.sidebar-card h2,
.sidebar-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 0.75rem;
}

.sidebar-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 1.25rem;
}

.subscribe-card .contact-form {
  padding: 0;
  box-shadow: none;
  background: transparent;
}

.blog-breadcrumb {
  margin-bottom: 1.5rem;
}

.blog-breadcrumb a {
  font-size: 0.9rem;
  font-weight: 500;
}

.blog-post-header {
  max-width: 42rem;
  margin-bottom: 2rem;
}

.blog-post-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.85rem);
  line-height: 1.15;
  margin: 0 0 1rem;
}

.blog-post-excerpt {
  font-size: 1.15rem;
  color: var(--muted);
  margin: 0 0 1rem;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-tags li {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.65rem;
  background: var(--honey-100);
  color: var(--honey-700);
  border-radius: 999px;
}

.blog-post-cover {
  margin: 0 0 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.blog-post-cover img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}

.blog-post-inner {
  max-width: 760px;
}

.prose {
  font-size: 1.05rem;
  color: var(--ink);
}

.prose > *:first-child {
  margin-top: 0;
}

.prose p,
.prose ul,
.prose ol,
.prose blockquote {
  margin: 0 0 1.25rem;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin: 2rem 0 1rem;
}

.prose ul,
.prose ol {
  padding-left: 1.35rem;
}

.prose blockquote {
  padding-left: 1rem;
  border-left: 3px solid var(--honey-400);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--muted);
}

.blog-post-footer {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--honey-200);
}

.blog-subscribe-band {
  background: var(--honey-50);
}

@media (max-width: 900px) {
  .newsletter-grid,
  .blog-subscribe-inner,
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-card-link {
    grid-template-columns: 1fr;
  }

  .blog-card-image img {
    min-height: 200px;
  }
}
