/* ============ TOKENS ============ */
:root {
  /* Paleta orgânica aconchegante — warm naturals */
  --paper:        #f4ece0;   /* fundo creme quente, como papel manteigado */
  --paper-deep:   #ebdfcc;   /* variação mais saturada */
  --paper-light:  #faf4e8;
  --ink:          #1e160f;   /* preto com toque de café */
  --ink-soft:     #3a2d22;
  --muted:        #7a6b5c;
  --line:         rgba(30, 22, 15, 0.14);
  --line-soft:    rgba(30, 22, 15, 0.08);

  --coffee-deep:  #2a1d12;
  --coffee-mid:   #6b4a32;
  --coffee-warm:  #a0755e;

  --leaf:         #4a5d3b;   /* verde mais quente, oliva */
  --leaf-soft:    #7a8a5e;

  /* Accent (dinâmico via tweak) */
  --accent:       #c8553d;   /* terracotta */
  --accent-soft:  #e09880;
  --accent-deep:  #8a3826;

  --radius:       2px;

  --font-serif:   "Fraunces", Georgia, serif;
  --font-sans:    "Inter", system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;

  --container:    1240px;
}

/* Accent variants */
[data-accent="terracotta"] { --accent:#c8553d; --accent-soft:#e09880; --accent-deep:#8a3826; }
[data-accent="ochre"]      { --accent:#c9a04c; --accent-soft:#dcc287; --accent-deep:#8a6c20; }
[data-accent="forest"]     { --accent:#4a5d3b; --accent-soft:#7a8a5e; --accent-deep:#2f3d25; }
[data-accent="plum"]       { --accent:#7a4a5c; --accent-soft:#a87a8b; --accent-deep:#4f2f3c; }

/* Serif style */
[data-serif="fraunces"]    { --font-serif: "Fraunces", Georgia, serif; }
[data-serif="georgia"]     { --font-serif: Georgia, "Times New Roman", serif; }

/* ============ RESET ============ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display:block; max-width:100%; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.reveal-in {
  opacity: 1;
  transform: translateY(0);
}

/* ============ GRAIN (texture) ============ */
body[data-grain="on"]::after {
  content:"";
  position: fixed; inset:0;
  pointer-events:none;
  z-index: 9998;
  opacity: .38;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.18  0 0 0 0 0.12  0 0 0 0 0.07  0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
body[data-grain="heavy"]::after { opacity: .6; }
body[data-grain="off"]::after { display:none; }

/* ============ UTIL ============ */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .container { padding: 0 20px; } }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content:"";
  display:inline-block;
  width: 24px; height: 1px;
  background: currentColor;
  opacity: .7;
}
.eyebrow.no-rule::before { display:none; }

.hrule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* Display type */
.display {
  font-family: var(--font-serif);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.display em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--coffee-mid);
}

.meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: 999px;
  transition: transform .25s ease, background .25s, color .25s, border-color .25s, box-shadow .25s;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn .arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(3px); }
.btn-primary { background: var(--ink); color: var(--paper-light); }
.btn-primary:hover { background: var(--coffee-deep); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-deep); }
.btn-on-dark { background: transparent; color: var(--paper-light); border-color: rgba(244,236,224,0.3); }
.btn-on-dark:hover { border-color: var(--paper-light); }
.btn-lg { padding: 18px 32px; font-size: 14px; }

