* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; font-family: 'Nunito Sans', sans-serif; color: var(--text); background: #fff; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

:root { --text: #2a2a2a; --muted: #666; --brown-light: #E2D8CA; --brown-dark: #7A5C3A; --gold: #C8A34A; --space-1: 0.25rem; --space-2: 0.5rem; --space-3: 0.75rem; --space-4: 1rem; --space-5: 1.25rem; --space-6: 1.5rem; --space-7: 2rem; --space-8: 3rem; --radius: 12px; }

.container { width: min(1200px, 90%); margin: 0 auto; }
.muted { color: var(--muted); line-height: 1.6; }
.center { text-align: center; }
.section { margin-top: var(--space-7); padding-top: var(--space-6); padding-bottom: var(--space-6); }
.section-header h2 { font-family: 'Domine', serif; font-size: 2.25rem; margin-bottom: var(--space-2); color: var(--brown-dark); letter-spacing: 0.5px; }
.section-subtitle { color: var(--muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.section + .section { border-top: 1px solid rgba(0,0,0,0.05); padding-top: var(--space-8); }


/* Header */
.site-header { background: #fff; border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 9999; }
.header-inner { display: flex; justify-content: space-between; align-items: center; padding: var(--space-4) 0; }
.brand { display: flex; align-items: center; gap: var(--space-3); }
.brand-text { font-family: 'Domine', serif; font-size: 1.5rem; }
.tagline { margin: 0; color: var(--brown-dark); font-size: 0.85rem; }

.mobile-toggle { background: none; border: none; cursor: pointer; }
.mobile-toggle .icon-open { display: block; }
.mobile-toggle .icon-close { display: none; }
.mobile-toggle.is-open .icon-open { display: none !important; }
.mobile-toggle.is-open .icon-close { display: block !important; }

.nav { display: flex; }
.nav-list { list-style: none; padding: 0; margin: 0; display: flex; gap: var(--space-6); }
.nav-list a { font-weight: 700; text-decoration: none; position: relative; padding: var(--space-2); color: var(--text); }
.nav-list a:hover { color: var(--brown-dark); }
.nav-list a::after { content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 160ms ease; border-radius: 3px; opacity: 0.95; }

@media (min-width: 720px) { .nav-list a:hover::after, .nav-list a:focus::after { transform: scaleX(1); } .mobile-toggle { display: none !important; } }

@media (max-width: 719px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; overflow: hidden; max-height: 0; opacity: 0; transition: max-height 0.32s ease, opacity 0.28s ease; z-index: 1200; border-top: 1px solid rgba(0,0,0,0.04); }
  .nav.open-menu { display: block; max-height: 600px; opacity: 1; padding: var(--space-4); }
  .nav-list { align-items: flex-end; flex-direction: column; gap: var(--space-3); }
  .mobile-toggle { display: inline-flex; position: relative; z-index: 1300; }
  .nav-list a { position: relative; padding: 12px 10px; }
  .nav-list a::after { content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 160ms ease; border-radius: 2px; opacity: 0.95; }
  .nav-list a:hover::after, .nav-list a:focus::after, .nav-list a:active::after { transform: scaleX(1); }
  .nav-list li { position: relative; width: fit-content; }
  .nav-list li ul { position: absolute; top: 100%; right: 0; left: auto; width: 200px; background: #fff; list-style: none; padding: var(--space-2) 0; margin: 0; display: none; min-width: 160px; max-width: 90vw; box-sizing: border-box; box-shadow: 0 6px 12px rgba(0,0,0,0.1); border-radius: 8px; }
  .nav-list li:hover > ul, .nav-list li:focus-within > ul { display: block; }
  .nav-list li ul li a { display: block; padding: var(--space-2) var(--space-4); color: var(--text); text-align: right; }
}

/* Hero */
.hero { position: relative; color: #fff; padding: 9rem 0; background-size: cover; background-position: center; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.45); }
.hero-grid { position: relative; z-index: 10; }
.hero-title { font-family: 'Domine'; font-size: clamp(2rem, 5vw + 1rem, 3rem); margin-bottom: var(--space-2); }
.hero-tagline { font-size: 1.3rem; margin-bottom: var(--space-3); color: #ffe2c8; }
.hero-lead { font-size: 1.2rem; max-width: 550px; line-height: 1.6; }
.hero-ctas { margin-top: var(--space-4); display: flex; gap: var(--space-3); }
.btn { padding: 0.75rem 1.4rem; border-radius: var(--radius); font-weight: 700; cursor: pointer; transition: opacity 0.3s ease, box-shadow 0.3s ease; display: inline-block; text-align: center; }
.btn-primary { background: var(--brown-dark); border: 2px solid #fff; color: #fff; position: relative; overflow: hidden; }
.btn-primary:hover { opacity: 0.85; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); }

/* Signature Card */
.signature-card { display: grid; grid-template-columns: 1fr; gap: var(--space-6); align-items: start; margin-top: var(--space-6); padding: var(--space-6); border-radius: var(--radius); background: #faf7f4; }
.signature-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--radius); box-shadow: 0 6px 18px rgba(0,0,0,0.1); }
.signature-card .card-body { padding-inline: var(--space-4); }
.title-row { display: flex; justify-content: space-between; align-items: center; }
.item-name { font-family: 'Domine'; font-size: 1.75rem; margin: 0; }
.price-inline { font-weight: 700; font-size: 1.2rem; color: var(--brown-dark); }
.item-desc { display: flex; flex-direction: column; justify-content: flex-start; margin-top: var(--space-2); }
@media (min-width: 768px) { .signature-card { grid-template-columns: 1fr 1fr; align-items: center; } }


/* Feature Cards */
.feature-label { text-align: center; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-top: var(--space-8); margin-bottom: var(--space-5); padding: 0 var(--space-3); line-height: 1.4; }
.cards-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-6); margin-top: var(--space-7); }
.feature-card { text-align: center; padding: var(--space-5); background: #faf7f4; border-radius: var(--radius); display: flex; flex-direction: row; gap: var(--space-4); align-items: center; }
.feature-media { width: 100%; max-width: 200px; aspect-ratio: 1/1; overflow: hidden; border-radius: var(--radius); flex-shrink: 0; }
.feature-media img { width: 80%; height: 80%; object-fit: cover; border-radius: var(--radius); margin: 0; }
.feature-copy h3 { font-family: 'Domine'; font-size: 1.25rem; margin-bottom: var(--space-2); }
.feature-copy p { margin: 0; line-height: 1.6; }
@media (min-width: 768px) { .cards-grid { grid-template-columns: repeat(3,1fr); } .feature-card { flex-direction: column; } .feature-media img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); margin: 0; } .feature-copy p { max-width: 420px; margin-left: auto; margin-right: auto; } }
/* Fix feature cards on mobile */
@media (max-width: 480px) { .feature-card { flex-direction: column !important; text-align: center; padding: var(--space-5); } .feature-card .feature-media { width: clamp(120px, 40vw, 180px); margin: 0 auto var(--space-3); } .feature-card .feature-media img { width: 100%; height: auto; } .feature-copy p { font-size: 1rem; line-height: 1.55; max-width: 95%; margin: 0 auto; } }


/* Drinks Section */
.drinks-section { background: var(--brown-light); }
.drinks-grid-two { display: grid; grid-template-columns: 1fr; gap: var(--space-6); margin-top: var(--space-6); align-items: center;}
.drinks-copy { padding: var(--space-4) var(--space-3); display: flex; flex-direction: column; justify-content: center; }
.drinks-copy .title-row { margin-bottom: var(--space-3); }
.drinks-copy .item-name { font-size: 1.15rem; }
.drinks-copy .price-inline { font-size: 1rem; }
.drinks-media img { width: 100%; border-radius: var(--radius); box-shadow: 0 6px 18px rgba(0,0,0,0.1); }
@media (min-width: 850px) { .drinks-grid-two { grid-template-columns: 1fr 1fr; gap: var(--space-7); padding-left: var(--space-7); padding-right: var(--space-7); } .drinks-copy {justify-content: center}; .drinks-copy p { font-size: 1.15rem; line-height: 1.7; } }

/* Footer */
.site-footer { background: #faf7f4; padding: var(--space-2); margin-top: var(--space-6); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--space-4); }
.footer-copy { color: var(--muted); }
.footer-links { display: flex; justify-content: flex-end; gap: var(--space-4); }
.footer-links a img { display: block; }
@media (max-width: 600px) { .footer-inner { flex-direction: column; align-items: center; gap: var(--space-4); } .footer-links { justify-content: center; gap: var(--space-4); width: 100%; max-width: 200px; } }

/* Scroll Top */
.scroll-top { position: fixed; bottom: 24px; right: 24px; padding: 0; margin: 0; background: none; border: none; box-shadow: none; width: auto; height: auto; cursor: pointer; z-index: 9999; transition: opacity 0.3s ease, transform 0.3s ease; transform: translateY(20px); opacity: 0; pointer-events: none; }
.scroll-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top img, .scroll-top svg { width: var(--space-7); height: var(--space-7); display: block; }
.scroll-top:hover img, .scroll-top:hover svg { opacity: 0.85; }

/* Reading Progress */
.reading-progress { position: fixed; left: 0; top: 0; height: 4px; background: var(--gold); width: 0%; z-index: 9999; transition: width 0.2s ease-out; }

/* Utilities */
.grid { display: grid; gap: var(--space-4); }
.small { font-size: 0.9rem; }
.brand-mark-img, .icon-open, .icon-close { width: var(--space-7); height: var(--space-7); display: block; } 
.social-link img { width: var(--space-6); height: var(--space-6); display: block; }
.social-link img { filter: grayscale(100%); opacity: 0.9; }
.social-link img:hover { filter: none; opacity: 1; }
