/* Soda Happy Frutis — atelier system */
:root {
  --paper: #f6efe3;
  --paper-2: #efe4d0;
  --cream: #fff8ed;
  --ink: #1c120f;
  --ink-soft: #4a3a32;
  --muted: #7a6a5c;
  --red: #b71f26;
  --red-deep: #7a1519;
  --green: #3e6b28;
  --green-deep: #2c4e1c;
  --gold: #c4a36a;
  --gold-dim: rgba(196, 163, 106, 0.18);
  --cacao: #140a08;
  --cacao-2: #1e100d;
  --line: rgba(28, 18, 15, 0.1);
  --line-strong: rgba(28, 18, 15, 0.18);
  --line-light: rgba(255, 239, 217, 0.16);
  --wa: #25d366;
  --shadow: 0 28px 70px -32px rgba(20, 10, 8, 0.55);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --wrap: 1140px;
  --nav-h: 84px;
  --radius: 24px;
}

* { box-sizing: border-box; }
html {
  margin: 0;
  background: var(--cacao);
  color: var(--ink);
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}
html, body, #dc-root, #dc-root > .sc-host {
  height: auto !important;
  min-height: 100%;
  max-width: 100%;
}
.shf-root { overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  background: var(--cacao);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; }
button, input, textarea, select { font-family: inherit; }
::selection { background: rgba(183, 31, 38, 0.22); color: var(--ink); }
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.shf-skip {
  position: absolute;
  left: 16px; top: -48px;
  z-index: 200;
  background: var(--cream);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 600;
}
.shf-skip:focus { top: 12px; }

/* boot */
#shf-boot {
  position: fixed; inset: 0; z-index: 99999;
  display: grid; place-items: center;
  background: var(--cacao);
  pointer-events: none;
  transition: opacity .6s var(--ease);
}
#shf-boot img {
  width: 92px; height: 92px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  animation: shfBootPop 1.1s var(--ease) both;
}
#shf-boot.is-done { opacity: 0; }
@keyframes shfBootPop {
  0% { opacity: 0; transform: scale(0.86); }
  40% { opacity: 1; transform: scale(1); }
  100% { opacity: 1; transform: scale(1); }
}

.shf-root {
  position: relative;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
}
.shf-grain {
  position: fixed; inset: 0; z-index: 3;
  pointer-events: none;
  opacity: 0.13;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='.55'/></svg>");
}
.shf-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0%;
  z-index: 80;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--green));
  pointer-events: none;
}
.shf-wrap {
  width: min(100% - 40px, var(--wrap));
  margin-inline: auto;
}
@media (max-width: 640px) {
  .shf-wrap { width: min(100% - 28px, var(--wrap)); }
}

/* type */
.shf-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  margin: 0 0 16px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.shf-kicker em {
  font-style: normal;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0;
  font-size: 0.95rem;
  color: var(--red);
}
.shf-lead {
  margin: 0;
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
  line-height: 1.7;
  color: var(--muted);
  max-width: 42ch;
  font-weight: 400;
}
h1, h2, h3, .shf-display {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  letter-spacing: -0.035em;
  color: inherit;
}

/* Costa Rica flag */
.cr-flag {
  display: inline-block;
  width: 26px; height: 16px;
  border-radius: 3px;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.12), 0 1px 3px rgba(0,0,0,0.12);
  background: linear-gradient(
    to bottom,
    #002B7F 0 16.67%,
    #FFFFFF 16.67% 33.33%,
    #CE1126 33.33% 66.67%,
    #FFFFFF 66.67% 83.33%,
    #002B7F 83.33% 100%
  );
}
.cr-stripe {
  height: 4px; width: 100%;
  background: linear-gradient(
    to right,
    #002B7F 0 16.67%,
    #FFFFFF 16.67% 33.33%,
    #CE1126 33.33% 66.67%,
    #FFFFFF 66.67% 83.33%,
    #002B7F 83.33% 100%
  );
}

