/* ============ TOKENS ============ */
:root {
  --carmin: #B91C3C;
  --carmin-deep: #8C1430;
  --carmin-soft: #D94760;
  --rosa: #FCE4E6;
  --rosa-2: #F7D3D7;
  --white: #FFFFFF;
  --cream: #FFFBFA;
  --ink: #2A1519;
  --ink-soft: #6B4B52;
  --line: #EFD5DA;

  --f-display: "Cormorant Garamond", Georgia, serif;
  --f-body: "Montserrat", system-ui, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, monospace;

  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 36px;
  --r-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(185, 28, 60, 0.08);
  --shadow-md: 0 20px 40px -20px rgba(185, 28, 60, 0.25);
  --shadow-lg: 0 40px 80px -30px rgba(185, 28, 60, 0.3);

  --maxw: 1280px;
  --pad: clamp(20px, 4vw, 72px);

  /* Checker pattern — the brand signature */
  --check-size: 240px;
  --check-color: #EDADB5;
  --check: conic-gradient(var(--check-color) 25%, var(--white) 0 50%, var(--check-color) 0 75%, var(--white) 0);
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* Image fill for photo containers */
.menu-cat-photo img,
.menu-cat-photo-wide img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
}

/* about-photo usa inset para su tamaño, el img debe posicionarse absolutamente dentro */
.about-photo {
  isolation: isolate;
}
.about-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
}

/* Signature checker background */
.checker-bg {
  background-color: var(--white);
  background-image: var(--check);
  background-size: var(--check-size) var(--check-size);
}

/* ============ TYPE ============ */
.display {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--carmin);
  margin: 0 0 28px;
}
.display em {
  font-style: italic;
  font-weight: 400;
}
.h-display {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  color: var(--carmin);
  margin: 0 0 18px;
}
.h-display em { font-style: italic; font-weight: 400; }
.h-med {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 38px);
  color: var(--carmin);
  margin: 0;
  letter-spacing: -0.01em;
}
.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--carmin-soft);
}
.lead {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--ink-soft);
  max-width: 46ch;
  line-height: 1.65;
}
.section-sub {
  color: var(--ink-soft);
  font-size: 16px;
  max-width: 54ch;
  margin: 0 auto;
  line-height: 1.6;
}

/* Ornament: —— Text —— */
.ornament {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 20px;
  color: var(--carmin);
  margin-bottom: 18px;
}
.ornament .line {
  display: block;
  width: 60px;
  height: 1.5px;
  background: var(--carmin);
}
.ornament-left { padding-left: 0; }
.ornament-left .line:last-child { display: none; }
.hero-ornament {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--carmin);
  margin-bottom: 24px;
}
.hero-ornament .line {
  display: block;
  width: 40px;
  height: 1.5px;
  background: var(--carmin);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--r-pill);
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 16px 32px; font-size: 15px; }
.btn-primary {
  background: var(--carmin);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--carmin-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: transparent;
  color: var(--carmin);
  border: 1.5px solid var(--carmin);
}
.btn-ghost:hover {
  background: var(--carmin);
  color: var(--white);
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px var(--pad);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--carmin);
}
.logo-mark { width: 40px; height: 40px; flex-shrink: 0; color: var(--carmin); }
.logo-word {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--carmin);
}
.logo-lg .logo-mark { width: 54px; height: 54px; }
.logo-lg .logo-word { font-size: 36px; }
.nav-links {
  display: flex;
  gap: 26px;
  margin-left: auto;
  font-size: 14px;
}
.nav-links a {
  padding: 6px 2px;
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.15s, color 0.15s;
  font-weight: 500;
}
.nav-links a:hover { color: var(--carmin); border-bottom-color: var(--carmin); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  width: 22px; height: 2px; background: var(--carmin); border-radius: 2px;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: clamp(60px, 8vw, 100px) max(var(--pad), calc((100% - var(--maxw)) / 2 + var(--pad))) clamp(60px, 8vw, 120px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background-color: var(--white);
  background-image: var(--check);
  background-size: var(--check-size) var(--check-size);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), rgba(255,255,255,0.1));
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 48px 40px;
  background: rgba(255, 251, 250, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: var(--r-lg);
}
.hero-cta {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-meta {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-meta div { display: flex; flex-direction: column; }
.hero-meta strong {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--carmin);
  line-height: 1;
}
.hero-meta span {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 6px;
  letter-spacing: 0.02em;
}

.hero-visual {
  position: relative;
  z-index: 2;
  aspect-ratio: 1 / 1.1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-card {
  background: var(--white);
  border: 1.5px solid var(--carmin);
  border-radius: var(--r-lg);
  padding: 56px 48px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 420px;
  width: 100%;
  position: relative;
}
.hero-logo {
  width: 220px;
  height: 220px;
  color: var(--carmin);
}
.hero-logo-word {
  font-family: var(--f-display);
  font-size: 72px;
  font-weight: 500;
  color: var(--carmin);
  letter-spacing: -0.02em;
  margin-top: -8px;
  line-height: 1;
}
.hero-logo-sub {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--carmin);
  margin-top: 8px;
}

.sticker {
  position: absolute;
  width: 140px;
  height: 140px;
  top: -30px;
  right: -30px;
  background: var(--carmin);
  border-radius: 50%;
  display: grid;
  place-items: center;
  animation: spin 24s linear infinite;
  z-index: 3;
  box-shadow: var(--shadow-md);
}
.sticker svg {
  width: 100%;
  height: 100%;
  fill: var(--white);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============ MARQUEE ============ */
.marquee {
  background: var(--carmin);
  color: var(--white);
  padding: 18px 0;
  overflow: hidden;
}
.marquee-track {
  display: inline-flex;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 45s linear infinite;
  font-family: var(--f-display);
  font-size: 26px;
  font-style: italic;
  padding-left: 32px;
}
.marquee-track span:nth-child(even) {
  opacity: 0.6;
  font-style: normal;
  font-size: 18px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ SECTIONS ============ */
.section {
  padding: clamp(70px, 10vw, 140px) var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
}
.section-head { margin-bottom: 64px; max-width: 700px; }
.section-head-center { text-align: center; margin: 0 auto 64px; }
.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  max-width: none;
  margin-bottom: 48px;
}
.section-head-row h2 { margin: 0; }

/* Placeholder */
.ph-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--carmin);
  background-image: repeating-linear-gradient(
    135deg,
    rgba(255,255,255,0.4) 0 12px,
    rgba(255,255,255,0) 12px 24px
  );
  padding: 16px;
  letter-spacing: 0.05em;
  background-color: rgba(252, 228, 230, 0.6);
}

