/* =========================================================
   CRAVO CONFEITARIA — Editorial / Organic Luxury
   Paleta: #3F6241 (verde folha) · #BCA468 (dourado oliva)
           #EBEBEB (cinza claro) + #FAF8F3 (creme) + #2A2A2A
   ========================================================= */

:root {
  --green: #3F6241;
  --green-deep: #2F4A32;
  --green-soft: #567c56;
  --gold: #BCA468;
  --gold-light: #d4bf88;
  --gold-deep: #9e8a52;
  --grey: #EBEBEB;
  --cream: #FAF8F3;
  --cream-warm: #F3EEE0;
  --ink: #2A2A2A;
  --ink-soft: #5a564e;

  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;

  --radius-sm: 6px;
  --radius: 14px;
  --radius-lg: 28px;

  --maxw: 1320px;
  --gutter: clamp(20px, 5vw, 64px);

  --ease: cubic-bezier(.2,.7,.2,1);
  --ease-soft: cubic-bezier(.4,0,.2,1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.05; letter-spacing: -0.02em; color: var(--green-deep); }
em { font-style: italic; font-variation-settings: "SOFT" 50, "WONK" 1; color: var(--gold-deep); }

::selection { background: var(--gold); color: var(--cream); }
[hidden] { display: none !important; }

/* ---------- GRAIN TEXTURE ---------- */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 1000;
  opacity: .06; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- SHARED ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 600;
}
.eyebrow__dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 4px rgba(188,164,104,.18);
}
.section-title {
  font-size: clamp(36px, 6vw, 72px);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  margin: 16px 0 24px;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-radius: 999px;
  font-weight: 600; font-size: 15px;
  transition: transform .4s var(--ease), background .3s, color .3s, box-shadow .3s;
  white-space: nowrap;
}
.btn--primary {
  background: var(--green); color: var(--cream);
  box-shadow: 0 8px 24px -8px rgba(63,98,65,.6);
}
.btn--primary:hover { background: var(--green-deep); transform: translateY(-2px); box-shadow: 0 14px 32px -10px rgba(63,98,65,.7); }
.btn--ghost {
  background: transparent; color: var(--green-deep);
  border: 1px solid rgba(63,98,65,.25);
}
.btn--ghost:hover { background: var(--green); color: var(--cream); border-color: var(--green); transform: translateY(-2px); }

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gutter);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(250,248,243,.72);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, padding .3s;
}
.nav.is-scrolled { border-bottom-color: rgba(63,98,65,.1); padding-top: 12px; padding-bottom: 12px; }
.nav__brand { display: flex; align-items: center; }
.nav__logo { height: 64px; width: auto; transition: transform .6s var(--ease), height .3s; }
.nav.is-scrolled .nav__logo { height: 52px; }
.nav__brand:hover .nav__logo { transform: rotate(-4deg); }
.nav__links {
  display: flex; gap: 32px; font-size: 14px; font-weight: 500;
  color: var(--green-deep);
}
.nav__mobile-logo, .nav__mobile-extras { display: none; }
.nav__links a { position: relative; padding: 6px 0; transition: color .3s; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
  background: var(--gold); transition: width .4s var(--ease);
}
.nav__links a:hover { color: var(--gold-deep); }
.nav__links a:hover::after { width: 100%; }

.nav__status {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600;
  color: var(--green-deep);
  padding: 6px 12px;
  border: 1px solid rgba(63,98,65,.15);
  border-radius: 999px;
  background: rgba(250,248,243,.6);
  white-space: nowrap;
  transition: color .3s, border-color .3s;
}
.nav__status.is-open { color: #2e7d32; border-color: rgba(46,125,50,.3); }
.nav__status.is-open::before {
  content: ""; width: 7px; height: 7px;
  background: #2e7d32; border-radius: 50%;
  animation: statusPulse 2s ease-in-out infinite;
}
.nav__status.is-closed { color: #9a3c3c; border-color: rgba(154,60,60,.25); }
.nav__status.is-closed::before {
  content: ""; width: 7px; height: 7px;
  background: #9a3c3c; border-radius: 50%;
  opacity: .7;
}
@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46,125,50,.5); }
  50% { box-shadow: 0 0 0 6px rgba(46,125,50,0); }
}
@media (max-width: 900px) { .nav__status { display: none; } }