/* nav */
.shf-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 16px 0 0;
  transition: padding .35s var(--ease);
}
.shf-nav-inner {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 10px 8px 12px;
  border-radius: 999px;
  background: rgba(20, 10, 8, 0.28);
  border: 1px solid rgba(255,239,217,0.14);
  box-shadow: 0 10px 40px rgba(0,0,0,0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.shf-nav.is-scrolled,
.shf-nav.is-open {
  padding: 10px 0 0;
}
.shf-nav.is-scrolled .shf-nav-inner,
.shf-nav.is-open .shf-nav-inner {
  background: rgba(246, 239, 227, 0.92);
  border-color: rgba(28,18,15,0.1);
  box-shadow: 0 10px 36px rgba(20,10,8,0.12);
}
.shf-brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
  min-width: 0;
  flex-shrink: 0;
}
.shf-brand img {
  width: 42px; height: 42px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.shf-brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -0.03em;
  color: #fff;
  white-space: nowrap;
}
.shf-nav.is-scrolled .shf-brand-name,
.shf-nav.is-open .shf-brand-name { color: var(--ink); }
.shf-nav.is-scrolled .shf-brand img,
.shf-nav.is-open .shf-brand img { border-color: var(--red); box-shadow: none; }

.shf-nav-links {
  display: flex; align-items: center; justify-content: flex-end;
  gap: 2px; flex: 1; min-width: 0;
}
.shf-navlink {
  position: relative;
  display: inline-flex; align-items: center;
  padding: 8px 12px;
  color: rgba(255,248,237,0.88);
  font-weight: 500;
  font-size: 0.86rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 999px;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.shf-nav.is-scrolled .shf-navlink,
.shf-nav.is-open .shf-navlink { color: var(--ink-soft); }
.shf-navlink:hover { color: #fff; background: rgba(255,255,255,0.08); }
.shf-nav.is-scrolled .shf-navlink:hover,
.shf-nav.is-open .shf-navlink:hover {
  color: var(--red);
  background: rgba(183,31,38,0.08);
}
.shf-nav-cta {
  margin-left: 8px;
  padding: 9px 16px !important;
  font-size: 0.78rem !important;
  flex-shrink: 0;
}

.shf-menu-btn {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  align-items: center; justify-content: center;
  color: #fff;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  cursor: pointer;
  flex-shrink: 0;
}
.shf-nav.is-scrolled .shf-menu-btn,
.shf-nav.is-open .shf-menu-btn {
  color: var(--ink);
  background: rgba(28,18,15,0.05);
  border-color: var(--line);
}
.shf-menu-bars {
  display: flex; flex-direction: column; gap: 5px; width: 18px;
}
.shf-menu-bars span {
  display: block; height: 2px; width: 100%;
  background: currentColor; border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s;
}
.shf-nav.is-open .shf-menu-bars span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.shf-nav.is-open .shf-menu-bars span:nth-child(2) { opacity: 0; }
.shf-nav.is-open .shf-menu-bars span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .shf-menu-btn { display: inline-flex; }
  .shf-nav { padding: 10px 0 0; }
  .shf-brand-name { font-size: 0.95rem; }
  .shf-nav-links {
    position: fixed;
    top: 72px; left: 14px; right: 14px;
    z-index: 49;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px;
    border-radius: 22px;
    background: rgba(246, 239, 227, 0.97);
    border: 1px solid var(--line);
    box-shadow: 0 24px 50px rgba(20,10,8,0.22);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
  .shf-nav.is-open .shf-nav-links { display: flex; }
  .shf-nav-links .shf-navlink {
    color: var(--ink) !important;
    font-size: 1.15rem;
    font-family: var(--font-display);
    letter-spacing: -0.03em;
    padding: 14px 12px;
    border-radius: 14px;
  }
  .shf-nav-cta { margin: 8px 0 0; width: 100%; justify-content: center; }
}

/* buttons */
.shf-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
  will-change: transform;
}
.shf-btn-wa {
  background: var(--wa);
  color: #fff !important;
  box-shadow: 0 12px 28px -10px rgba(37,211,102,0.65);
}
.shf-btn-wa:hover {
  transform: translateY(-2px);
  color: #fff !important;
  box-shadow: 0 16px 34px -10px rgba(37,211,102,0.8);
}
.shf-btn-ghost {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.55);
  color: #fff !important;
  backdrop-filter: blur(8px);
}
.shf-btn-ghost:hover {
  background: rgba(255,255,255,0.16);
  color: #fff !important;
  transform: translateY(-2px);
}
.shf-btn-ink {
  background: var(--ink);
  color: var(--cream) !important;
}
.shf-btn-ink:hover { transform: translateY(-2px); color: var(--cream) !important; }
.shf-btn-red {
  background: var(--red);
  color: #fff !important;
  box-shadow: 0 12px 28px -12px rgba(183,31,38,0.7);
}
.shf-btn-red:hover { transform: translateY(-2px); color: #fff !important; }

/* open status */
.shf-status {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 7px 12px 7px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}
.shf-status.is-open {
  background: rgba(62,107,40,0.22);
  border-color: rgba(160,220,120,0.4);
  color: #d8f5c0;
}
.shf-status.is-closed {
  background: rgba(0,0,0,0.28);
  border-color: rgba(255,255,255,0.18);
  color: #ffefd9;
}
.shf-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.shf-status.is-open .shf-dot {
  background: #6fcf3a;
  box-shadow: 0 0 0 0 rgba(111,207,58,0.55);
  animation: shfPulse 2s ease-out infinite;
}
.shf-status.is-closed .shf-dot { background: #c4a484; }
@keyframes shfPulse {
  0% { box-shadow: 0 0 0 0 rgba(111,207,58,0.55); }
  70% { box-shadow: 0 0 0 8px rgba(111,207,58,0); }
  100% { box-shadow: 0 0 0 0 rgba(111,207,58,0); }
}

.shf-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.1);
  color: #ffefd9;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}

/* hero */
.shf-hero {
  position: relative;
  min-height: min(100svh, 920px);
  display: flex; align-items: center;
  padding: 120px 0 72px;
  overflow: hidden;
  color: #fff;
}
.shf-hero-bg { position: absolute; inset: 0; z-index: 0; }
.shf-hero-bg img,
.shf-hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transform: scale(1.08);
}
.shf-hero-bg img {
  animation: shfKen 22s ease-in-out infinite alternate;
}
.shf-hero-video {
  position: absolute; inset: 0;
  animation: shfKen 26s ease-in-out infinite alternate;
}
.shf-hero-video[data-active="0"],
.shf-hero-video.is-off { display: none !important; }
@keyframes shfKen {
  from { transform: scale(1.06) translate(0, 0); }
  to { transform: scale(1.14) translate(-1.4%, -1%); }
}
.shf-hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(20,10,8,0.88) 0%, rgba(122,21,25,0.55) 42%, rgba(20,10,8,0.28) 72%, rgba(62,107,40,0.28) 100%),
    linear-gradient(to top, rgba(20,10,8,0.82) 0%, transparent 48%);
}
.shf-hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.shf-hero-logo {
  width: 96px; height: 96px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 14px 34px rgba(0,0,0,0.35);
  margin-bottom: 22px;
}
.shf-hero-row {
  display: flex; flex-wrap: wrap; gap: 8px;
  align-items: center;
  margin-bottom: 18px;
}
.shf-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: #fff;
  text-wrap: balance;
  text-shadow: 0 18px 40px rgba(0,0,0,0.35);
}
.shf-hero-tag {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  letter-spacing: -0.02em;
  color: var(--gold);
}
.shf-hero .shf-lead { color: rgba(255,248,237,0.86); margin-bottom: 18px; }
.shf-hero-cta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.shf-hero-meta {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,248,237,0.62);
}

