:root {
  --bg: #f4ede3;
  --surface: #fffaf4;
  --surface-2: #f0e3d2;
  --ink: #2d261f;
  --ink-deep: #1a1510;
  --muted: #766b60;
  --line: #d8c9b6;
  --accent: #b08a66;
  --accent-dark: #8f6d4e;
  --accent-ink: #fffdf9;
  --shadow-sm: 0 2px 8px rgba(62, 45, 30, 0.07);
  --shadow: 0 10px 28px rgba(62, 45, 30, 0.1);
  --shadow-lg: 0 20px 48px rgba(62, 45, 30, 0.14);
  --radius: 16px;
  --radius-sm: 10px;
}
/* ─── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

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

.container {
  width: min(1100px, calc(100% - 2.4rem));
  margin-inline: auto;
}

/* ─── Header ────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 90%, transparent 10%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  text-decoration: none;
  color: inherit;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-mark {
  font-size: 0.75rem;
  color: var(--accent);
}

.menu {
  display: flex;
  gap: 0.25rem;
}

.menu a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  transition: background 0.15s, color 0.15s;
}

.menu a:hover {
  color: var(--ink);
  background: var(--surface-2);
}

.nav-cta {
  margin-top: 0 !important;
  padding: 0.5rem 1.1rem !important;
  font-size: 0.88rem !important;
}

/* ─── Buttons ───────────────────────────────────────────────── */
.button {
  display: inline-block;
  margin-top: 1.5rem;
  border: none;
  border-radius: 999px;
  padding: 0.78rem 1.4rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  background: var(--accent);
  color: var(--accent-ink);
  transition: filter 0.15s, box-shadow 0.15s;
  cursor: pointer;
}

.button:hover {
  filter: brightness(0.93);
  box-shadow: 0 4px 14px rgba(176, 138, 102, 0.35);
}

.button.secondary { background: var(--ink); }

.button-ghost {
  display: inline-block;
  margin-top: 1.5rem;
  margin-left: 0.75rem;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 0.78rem 1.4rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  transition: border-color 0.15s, background 0.15s;
}

.button-ghost:hover {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 6%, transparent 94%);
}

/* ─── Hero ──────────────────────────────────────────────────── */
.hero {
  padding: 5.5rem 0 4rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  margin: 0 0 0.8rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4.8vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 800;
}

.hero > .hero-copy > p {
  color: var(--muted);
  margin: 1.1rem 0 0;
  font-size: 1rem;
  max-width: 44ch;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.hero-card {
  background: linear-gradient(150deg, var(--surface), var(--surface-2) 120%);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  padding: 2rem 1.8rem 1.6rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.hero-stat:last-of-type { border-bottom: none; }

.hero-stat-num {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}

.hero-stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
  margin-top: 0.2rem;
}

.hero-divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 1rem 0 0.8rem;
}

.hero-card-tagline {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
}

/* ─── Filters ───────────────────────────────────────────────── */
.filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 0 auto 0;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}

.chip {
  border: 1.5px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.42rem 0.9rem;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.chip:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.chip.active {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}

/* ─── Products ──────────────────────────────────────────────── */
.products-section { padding: 1.6rem 0 3rem; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.1rem;
}

.section-head h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

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

/* ─── Cards ─────────────────────────────────────────────────── */
.card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: box-shadow 0.28s, transform 0.28s;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.card-media {
  aspect-ratio: 2 / 3;
  background: var(--surface-2);
  overflow: hidden;
  position: relative;
}

.card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s ease;
}

.card:hover .card-media img { transform: scale(1.06); }

.card-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 3.5rem 1.2rem 1.4rem;
  background: linear-gradient(
    to top,
    rgba(20, 14, 8, 0.88) 0%,
    rgba(20, 14, 8, 0.5) 55%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  gap: 0;
}

.card-body h3 {
  margin: 0.2rem 0 0;
  font-size: 1.1rem;
  line-height: 1.25;
  font-weight: 700;
  color: #fff;
}

.card-description {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  line-height: 1.5;
}

.meta {
  margin-top: 0.6rem;
  display: flex;
  align-items: center;
}

.tag {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 0.14rem 0.55rem;
  border-radius: 999px;
  font-weight: 600;
  text-transform: capitalize;
}

/* ─── About band ────────────────────────────────────────────── */
.about-band {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about {
  padding: 4.5rem 0;
}

.about h2 {
  margin: 0.3rem 0 2.5rem;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  text-align: center;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.about article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.about article::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
}

.about article h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.about article p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ─── Contact band ──────────────────────────────────────────── */
.contact-band {
  background: var(--ink-deep);
}

.contact {
  padding: 5.5rem 0;
  text-align: center;
}

.contact .eyebrow {
  color: var(--accent);
}

.contact h2 {
  margin: 0.3rem 0 0.75rem;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--accent-ink);
}

.contact > p {
  margin: 0;
  color: rgba(255, 253, 249, 0.6);
  font-size: 1rem;
}

.contact-btn {
  background: var(--accent);
  margin-top: 2rem;
  padding: 0.9rem 2rem;
  font-size: 1rem;
}

.contact-sub {
  margin-top: 1rem !important;
  font-size: 0.85rem !important;
  color: rgba(255, 253, 249, 0.5) !important;
}

.contact-sub a {
  color: rgba(255, 253, 249, 0.7);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-sub a:hover { color: var(--accent-ink); }

/* ─── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 2rem;
  padding: 3.5rem 0 2.5rem;
}

.footer-brand-link {
  color: var(--accent-ink) !important;
  margin-bottom: 0.25rem;
}

.footer-brand p {
  margin: 0.6rem 0 0;
  color: rgba(255, 253, 249, 0.45);
  font-size: 0.88rem;
  line-height: 1.65;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-col h4 {
  margin: 0 0 0.4rem;
  color: var(--accent-ink);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.footer-col a,
.footer-col span {
  color: rgba(255, 253, 249, 0.45);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.15s;
}

.footer-col a:hover { color: var(--accent-ink); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: rgba(255, 253, 249, 0.3);
  font-size: 0.82rem;
  padding: 1.25rem 0;
}

.footer-bottom-inner p { margin: 0; }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 3rem;
  }
}

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

  .hero {
    grid-template-columns: 1fr;
    padding-top: 3.5rem;
    gap: 2rem;
  }

  .hero-card {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
  }

  .hero-stat {
    flex: 1;
    min-width: 120px;
    border-bottom: none;
    border-right: 1px solid var(--line);
    padding: 0.75rem 1rem;
  }

  .hero-stat:last-of-type { border-right: none; }

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

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

@media (max-width: 560px) {
  .menu { display: none; }

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

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

  .footer-bottom-inner {
    flex-direction: column;
    gap: 0.3rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .button-ghost { margin-left: 0; }
}
