:root {
  --ink: #20342d;
  --muted: #69756f;
  --paper: #fffdf8;
  --cream: #f4efe5;
  --sage: #829b87;
  --sage-dark: #355c4b;
  --rose: #c98170;
  --line: #dedbd2;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(41, 61, 51, 0.12);
  --radius: 22px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
}
.skip-link:focus { top: 16px; }

.announcement {
  padding: 8px 20px;
  color: var(--white);
  background: var(--ink);
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 248, 0.96);
  border-bottom: 1px solid rgba(222, 219, 210, 0.8);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  width: min(1180px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--sage-dark);
  border-radius: 50% 50% 50% 12px;
  transform: rotate(-10deg);
}

.brand-mark span { transform: rotate(10deg); font-size: 0.85rem; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}

.site-nav { display: flex; align-items: center; gap: 24px; }
.site-nav a { color: #48564f; font-size: 0.92rem; font-weight: 650; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--rose); }

.nav-pill {
  padding: 10px 17px;
  color: var(--white) !important;
  background: var(--sage-dark);
  border-radius: 999px;
}

.hero {
  min-height: 640px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.88) 37%, rgba(255, 253, 248, 0.06) 68%),
    url("hero-essentials.webp") center right / cover no-repeat;
}

.hero-inner, .container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-copy { width: min(560px, 55%); padding: 90px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 30px; height: 1px; background: currentColor; }

h1, h2, h3 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.12;
}

h1 { margin-bottom: 20px; font-size: clamp(2.7rem, 6vw, 5.2rem); font-weight: 500; letter-spacing: -0.04em; }
h2 { margin-bottom: 16px; font-size: clamp(2rem, 4vw, 3.35rem); font-weight: 500; letter-spacing: -0.035em; }
h3 { margin-bottom: 10px; font-size: 1.32rem; font-weight: 600; }

.hero-copy > p:not(.eyebrow), .section-head p, .page-intro p { color: var(--muted); }
.hero-copy > p:not(.eyebrow) { max-width: 510px; font-size: 1.08rem; }

