/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
  --black:      #1a1a1a;
  --white:      #ffffff;
  --off-white:  #f5f2ed;
  --cream:      #faf8f4;
  --gold:       #b8943a;
  --border:     #e0dbd4;
  --text:       #2a2a2a;
  --muted:      #666;
  --max-width:  1200px;
  --page-pad:   4vw;
  --font-head:  'EB Garamond', 'Adobe Garamond Pro', Georgia, serif;
  --font-body:  'Raleway', Helvetica, Arial, sans-serif;
}

body {
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
ul { list-style: none; }

/* ── HEADER ── */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

/* ── TOP BAR ── */
.top-bar {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}
.top-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--page-pad);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 36px;
  gap: 16px;
}

/* ── MAIN NAV ── */
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--page-pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 80px;
  gap: 20px;
}

.nav-left { display: flex; align-items: center; }
.nav-right-links { display: flex; align-items: center; justify-content: flex-end; }

.nav-left a, .nav-right-links a {
  color: var(--black);
  text-decoration: none;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0 16px;
  height: 80px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
  white-space: nowrap;
}
.nav-left a:hover, .nav-right-links a:hover,
.nav-left a.active, .nav-right-links a.active { border-bottom-color: var(--black); }

.logo-center { display: flex; justify-content: center; }
.logo-center a { display: block; }
.logo-center img { height: 64px; width: auto; }

.nav-icon {
  color: var(--black); text-decoration: none; font-size: 11px;
  display: flex; align-items: center; gap: 4px;
  transition: opacity 0.2s; background: none; border: none; cursor: pointer;
}
.nav-icon:hover { opacity: 0.5; }
.nav-icon svg { display: block; }
.lang-label { font-size: 10px; font-weight: 700; letter-spacing: 1px; }

.cart-count {
  background: var(--black); color: var(--white);
  border-radius: 50%; width: 16px; height: 16px;
  font-size: 9px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
}

/* ── MOBILE NAV ── */
.header-inner { position: relative; }

.mobile-menu-btn {
  display: none;
  position: absolute; right: var(--page-pad); top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer;
  color: var(--black); padding: 6px;
}

#mobile-menu {
  position: fixed; inset: 0; z-index: 500;
  background: var(--black);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}
#mobile-menu.open { transform: translateX(0); }

.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px var(--page-pad);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu-logo { height: 52px; width: auto; }
.mobile-menu-close {
  background: none; border: none; cursor: pointer;
  color: var(--white); padding: 6px;
}

.mobile-menu-nav {
  flex: 1; display: flex; flex-direction: column;
  padding: 32px var(--page-pad);
}
.mobile-menu-nav a {
  color: rgba(255,255,255,0.85); text-decoration: none;
  font-family: var(--font-head); font-size: clamp(30px, 9vw, 48px);
  font-weight: 400; padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}
.mobile-menu-nav a:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
.mobile-menu-nav a:hover,
.mobile-menu-nav a.mobile-active { color: var(--white); }

.mobile-menu-footer {
  padding: 24px var(--page-pad);
  display: flex; gap: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu-footer a {
  color: rgba(255,255,255,0.45); text-decoration: none;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  transition: color 0.2s;
}
.mobile-menu-footer a:hover { color: var(--white); }

@media (max-width: 900px) {
  .top-bar { display: none; }
  .nav-left, .nav-right-links { display: none; }
  .mobile-menu-btn { display: flex; align-items: center; justify-content: center; }
  .logo-center img { height: 52px; }
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 80vh; min-height: 520px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}

.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.32); }

.hero-content { position: relative; z-index: 1; padding: 0 40px; max-width: 900px; }

.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(38px, 5.5vw, 74px);
  font-weight: 400; color: var(--white); line-height: 1.15;
  letter-spacing: 0.5px; margin-bottom: 36px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

/* smaller hero for inner pages */
.hero.hero-sm { height: 42vh; min-height: 300px; }
.hero.hero-sm .hero-content h1 { font-size: clamp(32px, 4vw, 56px); margin-bottom: 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  text-decoration: none; padding: 14px 44px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer; border: none; line-height: 1;
}

.btn-white  { background: var(--white);  color: var(--black); }
.btn-white:hover  { background: var(--black); color: var(--white); }

.btn-black  { background: var(--black);  color: var(--white); }
.btn-black:hover  { background: #333; }

.btn-outline-white {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.65);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn-outline-dark {
  background: transparent; color: var(--black);
  border: 1px solid var(--black); padding: 13px 44px;
}
.btn-outline-dark:hover { background: var(--black); color: var(--white); }

/* ── PAGE WRAPPER ── */
.page-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px var(--page-pad);
}

/* ── SECTION ── */
.section { padding: 80px var(--page-pad); }
.section-white  { background: var(--white); }
.section-cream  { background: var(--cream); }
.section-off    { background: var(--off-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-black  { background: var(--black); color: var(--white); }

.section-inner { max-width: var(--max-width); margin: 0 auto; }

/* ── TYPOGRAPHY ── */
h1, h2, h4 { font-family: var(--font-head); font-weight: 400; line-height: 1.2; letter-spacing: 0.3px; }
h3 { font-family: var(--font-body); font-weight: 600; line-height: 1.2; letter-spacing: 0.3px; }
h2 { font-size: clamp(28px, 3.5vw, 44px); }
h3 { font-size: clamp(20px, 2.5vw, 30px); }

.text-muted { color: var(--muted); }
.text-center { text-align: center; }

.lead {
  font-family: var(--font-head);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.65;
  color: var(--text);
}

p { font-size: 14px; line-height: 1.9; color: var(--muted); }
p + p { margin-top: 12px; }
p strong, p strong em { color: var(--text); font-weight: 600; }

blockquote { border: none; padding: 0; font-style: normal; }

/* ── DIVIDER ── */
hr { border: none; border-top: 1px solid var(--border); margin: 48px 0; }

/* ── FOOTER ── */
footer {
  background: var(--black); color: rgba(255,255,255,0.7);
  padding: 64px var(--page-pad) 32px;
}

.footer-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 60px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo-img { height: 48px; width: auto; margin-bottom: 16px; }

.footer-brand p {
  font-size: 13px; color: rgba(255,255,255,0.5);
  line-height: 1.8; max-width: 280px; margin-bottom: 16px;
}

.footer-brand address {
  font-style: normal; font-size: 12px;
  color: rgba(255,255,255,0.38); line-height: 2;
}

.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); text-decoration: none;
  font-size: 11px; font-weight: 700;
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }

