:root {
  --ink: #1d1917;
  --brown: #4b342d;
  --gold: #b78a37;
  --cream: #f6f1e9;
  --paper: rgba(255, 253, 249, 0.89);
  --rose: #d9b3ad;
  --line: rgba(75, 52, 45, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  background: var(--cream) url("sfondo.jpeg") center top / cover fixed;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: rgba(255, 252, 247, 0.64);
  backdrop-filter: blur(2px);
}
a { color: inherit; }
img { max-width: 100%; display: block; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Cormorant Garamond", serif; }

.site-header {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px clamp(20px, 5vw, 76px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.9);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 10;
}
.brand img { width: 168px; }
.main-nav { display: flex; gap: 30px; align-items: center; }
.main-nav a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .7rem;
  font-weight: 700;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}
.main-nav a:hover, .main-nav a.active { color: var(--gold); border-color: var(--gold); }
.menu-toggle { display: none; }
.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .68rem;
  font-weight: 700;
}
.button {
  display: inline-block;
  padding: 13px 22px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: .68rem;
  font-weight: 700;
  border: 1px solid var(--ink);
}
.button-dark { color: white; background: var(--ink); }
.button-light { background: rgba(255,255,255,.45); }
.button:hover { color: var(--ink); background: var(--gold); border-color: var(--gold); }