/* ============ NAVBAR ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background .3s, padding .3s, backdrop-filter .3s;
}
.nav.scrolled {
  background: rgba(244, 236, 224, 0.85);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-variation-settings: "opsz" 14;
  color: var(--accent);
}
.nav-mark {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-family: var(--font-serif);
  font-style: italic;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  color: var(--ink);
  opacity: .75;
  padding: 6px 0;
  position: relative;
  transition: opacity .2s;
}
.nav-links a:hover { opacity: 1; }
.nav-links a.cta {
  padding: 10px 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  opacity: 1;
  font-weight: 500;
}
.nav-links a.cta:hover { background: var(--ink); color: var(--paper-light); }
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 101;
}
.nav-toggle span {
  display: block;
  position: absolute;
  left: 8px;
  right: 8px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s, opacity .25s, top .3s;
}
.nav-toggle span:nth-child(1) { top: 13px; }
.nav-toggle span:nth-child(2) { top: 19px; }
.nav-toggle span:nth-child(3) { top: 25px; }
.nav-toggle.active span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

.nav-mobile {
  position: fixed;
  inset: 0;
  background: rgba(30,22,15,0.35);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 99;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.nav-mobile.open { opacity: 1; pointer-events: auto; }
.nav-mobile > ul {
  margin-top: 64px;
  background: var(--paper-light);
  width: min(320px, 90vw);
  min-height: calc(100vh - 64px);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  list-style: none;
  border-left: 1px solid var(--line);
  transform: translateX(40px);
  opacity: 0;
  transition: transform .3s ease .05s, opacity .25s ease .05s;
}
.nav-mobile.open > ul { transform: translateX(0); opacity: 1; }
.nav-mobile li { border-bottom: 1px solid var(--line-soft); }
.nav-mobile li:last-child { border-bottom: 0; margin-top: 16px; }
.nav-mobile a {
  display: block;
  padding: 18px 4px;
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--ink);
  transition: color .2s, padding-left .2s;
}
.nav-mobile a:hover { color: var(--accent); padding-left: 8px; }
.nav-mobile a.cta {
  background: var(--ink);
  color: var(--paper-light);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  padding: 14px 20px;
  text-align: center;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.nav-mobile a.cta:hover { background: var(--accent); color: var(--paper-light); padding-left: 20px; }

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  background: var(--paper);
}
.hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .9;
}

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - 220px);
  position: relative;
  z-index: 2;
}
.hero-copy { position: relative; }
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-kicker-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(0.8); }
}
.hero-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: clamp(3.4rem, 8vw, 7.2rem);
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--coffee-mid);
}
.hero-title .accent-stroke {
  display: inline-block;
  position: relative;
}
.hero-title .accent-stroke::after {
  content: "";
  position: absolute;
  left: -2px; right: -2px; bottom: 8%;
  height: 0.32em;
  background: var(--accent);
  opacity: .22;
  z-index: -1;
  transform: skewX(-6deg);
}
.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  font-style: italic;
  color: var(--ink-soft);
  max-width: 420px;
  margin-bottom: 44px;
  font-weight: 300;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-foot {
  display: flex;
  gap: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  max-width: 440px;
}
.hero-foot-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-foot-item .num {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}
.hero-foot-item .lab {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Hero right — editorial image card */
.hero-image {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 520px;
  justify-self: end;
  width: 100%;
}
.hero-image-card {
  position: absolute;
  inset: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(30,22,15,0.35);
}
.hero-image-caption {
  position: absolute;
  left: -20px; bottom: -20px;
  background: var(--paper-light);
  padding: 14px 20px;
  border: 1px solid var(--line);
  max-width: 260px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--muted);
  line-height: 1.6;
  text-transform: uppercase;
}
.hero-image-caption .cap-title {
  color: var(--ink);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  font-size: 16px;
  letter-spacing: 0;
  display: block;
  margin-bottom: 4px;
}
.hero-stamp {
  position: absolute;
  top: -32px; right: -32px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1.4;
  animation: rotate 24s linear infinite;
  z-index: 3;
}
.hero-stamp-inner {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1;
}
@keyframes rotate { to { transform: rotate(360deg); } }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--container);
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 2;
  pointer-events: none;
}
.hero-scroll-hint > span:first-child { pointer-events: auto; }
.hero-scroll-hint .line {
  flex: 0 0 48px;
  height: 1px;
  background: var(--ink);
  opacity: .4;
  position: relative;
  overflow: hidden;
}
.hero-scroll-hint .line::after {
  content:""; position: absolute; inset: 0;
  background: var(--accent);
  animation: slide 2.4s ease-in-out infinite;
}
@keyframes slide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Decorative SVG leaf (subtle) */
.hero-leaf {
  position: absolute;
  right: -6%;
  top: 5%;
  width: 50%;
  max-width: 640px;
  opacity: .18;
  z-index: 1;
  pointer-events: none;
  color: var(--leaf);
}

/* Hero variant: overlay (image full-bleed right, text floats) */
[data-hero="overlay"] .hero-inner {
  grid-template-columns: 1fr;
}
[data-hero="overlay"] .hero-image {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 55%;
  max-width: none;
  aspect-ratio: auto;
  z-index: 1;
  opacity: 0.9;
}
[data-hero="overlay"] .hero-copy {
  max-width: 640px;
  background: rgba(244, 236, 224, 0.72);
  padding: 40px;
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  z-index: 3;
}