.footer-col h4 {
  font-family: var(--font-body); font-size: 9px;
  font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 20px;
}

.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,0.55); text-decoration: none;
  font-size: 13px; transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
  max-width: var(--max-width); margin: 28px auto 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px; color: rgba(255,255,255,0.28);
  letter-spacing: 0.5px; flex-wrap: wrap; gap: 12px;
}

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9000;
  background: var(--black); color: var(--white);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px var(--page-pad);
  transition: transform 0.4s ease, opacity 0.4s ease;
}
#cookie-banner.cookie-hidden { transform: translateY(100%); opacity: 0; }
.cookie-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.cookie-inner p { font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.6; }
.cookie-inner p a { color: var(--white); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btns .btn { padding: 10px 22px; font-size: 11px; }
.cookie-btns .btn-outline-dark {
  border-color: rgba(255,255,255,0.3); color: var(--white);
}
.cookie-btns .btn-outline-dark:hover { background: rgba(255,255,255,0.1); }

/* ── AGE GATE ── */
#age-gate {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
#age-gate.hidden { display: none; }

.age-gate-box {
  text-align: center; max-width: 480px; width: 100%;
}
.age-gate-box img { height: 64px; width: auto; margin: 0 auto 40px; }
.age-gate-box h2 {
  font-family: var(--font-head); font-size: clamp(26px,4vw,40px);
  font-weight: 400; color: var(--white); margin-bottom: 12px;
}
.age-gate-box p {
  font-size: 13px; color: rgba(255,255,255,0.5);
  margin-bottom: 36px; line-height: 1.8;
}
.age-gate-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.age-gate-buttons .btn { min-width: 180px; }

.age-gate-denied {
  display: none; margin-top: 32px;
  font-size: 14px; color: rgba(255,255,255,0.5);
  line-height: 1.8;
}
.age-gate-denied strong { color: var(--white); display: block; font-size: 18px; margin-bottom: 8px; }

.age-gate-legal {
  position: absolute; bottom: 24px; left: 0; right: 0;
  text-align: center; font-size: 11px;
  color: rgba(255,255,255,0.2); letter-spacing: 0.5px;
}

/* ── CART DRAWER ── */
#cart-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.4); z-index: 500;
}
#cart-overlay.open { display: block; }

#cart-drawer {
  position: fixed; top: 0; right: -420px;
  width: 400px; max-width: 100vw; height: 100vh;
  background: var(--white); z-index: 600;
  transition: right 0.3s ease;
  display: flex; flex-direction: column;
  border-left: 1px solid var(--border);
}
#cart-drawer.open { right: 0; }

.cart-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 28px; border-bottom: 1px solid var(--border);
}
.cart-drawer-header h3 {
  font-family: var(--font-head); font-size: 22px;
  font-weight: 400; margin: 0;
}
.cart-drawer-close {
  background: none; border: none; cursor: pointer;
  font-size: 22px; color: var(--muted); line-height: 1;
  padding: 4px; transition: color 0.2s;
}
.cart-drawer-close:hover { color: var(--black); }

.cart-drawer-items { flex: 1; overflow-y: auto; padding: 20px 28px; }

.cart-drawer-item {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.cart-drawer-item-info { flex: 1; }
.cart-drawer-item-info p { font-size: 14px; font-weight: 600; color: var(--text); margin: 0 0 4px; }
.cart-drawer-item-info span { font-size: 12px; color: var(--muted); }
.cart-drawer-item-price { font-family: var(--font-head); font-size: 17px; white-space: nowrap; color: var(--black); }

.cart-drawer-empty {
  text-align: center; padding: 60px 28px;
  font-size: 14px; color: var(--muted);
}

.cart-drawer-footer {
  padding: 20px 28px 28px; border-top: 1px solid var(--border);
}
.cart-drawer-total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 16px; padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.cart-drawer-total span:first-child { font-size: 13px; color: var(--muted); }
.cart-drawer-total span:last-child { font-family: var(--font-head); font-size: 24px; color: var(--black); }
.cart-qty-controls {
  display: flex; align-items: center; gap: 10px; margin-top: 6px;
}
.cart-qty-controls span { font-size: 14px; font-weight: 600; min-width: 16px; text-align: center; }
.cart-qty-btn {
  background: var(--off-white); border: 1px solid var(--border);
  width: 26px; height: 26px; cursor: pointer;
  font-size: 14px; line-height: 1; color: var(--black);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.cart-qty-btn:hover { background: var(--border); }
.cart-remove-btn {
  background: none; border: none; cursor: pointer;
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--muted);
  text-decoration: underline; text-underline-offset: 2px;
  transition: color 0.2s; padding: 0;
}
.cart-remove-btn:hover { color: var(--black); }

.cart-drawer-continue {
  display: block; text-align: center; margin-top: 12px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--muted);
  text-decoration: none; transition: color 0.2s;
}
.cart-drawer-continue:hover { color: var(--black); }

/* ── RESPONSIVE FOOTER ── */
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  footer { padding: 48px 24px 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