.home-hero, .yogurt-hero {
  min-height: calc(100vh - 92px);
  max-width: 1400px;
  margin: auto;
  padding: clamp(50px, 9vw, 130px) clamp(22px, 8vw, 120px);
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  align-items: center;
  gap: 60px;
}
.hero-copy { max-width: 780px; }
.hero-copy h1, .yogurt-hero h1 {
  margin: 15px 0 24px;
  font-size: clamp(4.1rem, 9vw, 9rem);
  line-height: .78;
  font-weight: 600;
  letter-spacing: -.04em;
}
.hero-copy h1 em, .yogurt-hero h1 em { color: var(--gold); font-weight: 500; }
.hero-copy > p:not(.eyebrow), .yogurt-hero-copy > p:not(.eyebrow) { max-width: 560px; line-height: 1.8; color: var(--brown); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.hero-mark {
  width: min(300px, 55vw);
  aspect-ratio: 1;
  justify-self: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  transform: rotate(8deg);
  background: rgba(255,255,255,.28);
}
.hero-mark strong { font: 600 4rem/1 "Cormorant Garamond", serif; }
.hero-mark span { color: var(--gold); text-transform: uppercase; letter-spacing: .25em; font-size: .65rem; }

.intro-panel, .visit-panel {
  max-width: 1180px;
  margin: 0 auto 30px;
  padding: clamp(38px, 7vw, 90px);
  background: var(--paper);
  border: 1px solid var(--line);
}
.intro-panel { text-align: center; }
.intro-panel h2, .visit-panel h2, .section-heading h2, .build-copy h2 { font-size: clamp(2.8rem, 5vw, 5rem); line-height: .95; margin-bottom: 20px; }
.intro-panel > p:last-child { max-width: 700px; margin: auto; color: var(--brown); line-height: 1.8; }
.category-grid {
  max-width: 1180px;
  margin: 0 auto 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.category-card {
  min-height: 290px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.68);
  transition: transform .25s, background .25s;
}
.category-card:hover { transform: translateY(-5px); background: var(--paper); }
.category-card > span { color: var(--gold); font-size: .7rem; letter-spacing: .15em; }
.category-card h2 { font-size: 3.5rem; margin-bottom: 4px; }
.category-card p { color: var(--brown); }
.category-card b { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }
.visit-panel { display: grid; grid-template-columns: 1.2fr .8fr; gap: 50px; align-items: end; }

.page-hero {
  min-height: 420px;
  padding: 70px 20px;
  display: grid;
  place-items: center;
  text-align: center;
}
.page-hero > div { max-width: 800px; }
.page-hero h1 { font-size: clamp(4rem, 9vw, 8rem); line-height: .85; margin: 18px 0; }
.page-hero p:last-child { max-width: 650px; margin: auto; color: var(--brown); line-height: 1.8; }
.menu-container { max-width: 1100px; margin: auto; padding: 0 20px 70px; }
.section {
  background: var(--paper);
  margin-bottom: 24px;
  padding: clamp(25px, 5vw, 55px);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(65,42,34,.06);
}
.section h2 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  margin: 0 0 35px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gold);
}
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 45px; }
.item { break-inside: avoid; }
.item-header { display: flex; gap: 8px; align-items: baseline; }
.item-name { font-size: .85rem; font-weight: 600; }
.item-dots { flex: 1; border-bottom: 1px dotted rgba(75,52,45,.35); }
.item-price { white-space: nowrap; color: var(--gold); font-size: .82rem; font-weight: 700; }
.item-desc { display: block; margin-top: 5px; color: #756861; font: italic 1rem "Cormorant Garamond", serif; }
.allergen-notice { color: #756861; margin: 30px 0 0; font-size: .75rem; }

.yogurt-hero { grid-template-columns: .85fr 1.15fr; overflow: hidden; }
.yogurt-visual { position: relative; display: grid; place-items: center; min-height: 550px; }
.yogurt-visual::before {
  content: "";
  width: min(520px, 80vw);
  aspect-ratio: 1;
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: rgba(255,255,255,.32);
}
.yogurt-visual img { max-height: 620px; position: relative; z-index: 1; filter: drop-shadow(0 30px 30px rgba(45,25,20,.18)); }
.orbit { position: absolute; z-index: 2; color: var(--gold); text-transform: uppercase; letter-spacing: .2em; font-size: .62rem; font-weight: 700; }
.orbit-one { top: 12%; right: 15%; }.orbit-two { bottom: 13%; left: 12%; }
.signature-section { padding: clamp(55px, 9vw, 120px) 20px; background: rgba(255,253,249,.82); border-block: 1px solid var(--line); }
.section-heading { max-width: 1100px; margin: auto; text-align: center; }
.cup-grid {
  max-width: 1250px;
  margin: 65px auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.cup-card {
  padding: 24px 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.72);
  text-align: center;
}
.cup-card img { width: 100%; aspect-ratio: 1; object-fit: contain; margin-bottom: 20px; }
.cup-card span { color: var(--gold); font-size: .65rem; letter-spacing: .14em; }
.cup-card h3 { margin: 8px 0; font-size: 1.65rem; }
.cup-card p { color: var(--brown); line-height: 1.65; font-size: .75rem; }
.build-section {
  max-width: 1180px;
  margin: 80px auto;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  background: var(--paper);
  border: 1px solid var(--line);
}
.build-image { display: grid; place-items: center; padding: 45px; background: rgba(216,180,173,.22); }
.build-image img { max-height: 600px; filter: drop-shadow(0 24px 24px rgba(45,25,20,.15)); }
.build-copy { padding: clamp(30px, 6vw, 75px); }
.price-line { color: var(--brown); }
.ingredients { display: grid; gap: 18px; margin-top: 35px; }
.ingredients > div { padding-top: 16px; border-top: 1px solid var(--line); }
.ingredients h3 { color: var(--gold); font-family: "Manrope", sans-serif; font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; }
.ingredients p { color: var(--brown); line-height: 1.7; font-size: .8rem; }

.site-footer {
  padding: 45px clamp(20px, 6vw, 90px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  color: #f5eee6;
  background: var(--ink);
  font-size: .76rem;
  line-height: 1.8;
}
.site-footer a { color: inherit; }
.footer-logo { width: 130px; filter: invert(1); margin-bottom: 15px; }
.allergen-footer { grid-column: 1 / -1; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.15); opacity: .65; }

@media (max-width: 980px) {
  .main-nav { display: none; position: absolute; top: 92px; left: 0; right: 0; padding: 25px; background: #fffdfa; flex-direction: column; border-bottom: 1px solid var(--line); }
  .main-nav.open { display: flex; }
  .menu-toggle { display: block; border: 1px solid var(--ink); background: transparent; padding: 9px 14px; text-transform: uppercase; letter-spacing: .1em; font-size: .68rem; }
  .home-hero, .yogurt-hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-mark { display: none; }
  .category-grid { grid-template-columns: 1fr 1fr; padding: 0 20px; }
  .cup-grid { grid-template-columns: repeat(3, 1fr); }
  .build-section { margin-inline: 20px; }
}
@media (max-width: 680px) {
  .site-header { min-height: 76px; }.brand img { width: 130px; }.main-nav { top: 76px; }
  .home-hero, .yogurt-hero { padding: 65px 20px; gap: 20px; }
  .hero-copy h1, .yogurt-hero h1 { font-size: clamp(3.8rem, 20vw, 6rem); }
  .category-grid, .menu-grid, .visit-panel, .build-section, .site-footer { grid-template-columns: 1fr; }
  .category-card { min-height: 240px; }.category-card h2 { font-size: 2.8rem; }
  .intro-panel, .visit-panel { margin-inline: 15px; }
  .page-hero { min-height: 330px; }.page-hero h1 { font-size: 4rem; }
  .menu-container { padding-inline: 12px; }.section { padding-inline: 22px; }
  .cup-grid { grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 35px; }
  .cup-card { padding: 15px 10px; }.cup-card h3 { font-size: 1.3rem; }
  .build-image { min-height: 400px; }.build-image img { max-height: 380px; }
}
