:root {
  --gold: #C8973A;
  --gold-light: #E4B96A;
  --gold-pale: #F5E9D0;
  --espresso: #1A0A04;
  --forest: #1B4332;
  --cream: #FAF5EC;
  --off-white: #FEF9F2;
  --text-dark: #1C1109;
  --text-mid: #5A3D22;
  --border: rgba(200,151,58,0.25);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: "Jost", sans-serif; background: var(--off-white); color: var(--text-dark); overflow-x: hidden; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 4rem;
  background: rgba(26,10,4,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(200,151,58,0.2);
  transition: box-shadow 0.3s;
}
.nav-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.nav-logo-img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; border: 1.5px solid var(--gold); }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-main { font-family: "Cormorant Garamond", serif; font-size: 1.5rem; font-weight: 700; letter-spacing: 0.12em; color: var(--gold-pale); }
.nav-logo-sub { font-size: 0.52rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-top: 3px; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { font-size: 0.74rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none; color: rgba(250,245,236,0.55); transition: color 0.2s; }
.nav-links a:hover { color: var(--gold-light); }
.nav-cta { background: var(--gold); color: var(--espresso); border: none; padding: 0.6rem 1.6rem; font-family: "Jost", sans-serif; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; transition: background 0.2s, transform 0.2s; position: relative; }
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.cart-badge { position: absolute; top: -7px; right: -7px; background: #C53030; color: white; border-radius: 50%; width: 18px; height: 18px; font-size: 0.6rem; display: flex; align-items: center; justify-content: center; font-weight: 700; opacity: 0; transition: opacity 0.2s; }
.cart-badge.visible { opacity: 1; }

/* HERO */
.hero { min-height: 100vh; padding-top: 70px; background: var(--espresso); display: grid; grid-template-columns: 1fr 1fr; position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(139,26,26,0.22) 0%, transparent 60%), radial-gradient(ellipse at 15% 80%, rgba(27,67,50,0.18) 0%, transparent 55%); pointer-events: none; }
.hero-left { display: flex; flex-direction: column; justify-content: center; padding: 5rem 3rem 5rem 5rem; position: relative; z-index: 2; }
.hero-eyebrow { font-size: 0.67rem; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.75rem; }
.hero-eyebrow::before { content: ""; display: block; width: 26px; height: 1px; background: var(--gold); }
.hero-title { font-family: "Cormorant Garamond", serif; font-size: clamp(3rem, 5.5vw, 5.5rem); font-weight: 300; line-height: 1.05; color: var(--gold-pale); margin-bottom: 1.5rem; }
.hero-title em { font-style: italic; color: var(--gold-light); }
.organic-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(27,67,50,0.5); border: 1px solid rgba(200,151,58,0.3); padding: 0.38rem 0.9rem; margin-bottom: 1.8rem; font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: #86EFAC; width: fit-content; }
.hero-subtitle { font-size: 0.93rem; font-weight: 300; color: rgba(250,245,236,0.58); line-height: 1.85; max-width: 420px; margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.btn-primary { background: var(--gold); color: var(--espresso); padding: 0.85rem 2rem; font-family: "Jost", sans-serif; font-size: 0.77rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; border: none; cursor: pointer; text-decoration: none; display: inline-block; transition: background 0.2s, transform 0.2s; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--gold-pale); padding: 0.85rem 2rem; font-family: "Jost", sans-serif; font-size: 0.77rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; border: 1.5px solid rgba(200,151,58,0.35); cursor: pointer; text-decoration: none; display: inline-block; transition: border-color 0.2s, color 0.2s; }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.hero-stats { margin-top: 3rem; display: flex; align-items: center; gap: 1.5rem; }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-num { font-family: "Cormorant Garamond", serif; font-size: 1.8rem; font-weight: 600; color: var(--gold); line-height: 1; }
.hero-stat-label { font-size: 0.63rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(250,245,236,0.38); margin-top: 3px; }
.hero-stat-divider { width: 1px; height: 34px; background: rgba(200,151,58,0.2); }
.hero-right { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; padding: 3rem 2rem; overflow: hidden; }
.hero-labels-wrap { display: flex; flex-direction: column; gap: 0.9rem; align-items: center; }
.hero-labels-row { display: flex; gap: 0.9rem; align-items: flex-end; }
.hero-label-card { border-radius: 4px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.55); transition: transform 0.4s ease, box-shadow 0.4s ease; }
.hero-label-card:hover { transform: scale(1.05) rotate(0deg) !important; box-shadow: 0 30px 70px rgba(0,0,0,0.7); }
.hero-label-card img { width: 100%; display: block; }

