@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@300;400;500&display=swap');
 
:root {
  --cream:      #F8F3EC;
  --warm-white: #FDFAF5;
  --sand:       #E8DDD0;
  --stone:      #C4B5A5;
  --bark:       #8C7B6B;
  --deep:       #3A2F28;
  --charcoal:   #2A2420;
  --accent:     #8B6F52;
  --gold:       #C4973A;
}
 
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; font-weight: 300; background: var(--warm-white); color: var(--deep); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
ul { list-style: none; }
 
/* AANKONDIGINGSBALK */
.gl-announcement { background: var(--deep); color: var(--sand); text-align: center; padding: 10px 20px; font-size: 12px; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; }
 
/* HEADER */
.gl-header { position: sticky; top: 0; z-index: 999; background: rgba(253,250,245,0.96); backdrop-filter: blur(12px); border-bottom: 1px solid var(--sand); padding: 0 48px; height: 72px; display: flex; align-items: center; justify-content: space-between; transition: box-shadow 0.3s; }
.gl-header.gl-scrolled { box-shadow: 0 2px 20px rgba(58,47,40,0.08); }
.gl-header-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.gl-header-logo img { height: 32px; width: auto; }
.gl-nav-links { display: flex; gap: 28px; }
.gl-nav-links a { font-size: 12px; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; color: var(--deep); text-decoration: none; position: relative; transition: color 0.3s; padding-bottom: 2px; }
.gl-nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px; background: var(--accent); transition: width 0.3s; }
.gl-nav-links a:hover { color: var(--accent); }
.gl-nav-links a:hover::after { width: 100%; }
.gl-header-actions { display: flex; align-items: center; gap: 16px; }
.gl-cart-btn { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: var(--deep); text-decoration: none; border-bottom: 1px solid var(--deep); padding-bottom: 6px; transition: all 0.3s; }
.gl-cart-btn:hover { color: var(--accent); border-color: var(--accent); }
.gl-cart-icon { display: none; }
.gl-menu-btn { display: flex; align-items: center; gap: 10px; background: none; border: none; cursor: pointer; padding: 0; color: var(--deep); font-family: 'Jost', sans-serif; font-size: 12px; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; transition: color 0.3s; }
.gl-menu-btn:hover { color: var(--accent); }
.gl-menu-btn-icon { display: flex; flex-direction: column; gap: 5px; }
.gl-menu-btn-icon span { display: block; width: 22px; height: 1.5px; background: currentColor; transition: all 0.3s; }
 
/* SLIDE-IN MENU */
.gl-menu-overlay { position: fixed; inset: 0; background: rgba(42,36,32,0.5); z-index: 1000; opacity: 0; pointer-events: none; transition: opacity 0.4s; }
.gl-menu-overlay.gl-open { opacity: 1; pointer-events: all; }
.gl-menu-panel { position: fixed; top: 0; left: 0; width: 380px; height: 100vh; background: var(--warm-white); z-index: 1001; padding: 80px 48px 48px; transform: translateX(-100%); transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94); overflow-y: auto; }
.gl-menu-panel.gl-open { transform: translateX(0); }
.gl-menu-close { position: absolute; top: 24px; right: 24px; background: none; border: none; font-size: 18px; color: var(--bark); cursor: pointer; transition: color 0.3s; font-family: 'Jost', sans-serif; padding: 4px 8px; }
.gl-menu-close:hover { color: var(--deep); }
.gl-menu-group { margin-bottom: 40px; }
.gl-menu-group-title { font-size: 10px; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--sand); }
.gl-menu-group ul li { margin-bottom: 4px; }
.gl-menu-group ul li a { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 300; color: var(--deep); text-decoration: none; display: block; padding: 6px 0; transition: color 0.3s, padding-left 0.3s; line-height: 1.2; }
.gl-menu-group ul li a:hover { color: var(--accent); padding-left: 8px; }
 