.shf-hero-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.42), 0 0 0 1px rgba(255,255,255,0.12);
}
.shf-hero-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.shf-hero-card-badge {
  position: absolute;
  left: 16px; right: 16px; bottom: 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(246,239,227,0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  color: var(--ink);
}
.shf-hero-card-badge small {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.shf-hero-card-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  color: var(--red);
  margin-top: 2px;
}
.shf-hero-card-badge b {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  color: var(--red);
}

@media (max-width: 900px) {
  .shf-hero {
    min-height: 100svh;
    padding: 100px 0 40px;
    align-items: flex-end;
  }
  .shf-hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .shf-hero-card { max-width: 380px; }
  .shf-hero-logo { width: 72px; height: 72px; margin-bottom: 14px; }
  .shf-hero-shade {
    background:
      linear-gradient(180deg, rgba(20,10,8,0.42) 0%, rgba(20,10,8,0.62) 32%, rgba(20,10,8,0.9) 100%);
  }
}

/* marquee */
.shf-marquee {
  overflow: hidden;
  background: var(--cacao);
  color: var(--gold);
  border-top: 1px solid rgba(255,239,217,0.08);
  border-bottom: 1px solid rgba(255,239,217,0.08);
  padding: 14px 0;
}
.shf-marquee-track {
  display: flex; width: max-content;
  animation: shfMarquee 28s linear infinite;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}
.shf-marquee-track span { padding: 0 28px; }
@keyframes shfMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* stats */
.shf-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.shf-stat {
  padding: 28px 22px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.shf-stat:last-child { border-right: 0; }
.shf-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  letter-spacing: -0.04em;
  color: var(--ink);
}
.shf-stat span {
  display: block; margin-top: 4px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
@media (max-width: 720px) {
  .shf-stats { grid-template-columns: 1fr 1fr; }
  .shf-stat:nth-child(2) { border-right: 0; }
  .shf-stat:nth-child(1),
  .shf-stat:nth-child(2) { border-bottom: 1px solid var(--line); }
}

/* sections */
.shf-section { padding: clamp(72px, 10vw, 128px) 0; }
.shf-section-head {
  max-width: 640px;
  margin-bottom: clamp(32px, 5vw, 56px);
}
.shf-section-head.is-center {
  text-align: center;
  margin-left: auto; margin-right: auto;
}
.shf-section-head h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4.8vw, 3.5rem);
  font-weight: 600;
  line-height: 1.04;
  color: var(--ink);
  text-wrap: balance;
}
.shf-section-head p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}
.shf-dark { background: var(--cacao); color: #fff8ed; }
.shf-dark .shf-section-head h2 { color: #fff8ed; }
.shf-dark .shf-section-head p { color: rgba(255,248,237,0.68); }
.shf-warm { background: var(--paper-2); }

/* story */
.shf-story {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.shf-story-media {
  position: relative;
  padding: 0 7% 9% 0;
}
.shf-story-media > img:first-child {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.shf-story-float {
  position: absolute;
  right: 0; bottom: 0;
  width: min(48%, 220px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 20px;
  border: 6px solid var(--paper);
  box-shadow: 0 18px 40px rgba(20,10,8,0.22);
}
.shf-quote {
  margin: 22px 0 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  line-height: 1.3;
  letter-spacing: -0.03em;
  color: var(--red);
}
.shf-story h2 {
  margin: 0 0 18px;
  font-size: clamp(2.1rem, 4.4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.06;
  color: var(--ink);
  text-wrap: balance;
}
.shf-story p.body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 16px;
}
@media (max-width: 860px) {
  .shf-story { grid-template-columns: 1fr; gap: 36px; }
  .shf-story-media { padding: 0 12% 12% 0; }
}

/* dishes */
.shf-dishes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.shf-dish {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 340px;
  isolation: isolate;
  background: var(--cacao-2);
  border: 1px solid var(--line-light);
  transition: transform .45s var(--ease), box-shadow .45s;
}
.shf-dish:hover { transform: translateY(-4px); box-shadow: 0 24px 50px rgba(0,0,0,0.28); }
.shf-dish-media {
  position: absolute; inset: 0;
}
.shf-dish-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform .9s var(--ease);
  filter: saturate(0.92) brightness(0.78);
}
.shf-dish:hover .shf-dish-media img { transform: scale(1.1); }
.shf-dish::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,10,8,0.92) 0%, rgba(20,10,8,0.2) 55%, rgba(20,10,8,0.08) 100%);
  pointer-events: none;
}
.shf-dish-body {
  position: relative; z-index: 1;
  height: 100%;
  min-height: 340px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px;
  color: #fff;
}
.shf-dish-badge {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
}
.shf-dish-row {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 12px;
}
.shf-dish h3 {
  margin: 0;
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.shf-price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--gold);
  white-space: nowrap;
}
.shf-dish p {
  margin: 8px 0 14px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255,248,237,0.78);
  max-width: 42ch;
}
.shf-dish-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
}
.shf-dish-cta svg { width: 15px; height: 15px; }
.shf-dish-cta:hover { color: var(--gold); }
@media (max-width: 720px) {
  .shf-dishes { grid-template-columns: 1fr; }
  .shf-dish, .shf-dish-body { min-height: 300px; }
}

