/* ── VARIABLES ──────────────────────────────────────────────────────────────── */
:root {
  --cream:       #FAF7F2;
  --warm-white:  #FFFDF9;
  --blush:       #E8C4B8;
  --blush-dark:  #C9967F;
  --blush-deep:  #A8614A;
  --gold:        #C9A96E;
  --gold-light:  #E8D5A3;
  --gold-dark:   #9E7A3F;
  --charcoal:    #2C2420;
  --text:        #3D2E26;
  --text-light:  #7A6358;
  --dark:        #1A100A;
}

/* ── BASE ───────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Lato', sans-serif; color: var(--text); background: var(--warm-white); overflow-x: hidden; }
h1,h2,h3,h4,h5,h6 { font-family: 'Playfair Display', serif; }
a { text-decoration: none; }
img { max-width: 100%; }

/* ── NAV ─────────────────────────────────────────────────────────────────────── */
#mainNav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 1.5rem 0; transition: all 0.45s ease; }
#mainNav.scrolled { background: rgba(250,247,242,0.97); backdrop-filter: blur(8px); padding: 0.7rem 0; box-shadow: 0 1px 0 rgba(201,169,110,0.25); }
.nav-logo { height: 44px; transition: height 0.4s; }
#mainNav.scrolled .nav-logo { height: 36px; }
.brand-script { font-family: 'Great Vibes', cursive; font-size: 2rem; color: var(--warm-white); transition: color 0.45s; line-height: 1; }
#mainNav.scrolled .brand-script { color: var(--charcoal); }
.nav-link { font-family: 'Lato', sans-serif !important; font-size: 0.72rem !important; font-weight: 700 !important; letter-spacing: 0.18em !important; text-transform: uppercase !important; color: rgba(255,253,249,0.88) !important; padding: 0.4rem 1rem !important; transition: color 0.3s !important; }
#mainNav.scrolled .nav-link { color: var(--text) !important; }
.nav-link:hover { color: var(--gold) !important; }
.navbar-toggler { border: 1px solid rgba(255,253,249,0.35) !important; background: none !important; box-shadow: none !important; padding: 0.3rem 0.6rem; }
#mainNav.scrolled .navbar-toggler { border-color: var(--gold) !important; }
#mainNav .bi-list { color: var(--warm-white); transition: color 0.45s; }
#mainNav.scrolled .bi-list { color: var(--charcoal); }
@media (max-width: 991px) {
  .navbar-collapse { background: var(--cream); padding: 1rem 1.5rem; margin-top: 0.5rem; border-top: 1px solid var(--gold-light); }
  .navbar-collapse .nav-link { color: var(--text) !important; padding: 0.6rem 0 !important; border-bottom: 1px solid rgba(201,169,110,0.15) !important; display: block; }
  .navbar-collapse .nav-link:last-child { border-bottom: none !important; }
}