.nav__cta {
  padding: 10px 22px; border-radius: 999px;
  background: var(--green); color: var(--cream);
  font-size: 13px; font-weight: 600;
  transition: background .3s, transform .3s;
}
.nav__cta:hover { background: var(--green-deep); transform: translateY(-1px); }
.nav__toggle {
  display: none; flex-direction: column; gap: 5px; padding: 8px;
  position: relative; z-index: 100;
}
.nav__toggle span { width: 24px; height: 2px; background: var(--green-deep); transition: transform .3s, opacity .3s; }
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO — EDITORIAL ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px var(--gutter) 120px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 15% 0%, rgba(188,164,104,.14), transparent 55%),
    radial-gradient(ellipse at 85% 100%, rgba(63,98,65,.08), transparent 55%),
    var(--cream);
}

.hero__badge {
  position: absolute;
  left: 24px; top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero__badge::before,
.hero__badge::after {
  content: "";
  width: 1px; height: 36px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero__content { max-width: 640px; }
.hero__kicker {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--gold-deep);
  font-variation-settings: "opsz" 144, "SOFT" 80;
  margin-bottom: 20px;
}

.hero__title {
  font-size: clamp(56px, 8.5vw, 128px);
  font-variation-settings: "opsz" 144, "SOFT" 40, "WONK" 0;
  line-height: 0.94;
  letter-spacing: -0.03em;
  margin: 0 0 32px;
  color: var(--green-deep);
}
.hero__title em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--gold-deep);
  letter-spacing: -0.01em;
  padding: 0 2px;
}
.hero__title-sub {
  display: block;
  font-size: 0.68em;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 70, "WONK" 1;
  color: var(--green);
  margin-top: 4px;
}

.hero__sub {
  font-size: clamp(16px, 1.4vw, 19px);
  max-width: 520px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 40px;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__figure {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 620px;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 40px 80px -40px rgba(47,74,50,.4);
  transform: rotate(1.5deg);
  transition: transform .8s var(--ease);
}
.hero__figure:hover { transform: rotate(0deg); }
.hero__figure::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(47,74,50,.4));
  z-index: 1;
}
.hero__figure::after {
  content: "";
  position: absolute;
  left: -20px; top: -20px; right: 20px; bottom: 20px;
  border: 1px solid var(--gold);
  border-radius: 6px;
  z-index: -1;
  opacity: .6;
  transition: transform .8s var(--ease);
}
.hero__figure:hover::after { transform: translate(8px, 8px); }
.hero__figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.95) contrast(1.02);
  transition: transform 1.6s var(--ease);
}
.hero__figure:hover img { transform: scale(1.04); }
.hero__figure figcaption {
  position: absolute; left: 24px; bottom: 24px;
  z-index: 2;
  color: var(--cream);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  font-variation-settings: "opsz" 144, "SOFT" 80;
  letter-spacing: .02em;
}
.hero__figure figcaption span {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(47,74,50,.85);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  border: 1px solid rgba(188,164,104,.4);
}