/* olla */
.shf-olla {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  margin-top: 16px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--red-deep) 0%, var(--red) 48%, var(--green-deep) 100%);
  color: #fff;
  box-shadow: var(--shadow);
}
.shf-olla img {
  width: 100%; height: 100%;
  min-height: 280px;
  object-fit: cover;
}
.shf-olla-copy { padding: clamp(28px, 4vw, 48px); }
.shf-olla-copy .shf-chip {
  margin-bottom: 16px;
  background: rgba(255,255,255,0.12);
}
.shf-olla-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1.08;
}
.shf-olla-copy p { margin: 0 0 10px; color: rgba(255,255,255,0.9); line-height: 1.65; }
.shf-olla-foot {
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px;
  margin-top: 22px;
}
.shf-olla-price {
  background: #fff;
  color: var(--red);
  border-radius: 18px;
  padding: 12px 18px;
  text-align: center;
  min-width: 110px;
}
.shf-olla-price small {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.shf-olla-price b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-top: 2px;
}
.shf-olla .shf-btn { background: #fff; color: var(--red) !important; }
.shf-olla .shf-btn:hover { color: var(--red) !important; }
@media (max-width: 760px) {
  .shf-olla { grid-template-columns: 1fr; }
  .shf-olla img { min-height: 220px; aspect-ratio: 16 / 10; }
}

/* pintos */
.shf-pinto-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 0.9fr;
  gap: 18px;
}
.shf-board {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px 26px 20px;
  box-shadow: 0 16px 40px rgba(20,10,8,0.06);
}
.shf-board.is-featured {
  border-color: rgba(183,31,38,0.22);
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}
.shf-board h3 {
  margin: 0 0 16px;
  font-size: 1.25rem;
  color: var(--green);
}
.shf-board.is-featured h3 { color: var(--red); }
.shf-pinto-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(28,18,15,0.08);
}
.shf-pinto-row:last-of-type { border-bottom: 0; }
.shf-pinto-info { flex: 1; min-width: 0; }
.shf-pinto-name {
  display: flex; align-items: baseline; gap: 8px;
  font-weight: 600;
  font-size: 0.98rem;
}
.shf-pinto-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(28,18,15,0.28);
  transform: translateY(-4px);
  min-width: 16px;
}
.shf-pinto-price {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--red);
  white-space: nowrap;
}
.shf-pinto-note {
  margin: 3px 0 0;
  font-size: 0.78rem;
  color: var(--muted);
}
.shf-pinto-ask {
  flex-shrink: 0;
  text-decoration: none;
  background: transparent;
  color: var(--green);
  border: 1px solid rgba(62,107,40,0.28);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 999px;
  transition: background .2s, color .2s, transform .2s;
}
.shf-pinto-ask:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-1px);
}
.shf-sides { display: flex; flex-wrap: wrap; gap: 8px; }
.shf-side {
  background: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  transition: transform .2s var(--ease), box-shadow .2s;
}
.shf-side:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(20,10,8,0.08); }
@media (max-width: 900px) {
  .shf-pinto-grid { grid-template-columns: 1fr; }
}

