:root {
  color-scheme: light;
  --bg: #f7f6ef;
  --ink: #153b2d;
  --text: #23352f;
  --muted: #68766f;
  --line: #dde2d8;
  --surface: #fffffb;
  --surface-2: #e9f0ef;
  --accent: #c95436;
  --accent-2: #74a947;
  --blue: #d7e6ea;
  --shadow: 0 24px 80px rgba(26, 49, 41, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 10;
  transform: translateY(-200%);
  background: var(--ink);
  color: white;
  padding: 0.7rem 1rem;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  background: color-mix(in srgb, var(--bg) 90%, white);
  border-bottom: 1px solid rgba(21, 59, 45, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #f7f6ef;
  font-size: 0.8rem;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 2rem);
}

nav a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

nav a:hover {
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 1.1fr);
  min-height: min(780px, calc(100vh - 4.9rem));
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 4.5rem) clamp(1rem, 4vw, 3rem) 2.5rem;
}

.hero-copy {
  max-width: 44rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 12ch;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 8.5vw, 7.4rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.86;
  margin-bottom: 1.25rem;
}

.hero-copy > p {
  max-width: 34rem;
  color: #3e514a;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  margin-bottom: 2rem;
}

.hero-actions,
.product-facts,
.product-footer,
.product-meta,
.category-strip {
  display: flex;
  align-items: center;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0.85rem 1.25rem;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--ink);
  color: white;
}

.button.ghost {
  background: transparent;
  color: var(--ink);
}

.hero-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
}

.hero-details div {
  border-top: 1px solid var(--line);
  padding-top: 0.9rem;
}

dt {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

dd {
  margin: 0.2rem 0 0;
  color: var(--ink);
  font-weight: 800;
}

.hero-showcase {
  position: relative;
  min-height: min(560px, 64vh);
  border-radius: 0.5rem;
  background:
    linear-gradient(135deg, rgba(215, 230, 234, 0.95), rgba(255, 255, 251, 0.88)),
    radial-gradient(circle at 85% 20%, rgba(116, 169, 71, 0.22), transparent 32%);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(21, 59, 45, 0.12);
}

.showcase-item {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: 0.45rem;
  background: var(--surface);
  box-shadow: 0 18px 45px rgba(26, 49, 41, 0.15);
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
}

.showcase-item figcaption {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  background: rgba(255, 255, 251, 0.88);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.35rem 0.55rem;
}

.item-1 {
  inset: 7% 37% 42% 8%;
}

.item-2 {
  inset: 14% 8% 52% 60%;
}

.item-3 {
  inset: 46% 54% 10% 10%;
}

.item-4 {
  inset: 42% 11% 12% 50%;
}

.item-5 {
  inset: 31% 33% 32% 33%;
}

.category-strip {
  gap: 0.6rem;
  overflow-x: auto;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  border-block: 1px solid rgba(21, 59, 45, 0.1);
  background: #fffcf4;
}

.category-button {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  padding: 0.55rem 0.85rem;
}

.category-button span {
  color: var(--accent);
  font-size: 0.76rem;
}

.category-button.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}

.category-button.is-active span {
  color: #bce37a;
}

.menu-section,
.visit-section,
.site-footer {
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 4vw, 3rem);
}

.section-heading,
.visit-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.55fr);
  gap: 2rem;
  align-items: end;
}

h2 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 4rem);
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.section-heading p,
.visit-copy > p {
  max-width: 44rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.search-box {
  display: grid;
  gap: 0.35rem;
}

.search-box span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.search-box input {
  width: 100%;
  min-height: 3rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  font: inherit;
  font-size: 0.96rem;
  padding: 0 1rem;
  outline: none;
}

.search-box input:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(116, 169, 71, 0.16);
}

.notice,
.empty-state {
  border: 1px solid rgba(201, 84, 54, 0.35);
  border-radius: 0.5rem;
  background: rgba(201, 84, 54, 0.08);
  color: #7b2d1c;
  padding: 1rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.product-card {
  display: grid;
  grid-template-rows: 13rem 1fr auto;
  min-height: 27rem;
  overflow: hidden;
  border: 1px solid rgba(21, 59, 45, 0.12);
  border-radius: 0.5rem;
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(26, 49, 41, 0.07);
}

.product-media {
  display: grid;
  place-items: center;
  background:
    linear-gradient(160deg, rgba(215, 230, 234, 0.7), rgba(255, 255, 251, 0.72)),
    var(--surface-2);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.1rem;
  mix-blend-mode: multiply;
}

.product-initials {
  display: grid;
  width: 5rem;
  height: 5rem;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
}

.product-body {
  padding: 1rem;
}

.product-meta {
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card h3 {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.2;
  margin: 0.7rem 0 0.5rem;
}

.product-card p {
  display: -webkit-box;
  min-height: 2.8rem;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: var(--muted);
  font-size: 0.86rem;
}

.product-facts {
  flex-wrap: wrap;
  gap: 0.4rem;
}

.product-facts span {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.3rem 0.5rem;
}

.product-footer {
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding: 0.85rem 1rem;
}

.product-footer strong {
  color: var(--accent);
}

.product-footer span {
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 900;
}

.visit-section {
  align-items: stretch;
  background: var(--ink);
  color: white;
}

.visit-copy h2,
.visit-copy p {
  color: white;
}

.visit-copy p {
  opacity: 0.78;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 2rem;
}

.contact-grid > * {
  min-height: 8rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.5rem;
  color: white;
  padding: 1rem;
  text-decoration: none;
}

.contact-grid span {
  display: block;
  color: #b8c8c0;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-grid strong {
  display: block;
  margin-top: 0.6rem;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  line-height: 1.2;
}

.map-panel {
  min-height: 24rem;
  overflow: hidden;
  border-radius: 0.5rem;
  background: var(--blue);
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 24rem;
  border: 0;
  filter: saturate(0.9);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  background: #fffcf4;
  color: var(--muted);
}

.site-footer p {
  max-width: 60rem;
  margin: 0;
}

.site-footer a {
  color: var(--ink);
  font-weight: 900;
  white-space: nowrap;
}

@media (max-width: 1080px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .section-heading,
  .visit-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 2rem;
  }

  h1 {
    font-size: clamp(3.4rem, 18vw, 5.6rem);
  }

  .hero-showcase {
    min-height: 27rem;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 580px) {
  nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero-details,
  .product-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
  }

  .hero-showcase {
    min-height: 22rem;
  }

  .item-5 {
    display: none;
  }
}