/* ============ MENÚ ============ */
.section-menu {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  background-color: var(--white);
  background-image: var(--check);
  background-size: var(--check-size) var(--check-size);
}
.section-menu > .section-head {
  margin-left: auto;
  margin-right: auto;
  padding: 72px var(--pad) 64px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  width: calc(100% - 2 * var(--pad));
  max-width: 900px;
  border-radius: var(--r-lg);
  box-sizing: border-box;
}
.menu-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.menu-cat {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.menu-cat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--carmin-soft);
}
.menu-cat-full {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  gap: 48px;
}
.menu-cat-full .menu-cat-head { flex-direction: column; align-items: flex-start; flex: 0 0 auto; width: 260px; }
.menu-cat-full .menu-cat-photo { width: 240px; height: 180px; }
.menu-cat-full .menu-single-desc { flex: 1; font-size: 16px; max-width: 40ch; }

.menu-cat-head {
  display: flex;
  align-items: center;
  gap: 20px;
}
.menu-cat-head .menu-cat-photo { order: 2; margin-left: auto; }
.menu-cat h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(28px, 2.6vw, 36px);
  color: var(--carmin);
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.05;
  flex: 1;
}
.menu-cat h3 em {
  font-style: italic;
  font-weight: 500;
  display: block;
}
.menu-cat-photo {
  width: 120px;
  height: 120px;
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  background: var(--rosa);
  box-shadow: var(--shadow-sm);
}
.menu-cat-photo-wide {
  width: 100%;
  height: 160px;
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  background: var(--rosa);
  margin-top: 8px;
}
.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.menu-list li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.4;
}
.menu-list li:last-child { border-bottom: none; }
.menu-list li span { flex: 1; }
.menu-single-desc {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.6;
}

.menu-cat-special {
  background: var(--carmin);
  border-color: var(--carmin);
  color: var(--white);
}
.menu-cat-special:hover { border-color: var(--carmin-deep); }
.menu-cat-special h3,
.menu-cat-special h3 em { color: var(--white); }
.menu-cat-special .menu-single-desc { color: rgba(255,255,255,0.85); }
.menu-cat-special .menu-cat-photo-wide { background: rgba(255,255,255,0.15); }
.menu-cat-special .ph-label { color: var(--white); background-color: rgba(255,255,255,0.12); }
.special-ribbon {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--white);
  color: var(--carmin);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}

/* ============ ENCARGO ============ */
.section-encargo {
  background: var(--white);
}