/* ── HERO ─────────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(160deg, rgba(26,16,10,0.88) 0%, rgba(44,36,32,0.72) 50%, rgba(201,169,110,0.25) 100%),
    url('../images/hero-bg.jpg') center / cover no-repeat,
    #2C1A10;
  display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 80px;
}
.hero::before { content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.04; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); background-size: 200px; }
.hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 160px; background: linear-gradient(to bottom, transparent, var(--warm-white)); pointer-events: none; }
.hero-deco-left { position: absolute; left: -40px; top: 50%; transform: translateY(-50%); width: 320px; opacity: 0.04; pointer-events: none; }
.hero-deco-right { position: absolute; right: -40px; top: 50%; transform: translateY(-50%); width: 320px; opacity: 0.05; pointer-events: none; }
.hero-content { position: relative; z-index: 2; padding: 5rem 0 9rem; }
.hero-pre { font-family: 'Lato', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.5rem; display: flex; align-items: center; justify-content: center; gap: 1rem; }
.hero-pre::before, .hero-pre::after { content: ''; flex: 0 0 40px; height: 1px; background: var(--gold); opacity: 0.5; }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(3rem, 8vw, 6rem); font-weight: 400; line-height: 1.08; color: var(--warm-white); margin-bottom: 0.25rem; }
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-script { font-family: 'Great Vibes', cursive; font-size: clamp(2.5rem, 5vw, 4.5rem); color: var(--blush); line-height: 1.2; display: block; margin-bottom: 1.5rem; }
.hero-rule { display: flex; align-items: center; gap: 1rem; margin: 1.75rem 0; }
.hero-rule span { width: 60px; height: 1px; background: var(--gold); opacity: 0.6; }
.hero-rule i { color: var(--gold); font-size: 0.7rem; opacity: 0.7; }
.hero-tagline { font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(1rem, 2vw, 1.3rem); color: rgba(255,253,249,0.65); margin-bottom: 2.5rem; max-width: 480px; line-height: 1.8; }
.hero-scroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 3; color: rgba(255,253,249,0.35); font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; text-align: center; animation: bob 2.5s ease-in-out infinite; }
.hero-scroll i { display: block; margin-top: 0.5rem; font-size: 1rem; }
@keyframes bob { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ── BUTTONS ─────────────────────────────────────────────────────────────────── */
.btn-gold { display: inline-block; background: var(--gold); color: var(--dark) !important; font-family: 'Lato', sans-serif; font-weight: 700; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; padding: 1rem 2.8rem; border: none; border-radius: 0; transition: background 0.3s, transform 0.2s; }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); }
.btn-outline-gold { display: inline-block; background: transparent; color: var(--gold-light) !important; font-family: 'Lato', sans-serif; font-weight: 700; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; padding: 1rem 2.8rem; border: 1px solid rgba(201,169,110,0.5); border-radius: 0; transition: all 0.3s; }
.btn-outline-gold:hover { border-color: var(--gold); background: rgba(201,169,110,0.08); transform: translateY(-2px); }

/* ── SECTION GENERAL ─────────────────────────────────────────────────────────── */
.section-pad { padding: 7rem 0; }
.eyebrow { font-family: 'Lato', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-dark); display: block; margin-bottom: 0.75rem; }
.eyebrow-light { color: var(--gold-light); }
.section-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; line-height: 1.2; color: var(--charcoal); }
.section-title-light { color: var(--warm-white); }
.section-rule { display: flex; align-items: center; gap: 0.75rem; margin: 1.5rem 0; }
.section-rule span { height: 1px; background: var(--gold); opacity: 0.5; flex: 0 0 40px; }
.section-rule i { color: var(--gold); font-size: 0.65rem; }
.section-rule-center { justify-content: center; }

/* ── ABOUT ────────────────────────────────────────────────────────────────────── */
.about-bg { background: var(--cream); }
.about-img-wrap { position: relative; }
.about-img-wrap::before { content: ''; position: absolute; top: -16px; left: -16px; right: 16px; bottom: 16px; border: 1px solid var(--gold); opacity: 0.35; z-index: 0; }
.about-img-wrap img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-img-placeholder { position: relative; z-index: 1; width: 100%; aspect-ratio: 4/5; background: linear-gradient(135deg, var(--blush) 0%, var(--gold-light) 100%); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 1rem; }
.about-img-placeholder i { font-size: 3rem; color: rgba(255,253,249,0.4); }
.about-img-placeholder span { font-family: 'Playfair Display', serif; font-style: italic; color: rgba(255,253,249,0.6); font-size: 1rem; }
.about-body { font-size: 0.97rem; line-height: 2; color: var(--text-light); }
.about-credential { display: inline-flex; align-items: center; gap: 0.75rem; padding: 1rem 1.5rem; border: 1px solid rgba(201,169,110,0.3); background: rgba(201,169,110,0.06); }
.about-credential i { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }
.about-credential span { font-size: 0.8rem; line-height: 1.5; color: var(--text-light); }
.about-credential strong { display: block; color: var(--charcoal); font-family: 'Playfair Display', serif; font-size: 0.95rem; font-weight: 400; }