/* Hero variant: split (title full width, image below) */
[data-hero="centered"] .hero-inner {
  grid-template-columns: 1fr;
  text-align: center;
}
[data-hero="centered"] .hero-copy { max-width: 900px; margin: 0 auto; }
[data-hero="centered"] .hero-kicker { justify-content: center; }
[data-hero="centered"] .hero-sub { margin-left: auto; margin-right: auto; }
[data-hero="centered"] .hero-cta { justify-content: center; }
[data-hero="centered"] .hero-foot { margin: 0 auto; justify-content: center; }
[data-hero="centered"] .hero-image { display: none; }

/* ============ PLACEHOLDERS ============ */
.ph {
  position: relative;
  width: 100%; height: 100%;
  background: var(--coffee-warm);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 16px;
  color: rgba(255,255,255,0.86);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ph-label {
  background: rgba(0,0,0,0.3);
  padding: 5px 9px;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}
.ph::before {
  content:"";
  position:absolute; inset:0;
  background-image:
    repeating-linear-gradient(
      135deg,
      rgba(0,0,0,0.12) 0 1px,
      transparent 1px 14px
    ),
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15), transparent 40%),
    radial-gradient(circle at 75% 70%, rgba(0,0,0,0.2), transparent 50%);
}
.ph::after {
  content:"";
  position:absolute; inset:0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/></svg>");
  mix-blend-mode: overlay;
}