/* how */
.shf-how {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  position: relative;
}
.shf-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px 24px 24px;
  text-align: left;
  box-shadow: 0 16px 40px rgba(20,10,8,0.05);
}
.shf-step-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: -0.05em;
  color: var(--red);
  line-height: 1;
  margin-bottom: 14px;
}
.shf-step:nth-child(2) .shf-step-num { color: var(--green); }
.shf-step:nth-child(3) .shf-step-num { color: var(--wa); }
.shf-step h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
  color: var(--ink);
}
.shf-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.shf-step .shf-btn { margin-top: 18px; }
@media (max-width: 800px) {
  .shf-how { grid-template-columns: 1fr; }
}

/* gallery */
.shf-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  gap: 12px;
}
.shf-g-item {
  position: relative;
  overflow: hidden;
  border: none;
  padding: 0;
  cursor: zoom-in;
  border-radius: 18px;
  background: var(--paper-2);
  width: 100%;
  height: 100%;
  font: inherit;
  color: inherit;
}
.shf-g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s var(--ease);
}
.shf-g-item:hover img { transform: scale(1.07); }
.shf-g-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.shf-g-item:nth-child(2) { grid-column: span 2; }
.shf-g-item:nth-child(6) { grid-column: span 2; }
.shf-g-zoom {
  position: absolute; right: 10px; bottom: 10px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(246,239,227,0.92);
  color: var(--red);
  display: grid; place-items: center;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity .25s, transform .25s;
}
.shf-g-item:hover .shf-g-zoom,
.shf-g-item:focus-visible .shf-g-zoom { opacity: 1; transform: scale(1); }
@media (max-width: 720px) {
  .shf-gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 140px;
  }
  .shf-g-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .shf-g-item:nth-child(2),
  .shf-g-item:nth-child(6) { grid-column: span 1; }
}