/* ── OFFERINGS ────────────────────────────────────────────────────────────────── */
.offerings-bg { background: var(--warm-white); }
.offering-card { border: 1px solid rgba(201,169,110,0.2); padding: 2.5rem 2rem; text-align: center; transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease; background: var(--warm-white); position: relative; overflow: hidden; }
.offering-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--blush)); transform: scaleX(0); transition: transform 0.35s ease; transform-origin: left; }
.offering-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(44,36,32,0.1); border-color: rgba(201,169,110,0.45); }
.offering-card:hover::before { transform: scaleX(1); }
.offering-icon { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-light), var(--blush)); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.offering-icon i { font-size: 1.8rem; color: var(--charcoal); }
.offering-card h4 { font-size: 1.5rem; font-weight: 400; color: var(--charcoal); margin-bottom: 0.75rem; }
.offering-card p { font-size: 0.9rem; line-height: 1.9; color: var(--text-light); }

/* ── MENU & FLAVORS ───────────────────────────────────────────────────────────── */
.menu-bg { background: var(--cream); }
.menu-accordion { border: none; }
.menu-item { border: 1px solid rgba(201,169,110,0.25) !important; margin-bottom: 1rem !important; background: var(--warm-white); }
.menu-btn { background: var(--warm-white) !important; color: var(--charcoal) !important; font-family: 'Playfair Display', serif !important; font-size: 1.3rem !important; font-weight: 400 !important; padding: 1.5rem 2rem !important; border: none !important; box-shadow: none !important; }
.menu-btn:not(.collapsed) { color: var(--gold-dark) !important; background: var(--cream) !important; }
.menu-btn::after { filter: none !important; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M2 5l6 6 6-6' stroke='%23C9A96E' stroke-width='1.5' fill='none'/%3E%3C/svg%3E") !important; }
.menu-btn i { color: var(--gold); }
.menu-body { background: var(--warm-white); padding: 2rem !important; }
.menu-sub-title { font-family: 'Lato', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 0.75rem; }
.menu-note { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; padding: 0.75rem 1rem; border-left: 2px solid var(--gold); background: rgba(201,169,110,0.06); }
.menu-note i { color: var(--gold); }

.flavor-list { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.flavor-pill { font-family: 'Lato', sans-serif; font-size: 0.78rem; font-weight: 400; padding: 0.3rem 0.8rem; background: var(--cream); border: 1px solid rgba(201,169,110,0.3); color: var(--text); white-space: nowrap; }

.specialty-card { border: 1px solid rgba(201,169,110,0.2); padding: 1rem 1.25rem; height: 100%; background: var(--cream); }
.specialty-name { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 500; color: var(--charcoal); margin-bottom: 0.4rem; }
.specialty-desc { font-size: 0.82rem; line-height: 1.7; color: var(--text-light); }

.cookie-note-card { display: flex; gap: 1rem; align-items: flex-start; padding: 1.25rem; border: 1px solid rgba(201,169,110,0.2); background: var(--cream); height: 100%; }
.cookie-note-card i { color: var(--gold); font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }
.cookie-note-card p { font-size: 0.88rem; line-height: 1.8; color: var(--text-light); margin: 0; }

/* ── GALLERY ──────────────────────────────────────────────────────────────────── */
.gallery-bg { background: var(--charcoal); position: relative; overflow: hidden; }
.gallery-bg::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, rgba(201,169,110,0.02) 0px, rgba(201,169,110,0.02) 1px, transparent 1px, transparent 60px); }
.gallery-header, .gallery-footer { position: relative; z-index: 1; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; position: relative; z-index: 1; }
.gallery-item { background: rgba(201,169,110,0.08); border: 1px solid rgba(201,169,110,0.12); aspect-ratio: 1; overflow: hidden; transition: transform 0.3s ease; }
.gallery-item:hover { transform: scale(1.02); }
.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; color: rgba(201,169,110,0.3); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; font-family: 'Lato', sans-serif; height: 100%; }
.gallery-placeholder i { font-size: 1.5rem; }