.ph-coffee  { background: linear-gradient(135deg, #4a2f1c, #8a5a3c); }
.ph-cream   { background: linear-gradient(135deg, #d4b896, #b88d68); }
.ph-leaf    { background: linear-gradient(135deg, #3a4a2c, #6b7a4a); }
.ph-dark    { background: linear-gradient(135deg, #1e140a, #3c2818); }
.ph-accent  { background: linear-gradient(135deg, var(--accent-deep), var(--accent)); }
.ph-bean    { background: radial-gradient(ellipse at 40% 35%, #6b4a32 0%, #3c2818 60%, #1e140a 100%); }

/* Placeholders neutral option */
body[data-placeholders="neutral"] .ph,
body[data-placeholders="neutral"] .ph-coffee,
body[data-placeholders="neutral"] .ph-cream,
body[data-placeholders="neutral"] .ph-leaf,
body[data-placeholders="neutral"] .ph-dark,
body[data-placeholders="neutral"] .ph-accent,
body[data-placeholders="neutral"] .ph-bean {
  background: #d9ccb8;
  color: var(--muted);
}
body[data-placeholders="neutral"] .ph::before {
  background-image: repeating-linear-gradient(135deg, rgba(30,22,15,0.06) 0 1px, transparent 1px 14px);
}
body[data-placeholders="neutral"] .ph::after { display: none; }
body[data-placeholders="neutral"] .ph-label { background: rgba(30,22,15,0.08); color: var(--muted); }

/* ============ RIBBON / Stats strip ============ */
.ribbon {
  padding: 40px 0;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.ribbon > .container {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-top: 32px;
  padding-bottom: 32px;
}
.ribbon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ribbon-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 0;
  border-left: 1px solid var(--line);
  padding-left: 20px;
}
.ribbon-item:first-child { border-left: 0; padding-left: 0; }
.ribbon-num {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.ribbon-num em { font-style: italic; color: var(--accent); font-weight: 400; }
.ribbon-lab {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============ SECTION base ============ */
.sec { padding: 120px 0; position: relative; }
.sec-head {
  max-width: 780px;
  margin-bottom: 64px;
}
.sec-head .eyebrow { margin-bottom: 24px; }
.sec-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  letter-spacing: -0.02em;
  line-height: 0.98;
  color: var(--ink);
  margin-bottom: 24px;
}
.sec-title em {
  font-style: italic;
  color: var(--coffee-mid);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-weight: 300;
}
.sec-desc {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 560px;
}

/* ============ ABOUT ============ */
.about {
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
  aspect-ratio: 4 / 5;
}
.about-visual .v-main {
  position: absolute;
  top: 0; left: 0;
  width: 72%; height: 78%;
}
.about-visual .v-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 56%; height: 52%;
  border: 10px solid var(--paper);
}
.about-visual .v-badge {
  position: absolute;
  top: 28px; right: 32px;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--paper-light);
  border: 1px solid var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.about-visual .v-badge .b-num {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 500;
  line-height: 1;
  color: var(--ink);
}
.about-visual .v-badge .b-lab {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.about-visual .v-quote {
  position: absolute;
  bottom: -24px; left: -24px;
  background: var(--paper-light);
  border: 1px solid var(--line);
  padding: 18px 22px;
  max-width: 280px;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-soft);
  z-index: 3;
}
.about-visual .v-quote .qmark {
  display: block;
  font-size: 42px;
  line-height: 0.5;
  color: var(--accent);
  margin-bottom: 8px;
  font-style: normal;
}

.about-text p {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.about-text p:first-of-type::first-letter {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 500;
  line-height: 0.9;
  float: left;
  padding: 6px 14px 0 0;
  color: var(--accent);
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid var(--line);
}
.value-item {
  padding: 18px 2px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.value-item:nth-child(odd) { border-right: 1px solid var(--line); padding-right: 20px; }
.value-item:nth-child(even) { padding-left: 20px; }
.value-item .v-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.value-item .v-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
  flex: 1;
}

/* ============ MENU ============ */
.menu {
  background: var(--paper-deep);
  border-top: 1px solid var(--line);
}
.menu-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.menu-head .sec-head { margin-bottom: 0; }
.menu-date {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
  text-align: right;
  line-height: 1.6;
}
.menu-date strong {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 2px;
}
.menu-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 60px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.menu-tab {
  padding: 16px 22px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  position: relative;
  transition: color .25s;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.menu-tab .t-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted);
  opacity: .7;
}
.menu-tab:hover { color: var(--ink); }
.menu-tab.active { color: var(--ink); font-weight: 500; }
.menu-tab.active::after {
  content:""; position:absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: var(--accent);
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.menu-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 24px;
  padding: 28px 4px;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: background .25s, padding .25s;
  position: relative;
}
.menu-item:nth-child(odd) { padding-right: 28px; border-right: 1px solid var(--line); }
.menu-item:nth-child(even) { padding-left: 28px; }
.menu-item:hover { background: var(--paper-light); }
.menu-item-img {
  width: 80px; height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--line);
}
.menu-item-img .ph { padding: 6px; font-size: 8px; }
.menu-item-img .ph-label { display: none; }

.menu-item-info { min-width: 0; }
.menu-item-top {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
}
.menu-item-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.2;
}
.menu-item-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 3px 7px;
  border: 1px solid var(--accent);
  border-radius: 2px;
  white-space: nowrap;
}
.menu-item-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 6px;
}
.menu-item-origin {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.menu-item-price {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  white-space: nowrap;
  letter-spacing: -0.02em;
}
.menu-item-price .cents { font-size: 14px; color: var(--muted); }

/* ============ EXPERIENCE ============ */
.experience {
  background: var(--coffee-deep);
  color: var(--paper-light);
  position: relative;
  overflow: hidden;
  padding: 140px 0;
}
.experience::before {
  content:"";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 15% 30%, rgba(200,85,61,0.12), transparent 50%),
    radial-gradient(ellipse at 85% 70%, rgba(74,93,59,0.14), transparent 50%);
  pointer-events: none;
}
.experience .sec-title { color: var(--paper-light); }
.experience .sec-title em { color: var(--accent-soft); }
.experience .sec-desc { color: rgba(244,236,224,0.7); }
.experience .eyebrow { color: var(--accent-soft); }

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}
.exp-feat {
  padding: 44px 32px 44px 0;
  border-left: 1px solid rgba(244,236,224,0.12);
  padding-left: 32px;
  position: relative;
}
.exp-feat:first-child { border-left: 0; padding-left: 0; }
.exp-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 5rem;
  font-weight: 300;
  color: var(--accent-soft);
  line-height: 0.9;
  margin-bottom: 20px;
  opacity: .9;
}
.exp-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--paper-light);
  line-height: 1.2;
  margin-bottom: 14px;
}
.exp-text {
  font-size: 14.5px;
  color: rgba(244,236,224,0.66);
  line-height: 1.7;
}

/* ============ LOCATIONS ============ */
.locations {
  background: var(--paper-light);
  border-top: 1px solid var(--line);
}
.loc-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.loc-head .sec-head { margin-bottom: 0; max-width: 640px; }
.loc-filter {
  display: flex;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  background: var(--paper);
}
.loc-filter button {
  padding: 10px 18px;
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--muted);
  border-radius: 999px;
  transition: background .25s, color .25s;
}
.loc-filter button.active {
  background: var(--ink);
  color: var(--paper-light);
}

.loc-directory {
  border-top: 1px solid var(--line);
}
.loc-state-group { border-bottom: 1px solid var(--line); }
.loc-state-head {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 28px 0 20px;
}
.loc-state-name {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  line-height: 1;
}
.loc-state-count {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.loc-rows {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 40px;
  row-gap: 0;
}
.loc-row {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: opacity .25s;
  position: relative;
  border-top: 1px solid var(--line);
}
.loc-row:hover { opacity: 0.75; }

.loc-mall {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 4px;
}
.loc-row .loc-line {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.loc-row .loc-line .k {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  flex-shrink: 0;
  padding-top: 3px;
  width: 42px;
}

/* ============ FRANCHISE ============ */
.franchise {
  background: var(--ink);
  color: var(--paper-light);
  position: relative;
  overflow: hidden;
}
.franchise::before {
  content:"";
  position: absolute;
  inset:0;
  background-image:
    radial-gradient(ellipse at 80% 30%, rgba(200,85,61,0.13), transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(107,74,50,0.3), transparent 55%);
}
.franchise .sec-title { color: var(--paper-light); }
.franchise .sec-title em { color: var(--accent-soft); }
.franchise .sec-desc { color: rgba(244,236,224,0.7); }
.franchise .eyebrow { color: var(--accent-soft); }

.franchise-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  position: relative;
  align-items: start;
}
.fran-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid rgba(244,236,224,0.15);
}
.fran-stat {
  padding: 28px 0;
  border-bottom: 1px solid rgba(244,236,224,0.15);
}
.fran-stat:nth-child(odd) {
  padding-right: 24px;
  border-right: 1px solid rgba(244,236,224,0.15);
}
.fran-stat:nth-child(even) { padding-left: 24px; }
.fran-stat .num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
  color: var(--paper-light);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.fran-stat .num em { color: var(--accent-soft); font-style: italic; }
.fran-stat .lab {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(244,236,224,0.55);
}

.fran-form {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(244,236,224,0.12);
  padding: 36px;
  position: relative;
  z-index: 2;
}
.fran-form-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--paper-light);
  margin-bottom: 6px;
}
.fran-form-subtitle {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 28px;
}
.fran-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fran-form .group { margin-bottom: 20px; }
.fran-form label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(244,236,224,0.6);
  margin-bottom: 8px;
}
.fran-form input,
.fran-form select,
.fran-form textarea {
  width: 100%;
  padding: 12px 0;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--paper-light);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(244,236,224,0.2);
  outline: none;
  transition: border-color .25s;
  border-radius: 0;
}
.fran-form input:focus,
.fran-form select:focus,
.fran-form textarea:focus {
  border-bottom-color: var(--accent-soft);
}
.fran-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8'><path d='M1 1l5 5 5-5' stroke='%23e09880' fill='none' stroke-width='1.5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 20px;
}
.fran-form option { background: var(--ink); }
.fran-form textarea { resize: vertical; min-height: 70px; }
.fran-form input::placeholder,
.fran-form textarea::placeholder { color: rgba(244,236,224,0.3); }
.fran-submit {
  width: 100%;
  padding: 16px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: 999px;
  transition: background .25s, transform .2s;
  margin-top: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.fran-submit:hover { background: var(--accent-deep); transform: translateY(-1px); }
.fran-submit.sent { background: var(--leaf); }

/* ============ INSTAGRAM ============ */
.instagram {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 120px 0 100px;
}
.insta-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.insta-handle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 28px;
  color: var(--ink);
  transition: color .2s;
}
.insta-handle:hover { color: var(--accent); }
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
  gap: 8px;
}
.insta-cell { position: relative; overflow: hidden; }
.insta-cell .ph { transition: transform .6s ease; }
.insta-cell:hover .ph { transform: scale(1.05); }
.insta-cell > img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.insta-cell:hover > img { transform: scale(1.05); }
.insta-cell .ic-overlay {
  position: absolute; inset: 0;
  background: rgba(30,22,15,0.0);
  display: flex; align-items: center; justify-content: center;
  color: var(--paper-light);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  transition: background .3s, opacity .3s;
  z-index: 2;
}
.insta-cell:hover .ic-overlay { background: rgba(30,22,15,0.55); opacity: 1; }
/* mosaic */
.insta-cell:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.insta-cell:nth-child(4) { grid-row: span 2; }
.insta-cell:nth-child(6) { grid-column: span 2; }

