:root {
  --bg: #f6f2ed;
  --surface: rgba(255,255,255,0.82);
  --surface-strong: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --primary: #a85f3f;
  --primary-dark: #8d4d31;
  --accent: #d8b08c;
  --line: rgba(31, 41, 55, 0.09);
  --shadow: 0 20px 60px rgba(36, 27, 20, 0.12);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(216,176,140,0.24), transparent 32%),
    radial-gradient(circle at top right, rgba(168,95,63,0.12), transparent 28%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }

.page-shell {
  width: min(calc(100% - 32px), var(--container));
  margin: 24px auto;
}
.site-header {
  position: sticky;
  top: 12px;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.65);
  box-shadow: var(--shadow);
  border-radius: 999px;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: center;
  min-width: 0;
}
.brand-logo {
  display: block;
  width: min(100%, 320px);
  max-height: 56px;
  height: auto;
  object-fit: contain;
}
.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}
.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
}
.site-nav a:hover,
.site-nav a.active {
  background: #fff;
  color: var(--text);
  box-shadow: 0 8px 22px rgba(31, 41, 55, 0.08);
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 28px;
  padding: 42px;
  margin-top: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,0.88), rgba(255,255,255,0.74));
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: var(--shadow);
  border-radius: calc(var(--radius) + 4px);
}
.hero-copy .eyebrow,
.section-heading .eyebrow,
.page-hero .eyebrow {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(168,95,63,0.1);
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero h1,
.page-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}
.hero p,
.page-hero p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 62ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 30px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), #c47449);
  color: #fff;
  box-shadow: 0 18px 30px rgba(168, 95, 63, 0.24);
}
.btn-secondary {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.stat-card,
.info-card,
.feature-card,
.product-card,
.gallery-card,
.contact-card,
.timeline-card,
.notice-card,
.story-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}
.stat-card {
  padding: 18px;
}
.stat-card strong {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 4px;
}
.stat-card span {
  color: var(--muted);
  font-size: 0.95rem;
}
.hero-visual {
  display: grid;
  gap: 18px;
}
.hero-visual img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.hero-collage {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 16px;
  min-height: 100%;
}
.hero-collage .stack {
  display: grid;
  gap: 16px;
}

.section {
  margin-top: 26px;
  padding: 32px;
  background: rgba(255,255,255,0.52);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.7);
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}
.section-heading h2 {
  margin: 6px 0 8px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.05;
}
.section-heading p { color: var(--muted); max-width: 52ch; }

.grid-3,
.grid-4,
.grid-2 {
  display: grid;
  gap: 18px;
}
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.feature-card,
.info-card,
.contact-card,
.notice-card,
.story-card,
.timeline-card {
  padding: 22px;
}
.feature-card h3,
.info-card h3,
.product-card h3,
.contact-card h3,
.notice-card h3,
.story-card h3,
.timeline-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}
.feature-card p,
.info-card p,
.contact-card p,
.notice-card p,
.story-card p,
.timeline-card p,
.timeline-card li,
.product-card p {
  color: var(--muted);
}
.icon-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(168,95,63,0.12);
  color: var(--primary-dark);
  font-weight: 800;
  margin-bottom: 12px;
}

.product-card {
  overflow: hidden;
}
.product-card img,
.gallery-card img,
.story-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}
.product-card .content,
.gallery-card .content { padding: 18px; }
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.tag {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(31,41,55,0.06);
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.page-hero {
  margin-top: 22px;
  padding: 34px;
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.74));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.two-column {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 22px;
}
.map-frame {
  width: 100%;
  min-height: 380px;
  border: 0;
  border-radius: 20px;
}
.contact-list,
.timeline-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.contact-list li,
.timeline-list li {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.contact-list li:last-child,
.timeline-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px;
  margin-top: 26px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #3b251c, #8d4d31);
  color: #fff;
  box-shadow: var(--shadow);
}
.cta-banner p { color: rgba(255,255,255,0.78); margin: 8px 0 0; }
.cta-banner .btn-secondary {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.18);
  color: #fff;
}
.site-footer {
  margin: 28px 0 12px;
  padding: 18px 6px 28px;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
}
.muted { color: var(--muted); }
.small { font-size: 0.94rem; }

@media (max-width: 1024px) {
  .hero,
  .two-column,
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-collage { min-height: 420px; }
}

@media (max-width: 760px) {
  .page-shell { width: min(calc(100% - 20px), var(--container)); margin: 14px auto; }
  .site-header {
    position: static;
    border-radius: 24px;
    padding: 18px;
    align-items: flex-start;
    flex-direction: column;
  }
  .site-nav { justify-content: flex-start; }
  .hero,
  .two-column,
  .grid-4,
  .grid-3,
  .grid-2,
  .stats-grid,
  .hero-collage { grid-template-columns: 1fr; }
  .hero,
  .section,
  .page-hero,
  .cta-banner { padding: 22px; }
  .cta-banner { flex-direction: column; align-items: flex-start; }
}