/* MARQUEE */
.marquee-bar { background: var(--gold); padding: 0.6rem 0; overflow: hidden; }
.marquee-track { display: flex; gap: 3rem; white-space: nowrap; animation: marquee 22s linear infinite; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--espresso); display: flex; align-items: center; gap: 1rem; flex-shrink: 0; font-weight: 600; }
.marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--espresso); opacity: 0.45; }

/* ABOUT SECTION */
.about-section { background: var(--espresso); padding: 6rem 5rem; position: relative; overflow: hidden; }
.about-section::after { content: ""; position: absolute; top: 0; right: 0; width: 40%; height: 100%; background: radial-gradient(ellipse at 80% 50%, rgba(200,151,58,0.08) 0%, transparent 70%); pointer-events: none; }
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: start; position: relative; z-index: 1; }
.about-eyebrow { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.about-title { font-family: "Cormorant Garamond", serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300; line-height: 1.2; color: var(--gold-pale); margin-bottom: 1.5rem; }
.about-title em { font-style: italic; color: var(--gold-light); }
.about-tagline { font-family: "Cormorant Garamond", serif; font-size: 1.25rem; font-style: italic; color: var(--gold-light); margin-bottom: 1.8rem; border-left: 3px solid var(--gold); padding-left: 1rem; }
.about-text { font-size: 0.9rem; color: rgba(250,245,236,0.6); line-height: 1.9; margin-bottom: 1.2rem; font-weight: 300; }
.about-right { display: flex; flex-direction: column; gap: 1.2rem; }
.about-pillar { background: rgba(255,255,255,0.04); border: 1px solid rgba(200,151,58,0.2); padding: 1.5rem 1.6rem; transition: border-color 0.3s, transform 0.3s; }
.about-pillar:hover { border-color: var(--gold); transform: translateY(-3px); }
.about-pillar-icon { font-size: 1.4rem; margin-bottom: 0.5rem; }
.about-pillar-title { font-family: "Cormorant Garamond", serif; font-size: 1.2rem; font-weight: 600; color: var(--gold-pale); margin-bottom: 0.4rem; }
.about-pillar-desc { font-size: 0.8rem; color: rgba(250,245,236,0.5); line-height: 1.7; font-weight: 300; }
.story-pillars { display: flex; gap: 0.65rem; flex-wrap: wrap; }
.story-pill { display: flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.07); border: 1px solid rgba(134,239,172,0.2); padding: 0.45rem 0.9rem; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: #86EFAC; }

/* SECTIONS */
section { padding: 6rem 5rem; }
.section-eyebrow { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.section-title { font-family: "Cormorant Garamond", serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300; line-height: 1.2; color: var(--espresso); margin-bottom: 1rem; }
.section-title em { font-style: italic; color: var(--gold); }

/* MENU */
.menu-section { background: var(--off-white); }
.menu-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; flex-wrap: wrap; gap: 1.5rem; }

.juice-teaser { margin-top: 2.5rem; padding: 1.2rem 1.8rem; background: rgba(200,151,58,0.06); border: 1px solid rgba(200,151,58,0.15); border-radius: 8px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.juice-teaser span { font-family: "Jost", sans-serif; font-size: 0.85rem; color: var(--text-mid); }
.juice-teaser button { padding: 0.5rem 1.2rem; font-family: "Jost", sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; background: var(--gold); color: var(--espresso); border: none; border-radius: 4px; cursor: pointer; transition: all 0.2s; }
.juice-teaser button:hover { background: var(--gold-pale); }
.menu-tabs { display: flex; gap: 0.5rem; }
.menu-tab { padding: 0.58rem 1.35rem; font-family: "Jost", sans-serif; font-size: 0.74rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; border: 1.5px solid var(--border); background: transparent; color: var(--text-mid); cursor: pointer; transition: all 0.2s; }
.menu-tab.active { background: var(--espresso); border-color: var(--gold); color: var(--gold-pale); font-weight: 600; }
.menu-tab:hover:not(.active) { border-color: var(--gold); color: var(--gold); }
.menu-tab:not(.active) { background: rgba(200,151,58,0.08); border-color: var(--gold); color: var(--gold); font-weight: 500; }
.price-note { font-size: 0.78rem; color: var(--text-mid); margin-bottom: 1.5rem; padding: 0.65rem 1rem; background: rgba(200,151,58,0.08); border-left: 3px solid var(--gold); }
.price-note strong { color: var(--espresso); }

/* JUICE CARDS */
.juice-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); gap: 1.5rem; }
.juice-card { background: white; border: 1px solid var(--border); overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; position: relative; cursor: pointer; }
.juice-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(44,26,14,0.13); }
.juice-card-img { width: 100%; height: 200px; object-fit: cover; object-position: top; display: block; transition: transform 0.5s ease; }
.juice-card:hover .juice-card-img { transform: scale(1.04); }
.juice-card-body { padding: 1.1rem 1.3rem; }
.juice-card-name { font-family: "Cormorant Garamond", serif; font-size: 1.28rem; font-weight: 700; color: var(--espresso); margin-bottom: 0.28rem; }
.juice-card-ingredients { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.55rem; font-weight: 500; }
.juice-card-desc { font-size: 0.78rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 0.9rem; }
.juice-card-footer { display: flex; align-items: center; justify-content: space-between; }
.juice-price { font-family: "Cormorant Garamond", serif; font-size: 1.45rem; font-weight: 600; color: var(--gold); }
.juice-size { font-size: 0.62rem; color: var(--text-mid); letter-spacing: 0.08em; display: block; margin-top: -2px; }
.add-btn { width: 36px; height: 36px; border-radius: 50%; background: var(--espresso); border: none; color: var(--gold-pale); font-size: 1.3rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s, transform 0.2s; }
.add-btn:hover { background: var(--gold); transform: scale(1.1) rotate(90deg); }
.organic-tag { position: absolute; top: 0.6rem; left: 0.6rem; background: rgba(27,67,50,0.88); color: #86EFAC; font-size: 0.56rem; letter-spacing: 0.16em; text-transform: uppercase; padding: 0.2rem 0.5rem; font-weight: 600; }
.mto-tag { position: absolute; top: 0.6rem; right: 0.6rem; background: rgba(26,10,4,0.72); color: var(--gold-pale); font-size: 0.56rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.2rem 0.5rem; }

/* CHOP CARDS */
.chops-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.chop-card { background: white; border: 1px solid var(--border); overflow: hidden; display: flex; transition: transform 0.25s, box-shadow 0.25s; }
.chop-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(44,26,14,0.12); }
.chop-visual { width: 100px; flex-shrink: 0; background: linear-gradient(135deg, #6B2F0A, #C8973A); display: flex; align-items: center; justify-content: center; font-size: 2.2rem; }
.chop-body { padding: 1.1rem; flex: 1; }
.chop-name { font-family: "Cormorant Garamond", serif; font-size: 1.15rem; font-weight: 600; color: var(--espresso); margin-bottom: 0.28rem; }
.chop-desc { font-size: 0.77rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 0.7rem; }
.chop-footer { display: flex; align-items: center; justify-content: space-between; }

.chop-card-img-style { flex-direction: column; }
.chop-img-wrap { position: relative; width: 100%; height: 200px; overflow: hidden; flex-shrink: 0; }
.chop-img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform 0.5s ease; }
.chop-card-img-style:hover .chop-img { transform: scale(1.05); }
.chop-tag-overlay { position: absolute; bottom: 0.6rem; left: 0.6rem; background: rgba(26,10,4,0.75); color: var(--gold-pale); font-size: 0.58rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.2rem 0.5rem; z-index: 2; }
.chop-organic-tag { position: absolute; top: 0.6rem; left: 0.6rem; background: rgba(27,67,50,0.88); color: #86EFAC; font-size: 0.56rem; letter-spacing: 0.16em; text-transform: uppercase; padding: 0.2rem 0.5rem; font-weight: 600; z-index: 2; }
.chop-card-img-style .chop-body { width: 100%; }
.chop-tag { display: block; font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-top: 4px; font-weight: 600; text-align: center; }
.extra-topping-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.6rem; padding: 0.4rem 0.5rem; background: var(--off-white); border: 1px dashed var(--border); }
.extra-label { font-size: 0.72rem; color: var(--text-mid); letter-spacing: 0.04em; }
.extra-btn { background: transparent; border: 1px solid var(--gold); color: var(--gold); font-family: "Jost", sans-serif; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em; padding: 0.25rem 0.55rem; cursor: pointer; transition: all 0.2s; }
.extra-btn:hover { background: var(--gold); color: var(--espresso); }
.menu-panel { display: none; }
.menu-panel.active { display: block; }

/* HOW */
.how-section { background: var(--espresso); text-align: center; }
.how-section .section-title { color: var(--gold-pale); margin-bottom: 0.75rem; }
.how-desc { font-size: 0.88rem; color: rgba(250,245,236,0.45); max-width: 460px; margin: 0 auto 4rem; line-height: 1.8; font-weight: 300; }
.how-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; position: relative; }
.how-steps::before { content: ""; position: absolute; top: 31px; left: 13%; right: 13%; height: 1px; background: linear-gradient(to right, transparent, rgba(200,151,58,0.35), transparent); }
.how-step { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.step-num { width: 62px; height: 62px; border: 1.5px solid rgba(200,151,58,0.45); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: "Cormorant Garamond", serif; font-size: 1.3rem; font-weight: 600; color: var(--gold); background: var(--espresso); position: relative; z-index: 1; }
.step-title { font-family: "Cormorant Garamond", serif; font-size: 1.18rem; font-weight: 600; color: var(--gold-pale); }
.step-desc { font-size: 0.78rem; color: rgba(250,245,236,0.42); line-height: 1.75; max-width: 175px; }

/* ORDER */
.order-section { background: var(--cream); display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.order-note { background: white; border-left: 3px solid var(--gold); padding: 0.85rem 1rem; margin-top: 0.7rem; font-size: 0.81rem; color: var(--text-mid); line-height: 1.7; }
.order-note strong { color: var(--espresso); }
.order-method-label { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-top: 1.5rem; margin-bottom: 0.6rem; }
.order-options { display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; }
.order-option-btn { padding: 0.8rem 0.9rem; border: 1.5px solid var(--border); background: white; cursor: pointer; display: flex; align-items: center; gap: 0.55rem; font-family: "Jost", sans-serif; font-size: 0.74rem; font-weight: 500; letter-spacing: 0.08em; color: var(--text-mid); transition: all 0.2s; text-decoration: none; }
.order-option-btn:hover { border-color: var(--gold); color: var(--gold); }
.order-option-btn.active { border-color: var(--espresso); background: var(--espresso); color: var(--gold-pale); }

/* CART */
.cart-panel { background: white; border: 1px solid var(--border); }
.cart-header { padding: 1.15rem 1.4rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.cart-title { font-family: "Cormorant Garamond", serif; font-size: 1.3rem; font-weight: 600; color: var(--espresso); }
.cart-count { font-size: 0.7rem; letter-spacing: 0.1em; color: var(--gold); text-transform: uppercase; }
.cart-items { padding: 0.9rem 1.4rem; min-height: 95px; }
.cart-empty { text-align: center; padding: 1.8rem; color: var(--text-mid); font-size: 0.83rem; opacity: 0.55; }
.cart-item { display: flex; align-items: center; justify-content: space-between; padding: 0.65rem 0; border-bottom: 1px dashed var(--border); gap: 0.9rem; }
.cart-item-name { font-size: 0.83rem; font-weight: 500; color: var(--espresso); flex: 1; }
.cart-item-qty { display: flex; align-items: center; gap: 0.45rem; }
.qty-btn { width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--border); background: transparent; cursor: pointer; font-size: 0.88rem; color: var(--text-mid); display: flex; align-items: center; justify-content: center; transition: all 0.15s; }
.qty-btn:hover { border-color: var(--gold); color: var(--gold); }
.qty-num { font-size: 0.82rem; font-weight: 500; min-width: 18px; text-align: center; }
.cart-item-price { font-family: "Cormorant Garamond", serif; font-size: 1.05rem; font-weight: 600; color: var(--gold); min-width: 46px; text-align: right; }
.cart-footer { padding: 1.15rem 1.4rem; border-top: 1px solid var(--border); }
.cart-subtotal { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.cart-subtotal-label { font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-mid); }
.cart-subtotal-amount { font-family: "Cormorant Garamond", serif; font-size: 1.55rem; font-weight: 700; color: var(--espresso); }
.checkout-form { display: flex; flex-direction: column; gap: 0.65rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; }
.form-field input, .form-field textarea { width: 100%; padding: 0.68rem 0.9rem; border: 1.5px solid var(--border); background: var(--off-white); font-family: "Jost", sans-serif; font-size: 0.82rem; color: var(--text-dark); outline: none; transition: border-color 0.2s; }
.form-field input:focus, .form-field textarea:focus { border-color: var(--gold); }
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(90,61,34,0.38); }
.form-field textarea { resize: vertical; min-height: 62px; }
.checkout-btn { width: 100%; padding: 0.95rem; background: var(--gold); color: var(--espresso); border: none; font-family: "Jost", sans-serif; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; transition: background 0.2s; margin-top: 0.35rem; }
.checkout-btn:hover { background: var(--espresso); color: var(--gold-pale); }
.whatsapp-btn { width: 100%; padding: 0.95rem; background: #25D366; color: white; border: none; font-family: "Jost", sans-serif; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; transition: background 0.2s; margin-top: 0.35rem; display: none; }
.whatsapp-btn:hover { background: #1DA851; }
.order-success { display: none; text-align: center; padding: 2.5rem 1.5rem; }
.order-success.visible { display: block; }
.success-icon { font-size: 2.5rem; margin-bottom: 0.7rem; }
.success-title { font-family: "Cormorant Garamond", serif; font-size: 1.5rem; color: var(--espresso); margin-bottom: 0.55rem; }
.success-msg { font-size: 0.83rem; color: var(--text-mid); line-height: 1.75; }

/* TOAST */
.toast { position: fixed; bottom: 2rem; right: 2rem; background: var(--espresso); color: var(--gold-pale); padding: 0.78rem 1.3rem; font-size: 0.78rem; letter-spacing: 0.04em; opacity: 0; transform: translateY(10px); transition: opacity 0.3s, transform 0.3s; z-index: 200; pointer-events: none; border-left: 3px solid var(--gold); max-width: 270px; }
.toast.show { opacity: 1; transform: translateY(0); }

/* FOOTER */
footer { background: var(--espresso); color: rgba(250,245,236,0.48); padding: 4rem 5rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(200,151,58,0.14); }
.footer-logo-row { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.7rem; }
.footer-logo-img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(200,151,58,0.35); }
.footer-brand-name { font-family: "Cormorant Garamond", serif; font-size: 1.55rem; font-weight: 700; color: var(--gold-pale); letter-spacing: 0.1em; }
.footer-sub-text { font-size: 0.48rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); display: block; margin-top: 2px; }
.footer-tagline { font-size: 0.8rem; line-height: 1.75; margin-bottom: 1.4rem; }
.social-links { display: flex; gap: 0.6rem; }
.social-link { width: 33px; height: 33px; border: 1px solid rgba(200,151,58,0.28); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; color: var(--gold-light); text-decoration: none; transition: background 0.2s, border-color 0.2s; }
.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--espresso); }
.footer-col-title { font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.15rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.58rem; }
.footer-links a { color: rgba(250,245,236,0.42); text-decoration: none; font-size: 0.8rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.7rem; color: rgba(250,245,236,0.22); flex-wrap: wrap; gap: 1rem; }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.hero-left > * { animation: fadeUp 0.7s ease both; }
.hero-left > *:nth-child(1) { animation-delay: 0.1s; }
.hero-left > *:nth-child(2) { animation-delay: 0.2s; }
.hero-left > *:nth-child(3) { animation-delay: 0.3s; }
.hero-left > *:nth-child(4) { animation-delay: 0.38s; }
.hero-left > *:nth-child(5) { animation-delay: 0.48s; }
.hero-left > *:nth-child(6) { animation-delay: 0.58s; }

@media (max-width: 1100px) {
  nav { padding: 1rem 2rem; }
  section { padding: 4rem 2.5rem; }
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 5rem 2.5rem 2rem; }
  .hero-right { min-height: 280px; padding: 2rem; }
  .order-section { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr 1fr; }
  .how-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-section { padding: 4rem 2.5rem; }
  .about-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  nav { padding: 0.9rem 1.4rem; }
  section { padding: 3rem 1.4rem; }
  .how-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .order-options { grid-template-columns: 1fr; }
  .about-section { padding: 3rem 1.4rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
}
  