/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── DESIGN TOKENS ── */
:root {
  --cream: #F6F0E4; --green: #1B3A2D; --green-mid: #2E5C44;
  --terracotta: #C4602A; --sand: #D9C9A8; --dark: #1A1A18; --text: #3A3530;
}
html { scroll-behavior: smooth; overflow-x: clip; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text); overflow-x: clip; font-size: 16px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 4rem; background: rgba(246,240,228,0.96);
  backdrop-filter: blur(10px); border-bottom: 1px solid rgba(180,160,120,0.2);
  transition: padding 0.3s, box-shadow 0.3s; min-height: 80px;
}
.nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; color: var(--green); text-decoration: none; display: flex; align-items: center; gap: 0.9rem; }
.nav-logo span { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; color: var(--green); line-height: 1.1; }
.nav-logo em { color: var(--terracotta); font-style: italic; }
.nav-links { display: flex; gap: 1.6rem; list-style: none; align-items: center; }
.nav-links a { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text); text-decoration: none; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--terracotta); }
.nav-cta { background: var(--green) !important; color: var(--cream) !important; padding: 0.6rem 1.2rem; border-radius: 2px; transition: background 0.2s !important; }
.nav-cta:hover { background: var(--terracotta) !important; }
.lang-picker { position: relative; }
.lang-menu { display: none; position: absolute; top: calc(100% + 8px); right: 0; background: #fff; border: 1px solid rgba(180,160,120,0.3); border-radius: 6px; box-shadow: 0 4px 16px rgba(0,0,0,0.12); min-width: 130px; z-index: 200; overflow: hidden; }
.lang-menu.open { display: block; }
.lang-menu a { display: block; padding: 9px 14px; font-size: 0.75rem; letter-spacing: 0.06em; color: var(--text); text-decoration: none; white-space: nowrap; transition: background 0.15s; }
.lang-menu a:hover { background: var(--cream); color: var(--terracotta); }

/* Hamburger */
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; z-index: 110; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--green); border-radius: 2px; transition: all 0.3s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none; position: fixed; top: 80px; left: 0; right: 0; bottom: 0;
  background: rgba(246,240,228,0.98); backdrop-filter: blur(12px);
  flex-direction: column; padding: 2rem 2.5rem; gap: 0; z-index: 99;
  border-top: 1px solid rgba(180,160,120,0.2); overflow-y: auto;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1.1rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text);
  text-decoration: none; font-weight: 500; padding: 1.1rem 0;
  border-bottom: 1px solid rgba(180,160,120,0.2); transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--terracotta); }
.nav-mobile .mob-cta { margin-top: 1.5rem; background: var(--green); color: var(--cream) !important; padding: 1rem 2rem; border-radius: 2px; text-align: center; border-bottom: none !important; }

