:root {
  --bg: #111111;
  --bg-soft: #181818;
  --card: #171717;
  --line: rgba(255,255,255,.1);
  --text: #f4efe8;
  --muted: rgba(244,239,232,.76);
  --muted-dark: rgba(20,20,20,.72);
  --ivory: #f5f1ea;
  --gold: #d1b17a;
  --gold-soft: #e1c38b;
  --rose: #d39bb0;
  --matcha: #a8ba80;
  --choco: #b78e76;
  --mango: #e7c45d;
  --bubble: #c8b7e9;
  --cheese: #e7dbc6;
  --oreo: #c0bcc0;
  --shadow: 0 24px 80px rgba(0,0,0,.28);
  --radius: 26px;
  --radius-lg: 34px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: min(calc(100% - 2rem), var(--container)); margin: 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(10,10,10,.54);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-inner {
  min-height: 84px;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand-logo { width: min(260px, 46vw); height: auto; }
.site-nav { display: flex; align-items: center; gap: 1.35rem; }
.site-nav a { color: rgba(244,239,232,.84); font-size: .95rem; }
.site-nav a:hover { color: #fff; }
.nav-cta {
  padding: .9rem 1.2rem; border-radius: 999px;
  border: 1px solid rgba(209,177,122,.42); background: rgba(209,177,122,.1);
}
.menu-toggle {
  display: none; width: 48px; height: 48px; border-radius: 999px; border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04); padding: 0;
}
.menu-toggle span { display: block; width: 18px; height: 2px; background: var(--ivory); margin: 4px auto; }

.hero {
  position: relative; min-height: min(100svh, 920px); display: flex; align-items: flex-end; overflow: clip;
}
.hero-video, .hero-overlay { position: absolute; inset: 0; }
.hero-video { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  background:
    linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.35) 25%, rgba(0,0,0,.8) 100%),
    radial-gradient(circle at 30% 40%, rgba(0,0,0,.05) 0%, rgba(0,0,0,.6) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 9.75rem 0 5.8rem; max-width: 840px; }
.eyebrow {
  margin: 0 0 1rem; text-transform: uppercase; letter-spacing: .22em; font-size: .76rem; color: rgba(209,177,122,.95);
}
.eyebrow-dark { color: rgba(130,94,36,.88); }
.hero h1, .section h2, .visual-copy h2, .contact-copy h2 {
  margin: 0; font-family: Georgia, "Times New Roman", serif; line-height: .98; letter-spacing: -.02em;
}
.hero h1 { font-size: clamp(3rem, 6vw, 5.8rem); max-width: 12.5ch; }
.hero-copy {
  margin: 1.35rem 0 0; max-width: 60ch; font-size: 1.06rem; line-height: 1.82; color: rgba(244,239,232,.87);
}
.hero-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-contact-bar {
  margin-top: 1.6rem; display: inline-flex; align-items: center; gap: 1rem; padding: .95rem 1.2rem;
  border-radius: 999px; background: rgba(17,17,17,.36); border: 1px solid rgba(255,255,255,.1); color: rgba(244,239,232,.9);
}
.hero-contact-bar span { width: 1px; height: 16px; background: rgba(255,255,255,.18); }
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 1.45rem;
  border-radius: 999px; font-weight: 600; transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--gold); color: #16130f; }
.button-primary:hover { background: var(--gold-soft); }
.button-secondary { border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.06); }

.section { padding: 6rem 0; }
.intro {
  background: linear-gradient(180deg, #f3eee6 0%, #ece4d9 100%); color: #141414;
}
.two-col { display: grid; grid-template-columns: 1.02fr .98fr; gap: 3rem; align-items: center; }
.section h2, .visual-copy h2, .contact-copy h2 { font-size: clamp(2.5rem, 4vw, 4.1rem); }
.intro-copy p, .section-heading p, .visual-copy p, .service-copy p, .flavor-copy p, .contact-copy p {
  font-size: 1.03rem; line-height: 1.8;
}
.intro-media img, .contact-media img, .stack-main, .stack-overlay, .service-card img, .flavor-row img {
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
}
.bullet-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; margin-top: 2rem;
}
.bullet-grid div {
  padding: 1.2rem 1.1rem; border-radius: 18px; background: rgba(255,255,255,.58); border: 1px solid rgba(20,20,20,.06);
}
.bullet-grid strong { display: block; margin-bottom: .4rem; }