/* reviews */
.shf-rating {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff;
  border-radius: 999px;
  padding: 8px 16px 8px 10px;
  box-shadow: 0 10px 24px rgba(20,10,8,0.08);
  margin-top: 18px;
}
.shf-rating b {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--red);
}
.shf-stars { color: #e0b423; letter-spacing: 2px; font-size: 0.9rem; }
.shf-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.shf-review {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px 24px 22px;
  box-shadow: 0 14px 34px rgba(20,10,8,0.05);
}
.shf-review::before {
  content: "“";
  position: absolute; top: 8px; right: 18px;
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  color: rgba(183,31,38,0.1);
  pointer-events: none;
}
.shf-review p {
  margin: 8px 0 16px;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.shf-review cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--red);
}
.shf-boost {
  margin-top: 28px;
  text-align: center;
  background: #fff;
  border: 1px solid #d2e3fc;
  border-radius: 24px;
  padding: 32px 24px;
}
.shf-boost h3 {
  margin: 0 0 8px;
  font-size: 1.6rem;
  color: var(--ink);
}
.shf-boost p {
  margin: 0 auto 18px;
  max-width: 460px;
  color: var(--muted);
}
.shf-btn-g {
  background: #1a73e8;
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(26,115,232,0.28);
}
.shf-btn-g:hover { background: #1557b0; color: #fff !important; }
.shf-g-link {
  display: inline-block;
  margin-top: 12px;
  color: #1a73e8;
  font-weight: 600;
  font-size: 0.88rem;
}
@media (max-width: 800px) {
  .shf-reviews { grid-template-columns: 1fr; }
}

/* visit */
.shf-visit {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: stretch;
}
.shf-map {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 280px;
  background: #1a0e0c;
  border: 1px solid var(--line-light);
  box-shadow: 0 20px 50px rgba(0,0,0,0.28);
}
.shf-map iframe {
  width: 100%; height: 100%;
  min-height: 420px;
  border: 0; display: block;
  filter: saturate(0.9) contrast(1.04);
}
.shf-map-pin {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(246,239,227,0.96);
  color: var(--red);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 10px 14px;
  border-radius: 999px;
  font-family: var(--font-display);
  pointer-events: none;
}
.shf-map-pin i {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(183,31,38,0.2);
  font-style: normal;
}
.shf-info { display: grid; gap: 14px; }
.shf-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-light);
  border-radius: 18px;
  padding: 20px 22px;
}
.shf-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: var(--gold);
}
.shf-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,248,237,0.82);
  white-space: pre-line;
}
.shf-card a { color: var(--gold); font-weight: 600; font-size: 0.88rem; }
.shf-card a:hover { color: #fff; }
.shf-card .shf-status { margin-bottom: 10px; }
@media (max-width: 860px) {
  .shf-visit { grid-template-columns: 1fr; }
  .shf-map iframe { min-height: 280px; }
}

/* footer */
.shf-footer {
  background: #0e0706;
  color: #ffefd9;
  padding: 36px 0 28px;
}
.shf-footer-row {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: 16px;
}
.shf-footer-brand {
  display: flex; align-items: center; gap: 10px;
}
.shf-footer-brand img {
  width: 36px; height: 36px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
}
.shf-footer-brand strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
}
.shf-footer p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255,248,237,0.55);
}
.shf-footer-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
}