/* ============ FOOTER ============ */
.footer {
  background: var(--coffee-deep);
  color: rgba(244,236,224,0.7);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand .nav-logo { color: var(--paper-light); font-size: 26px; margin-bottom: 18px; font-family: var(--font-serif); font-weight: 500; font-variation-settings: "opsz" 144; }
.footer-brand .nav-logo em { color: var(--accent-soft); font-weight: 300; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; color: rgba(244,236,224,0.55); }
.footer h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--paper-light);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: 14px; color: rgba(244,236,224,0.6); transition: color .2s; }
.footer ul a:hover { color: var(--accent-soft); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: rgba(244,236,224,0.6); }
.footer-contact span { display: flex; gap: 10px; align-items: baseline; }
.footer-contact .k { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent-soft); min-width: 42px; }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(244,236,224,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(244,236,224,0.4);
  letter-spacing: 0.06em;
}
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  padding: 6px 0;
  color: rgba(244,236,224,0.6);
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
}
.footer-social a:hover { color: var(--accent-soft); border-bottom-color: var(--accent-soft); }

/* ============ FLOAT BUTTONS ============ */
.float-btns {
  position: fixed;
  bottom: 24px; right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 900;
}
.float-btns a {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(30,22,15,0.25);
  transition: transform .25s;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-sans);
}
.float-btns a:hover { transform: translateY(-2px) scale(1.04); }
.float-wa { background: #25d366; }
.float-wa svg { width: 22px; height: 22px; }
.float-ifood { background: #ea1d2c; font-size: 10px; letter-spacing: 0.05em; }

/* ============ TWEAKS PANEL ============ */
.tweaks-panel {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 288px;
  background: var(--paper-light);
  border: 1px solid var(--line);
  padding: 20px;
  z-index: 10000;
  box-shadow: 0 20px 60px -10px rgba(30,22,15,0.25);
  font-family: var(--font-sans);
  font-size: 12.5px;
  animation: slideIn .3s ease;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.tweaks-panel h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 2px;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tweaks-panel h3 em { font-style: italic; color: var(--accent); font-weight: 400; }
.tweaks-panel .tp-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.tp-row { margin-bottom: 14px; }
.tp-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
  display: block;
}
.tp-segs { display: flex; border: 1px solid var(--line); border-radius: 3px; overflow: hidden; }
.tp-segs button {
  flex: 1;
  padding: 8px 4px;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--muted);
  border-right: 1px solid var(--line);
  background: transparent;
  transition: background .2s, color .2s;
}
.tp-segs button:last-child { border-right: 0; }
.tp-segs button.on { background: var(--ink); color: var(--paper-light); }
.tp-swatches { display: flex; gap: 6px; }
.tp-sw {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: border-color .2s, transform .2s;
  padding: 0;
}
.tp-sw.on { border-color: var(--ink); transform: scale(1.1); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; min-height: auto; }
  .hero-image { max-width: 380px; justify-self: start; }
  .about-grid, .franchise-grid { grid-template-columns: 1fr; gap: 60px; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-item:nth-child(odd), .menu-item:nth-child(even) { padding: 24px 0; border-right: 0; }
  .loc-rows { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr; }
  .exp-feat { border-left: 0; border-top: 1px solid rgba(244,236,224,0.12); padding: 32px 0; }
  .exp-feat:first-child { border-top: 0; }
  .ribbon-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }
  .insta-grid { grid-template-columns: repeat(4, 1fr); }
  .insta-cell:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .insta-cell:nth-child(6) { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .hero-leaf { opacity: 0.1; width: 80%; }
}
@media (max-width: 640px) {
  .sec { padding: 80px 0; }
  .hero { padding: 120px 0 60px; }
  .hero-stamp { width: 86px; height: 86px; top: -20px; right: -10px; }
  .hero-stamp-inner { font-size: 16px; }
  .menu-head { flex-direction: column; align-items: flex-start; }
  .about-values { grid-template-columns: 1fr; }
  .value-item:nth-child(odd), .value-item:nth-child(even) { border-right: 0; padding: 18px 0; }
  .fran-form { padding: 24px; }
  .fran-form .row, .fran-stats { grid-template-columns: 1fr; }
  .fran-stat:nth-child(odd) { padding-right: 0; border-right: 0; }
  .fran-stat:nth-child(even) { padding-left: 0; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .insta-cell:nth-child(1), .insta-cell:nth-child(6) { grid-column: span 2; grid-row: span 1; }
  .insta-cell:nth-child(4) { grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .tweaks-panel { width: calc(100vw - 48px); }
  .ribbon-grid { grid-template-columns: 1fr 1fr; }
  .hero-foot { flex-wrap: wrap; gap: 20px 30px; }
}