.section-heading { max-width: 760px; margin-bottom: 2.4rem; }
.service { background: linear-gradient(180deg, #121212 0%, #171717 100%); }
.service-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.4rem; }
.service-card {
  background: var(--card); border: 1px solid rgba(255,255,255,.06); border-radius: var(--radius-lg); overflow: hidden;
}
.service-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 0; box-shadow: none; }
.service-copy { padding: 1.5rem; }
.service-copy h3 { margin: .8rem 0 .7rem; font-family: Georgia, "Times New Roman", serif; font-size: 1.8rem; }
.pill {
  display: inline-flex; padding: .45rem .8rem; border-radius: 999px; background: rgba(209,177,122,.14); color: var(--gold);
  border: 1px solid rgba(209,177,122,.26); font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em;
}

.visual-band { background: #0f0f0f; }
.visual-layout { display: grid; grid-template-columns: 1fr 1.05fr; gap: 2rem; align-items: center; }
.visual-stack { position: relative; min-height: 640px; }
.stack-main { width: 100%; height: 640px; object-fit: cover; }
.stack-overlay {
  position: absolute; right: -1rem; bottom: -2rem; width: min(42%, 300px); aspect-ratio: 4 / 5; object-fit: cover;
  border: 8px solid #111111;
}

.flavors { background: linear-gradient(180deg, #131313 0%, #101010 100%); }
.flavor-list { display: grid; gap: 2rem; }
.flavor-row {
  display: grid; grid-template-columns: .92fr 1.08fr; gap: 2rem; align-items: center;
  background: rgba(255,255,255,.02); border: 1px solid rgba(255,255,255,.06); border-radius: var(--radius-lg); padding: 1.25rem;
}
.flavor-row.reverse { grid-template-columns: 1.08fr .92fr; }
.flavor-row.reverse img { order: 2; }
.flavor-row.reverse .flavor-copy { order: 1; }
.flavor-row img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.flavor-copy { padding: .2rem .3rem; }
.flavor-copy h3 { margin: .7rem 0 .7rem; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 3vw, 2.8rem); }
.flavor-tag {
  display: inline-flex; align-items: center; justify-content: center; min-height: 34px; padding: 0 .85rem; border-radius: 999px;
  font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; color: #161616;
}
.tag-matcha { background: var(--matcha); }
.tag-fresa { background: var(--rose); }
.tag-choco { background: var(--choco); }
.tag-mango { background: var(--mango); }
.tag-bubble { background: var(--bubble); }
.tag-cheese { background: var(--cheese); }
.tag-oreo { background: var(--oreo); }

.horeca {
  background: linear-gradient(180deg, #eee5d9 0%, #f4efe7 100%); color: #141414;
}
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.contact-cards {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; margin: 2rem 0 1.2rem;
}
.contact-card {
  padding: 1.25rem 1.2rem; border-radius: 20px; background: rgba(255,255,255,.65); border: 1px solid rgba(20,20,20,.08);
}
.contact-card span { display: block; font-size: .82rem; text-transform: uppercase; letter-spacing: .16em; color: rgba(130,94,36,.88); margin-bottom: .55rem; }
.contact-card strong { font-size: 1.1rem; word-break: break-word; }
.cta-group { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1rem; }

.site-footer { border-top: 1px solid rgba(255,255,255,.06); background: #101010; }
.footer-inner {
  min-height: 94px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; color: rgba(244,239,232,.82);
}
.footer-inner strong { display: block; margin-bottom: .35rem; font-family: Georgia, "Times New Roman", serif; letter-spacing: .18em; }
.footer-links { display: flex; gap: 1.4rem; flex-wrap: wrap; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 960px) {
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute; top: calc(100% + .7rem); right: 1rem; width: min(320px, calc(100vw - 2rem));
    flex-direction: column; align-items: stretch; padding: 1rem; border-radius: 22px; background: rgba(15,15,15,.96);
    border: 1px solid rgba(255,255,255,.08); box-shadow: 0 24px 60px rgba(0,0,0,.32); display: none;
  }
  .site-nav.is-open { display: flex; }
  .two-col, .visual-layout, .contact-wrap, .service-grid, .flavor-row, .flavor-row.reverse { grid-template-columns: 1fr; }
  .flavor-row.reverse img, .flavor-row.reverse .flavor-copy { order: initial; }
  .visual-stack { min-height: auto; }
  .stack-main { height: auto; }
  .stack-overlay { position: static; width: 54%; margin: -4rem 0 0 auto; }
  .contact-cards, .bullet-grid { grid-template-columns: 1fr; }
  .footer-inner { padding: 1rem 0; flex-direction: column; align-items: flex-start; }
}

@media (max-width: 720px) {
  .hero-content { padding: 8.5rem 0 4rem; }
  .hero h1 { font-size: clamp(2.4rem, 12vw, 4rem); }
  .hero-contact-bar { display: flex; flex-wrap: wrap; border-radius: 20px; }
  .hero-contact-bar span { display: none; }
  .section { padding: 4.4rem 0; }
  .flavor-row { padding: .9rem; gap: 1rem; }
  .flavor-copy h3 { font-size: 2rem; }
}