/* fab */
.shf-fab {
  position: fixed;
  right: 20px; bottom: 22px;
  z-index: 70;
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
  background: var(--wa);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px 18px 12px 12px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(37,211,102,0.4), 0 4px 12px rgba(0,0,0,0.18);
  transition: transform .2s var(--ease), box-shadow .2s;
}
.shf-fab:hover {
  transform: translateY(-3px) scale(1.03);
  color: #fff !important;
}
.shf-fab-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: grid; place-items: center;
}
.shf-fab-icon svg { width: 22px; height: 22px; display: block; }
.shf-fab-ping {
  position: absolute; inset: -4px;
  border-radius: 999px;
  border: 2px solid rgba(37,211,102,0.5);
  animation: shfFabPing 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes shfFabPing {
  0% { transform: scale(0.92); opacity: 0.7; }
  100% { transform: scale(1.18); opacity: 0; }
}
@media (max-width: 520px) {
  .shf-fab-label { display: none; }
  .shf-fab { padding: 12px; right: 14px; bottom: 16px; }
  .shf-fab-icon { width: 48px; height: 48px; }
}

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: none; align-items: center; justify-content: center;
  background: rgba(14,7,6,0.94);
  padding: 20px;
  opacity: 0;
  transition: opacity .25s ease;
}
.lightbox.is-open { display: flex; opacity: 1; }
.lightbox-inner {
  position: relative;
  width: min(960px, 100%);
  max-height: 90vh;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.lightbox-img {
  max-width: 100%;
  max-height: calc(90vh - 70px);
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  user-select: none;
  -webkit-user-drag: none;
}
.lightbox-caption { color: #ffefd9; font-size: 0.95rem; font-weight: 600; margin: 0; text-align: center; }
.lightbox-counter { color: rgba(255,239,217,0.6); font-size: 0.8rem; font-weight: 600; }
.lightbox-btn {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.22);
  cursor: pointer;
  background: rgba(255,248,237,0.12);
  color: #fff;
  border-radius: 50%;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  backdrop-filter: blur(6px);
}
.lightbox-close { top: 16px; right: 16px; position: fixed; z-index: 210; }
.lightbox-prev { left: 12px; top: 50%; transform: translateY(-50%); position: fixed; }
.lightbox-next { right: 12px; top: 50%; transform: translateY(-50%); position: fixed; }

/* motion helpers */
[data-reveal] { opacity: 0; transform: translateY(28px); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-hero] { opacity: 0; }
[data-hero].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .shf-hero-bg img, .shf-hero-video, .shf-fab-ping, .shf-status.is-open .shf-dot,
  #shf-boot img, .shf-marquee-track {
    animation: none !important;
  }
  .shf-hero-bg img, .shf-hero-video { transform: none !important; }
  [data-reveal], [data-hero] {
    opacity: 1 !important;
    transform: none !important;
  }
  .shf-dish, .shf-btn, .shf-fab, .shf-pinto-ask, .shf-side, .shf-g-item img {
    transition: none !important;
  }
  html { scroll-behavior: auto; }
}
