:root {
  color-scheme: light;
  --ink: #17322f;
  --muted: #68736e;
  --paper: #f5f1e9;
  --card: #fffdf9;
  --line: #ddd6ca;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 12%, rgba(203, 190, 165, .32), transparent 28rem),
    var(--paper);
}

.home-shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 32px 0 28px;
}

.home-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: clamp(64px, 11vw, 150px);
}

.home-header img { width: 188px; height: auto; }
.home-header p, footer { color: var(--muted); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow { margin: 0 0 18px; font-size: 12px; font-weight: 750; letter-spacing: .24em; }

h1 {
  max-width: 880px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 7vw, 92px);
  font-weight: 400;
  line-height: .96;
  letter-spacing: -.04em;
}

.intro { max-width: 600px; margin: 30px 0 50px; color: var(--muted); font-size: clamp(17px, 2vw, 21px); line-height: 1.6; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.product-grid a {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  color: var(--ink);
  background: color-mix(in srgb, var(--card) 92%, transparent);
  border: 1px solid var(--line);
  border-radius: 26px;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.product-grid a:hover, .product-grid a:focus-visible { transform: translateY(-4px); border-color: #9b8f7d; box-shadow: 0 22px 50px rgba(23, 50, 47, .08); outline: none; }
.product-grid span { color: var(--muted); font-size: 12px; letter-spacing: .18em; }
.product-grid strong { max-width: 270px; margin-top: auto; font-family: Georgia, "Times New Roman", serif; font-size: 30px; font-weight: 400; line-height: 1.05; }
.product-grid small { display: flex; justify-content: space-between; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 13px; }
.product-grid b { font-size: 18px; font-weight: 400; }
footer { margin-top: 72px; padding-top: 24px; border-top: 1px solid var(--line); }

@media (max-width: 760px) {
  .home-shell { width: min(100% - 28px, 1160px); padding-top: 22px; }
  .home-header { align-items: flex-start; padding-bottom: 72px; }
  .home-header p { max-width: 130px; margin: 4px 0 0; text-align: right; line-height: 1.5; }
  .product-grid { grid-template-columns: 1fr; }
  .product-grid a { min-height: 190px; }
}