/* Marquee */
.hero__marquee {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 0;
  border-top: 1px solid rgba(63,98,65,.12);
  background: var(--cream);
  overflow: hidden;
}
.marquee__track {
  display: flex; gap: 40px; white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--font-display); font-style: italic;
  font-size: 20px; color: var(--green);
}
.marquee__track span { flex-shrink: 0; }
.marquee__track span:nth-child(even) { color: var(--gold); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Reveal animation */
[data-reveal] {
  opacity: 0; transform: translateY(30px);
  animation: reveal 1.2s var(--ease) forwards;
  animation-delay: .1s;
}
[data-reveal-delay="1"] { animation-delay: .3s; }
[data-reveal-delay="2"] { animation-delay: .5s; }
[data-reveal-delay="3"] { animation-delay: .7s; }
@keyframes reveal { to { opacity: 1; transform: translateY(0); } }

/* ---------- CARDÁPIO DO DIA ---------- */
.today {
  position: relative;
  padding: 120px var(--gutter);
  background: var(--green);
  color: var(--cream);
  overflow: hidden;
}
.today::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.today .eyebrow { color: var(--gold-light); }
.today .eyebrow__dot { background: var(--gold-light); box-shadow: 0 0 0 4px rgba(212,191,136,.15); }
.today .section-title { color: var(--cream); }
.today .section-title em { color: var(--gold-light); }

.today__head {
  display: grid; grid-template-columns: 1fr auto;
  gap: 40px; align-items: end;
  max-width: var(--maxw); margin: 0 auto 40px;
}
.today__desc { max-width: 520px; color: rgba(250,248,243,.75); font-size: 17px; }
.today__date {
  display: flex; flex-direction: column; align-items: center;
  padding: 28px 36px;
  border: 1px solid rgba(188,164,104,.4);
  border-radius: var(--radius);
  background: rgba(47,74,50,.4);
  font-family: var(--font-display);
  min-width: 160px;
}
.today__date-day { font-size: 56px; line-height: 1; color: var(--gold-light); font-weight: 300; font-variation-settings: "opsz" 144, "SOFT" 30; }
.today__date-month { font-size: 14px; letter-spacing: 0.3em; text-transform: uppercase; margin-top: 8px; color: var(--cream); font-family: var(--font-body); font-weight: 500; }
.today__date-year { font-size: 12px; opacity: .6; margin-top: 4px; letter-spacing: 0.2em; font-family: var(--font-body); }

.today__message {
  max-width: var(--maxw); margin: 0 auto 32px;
  padding: 16px 20px;
  border-left: 3px solid var(--gold);
  background: rgba(47,74,50,.4);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--cream);
}

.today__list {
  max-width: var(--maxw); margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2px;
  background: rgba(188,164,104,.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(188,164,104,.25);
}
.today__item {
  padding: 32px 28px;
  background: var(--green);
  display: flex; flex-direction: column;
  gap: 12px;
  position: relative;
  transition: background .4s var(--ease-soft);
  overflow: hidden;
}
.today__item:hover { background: var(--green-deep); }
.today__item--has-photo { padding: 0; }
.today__item--has-photo .today__item-body {
  display: flex; flex-direction: column; gap: 12px;
  padding: 24px 28px;
}
.today__item-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--green-deep);
}
.today__item-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.today__item:hover .today__item-photo img { transform: scale(1.04); }
.today__item--has-photo .today__item--highlight::before,
.today__item--highlight.today__item--has-photo::before {
  top: 16px; right: 16px;
  background: rgba(47,74,50,.8);
  padding: 4px 10px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.today__item--highlight::before {
  content: "★ Destaque";
  position: absolute; top: 16px; right: 16px;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-light); font-weight: 700;
}
.today__item-type {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-light); font-weight: 600;
}
.today__item-name {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--cream);
  line-height: 1.1;
}
.today__item-desc { color: rgba(250,248,243,.7); font-size: 15px; }
.today__item-foot {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed rgba(188,164,104,.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.today__item-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--gold-light);
}

/* Quantity control */
.qty__add {
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--green-deep);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background .3s, transform .3s, color .3s;
  border: 1px solid transparent;
}
.qty__add:hover { background: var(--gold-light); transform: translateY(-1px); }
.qty__stepper {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--cream);
  border-radius: 999px;
  padding: 4px;
  box-shadow: 0 4px 14px -6px rgba(0,0,0,.3);
}
.qty__stepper button {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--green);
  color: var(--cream);
  font-size: 16px; font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s, transform .2s;
}
.qty__stepper button:hover { background: var(--green-deep); transform: scale(1.08); }
.qty__n {
  min-width: 28px; text-align: center;
  font-family: var(--font-display);
  font-size: 18px; font-weight: 500;
  color: var(--green-deep);
}