.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 21px;
  color: var(--white);
  background: var(--sage-dark);
  border: 1px solid var(--sage-dark);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 750;
}
.button:hover { background: #294b3d; }
.button.secondary { color: var(--ink); background: rgba(255, 253, 248, 0.76); border-color: var(--line); }

.trust-strip { padding: 21px 0; color: var(--white); background: var(--sage-dark); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.trust-item { display: flex; align-items: center; justify-content: center; gap: 12px; text-align: left; }
.trust-item b { display: block; font-size: 0.92rem; }
.trust-item span { display: block; color: #cbd7d1; font-size: 0.78rem; }
.trust-icon { font-family: Georgia, serif; font-size: 1.5rem; }

.section { padding: 96px 0; }
.section.alt { background: var(--cream); }
.section-head { max-width: 680px; margin-bottom: 38px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.category-card, .product-card, .info-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.category-card:hover, .product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.category-card { min-height: 230px; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; }
.category-card::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -55px;
  width: 180px;
  height: 180px;
  background: var(--card-tone, #dbe5db);
  border-radius: 52% 48% 45% 55%;
  opacity: 0.72;
}
.category-card > * { position: relative; z-index: 1; }
.category-card small { color: var(--muted); font-weight: 650; text-transform: uppercase; letter-spacing: 0.08em; }
.card-link { font-size: 0.88rem; font-weight: 800; }
.card-link::after { content: " →"; }

.story-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 54px; align-items: center; }
.story-image { min-height: 500px; border-radius: var(--radius); background: url("hero-essentials.webp") 72% center / cover no-repeat; box-shadow: var(--shadow); }
.check-list { list-style: none; padding: 0; margin: 26px 0 0; }
.check-list li { position: relative; padding: 10px 0 10px 32px; border-bottom: 1px solid var(--line); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--rose); font-weight: 900; }

.page-hero { padding: 76px 0 58px; background: linear-gradient(135deg, var(--cream), #e8efe8); }
.breadcrumbs { margin-bottom: 18px; color: var(--muted); font-size: 0.84rem; }
.breadcrumbs a:hover { color: var(--rose); }
.page-hero h1 { max-width: 820px; font-size: clamp(2.5rem, 5vw, 4.6rem); }
.page-intro { max-width: 700px; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-card { min-height: 300px; display: flex; flex-direction: column; }
.product-card .visual {
  min-height: 175px;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--sage-dark);
  background: linear-gradient(145deg, #edf1e9, #f7e6df);
  font-family: Georgia, serif;
  font-size: 2.2rem;
}
.product-card .body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.product-card p { color: var(--muted); font-size: 0.91rem; }
.product-card .card-link { margin-top: auto; }

.notice { margin-top: 30px; padding: 20px 22px; background: #f9f4e9; border-left: 4px solid var(--rose); border-radius: 0 12px 12px 0; color: #59635e; }

.product-detail { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 56px; align-items: center; }
.product-showcase {
  min-height: 500px;
  padding: 48px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--sage-dark);
  background: linear-gradient(145deg, #e5eee7, #f7dfd7);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.product-showcase span { display: block; font-family: Georgia, serif; font-size: clamp(2.5rem, 6vw, 5rem); line-height: 1; }
.product-showcase small { display: block; margin-top: 18px; color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; }
.product-copy .badge { display: inline-block; padding: 6px 11px; color: var(--sage-dark); background: #e3ede5; border-radius: 999px; font-size: 0.78rem; font-weight: 800; }
.product-copy .lead { color: var(--muted); font-size: 1.06rem; }
.detail-list { margin: 24px 0; padding-left: 20px; color: #536058; }

.filter-summary { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 0; }
.filter-chip { padding: 7px 11px; color: var(--sage-dark); background: var(--white); border: 1px solid var(--line); border-radius: 999px; font-size: 0.82rem; font-weight: 700; }

.site-footer { color: #d7e0dc; background: #192a23; }
.footer-main { padding: 64px 0; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; }
.footer-main .brand { color: var(--white); margin-bottom: 16px; }
.footer-main p { color: #aebdb6; max-width: 440px; }
.footer-title { margin: 0 0 16px; color: var(--white); font-family: Georgia, serif; font-size: 1.05rem; }
.footer-links { display: grid; gap: 9px; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { padding: 18px 0 28px; border-top: 1px solid rgba(255,255,255,0.1); color: #91a29a; font-size: 0.82rem; }

.error-page { min-height: 100vh; display: grid; place-items: center; padding: 40px 20px; background: var(--cream); }
.error-card { width: min(720px, 100%); padding: 58px; text-align: center; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); }
.error-code { margin: 0; color: var(--rose); font-family: Georgia, serif; font-size: clamp(5rem, 18vw, 10rem); line-height: 0.8; }
.error-card h1 { margin-top: 30px; font-size: clamp(2rem, 5vw, 3.2rem); }
.error-card p { color: var(--muted); }

@media (max-width: 900px) {
  .nav-toggle { display: inline-grid; place-items: center; }
  .site-nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    padding: 18px;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px; }
  .nav-pill { margin-top: 8px; text-align: center; }
  .hero { min-height: 600px; background-position: 60% center; }
  .hero::before { content: ""; position: absolute; inset: 0; background: rgba(255,253,248,0.2); }
  .hero { position: relative; }
  .hero-inner { position: relative; z-index: 1; }
  .hero-copy { width: 68%; }
  .category-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid, .product-detail { grid-template-columns: 1fr; }
  .story-image { min-height: 380px; }
}

@media (max-width: 640px) {
  .announcement { font-size: 0.7rem; }
  .nav-wrap, .hero-inner, .container { width: min(100% - 28px, 1180px); }
  .brand { font-size: 1rem; }
  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(255,253,248,0.93), rgba(255,253,248,0.55)),
      url("hero-essentials.webp") 68% center / cover no-repeat;
  }
  .hero-copy { width: 100%; padding: 76px 0 210px; }
  h1 { font-size: 2.8rem; }
  .trust-grid, .category-grid, .product-grid, .footer-main { grid-template-columns: 1fr; }
  .trust-item { justify-content: flex-start; }
  .section { padding: 70px 0; }
  .page-hero { padding: 54px 0 42px; }
  .story-image, .product-showcase { min-height: 330px; }
  .product-showcase { padding: 28px; }
  .error-card { padding: 42px 24px; }
}