.encargo-block {
  margin-bottom: 64px;
}
.encargo-block-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  margin-bottom: 28px;
  border-bottom: 1.5px solid var(--carmin);
}
.sizes {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.size {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: all 0.2s;
}
.size:hover {
  border-color: var(--carmin);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.size-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--rosa);
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--carmin);
  border: 1.5px solid var(--carmin);
}
.size-circle.size-2 { width: 68px; height: 68px; }
.size-circle.size-3 { width: 76px; height: 76px; font-size: 30px; }
.size-circle.size-4 { width: 84px; height: 84px; font-size: 32px; }
.size-circle.size-5 { width: 94px; height: 94px; font-size: 36px; background: var(--carmin); color: var(--white); }
.size-info { display: flex; flex-direction: column; gap: 4px; }
.size-info strong {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--carmin);
}
.size-price {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
}
.size-info em {
  font-style: italic;
  color: var(--ink-soft);
  font-size: 13px;
  margin-top: 4px;
}

.encargo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.sabores {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.sabores li {
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 15px;
  position: relative;
  padding-left: 22px;
}
.sabores li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--carmin);
}

.encargo-notes {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.note {
  display: flex;
  gap: 14px;
  padding: 18px 22px;
  background: var(--rosa);
  border-radius: var(--r-md);
  font-size: 14px;
  line-height: 1.55;
}
.note p { margin: 0; color: var(--ink); }
.note-mark {
  font-family: var(--f-display);
  font-size: 28px;
  color: var(--carmin);
  line-height: 1;
  font-weight: 600;
}
.note-important {
  background: var(--carmin);
  color: var(--white);
  flex-direction: column;
  gap: 8px;
}
.note-important strong {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.9;
}
.note-important p { color: var(--white); }
.note-important strong:nth-of-type(n+2),
.note-important p strong { color: var(--white); font-family: var(--f-body); font-size: inherit; letter-spacing: 0; text-transform: none; opacity: 1; font-weight: 700; }

.gallery-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  position: sticky;
  top: 100px;
}
.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  background: var(--rosa);
  box-shadow: var(--shadow-md);
}
.g1 { grid-column: 1; grid-row: 1; transform: rotate(-2deg); }
.g2 { grid-column: 2; grid-row: 1; transform: rotate(2deg); margin-top: 30px; }
.g3 { grid-column: 1 / -1; grid-row: 2; aspect-ratio: 2 / 1; transform: rotate(-1deg); }

/* ============ SOBRE ============ */
.section-about {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  background-color: var(--white);
  background-image: var(--check);
  background-size: var(--check-size) var(--check-size);
}
.about-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
  aspect-ratio: 1 / 1.15;
}
.about-photo {
  position: absolute;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-photo-main {
  inset: 0 25% 20% 0;
  background: var(--rosa);
  transform: rotate(-2deg);
}
.about-photo-sm {
  right: 0;
  bottom: 0;
  width: 58%;
  height: 45%;
  background: var(--rosa-2);
  transform: rotate(3deg);
}
.about-text {
  background: var(--white);
  padding: 48px 40px;
  border-radius: var(--r-lg);
  border: 1.5px solid var(--line);
}

.values {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.values li {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.values li:last-child { border-bottom: 1px solid var(--line); }
.values li div { display: flex; flex-direction: column; gap: 4px; }
.values strong {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--carmin);
}
.values span { color: var(--ink-soft); font-size: 14px; }
.v-num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--carmin);
  flex-shrink: 0;
  padding-top: 4px;
}

/* ============ PROCESO ============ */
.section-how { text-align: center; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 48px;
  left: 10%;
  right: 10%;
  height: 2px;
  background-image: linear-gradient(to right, var(--carmin) 50%, transparent 50%);
  background-size: 12px 2px;
  background-repeat: repeat-x;
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  text-align: center;
}
.step-num {
  display: inline-grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--rosa);
  border: 1.5px solid var(--carmin);
  color: var(--carmin);
  font-family: var(--f-display);
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 18px;
}
.step:nth-child(2) .step-num { background: var(--carmin); color: var(--white); }
.step:nth-child(3) .step-num { background: var(--ink); color: var(--white); border-color: var(--ink); }
.step h3 {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--carmin);
  margin: 0 0 8px;
}
.step p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.55; }
.how-cta { margin-top: 48px; }

/* ============ INSTAGRAM ============ */
.ig-widget { width: 100%; }

/* ============ CONTACTO ============ */
.section-contact {
  background: var(--carmin);
  color: var(--white);
  max-width: none;
  padding: clamp(70px, 10vw, 140px) 0;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}