/* Cart bar */
.cart-bar {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 95;
  display: flex; align-items: center; gap: 20px;
  padding: 12px 14px 12px 22px;
  background: var(--green-deep);
  color: var(--cream);
  border-radius: 999px;
  box-shadow: 0 20px 50px -15px rgba(0,0,0,.45), 0 0 0 1px rgba(188,164,104,.3) inset;
  transition: transform .5s var(--ease), opacity .4s;
  opacity: 0;
  max-width: calc(100% - 100px);
}
.cart-bar.is-visible { transform: translateX(-50%) translateY(0); opacity: 1; }
.cart-bar__info { display: flex; align-items: baseline; gap: 8px; flex-shrink: 0; }
.cart-bar__count {
  font-family: var(--font-display);
  font-size: 28px; font-style: italic;
  color: var(--gold-light);
  line-height: 1;
}
.cart-bar__label { font-size: 14px; color: rgba(250,248,243,.85); letter-spacing: .02em; }
.cart-bar__send {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  background: var(--gold);
  color: var(--green-deep);
  border-radius: 999px;
  font-weight: 700; font-size: 14px;
  cursor: pointer;
  transition: background .3s, transform .3s;
  white-space: nowrap;
}
.cart-bar__send:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Hide floating WA when cart visible (avoid overlap) */
.cart-bar.is-visible ~ .wa-float { opacity: 0; pointer-events: none; }
.wa-float { transition: opacity .4s, transform .4s var(--ease), background .3s; }

@media (max-width: 520px) {
  .cart-bar { left: 10px; right: 10px; transform: translateY(120%); max-width: none; padding: 10px 10px 10px 18px; }
  .cart-bar.is-visible { transform: translateY(0); }
  .cart-bar__send { padding: 10px 16px; font-size: 13px; }
  .cart-bar__count { font-size: 24px; }
  .cart-bar__label { font-size: 12px; }
}
.today__item.is-empty {
  text-align: center;
  padding: 60px 28px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: rgba(250,248,243,.6);
}

.today__footer {
  max-width: var(--maxw); margin: 48px auto 0;
  display: flex; justify-content: center;
}

/* ---------- CATEGORIAS ---------- */
.categories {
  padding: 140px var(--gutter);
  max-width: var(--maxw); margin: 0 auto;
  text-align: center;
}
.categories .section-title { margin-bottom: 80px; }
.categories__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
  text-align: left;
}
.cat {
  position: relative;
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  background: var(--cream-warm);
  border: 1px solid rgba(63,98,65,.1);
  transition: transform .5s var(--ease), box-shadow .5s, background .4s;
  overflow: hidden;
}
.cat::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 90% 10%, rgba(188,164,104,.15), transparent 50%);
  opacity: 0; transition: opacity .5s;
  pointer-events: none;
}
.cat:hover { transform: translateY(-6px); box-shadow: 0 30px 50px -30px rgba(63,98,65,.3); }
.cat:hover::after { opacity: 1; }
.cat__num {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--gold-deep);
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}
.cat__title {
  font-size: clamp(36px, 4vw, 52px);
  font-variation-settings: "opsz" 144, "SOFT" 50;
  margin-bottom: 16px;
}
.cat--bread .cat__title { font-style: italic; color: var(--gold-deep); }
.cat__desc { color: var(--ink-soft); margin-bottom: 28px; font-size: 16px; }
.cat__list { display: flex; flex-direction: column; gap: 12px; }
.cat__list li {
  padding-left: 24px; position: relative;
  color: var(--green-deep); font-weight: 500;
}
.cat__list li::before {
  content: "✦";
  position: absolute; left: 0; top: 0;
  color: var(--gold); font-size: 14px;
}

