:root {
  --espresso: #21130f;
  --espresso-soft: #362119;
  --cream: #f2eadc;
  --paper: #fbf7ef;
  --kraft: #c99f69;
  --gold: #d2ad70;
  --green: #123f31;
  --green-light: #6f9b83;
  --ink: #261a15;
  --muted: #716157;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
img, video { display: block; max-width: 100%; }

.cinema-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--espresso);
  color: white;
}

.hero-film, .hero-shade, .hero-grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-film { object-fit: cover; object-position: center; }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(23, 12, 9, .9) 0%, rgba(23, 12, 9, .64) 46%, rgba(23, 12, 9, .18) 78%),
    linear-gradient(180deg, rgba(17, 9, 6, .38), transparent 32%, rgba(16, 8, 6, .5));
}
.hero-grain {
  opacity: .24;
  mix-blend-mode: screen;
  pointer-events: none;
  background-image: repeating-linear-gradient(0deg, rgba(255,255,255,.04) 0 1px, transparent 1px 4px);
}

.topbar {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 190px 1fr 190px;
  align-items: center;
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.26);
}
.logo-frame {
  width: 174px;
  height: 64px;
  overflow: hidden;
  background: rgba(251,247,239,.94);
  border-radius: 2px;
}
.logo-frame img, .footer-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
  transform: none;
}
.topbar nav { display: flex; justify-content: center; gap: clamp(24px, 4vw, 58px); }
.topbar nav a, .top-instagram {
  color: rgba(255,255,255,.82);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.topbar a { transition: color 160ms ease; }
.topbar a:hover { color: white; }
.top-instagram { justify-self: end; }

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: calc(100svh - 105px);
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto;
  padding: clamp(90px, 13vh, 150px) 0 130px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.hero-kicker, .section-index {
  margin: 0 0 20px;
  color: var(--green);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.hero-kicker { color: #d9c6a4; }
.hero-content h1 {
  max-width: 900px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.2rem, 9.5vw, 8.8rem);
  font-weight: 400;
  line-height: .84;
  letter-spacing: -.065em;
}
.hero-content h1 em, .experience-heading h2 em { color: #e5c58e; font-weight: 400; }
.hero-lead {
  max-width: 570px;
  margin: 34px 0 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.75;
}
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  min-height: 58px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 800;
  transition: transform 170ms ease, background 170ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-light { background: var(--paper); color: var(--espresso); }
.button-light:hover { background: white; }
.text-action {
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,.55);
  font-size: .85rem;
  font-weight: 700;
}
.sound-control {
  position: absolute;
  z-index: 5;
  right: max(32px, calc((100vw - 1280px) / 2));
  bottom: 38px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px 9px 9px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  background: rgba(21,12,9,.38);
  color: white;
  cursor: pointer;
  backdrop-filter: blur(8px);
  font-size: .72rem;
  font-weight: 700;
}
.sound-icon { display: grid; width: 28px; height: 28px; place-items: center; border-radius: 50%; background: white; color: var(--espresso); }
.scroll-cue {
  position: absolute;
  z-index: 5;
  left: max(32px, calc((100vw - 1280px) / 2));
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255,255,255,.65);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.scroll-cue i { display: block; width: 54px; height: 1px; background: rgba(255,255,255,.5); }

.quality-ribbon {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, .55fr)) minmax(280px, 1.35fr);
  align-items: stretch;
  background: var(--green);
  color: white;
}
.quality-ribbon > * { min-height: 112px; padding: 25px clamp(22px, 3vw, 46px); border-right: 1px solid rgba(255,255,255,.16); }
.quality-ribbon div { display: flex; flex-direction: column; justify-content: center; }
.quality-ribbon strong { font-family: Georgia, serif; font-size: 1.45rem; font-weight: 400; }
.quality-ribbon span { margin-top: 5px; color: rgba(255,255,255,.6); font-size: .61rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.quality-ribbon p { display: flex; align-items: center; margin: 0; border-right: 0; color: #d7e2da; font-family: Georgia, serif; font-size: 1.1rem; font-style: italic; line-height: 1.45; }

.story {
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(420px, 1.1fr);
  gap: clamp(60px, 9vw, 140px);
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: clamp(105px, 12vw, 170px) 0;
}
.story-visual { position: relative; padding-left: 46px; }
.story-image-wrap {
  position: relative;
  aspect-ratio: .84;
  overflow: hidden;
  background: #e1d3be;
  box-shadow: 0 40px 80px rgba(49,31,22,.15);
}
.story-image-wrap:after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(47,31,23,.12); }
.story-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.02); }
.vertical-note {
  position: absolute;
  left: 0;
  bottom: 0;
  color: #8b796b;
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.story-seal {
  position: absolute;
  right: -42px;
  bottom: 42px;
  display: grid;
  width: 110px;
  height: 110px;
  place-content: center;
  border: 7px solid var(--paper);
  border-radius: 50%;
  background: var(--green);
  color: white;
  text-align: center;
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.story-seal span { display: block; margin-bottom: 3px; font-family: Georgia, serif; font-size: 1.5rem; font-weight: 400; letter-spacing: 0; }
.story-copy { align-self: center; }
.story-copy h2, .experience-heading h2, .product-copy h2, .contact-aside h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 6vw, 6rem);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.055em;
}
.story-copy .story-intro { margin-top: 36px; color: var(--espresso); font-family: Georgia, serif; font-size: 1.35rem; line-height: 1.55; }
.story-copy > p:not(.section-index):not(.story-intro) { color: var(--muted); font-size: 1rem; line-height: 1.85; }
.story-values { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 34px; }
.story-values span { padding: 10px 13px; border: 1px solid #d9ccbc; border-radius: 999px; color: #6c5b51; font-size: .66rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.manifesto {
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 13vw, 180px) max(32px, calc((100vw - 1180px) / 2));
  background: var(--green);
  color: white;
}
.manifesto-mark {
  position: absolute;
  right: -1vw;
  top: -15vw;
  color: rgba(255,255,255,.035);
  font-family: Georgia, serif;
  font-size: min(54vw, 700px);
  line-height: 1;
}
.section-index.light { position: relative; color: #a8c0b3; }
.manifesto blockquote {
  position: relative;
  max-width: 1120px;
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(3.5rem, 8vw, 8.3rem);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.055em;
}
.manifesto blockquote em { color: var(--gold); font-weight: 400; }
.manifesto-copy { position: relative; max-width: 520px; margin: 50px 0 0 auto; color: #c2d1c8; font-size: 1rem; line-height: 1.8; }

.experience {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(50px, 8vw, 130px);
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: clamp(110px, 13vw, 180px) 0;
}
.experience-heading { align-self: center; }
.experience-heading h2 { font-size: clamp(3.2rem, 5.5vw, 5.6rem); }
.experience-heading h2 em { color: var(--green); }
.experience-heading > p:last-child { max-width: 430px; margin-top: 30px; color: var(--muted); line-height: 1.75; }
.testimonial-stage { position: relative; min-height: 650px; display: grid; place-items: center; }
.testimonial-backdrop {
  position: absolute;
  inset: 7% 0 2%;
  overflow: hidden;
  background: #dbc6a8;
  color: rgba(49,30,21,.08);
  font-family: Georgia, serif;
  font-size: clamp(5rem, 12vw, 11rem);
  line-height: .9;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.testimonial-video {
  position: relative;
  z-index: 2;
  width: min(390px, 70%);
  max-height: 620px;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border: 10px solid var(--paper);
  box-shadow: 0 38px 80px rgba(39,23,16,.25);
  background: var(--espresso);
}
.testimonial-label {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 7%;
  padding: 14px 18px;
  background: var(--green);
  color: white;
  font-size: .63rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 760px;
  background: var(--espresso);
  color: white;
}
.product-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(72px, 9vw, 135px) clamp(42px, 8vw, 125px); }
.product-copy h2 { max-width: 600px; font-size: clamp(3.6rem, 6vw, 6.5rem); }
.product-copy > p:not(.section-index) { max-width: 520px; margin: 28px 0; color: #cdbeb2; line-height: 1.8; }
.product-copy ul { width: min(520px, 100%); margin: 10px 0 36px; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.15); }
.product-copy li { display: flex; justify-content: space-between; gap: 24px; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.product-copy li span { color: #9c8e84; font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.product-copy li strong { font-family: Georgia, serif; font-weight: 400; }
.button-gold { width: fit-content; background: var(--gold); color: var(--espresso); }
.button-gold:hover { background: #e2c28c; }
.product-copy small { margin: 13px 0 0 12px; color: #877b73; font-size: .65rem; }
.product-visual { position: relative; display: grid; min-height: 760px; place-items: center; overflow: hidden; background: #e8decd; }
.product-orbit { position: absolute; width: 80%; aspect-ratio: 1; border: 1px solid rgba(45,29,21,.22); border-radius: 50%; }
.product-orbit:before, .product-orbit:after { content: ""; position: absolute; inset: 8%; border: 1px solid rgba(45,29,21,.13); border-radius: 50%; }
.product-orbit:after { inset: 20%; background: rgba(255,255,255,.35); }
.product-visual img { position: relative; z-index: 2; width: min(640px, 84%); aspect-ratio: 1; object-fit: cover; mix-blend-mode: multiply; filter: saturate(.9) contrast(1.05); }
.full-badge {
  position: absolute;
  z-index: 3;
  right: 7%;
  bottom: 11%;
  display: grid;
  width: 126px;
  height: 126px;
  place-content: center;
  border: 8px solid #e8decd;
  border-radius: 50%;
  background: var(--green);
  color: white;
  text-align: center;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.full-badge b { display: block; font-family: Georgia, serif; font-size: 1.55rem; letter-spacing: .04em; }

.contact-shell {
  position: relative;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(50px, 8vw, 120px);
  width: min(1180px, calc(100% - 64px));
  margin: clamp(80px, 10vw, 140px) auto 40px;
  padding: clamp(58px, 7vw, 90px);
  border-radius: 34px;
  background: var(--green);
  color: white;
  box-shadow: 0 35px 90px rgba(22,52,41,.18);
}
.contact-aside h2 { font-size: clamp(3.6rem, 6vw, 6rem); }
.contact-aside > p:not(.section-index) { color: #c0d0c7; line-height: 1.75; }
.contact-route { display: flex; align-items: center; gap: 9px; margin-top: 35px; color: #a9bcb1; font-size: .64rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.contact-route span { display: grid; width: 24px; height: 24px; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: white; }
.contact-route i { width: 20px; height: 1px; background: rgba(255,255,255,.24); }
.contact-form { display: grid; align-content: center; gap: 17px; padding: 32px; border-radius: 22px; background: rgba(255,255,255,.08); box-shadow: inset 0 0 0 1px rgba(255,255,255,.09); }
.field { display: grid; gap: 8px; }
.field label { color: #dce6e0; font-size: .66rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.field input, .field select { width: 100%; height: 58px; padding: 0 16px; border: 1px solid rgba(255,255,255,.22); border-radius: 10px; outline: none; background: rgba(9,33,25,.3); color: white; }
.field input::placeholder { color: #9db1a6; }
.field select option { color: var(--ink); }
.field input:focus, .field select:focus { border-color: #cfdfd6; box-shadow: 0 0 0 3px rgba(207,223,214,.12); }
.contact-form button {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  margin-top: 5px;
  padding: 9px 18px 9px 9px;
  border: 0;
  border-radius: 999px;
  background: #f0eadf;
  color: var(--green);
  cursor: pointer;
  font-weight: 800;
  transition: transform 170ms ease, background 170ms ease;
}
.contact-form button:hover:not(:disabled) { transform: translateY(-2px); background: white; }
.contact-form button:disabled { cursor: wait; opacity: .74; }
.whatsapp-mark { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; background: #25a566; color: white; font-size: .65rem; letter-spacing: .04em; }
.privacy-note { margin: -3px 5px 0; color: #91a79a; font-size: .65rem; line-height: 1.5; }
.capture-frame { position: absolute; width: 1px; height: 1px; border: 0; opacity: 0; pointer-events: none; }

footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  gap: 50px;
  align-items: start;
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: 54px 0 44px;
  border-top: 1px solid #ded4c6;
}
.footer-brand img { width: 154px; height: 58px; }
.footer-brand p { margin: 12px 0 0; color: var(--muted); font-family: Georgia, serif; font-style: italic; }
.footer-column { display: flex; flex-direction: column; gap: 10px; }
.footer-column span { margin-bottom: 5px; color: #98877b; font-size: .62rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.footer-column a { font-size: .78rem; }
.footer-column a:hover { color: var(--green); }
.copyright { align-self: end; margin: 0; color: #9b8c82; font-size: .68rem; }
.mobile-actions { display: none; }

@media (max-width: 980px) {
  .topbar { grid-template-columns: 170px 1fr; }
  .topbar nav { display: none; }
  .story, .experience, .contact-shell { grid-template-columns: 1fr; }
  .story { width: min(720px, calc(100% - 64px)); }
  .story-visual { width: min(560px, 88%); }
  .experience-heading { max-width: 660px; }
  .testimonial-stage { min-height: 700px; }
  .product { grid-template-columns: 1fr; }
  .product-visual { min-height: 650px; }
  .quality-ribbon { grid-template-columns: repeat(3, 1fr); }
  .quality-ribbon p { grid-column: 1 / -1; min-height: 78px; justify-content: center; border-top: 1px solid rgba(255,255,255,.16); text-align: center; }
  footer { grid-template-columns: 1.4fr 1fr 1fr; }
  .copyright { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .topbar, .hero-content, .story, .experience, .contact-shell, footer { width: min(100% - 28px, 1180px); }
  .topbar { grid-template-columns: 138px 1fr; padding: 14px 0; }
  .logo-frame { width: 132px; height: 50px; }
  .top-instagram { font-size: .6rem; }
  .hero-content { min-height: calc(100svh - 73px); padding: 90px 0 145px; }
  .hero-content h1 { font-size: clamp(3.5rem, 18vw, 5.7rem); line-height: .88; }
  .hero-kicker { max-width: 240px; line-height: 1.6; }
  .hero-lead { max-width: 90%; margin-top: 25px; font-size: .95rem; line-height: 1.65; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; width: 100%; margin-top: 28px; }
  .button-light { width: 100%; }
  .sound-control { right: 14px; bottom: 74px; }
  .scroll-cue { left: 14px; bottom: 28px; }
  .quality-ribbon { grid-template-columns: repeat(3, 1fr); }
  .quality-ribbon > * { min-height: 88px; padding: 18px 10px; text-align: center; }
  .quality-ribbon strong { font-size: 1.15rem; }
  .quality-ribbon span { font-size: .5rem; }
  .quality-ribbon p { padding: 18px; font-size: .94rem; }
  .story { padding: 86px 0 100px; gap: 74px; }
  .story-visual { width: calc(100% - 22px); padding-left: 26px; }
  .story-seal { right: -22px; bottom: 24px; width: 92px; height: 92px; border-width: 5px; }
  .story-copy h2, .experience-heading h2, .product-copy h2, .contact-aside h2 { font-size: clamp(3rem, 15vw, 4.3rem); }
  .manifesto { padding: 92px 20px; }
  .manifesto blockquote { font-size: clamp(3.1rem, 14vw, 5rem); }
  .manifesto-copy { margin-top: 36px; }
  .experience { padding: 92px 0; gap: 50px; }
  .testimonial-stage { min-height: 590px; }
  .testimonial-video { width: min(330px, 78%); max-height: 540px; border-width: 7px; }
  .testimonial-label { bottom: 5%; padding: 11px 13px; }
  .product-copy { padding: 82px 22px; }
  .product-copy .button { width: 100%; gap: 15px; }
  .product-visual { min-height: 490px; }
  .product-visual img { width: 94%; }
  .full-badge { right: 3%; bottom: 8%; width: 104px; height: 104px; border-width: 6px; }
  .contact-shell { margin-top: 76px; padding: 56px 20px 20px; border-radius: 24px; gap: 35px; }
  .contact-route { flex-wrap: wrap; }
  .contact-form { padding: 20px 14px; }
  footer { grid-template-columns: 1fr 1fr; gap: 34px 20px; padding-bottom: 110px; }
  .footer-brand, .copyright { grid-column: 1 / -1; }
  .footer-column a { overflow-wrap: anywhere; }
  .mobile-actions {
    position: fixed;
    z-index: 20;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 7px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    background: rgba(30,18,14,.91);
    box-shadow: 0 12px 40px rgba(20,10,7,.28);
    backdrop-filter: blur(12px);
  }
  .mobile-actions a { padding: 13px 10px; border-radius: 999px; color: white; text-align: center; font-size: .74rem; font-weight: 800; }
  .mobile-actions a:first-child { background: var(--gold); color: var(--espresso); }
  .mobile-actions a:last-child { background: #218f5b; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
  .hero-film { display: none; }
  .cinema-hero { background: linear-gradient(135deg, rgba(30,17,12,.8), rgba(18,63,49,.58)), url('/alfari-product.jpg') center / cover; }
  .sound-control { display: none; }
}