.section-contact .ornament,
.section-contact .ornament-left,
.section-contact .eyebrow {
  color: var(--white);
}
.section-contact .ornament .line { background: var(--white); }
.section-contact .h-display { color: var(--white); }
.section-contact .h-display em { color: var(--rosa); }

.contact-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 36px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.contact-list li:last-child { border-bottom: 1px solid rgba(255,255,255,0.15); }
.c-label {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rosa);
  padding-top: 3px;
}
.contact-list a:hover { color: var(--rosa); text-decoration: underline; }
.contact-list em { color: var(--rosa); font-style: normal; font-size: 13px; }

.section-contact .btn-primary {
  background: var(--white);
  color: var(--carmin);
}
.section-contact .btn-primary:hover {
  background: var(--ink);
  color: var(--white);
}

.contact-map {
  aspect-ratio: 1 / 1;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  isolation: isolate;
  border: 1.5px solid rgba(255,255,255,0.2);
}
#map { width: 100%; height: 100%; }
.leaflet-tile-pane { filter: saturate(0.5) hue-rotate(300deg) brightness(1.05); }
.map-marker-pin {
  width: 36px;
  height: 36px;
  background: var(--carmin, #B91C3C);
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 4px 14px rgba(185,28,60,0.5);
}
.map-marker-pin::after {
  content: "";
  position: absolute;
  inset: 6px;
  background: #fff;
  border-radius: 50%;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: var(--white);
  padding: 80px var(--pad) 32px;
}
.footer .logo-word,
.footer .logo-mark { color: var(--rosa); }
.footer-main {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand p {
  color: rgba(255,255,255,0.6);
  margin: 14px 0 0;
  max-width: 32ch;
  font-size: 14px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rosa);
  margin: 0 0 6px;
  font-weight: 500;
}
.footer-col a { opacity: 0.7; transition: opacity 0.2s; font-size: 14px; }
.footer-col a:hover { opacity: 1; color: var(--rosa); }
.footer-col span { opacity: 0.7; font-size: 13px; }
.footer-bottom {
  max-width: var(--maxw);
  margin: 32px auto 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,0.5);
  font-size: 12.5px;
  flex-wrap: wrap;
}
.footer-legal a:hover { color: var(--rosa); }