/* ---------- GALERIA ---------- */
.gallery {
  padding: 120px var(--gutter);
  background: var(--grey);
  position: relative;
}
.gallery__head { max-width: var(--maxw); margin: 0 auto 32px; text-align: center; }

.gallery__filters {
  max-width: var(--maxw); margin: 0 auto 32px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
}
.gallery__filter {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: var(--cream);
  border: 1px solid rgba(63,98,65,.15);
  border-radius: 999px;
  font-family: inherit; font-size: 13px; font-weight: 600;
  color: var(--green-deep);
  cursor: pointer;
  transition: background .25s, border-color .25s, color .25s, transform .25s;
}
.gallery__filter span {
  font-size: 11px;
  color: var(--ink-soft);
  opacity: .65;
  font-family: var(--font-display); font-style: italic;
  font-weight: 400;
}
.gallery__filter:hover { border-color: var(--gold); transform: translateY(-1px); }
.gallery__filter.is-active {
  background: var(--green);
  color: var(--cream);
  border-color: var(--green);
}
.gallery__filter.is-active span { color: var(--gold-light); opacity: 1; }
.gallery__grid {
  max-width: var(--maxw); margin: 0 auto;
}
.gallery__group {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
  margin-bottom: 64px;
}
.gallery__group-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 28px);
  font-variation-settings: "opsz" 144, "SOFT" 50;
  color: var(--green-deep);
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(63,98,65,.15);
  display: flex; align-items: baseline; gap: 12px;
}
.gallery__group-title span { letter-spacing: -0.01em; }
.gallery__group-title em {
  font-size: 14px;
  font-style: italic;
  color: var(--gold-deep);
  font-variation-settings: "opsz" 144, "SOFT" 80;
  font-weight: 400;
  letter-spacing: 0;
}
.gallery__item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 10px;
  background: var(--cream);
  position: relative;
  cursor: zoom-in;
}
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease), filter .6s;
  filter: saturate(.92);
}
.gallery__item:hover img { transform: scale(1.06); filter: saturate(1.1); }

/* ---------- SOBRE ---------- */
.about {
  padding: 140px var(--gutter);
  max-width: var(--maxw); margin: 0 auto;
}
.about__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: start;
}
.about__text p {
  font-size: 17px;
  color: var(--ink-soft);
  margin-bottom: 20px;
  max-width: 560px;
  line-height: 1.7;
}
.about__quote {
  margin-top: 40px;
  padding: 32px 40px;
  border-left: 2px solid var(--gold);
  background: var(--cream-warm);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-style: italic;
  line-height: 1.35;
  color: var(--green-deep);
  font-variation-settings: "opsz" 144, "SOFT" 70;
  position: relative;
}
.about__quote span {
  font-size: 48px; color: var(--gold); line-height: 0; vertical-align: -8px;
  opacity: .7;
}
.about__aside {
  display: flex; flex-direction: column; gap: 24px;
  position: sticky; top: 100px;
}
.stat {
  padding: 32px;
  border: 1px solid rgba(63,98,65,.15);
  border-radius: var(--radius);
  background: var(--cream-warm);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  transition: border-color .3s, transform .4s;
}
.stat:hover { border-color: var(--gold); transform: translateX(4px); }
.stat__num {
  font-family: var(--font-display);
  font-size: 56px;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--gold-deep);
  line-height: 1;
}
.stat__label { font-size: 13px; color: var(--green-deep); letter-spacing: 0.05em; line-height: 1.4; font-weight: 500; }