/* ── CONTACT / ORDER ─────────────────────────────────────────────────────────── */
.contact-bg { background: var(--warm-white); }
.contact-aside { background: linear-gradient(160deg, var(--charcoal) 0%, #3D2820 100%); padding: 3rem 2.5rem; }
.contact-aside-title { font-family: 'Great Vibes', cursive; font-size: 2.5rem; color: var(--gold-light); margin-bottom: 1rem; line-height: 1.2; }
.contact-aside p { font-size: 0.9rem; line-height: 1.9; color: rgba(255,253,249,0.6); margin-bottom: 2rem; }
.contact-detail { display: flex; align-items: center; gap: 1rem; }
.contact-detail-icon { width: 40px; height: 40px; border: 1px solid rgba(201,169,110,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail-icon i { color: var(--gold); font-size: 0.9rem; }
.contact-detail a, .contact-detail span { color: rgba(255,253,249,0.8); font-size: 0.88rem; line-height: 1.6; }
.contact-detail a:hover { color: var(--gold-light); }
.form-wrap { background: var(--cream); padding: 3rem 2.5rem; border: 1px solid rgba(201,169,110,0.2); }
.form-heading { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 400; color: var(--charcoal); margin-bottom: 1.5rem; }
.form-label-ttb { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-light); margin-bottom: 0.5rem; }
.form-field-ttb { width: 100%; background: var(--warm-white); border: 1px solid rgba(201,169,110,0.25); color: var(--charcoal); font-family: 'Lato', sans-serif; font-size: 0.93rem; padding: 0.85rem 1.1rem; border-radius: 0; outline: none; transition: border-color 0.3s; }
.form-field-ttb:focus { border-color: var(--gold); box-shadow: none; }
.form-field-ttb::placeholder { color: rgba(61,46,38,0.3); }
textarea.form-field-ttb { min-height: 120px; resize: vertical; }
select.form-field-ttb { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A96E' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; cursor: pointer; background-color: var(--warm-white); }
.captcha-label-ttb { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-light); margin-bottom: 0.5rem; }
.btn-submit-ttb { width: 100%; background: var(--charcoal); color: var(--gold-light); border: none; font-family: 'Lato', sans-serif; font-weight: 700; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; padding: 1.1rem; border-radius: 0; transition: background 0.3s; cursor: pointer; }
.btn-submit-ttb:hover { background: var(--gold-dark); color: var(--dark); }
.form-response { padding: 1rem 1.25rem; margin-bottom: 1.5rem; font-size: 0.9rem; border-left: 2px solid; font-family: 'Lato', sans-serif; }
.form-response-success { background: rgba(201,169,110,0.1); border-color: var(--gold); color: var(--gold-dark); }
.form-response-error { background: rgba(168,97,74,0.08); border-color: var(--blush-deep); color: var(--blush-deep); }

/* ── FOOTER ───────────────────────────────────────────────────────────────────── */
footer { background: var(--dark); padding: 2.5rem 0; color: rgba(255,253,249,0.35); font-size: 0.8rem; }
.foot-script { font-family: 'Great Vibes', cursive; font-size: 1.6rem; color: var(--gold); line-height: 1; }
footer a { color: var(--gold); }
footer a:hover { color: var(--gold-light); }
.foot-social { width: 36px; height: 36px; border: 1px solid rgba(201,169,110,0.25); display: inline-flex; align-items: center; justify-content: center; color: rgba(255,253,249,0.5); font-size: 0.9rem; transition: all 0.3s; }
.foot-social:hover { border-color: var(--gold); color: var(--gold); }

/* ── ANIMATIONS ───────────────────────────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-up.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

/* ── RESPONSIVE ───────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .section-pad { padding: 5rem 0; }
  .hero { text-align: center; }
  .hero-rule { justify-content: center; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 1; }
  .contact-aside { padding: 2rem 1.5rem; }
  .form-wrap { padding: 2rem 1.5rem; }
  .about-img-wrap::before { display: none; }
}
@media (max-width: 576px) {
  .btn-gold, .btn-outline-gold { width: 100%; text-align: center; }
  .menu-btn { font-size: 1.1rem !important; padding: 1.25rem 1.25rem !important; }
}
