* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #FCFBF8;
  color: #1B2333;
  font-family: 'Work Sans', sans-serif;
}
a { color: inherit; }
.wrap { max-width: 1040px; margin: 0 auto; padding: 0 24px; }

/* Nav */
.navbar {
  position: sticky; top: 0; z-index: 50;
  background: #FCFBF8;
  border-bottom: 1px solid #D7D1C4;
}
.nav-inner {
  max-width: 1040px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.logo-sm { position: relative; width: 36px; height: 36px; border-radius: 6px; background: #25406B; overflow: hidden; flex-shrink: 0; }
.logo-sm img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; }
.logo-sm-fallback { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #FCFBF8; font-family: 'Fraunces', serif; font-weight: 600; font-size: 13px; z-index: 1; }
.nav-brand-name { font-family: 'Fraunces', serif; font-weight: 600; font-size: 16px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-size: 14px; text-decoration: none; opacity: 0.75; }
.nav-links a:hover { opacity: 1; }

/* Hero */
.hero-section { position: relative; min-height: 440px; display: flex; align-items: center; background: #EDE7D9; overflow: hidden; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.hero-overlay { position: absolute; inset: 0; background: rgba(27,35,51,0.58); z-index: 2; }
.hero-content { position: relative; z-index: 3; max-width: 640px; margin: 0 auto; padding: 60px 24px; width: 100%; }
.hero-eyebrow { font-size: 14px; color: #FCFBF8; opacity: 0.8; margin-bottom: 12px; }
.hero-title { font-family: 'Fraunces', serif; font-weight: 600; font-size: 36px; line-height: 1.3; color: #FCFBF8; margin-bottom: 28px; }
.hero-cta { display: inline-block; background: #D9A02C; color: #1B2333; font-weight: 500; font-size: 14px; padding: 13px 26px; border-radius: 4px; text-decoration: none; }

/* Stats */
.stats-section { padding: 48px 0; border-bottom: 1px solid #D7D1C4; }
.stats { display: flex; flex-wrap: wrap; gap: 32px; }
.stat { flex: 1; min-width: 140px; padding: 0 32px; }
.stat:first-child { padding-left: 0; }
.stat + .stat { border-left: 1px solid #D7D1C4; }
.stat-icon-wrap { width: 26px; height: 26px; background: #EDE7D9; border-radius: 6px; margin-bottom: 10px; overflow: hidden; }
.stat-icon-wrap img { width: 100%; height: 100%; object-fit: contain; display: block; }
.stat-number { font-family: 'Fraunces', serif; font-weight: 600; font-size: 26px; color: #25406B; }
.stat-label { font-size: 13px; opacity: 0.6; margin-top: 4px; }

/* Section heading */
.section { padding: 72px 0; }
.section-label { font-size: 13px; font-weight: 500; letter-spacing: 0.02em; color: #25406B; margin-bottom: 10px; }
.section-title { font-family: 'Fraunces', serif; font-weight: 600; font-size: 26px; margin-bottom: 20px; max-width: 520px; }

/* About */
.about-grid { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(0,0.9fr); gap: 56px; align-items: center; }
.about-text p { font-size: 15px; line-height: 1.8; opacity: 0.85; }
.about-img { width: 100%; aspect-ratio: 4/3; background: #EDE7D9; border-radius: 12px; overflow: hidden; }
.about-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Products */
.products-section { background: #F5F1E6; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 300px)); gap: 24px; justify-content: start; }
.product-card { background: #FCFBF8; border: 1px solid #D7D1C4; border-radius: 12px; padding: 28px 24px; }
.product-icon { width: 40px; height: 40px; background: #EDE7D9; border-radius: 8px; margin-bottom: 18px; overflow: hidden; }
.product-icon img { width: 100%; height: 100%; object-fit: contain; display: block; }
.product-name { font-family: 'Fraunces', serif; font-weight: 600; font-size: 18px; margin-bottom: 8px; }
.product-desc { font-size: 14px; opacity: 0.7; line-height: 1.6; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 56px; }
.contact-list { display: flex; flex-direction: column; gap: 18px; }
.contact-field { font-size: 12px; opacity: 0.5; margin-bottom: 2px; }
.contact-value { font-size: 15px; line-height: 1.5; }
.map-img { position: relative; width: 100%; height: 100%; min-height: 260px; background: #EDE7D9; border-radius: 12px; overflow: hidden; }
.map-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.map-pin-link {
  position: absolute; bottom: 12px; left: 12px; z-index: 2;
  background: #FCFBF8; color: #1B2333;
  font-size: 13px; font-weight: 500;
  padding: 8px 14px; border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(27,35,51,0.2);
}
.map-pin-link:hover { background: #EDE7D9; }

/* Footer */
.site-footer { background: #1B2333; color: #FCFBF8; padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-brand-name { font-family: 'Fraunces', serif; font-weight: 600; font-size: 18px; margin-bottom: 10px; }
.footer-tagline { font-size: 13px; opacity: 0.65; line-height: 1.6; max-width: 260px; }
.footer-col-title { font-size: 13px; font-weight: 500; opacity: 0.85; margin-bottom: 14px; }
.footer-col a, .footer-col div { display: block; font-size: 13px; opacity: 0.65; text-decoration: none; margin-bottom: 10px; line-height: 1.5; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); padding: 20px 0; font-size: 12px; opacity: 0.5; text-align: center; }

@media (max-width: 720px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-title { font-size: 28px; }
}