/* ---------- HOW ---------- */
.how {
  padding: 140px var(--gutter);
  background: var(--green-deep);
  color: var(--cream);
  text-align: center;
}
.how .eyebrow { color: var(--gold-light); }
.how .eyebrow__dot { background: var(--gold-light); }
.how .section-title { color: var(--cream); margin-bottom: 80px; }
.how .section-title em { color: var(--gold-light); }
.how__steps {
  max-width: var(--maxw); margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 32px;
  align-items: center;
}
.step {
  padding: 40px 28px;
  border: 1px solid rgba(188,164,104,.25);
  border-radius: var(--radius-lg);
  background: rgba(47,74,50,.4);
  text-align: left;
  transition: border-color .4s, transform .4s;
}
.step:hover { border-color: var(--gold); transform: translateY(-4px); }
.step__num {
  font-family: var(--font-display);
  font-size: 14px; letter-spacing: 0.3em;
  color: var(--gold-light); margin-bottom: 24px;
}
.step h3 {
  color: var(--cream);
  font-size: 32px;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  margin-bottom: 12px;
}
.step p { color: rgba(250,248,243,.7); font-size: 15px; line-height: 1.55; }
.step--arrow {
  padding: 0; border: none; background: none;
  font-size: 28px; color: var(--gold); text-align: center;
}