/* SECTION HELPERS */
.gl-section { padding: 80px; }
.gl-section-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; display: flex; align-items: center; gap: 12px; }
.gl-section-label::before { content: ''; width: 24px; height: 1px; background: var(--accent); flex-shrink: 0; }
.gl-section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(30px,4vw,50px); font-weight: 300; line-height: 1.15; color: var(--charcoal); margin-bottom: 48px; }
.gl-section-title em { font-style: italic; color: var(--accent); }
 
/* FOOTER */
.gl-footer { background: var(--charcoal); color: var(--bark); font-family: 'Jost', sans-serif; }
.gl-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; padding: 72px 80px 48px; border-bottom: 1px solid rgba(196,181,165,0.15); }
.gl-footer-logo { height: 22px; width: auto; max-width: 140px; margin-bottom: 16px; display: block; filter: brightness(0) saturate(100%) invert(80%) sepia(5%) saturate(300%) hue-rotate(340deg); }
.gl-footer-brand-text { font-size: 13px; font-weight: 300; color: var(--bark); line-height: 1.75; margin-bottom: 28px; }
.gl-footer-socials { display: flex; gap: 10px; }
.gl-social-btn { width: 36px; height: 36px; border: 1px solid rgba(196,181,165,0.3); display: inline-flex; align-items: center; justify-content: center; color: var(--stone); text-decoration: none; transition: border-color 0.3s, color 0.3s; }
.gl-social-btn:hover { border-color: var(--gold); color: var(--gold); }
.gl-footer-col-title { font-size: 11px; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: var(--warm-white); margin-bottom: 24px; }
.gl-footer-links li { margin-bottom: 12px; }
.gl-footer-links a { font-size: 13px; font-weight: 300; color: var(--bark); text-decoration: none; transition: color 0.3s; }
.gl-footer-links a:hover { color: var(--warm-white); }
.gl-footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 28px 80px; }
.gl-footer-copy { font-size: 12px; font-weight: 300; color: var(--bark); }
.gl-footer-payments { display: flex; gap: 10px; align-items: center; }
.gl-pay-badge { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); padding: 5px 12px; font-size: 11px; letter-spacing: 0.06em; color: var(--stone); }
 
/* RESPONSIVE */
@media (max-width: 1024px) {
  .gl-header { position: relative; padding: 0 32px; }
  .gl-header-logo { position: absolute; left: 50%; transform: translateX(-50%); }
  .gl-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; padding: 56px 40px 40px; }
  .gl-footer-brand { grid-column: span 2; }
  .gl-footer-bottom { padding: 24px 40px; }
  .gl-section { padding: 60px 40px; }
}
@media (max-width: 768px) {
  .gl-header { padding: 0 24px; height: 64px; }
  .gl-header-logo img { height: 26px; }
  .gl-nav { display: none; }
  .gl-cart-text { display: none; }
  .gl-cart-icon { display: flex !important; align-items: center; }
  .gl-cart-btn { border: none; padding: 0; }
  .gl-menu-btn-label { display: none; }
  .gl-header-actions { gap: 8px; margin-left: auto; }
  .gl-menu-panel { width: 100%; padding: 72px 28px 40px; }
  .gl-announcement { font-size: 10px; padding: 8px 16px; }
  .gl-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; padding: 48px 24px 32px; }
  .gl-footer-brand { grid-column: span 2; }
  .gl-footer-bottom { flex-direction: column; gap: 16px; text-align: center; padding: 24px; }
  .gl-section { padding: 48px 24px; }
}
@media (max-width: 480px) {
  .gl-header { padding: 0 16px; height: 60px; }
  .gl-header-logo img { height: 24px; }
  .gl-footer-grid { grid-template-columns: 1fr; padding: 40px 20px 28px; }
  .gl-footer-brand { grid-column: span 1; }
  .gl-footer-bottom { padding: 20px; }
  .gl-section { padding: 40px 20px; }
}
 