/* ============ MODAL ============ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal[aria-hidden="false"] { display: flex; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(42, 21, 25, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: fadeIn 0.25s ease;
}
.modal-card {
  position: relative;
  background: var(--white);
  border-radius: var(--r-lg);
  max-width: 640px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  animation: pop 0.3s cubic-bezier(.2,1,.3,1);
  border: 1.5px solid var(--carmin);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pop {
  from { opacity: 0; transform: scale(0.96) translateY(12px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--rosa);
  color: var(--carmin);
  display: grid;
  place-items: center;
  transition: all 0.15s;
}
.modal-close:hover { background: var(--carmin); color: var(--white); }
.modal-head { margin-bottom: 28px; text-align: center; }
.modal-head h3 { font-size: clamp(32px, 4vw, 48px); margin: 12px 0 10px; }
.modal-head p { color: var(--ink-soft); margin: 0; }

/* ============ FORM ============ */
.order-form { display: flex; flex-direction: column; gap: 18px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field > span {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--carmin);
  font-weight: 500;
}
.field em { text-transform: none; letter-spacing: 0; color: var(--ink-soft); font-style: normal; }
.field input,
.field select,
.field textarea {
  font-family: var(--f-body);
  font-size: 14.5px;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.15s;
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--carmin);
}
.f-chips {
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.f-chips legend {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
  width: 100%;
  color: var(--carmin);
  font-weight: 500;
}
.chip { position: relative; cursor: pointer; }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip span {
  display: inline-block;
  padding: 8px 14px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 13px;
  transition: all 0.15s;
}
.chip input:checked + span {
  background: var(--carmin);
  color: var(--white);
  border-color: var(--carmin);
}
.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.form-note {
  font-size: 12.5px;
  color: var(--ink-soft);
  text-align: center;
  margin: 4px 0 0;
}

/* ============ WA FLOAT ============ */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  z-index: 40;
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.08) rotate(-5deg); }
.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: wa-ping 2.5s ease-out infinite;
  opacity: 0.4;
  z-index: -1;
}
@keyframes wa-ping {
  0%   { transform: scale(0.6); opacity: 0.6; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* ============ TWEAKS ============ */
.tweaks {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 16px;
  box-shadow: var(--shadow-lg);
  z-index: 45;
  width: 240px;
  border: 1.5px solid var(--carmin);
}
.tweaks-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.tweaks-head strong {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--carmin);
}
.tweak-x {
  width: 24px; height: 24px;
  display: grid; place-items: center;
  font-size: 20px;
  color: var(--ink-soft);
}
.tw-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 12.5px;
}
.tw-row input[type=color] {
  width: 40px; height: 28px; border: 1px solid var(--line);
  border-radius: 4px; padding: 2px; background: none;
}
.tw-row select {
  font-family: var(--f-body);
  font-size: 12.5px;
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1000px) {
  .menu-grid { grid-template-columns: 1fr; }
  .menu-cat-full { flex-direction: column; gap: 24px; }
  .menu-cat-full .menu-cat-head { width: 100%; flex-direction: row; }
  .menu-cat-full .menu-cat-photo { width: 100%; height: 180px; }
  .sizes { grid-template-columns: repeat(3, 1fr); }
  .encargo-grid { grid-template-columns: 1fr; gap: 48px; }
  .gallery-col { position: static; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 460px; margin: 0 auto; }
  .hero-meta { gap: 20px; flex-wrap: wrap; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { max-width: 460px; margin: 0 auto; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .section-head-row { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 680px) {
  .nav-links { display: none; }
  body.nav-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 20px var(--pad);
    gap: 16px;
    border-bottom: 1px solid var(--line);
  }
  .nav-toggle { display: flex; }
  .nav > .btn { display: none; }
  body.nav-open .nav > .btn { display: inline-flex; }

  :root { --check-size: 56px; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-cat { padding: 28px 24px; }
  .menu-cat-head { flex-direction: column-reverse; }
  .menu-cat-photo { width: 100%; height: 140px; }

  .sizes { grid-template-columns: 1fr 1fr; }
  .sabores { grid-template-columns: 1fr; }
  .g1, .g2, .g3 { transform: none; margin: 0; }
  .gallery-col { grid-template-columns: 1fr 1fr; }
  .g3 { grid-column: 1 / -1; aspect-ratio: 2.5 / 1; }

  .hero-content { padding: 32px 24px; }
  .hero-logo-card { padding: 40px 28px; }
  .hero-logo { width: 160px; height: 160px; }
  .hero-logo-word { font-size: 54px; }
  .sticker { width: 100px; height: 100px; top: -18px; right: -18px; }

  .f-row { grid-template-columns: 1fr; }
  .modal-card { padding: 28px 20px; }
  .contact-list li { grid-template-columns: 1fr; gap: 4px; }
  .c-label { padding-top: 0; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .wa-float { width: 54px; height: 54px; bottom: 16px; right: 16px; }
  .tweaks { width: calc(100% - 32px); left: 16px; bottom: 88px; }
  .hero-meta strong { font-size: 22px; }
  .about-text { padding: 32px 24px; }

  /* Hero CTAs: botones full-width apilados */
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }

  /* Hero meta: grid 3 columnas para evitar el elemento huérfano */
  .hero-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px 8px; flex-wrap: unset; }

  /* Tamaños: flex row con scroll horizontal (grid colapsaría con 1fr) */
  .sizes {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
    gap: 12px;
  }
  .sizes::-webkit-scrollbar { display: none; }
  .size { flex: 0 0 112px; }
  /* Desactivar el translateY: el overflow-x crea un contexto que recorta el hover */
  .size:hover { transform: none; }

  /* Modal: bottom sheet en lugar de centrado */
  .modal { align-items: flex-end; padding: 0; }
  .modal-card {
    border-radius: var(--r-lg) var(--r-lg) 0 0;
    max-height: 90vh;
    border-left: none;
    border-right: none;
    border-bottom: none;
    animation: slideUp 0.3s cubic-bezier(.2,1,.3,1);
  }
  @keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* Form actions: apilados en columna inversa (submit primero) */
  .form-actions { flex-direction: column-reverse; }
  .form-actions .btn { width: 100%; justify-content: center; }

  /* CTAs de sección: full-width */
  .how-cta .btn,
  .sabores-col > .btn,
  .contact-cta .btn { width: 100%; justify-content: center; }
}

/* ============ LANG SWITCHER ============ */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
}
.lang-switcher > span {
  color: var(--line);
  font-size: 0.75rem;
  line-height: 1;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 3px 5px;
  color: var(--ink-soft);
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  text-transform: uppercase;
  transition: color 0.18s;
  border-radius: var(--r-sm);
}
.lang-btn:hover { color: var(--carmin); }
.lang-btn.active {
  color: var(--carmin);
  font-weight: 700;
}