/* ---------- INSTAGRAM ---------- */
.ig {
  padding: 120px var(--gutter) 80px;
  max-width: var(--maxw); margin: 0 auto;
  text-align: center;
}
.ig__head { margin-bottom: 48px; }
.ig__handle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--gold-deep);
  margin-top: 8px;
}
.ig__widget {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
}
.ig__widget iframe { min-height: 380px; display: block; }
.ig__footer { margin-top: 40px; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--cream-warm);
  padding: 100px var(--gutter) 28px;
  border-top: 1px solid rgba(63,98,65,.1);
}
.footer__main {
  max-width: var(--maxw); margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer__brand { }
.footer__logo { height: 64px; width: auto; margin-bottom: 16px; }
.footer__tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--green-deep);
  font-variation-settings: "opsz" 144, "SOFT" 70;
}
.footer__col h4 {
  font-size: 13px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold-deep);
  font-family: var(--font-body); font-weight: 600;
  margin-bottom: 16px;
}
.footer__col p, .footer__col address, .footer__col a {
  font-style: normal; color: var(--green-deep); line-height: 1.7;
  display: block; font-size: 15px;
}
.footer__col a { transition: color .3s; }
.footer__col a:hover { color: var(--gold-deep); }
.footer__status {
  margin-top: 12px !important;
  font-size: 12px !important;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(63,98,65,.15);
  background: var(--cream);
  display: inline-block !important;
}
.footer__status.is-open { color: #2e7d32; border-color: rgba(46,125,50,.3); }
.footer__status.is-closed { color: #9a3c3c; }

.footer__maplink {
  display: inline-block;
  margin-top: 12px;
  font-weight: 600;
  color: var(--gold-deep) !important;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
}

.footer__map {
  max-width: var(--maxw);
  margin: 60px auto 0;
  border-radius: var(--radius);
  overflow: hidden;
  filter: grayscale(.4) sepia(.15);
  transition: filter .5s;
  box-shadow: 0 30px 60px -30px rgba(63,98,65,.2);
}
.footer__map:hover { filter: grayscale(0) sepia(0); }

.footer__bottom {
  max-width: var(--maxw); margin: 64px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(63,98,65,.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 12px; color: var(--ink-soft); opacity: .7;
}
.footer__signature { font-style: italic; font-family: var(--font-display); font-size: 13px; }

.gallery__item { cursor: zoom-in; }

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(20, 30, 22, .94);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center; justify-content: center;
  padding: 5vw;
}
.lightbox.is-open { display: flex; animation: lbFade .3s var(--ease-soft, ease); }
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
.lightbox__img {
  max-width: 100%; max-height: 90vh;
  border-radius: 4px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.6);
  object-fit: contain;
}
.lightbox button {
  position: absolute;
  background: rgba(250,248,243,.12);
  border: 1px solid rgba(188,164,104,.35);
  color: var(--cream);
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer; font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  transition: background .3s, border-color .3s, transform .3s;
  backdrop-filter: blur(8px);
}
.lightbox button:hover { background: rgba(188,164,104,.3); border-color: var(--gold); transform: scale(1.06); }
.lightbox__close { top: 20px; right: 20px; font-size: 18px; }
.lightbox__prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__prev:hover, .lightbox__next:hover { transform: translateY(-50%) scale(1.06); }

/* ---------- WHATSAPP FLOAT ---------- */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 60px; height: 60px;
  background: var(--green);
  color: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px -8px rgba(63,98,65,.5);
  transition: transform .4s var(--ease), background .3s;
}
.wa-float::before {
  content: "";
  position: absolute; inset: 0; border-radius: 50%;
  background: var(--gold); opacity: 0;
  animation: pulse 2.4s ease-out infinite;
}
.wa-float:hover { transform: scale(1.08) rotate(-6deg); background: var(--green-deep); }
@keyframes pulse {
  0% { transform: scale(1); opacity: .5; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__aside { position: static; flex-direction: row; flex-wrap: wrap; }
  .about__aside .stat { flex: 1 1 200px; }
  .footer__main { grid-template-columns: 1fr 1fr; }
  .how__steps { grid-template-columns: 1fr; }
  .step--arrow { transform: rotate(90deg); }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__badge { display: none; }
  .hero__figure { max-height: 440px; aspect-ratio: 4 / 3; transform: rotate(0.5deg); }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav.is-open .nav__links {
    display: flex; flex-direction: column; gap: 22px;
    position: fixed; top: 0; left: 0;
    width: 100vw; height: 100vh; height: 100dvh;
    padding: 32px var(--gutter) 40px;
    background: var(--cream);
    font-size: 26px; font-family: var(--font-display);
    z-index: 95;
    align-items: flex-start;
    animation: menuIn .4s var(--ease, ease);
    overflow-y: auto;
  }
  .nav.is-open .nav__links a {
    color: var(--green-deep);
    letter-spacing: -0.01em;
  }
  .nav.is-open .nav__links a::after { display: none; }
  .nav.is-open .nav__mobile-logo {
    display: block;
    height: 56px; width: auto;
    margin-bottom: 28px;
  }
  .nav.is-open .nav__mobile-extras {
    margin-top: auto;
    padding-top: 32px;
    border-top: 1px solid rgba(63,98,65,.15);
    width: 100%;
    display: flex; flex-direction: column; gap: 20px;
  }
  .nav.is-open .nav__mobile-socials {
    display: flex; flex-wrap: wrap; gap: 10px;
  }
  .nav.is-open .nav__mobile-social {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--green);
    color: var(--cream) !important;
    font-family: var(--font-body); font-size: 13px; font-weight: 600;
    letter-spacing: .02em;
    text-decoration: none;
  }
  .nav.is-open .nav__mobile-social:nth-child(2) {
    background: var(--cream-warm);
    color: var(--green-deep) !important;
    border: 1px solid rgba(63,98,65,.2);
  }
  .nav.is-open .nav__mobile-info,
  .nav.is-open .nav__mobile-sig {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.5;
  }
  .nav.is-open .nav__mobile-info p { margin: 0; }
  .nav.is-open .nav__mobile-sig {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 16px;
    color: var(--gold-deep);
    font-variation-settings: "opsz" 144, "SOFT" 80;
  }
  @keyframes menuIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero { padding-top: 110px; padding-bottom: 80px; }
  .today__head { grid-template-columns: 1fr; }
  .today__date { justify-self: start; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: auto; }
  .footer__main { grid-template-columns: 1fr; gap: 32px; }
  .about__aside { flex-direction: column; }
  .wa-float { width: 52px; height: 52px; bottom: 18px; right: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .hero__flourish, .marquee__track, .wa-float::before { animation: none; }
  [data-reveal] { opacity: 1; transform: none; }
}