/* ── SEARCH ── */
.nav-search { position: relative; display: flex; align-items: center; gap: 4px; }
.nav-search-btn { background: none; border: none; cursor: pointer; color: var(--text); opacity: 0.5; padding: 4px; transition: opacity 0.2s; display: flex; align-items: center; }
.nav-search-btn:hover { opacity: 1; }
.nav-search-input { width: 0; overflow: hidden; opacity: 0; pointer-events: none; background: #fff; border: 1px solid rgba(180,160,120,0.4); border-radius: 4px; padding: 6px 0; font-size: 0.8rem; font-family: 'DM Sans', sans-serif; color: var(--text); transition: width 0.25s, opacity 0.2s, padding 0.25s; outline: none; }
.nav-search-input.open { width: 160px; opacity: 1; pointer-events: all; padding: 6px 10px; }
.nav-search-results { display: none; position: absolute; top: calc(100% + 10px); right: 0; background: #fff; border: 1px solid rgba(180,160,120,0.3); border-radius: 6px; box-shadow: 0 4px 16px rgba(0,0,0,0.12); min-width: 240px; z-index: 200; overflow: hidden; }
.nav-search-results.open { display: block; }
.nav-search-results a { display: flex; align-items: center; gap: 8px; padding: 9px 14px; font-size: 0.8rem; color: var(--text); text-decoration: none; transition: background 0.15s; }
.nav-search-results a:hover { background: var(--cream); color: var(--terracotta); }
.nav-search-results .no-results { padding: 9px 14px; font-size: 0.8rem; color: #9A8F80; }
.search-label { flex-shrink: 0; font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.08em; background: var(--cream); color: var(--terracotta); border-radius: 3px; padding: 1px 5px; font-weight: 600; }
.mob-search { padding: 0.5rem 0 0.25rem; border-bottom: 1px solid rgba(180,160,120,0.2); margin-bottom: 0.25rem; }
.mob-search-input { width: 100%; padding: 0.65rem 1rem; font-size: 0.9rem; font-family: 'DM Sans', sans-serif; border: 1px solid rgba(180,160,120,0.4); border-radius: 4px; background: #fff; color: var(--text); outline: none; box-sizing: border-box; }
.mob-search-results { margin-top: 0.25rem; }
.mob-search-results a { display: flex; align-items: center; gap: 8px; padding: 0.65rem 0; font-size: 0.9rem; color: var(--text); text-decoration: none; border-bottom: 1px solid rgba(180,160,120,0.1); transition: color 0.2s; }
.mob-search-results a:hover { color: var(--terracotta); }
.mob-search-results .no-results { font-size: 0.85rem; color: #9A8F80; padding: 0.5rem 0; }

/* ── TYPOGRAPHY ── */
.section-label { font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 1rem; font-weight: 500; }
.section-label::before { content: ''; display: inline-block; width: 1.5rem; height: 1px; background: var(--terracotta); vertical-align: middle; margin-right: 0.6rem; }
h2.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 300; line-height: 1.1; color: var(--green); }
h2.section-title em { font-style: italic; color: var(--terracotta); }

/* ── BUTTONS ── */
.btn-primary { background: var(--terracotta); color: #fff; padding: 0.9rem 2.2rem; border-radius: 2px; text-decoration: none; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; transition: background 0.2s, transform 0.15s; display: inline-block; }
.btn-primary:hover { background: #a04d20; transform: translateY(-1px); }
.btn-ghost { color: rgba(255,255,255,0.9); font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; text-decoration: none; padding: 0.9rem 0; border-bottom: 1px solid rgba(255,255,255,0.4); transition: border-color 0.2s, color 0.2s; }
.btn-ghost:hover { color: #fff; border-color: #fff; }


/* ── FOOTER ── */
footer { background: var(--dark); color: rgba(246,240,228,0.7); padding: 5rem 4rem 3rem; }
.footer-top { display: grid; grid-template-columns: 300px 1fr; gap: 4rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-cols { display: flex; gap: 3rem; justify-content: space-between; }
.footer-brand h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 300; color: var(--cream); margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.75; max-width: 280px; }
.footer-atout { margin-top: 1.5rem; font-size: 0.72rem; letter-spacing: 0.1em; color: rgba(217,201,168,0.5); }
.footer-email a { color: var(--sand); text-decoration: none; font-size: 0.88rem; border-bottom: 1px solid rgba(217,201,168,0.3); transition: border-color 0.2s; }
.footer-email a:hover { border-color: var(--sand); }
.footer-col h4 { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sand); margin-bottom: 1.5rem; font-weight: 500; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a { color: rgba(246,240,228,0.55); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--sand); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; font-size: 0.75rem; color: rgba(246,240,228,0.3); flex-wrap: wrap; gap: 1rem; }
.footer-social { display: flex; gap: 1.2rem; align-items: center; }
.footer-social a { color: rgba(246,240,228,0.35); text-decoration: none; font-size: 0.75rem; display: flex; align-items: center; gap: 0.4rem; transition: color 0.2s; }
.footer-social a:hover { color: rgba(246,240,228,0.8); }

/* ── UTILS ── */
.loading { display: flex; align-items: center; justify-content: center; min-height: 100vh; font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--sand); background: var(--dark); letter-spacing: 0.1em; }
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── SHOP / FIND US ── */
.shop-section { background: var(--cream); padding: 5rem 4rem; }
.shop-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.shop-text { order: 1; }
.shop-map  { order: 2; display: flex; flex-direction: column; gap: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .nav-collapse { display: none; }
  .nav-search { display: none; }
  .lang-picker { display: none; }
  .nav-burger { display: flex; }
  .nav-links { margin-left: auto; gap: 1rem; margin-right: 0.95rem; }
}
@media (max-width: 600px) {
  nav { padding: 0.8rem 1.5rem; }
  .nav-links { display: none; }
  .nav-logo img { height: 55px !important; }
  footer { padding: 3rem 1.5rem 2rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-social { flex-wrap: wrap; gap: 0.8rem; }
  .shop-section { padding: 4rem 2rem; }
  .shop-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .shop-text { order: 1; }
  .shop-map  { order: 2; }
}
