:root {
  --slate-dark: #2b3038;
  --slate: #4a5059;
  --slate-light: #6b7280;
  --accent: #b45309;
  --accent-dark: #92400e;
  --cream: #f5f3ef;
  --cream-dark: #e8e4dc;
  --white: #ffffff;
  --text: #2b3038;
  --text-muted: #5c6370;
  --border: #d8d4cc;
  --font: 'Libre Franklin', system-ui, sans-serif;
  --font-serif: 'Source Serif 4', Georgia, serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.65;
  background: var(--white);
  font-size: 1rem;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--accent-dark); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--accent); }

.container {
  width: min(1040px, 92vw);
  margin-inline: auto;
}

/* Header */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.header.scrolled { box-shadow: 0 1px 8px rgba(0,0,0,0.06); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo { display: flex; align-items: center; text-decoration: none; color: inherit; }
.logo__text { display: flex; flex-direction: column; line-height: 1.2; }
.logo__text strong { font-size: 0.9rem; font-weight: 700; color: var(--slate-dark); }
.logo__text span { font-size: 0.72rem; color: var(--text-muted); font-weight: 500; }

.nav { display: flex; align-items: center; gap: 24px; }
.nav a { font-size: 0.875rem; font-weight: 500; color: var(--text-muted); text-decoration: none; }
.nav a:hover { color: var(--accent-dark); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--slate-dark); }

/* Hero — full-bleed real photo, always covers the whole banner */
.hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  padding: 100px 0 64px;
  margin-top: 64px;
  isolation: isolate;
}

.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1759200165738-6366977a73c6?w=2000&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,22,26,0.94) 0%, rgba(20,22,26,0.45) 55%, rgba(20,22,26,0.2) 100%);
  z-index: -1;
}

.hero__content { position: relative; color: var(--white); max-width: 640px; }
.hero__location { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; opacity: 0.9; margin-bottom: 12px; }
.hero h1 { font-family: var(--font-serif); font-size: clamp(1.9rem, 4.4vw, 2.6rem); font-weight: 700; line-height: 1.2; margin-bottom: 14px; }
.hero__lead { font-size: 1.08rem; opacity: 0.94; margin-bottom: 22px; line-height: 1.55; max-width: 54ch; }
.hero__link { display: inline-block; color: var(--white); font-size: 0.9rem; font-weight: 600; text-decoration: underline; }
.hero__link:hover { opacity: 0.85; color: var(--white); }

/* Stats strip */
.stats { background: var(--cream-dark); border-bottom: 1px solid var(--border); }
.stats__grid { display: grid; grid-template-columns: repeat(3, 1fr); padding: 28px 0; }
.stat { text-align: center; border-left: 1px solid var(--border); }
.stat:first-child { border-left: none; }
.stat__num { display: block; font-family: var(--font-serif); font-size: 1.7rem; font-weight: 700; color: var(--accent-dark); }
.stat__label { display: block; font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }

/* Sections */
.section { padding: 64px 0; }

.section-label { display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--slate-light); margin-bottom: 8px; }
.section h2 { font-family: var(--font-serif); font-size: clamp(1.5rem, 3vw, 1.85rem); font-weight: 700; color: var(--slate-dark); margin-bottom: 14px; }
.section-intro { color: var(--text-muted); max-width: 640px; margin-bottom: 32px; }

/* About */
.about { background: var(--cream); }
.about__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: start; }
.about__main p { color: var(--text-muted); margin-bottom: 14px; }

.about__aside { display: grid; gap: 20px; }
.about__photo { width: 100%; height: 180px; object-fit: cover; border-radius: 4px; }

.info-box { background: var(--white); border: 1px solid var(--border); border-radius: 4px; padding: 24px; }
.info-box h3 { font-size: 0.9rem; font-weight: 700; color: var(--slate-dark); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.info-box dl { display: grid; gap: 12px; }
.info-box dt { font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); }
.info-box dd { font-size: 0.88rem; font-weight: 500; color: var(--text); }

/* Products — photo-led, minimal copy */
.products { background: var(--white); }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card { background: var(--cream); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
.card__img { width: 100%; height: 140px; object-fit: cover; }
.card__body { padding: 18px 20px 20px; }
.card h3 { font-family: var(--font-serif); font-size: 1.02rem; font-weight: 700; color: var(--slate-dark); margin-bottom: 6px; }
.card p { font-size: 0.875rem; color: var(--text-muted); }

/* Local section — big photo tiles */
.local { background: var(--slate-dark); color: var(--white); }
.local .section-label { color: rgba(255,255,255,0.55); }
.local h2 { color: var(--white); }
.local .section-intro { color: rgba(255,255,255,0.85); }

.local-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 28px; }
.local-item { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; overflow: hidden; }
.local-item__img { width: 100%; height: 170px; object-fit: cover; }
.local-item__body { padding: 20px 22px; }
.local-item h3 { font-family: var(--font-serif); font-size: 1.1rem; margin-bottom: 8px; }
.local-item p { font-size: 0.92rem; opacity: 0.88; }

.notice { background: rgba(0,0,0,0.25); border-left: 3px solid var(--accent); padding: 18px 22px; border-radius: 0 4px 4px 0; }
.notice h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 6px; }
.notice p { font-size: 0.875rem; opacity: 0.9; line-height: 1.55; }

/* Contact */
.contact { background: var(--cream); border-top: 1px solid var(--border); }
.contact__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: start; }
.contact__grid > div > p { color: var(--text-muted); font-size: 0.95rem; }
.contact__details { background: var(--white); border: 1px solid var(--border); border-radius: 4px; padding: 8px 0; }
.contact-row { display: grid; grid-template-columns: 140px 1fr; gap: 16px; padding: 16px 22px; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.contact-row:last-child { border-bottom: none; }
.contact-row a { color: var(--accent-dark); }
.contact-row__label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-muted); }
.contact-row em { font-size: 0.82rem; color: var(--text-muted); }

/* Footer */
.footer { background: var(--slate-dark); color: rgba(255,255,255,0.75); padding: 28px 0; font-size: 0.85rem; }
.footer__inner { text-align: center; line-height: 1.7; }
.footer__copy { margin-top: 10px !important; font-size: 0.78rem; opacity: 0.6; }

/* Responsive */
@media (max-width: 900px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; top: 64px; left: 0; right: 0; background: var(--white);
    flex-direction: column; align-items: flex-start; padding: 20px 24px; gap: 14px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%); opacity: 0; pointer-events: none; transition: 0.25s;
  }
  .nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }

  .about__grid, .local-grid, .contact__grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr 1fr; }
  .contact-row { grid-template-columns: 1fr; gap: 4px; }
  .hero { min-height: 62vh; padding: 80px 0 48px; }
}

@media (max-width: 480px) {
  .cards { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stat__num { font-size: 1.3rem; }
  .stats__grid { padding: 20px 0; }
}
