/* When the House Goes Quiet — calm sage/stone landing */
:root {
  --stone-50: #f7f4ee;
  --stone-100: #f0ebe3;
  --stone-200: #e4ddd2;
  --stone-300: #d2c8b8;
  --sage-100: #e8ebe4;
  --sage-200: #d0d6c8;
  --sage-400: #9aa890;
  --sage-500: #7f8f74;
  --sage-600: #66755c;
  --sage-700: #51604a;
  --ink: #3a3d38;
  --ink-soft: #5a5e56;
  --ink-muted: #7a7f76;
  --cream: #faf8f4;
  --white: #fffcf8;
  --line: rgba(58, 61, 56, 0.12);
  --shadow: 0 12px 40px rgba(58, 61, 56, 0.08);
  --radius: 14px;
  --serif: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Source Sans 3", "Source Sans Pro", system-ui, -apple-system, "Segoe UI", sans-serif;
  --max: 1080px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    linear-gradient(180deg, var(--stone-50) 0%, var(--cream) 48%, var(--sage-100) 100%);
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--sage-700); text-underline-offset: 0.18em; }
a:hover { color: var(--sage-600); }

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  padding: 1.25rem 0 0.5rem;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
}

.brand-sub {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* Hero */
.hero {
  padding: 2.5rem 0 3rem;
  display: grid;
  gap: 2.25rem;
  align-items: center;
}

@media (min-width: 860px) {
  .hero {
    grid-template-columns: 1.05fr 0.95fr;
    padding: 3.5rem 0 4rem;
    gap: 3rem;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-600);
  margin: 0 0 1rem;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: var(--sage-400);
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.35rem, 5vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 1rem;
  color: var(--ink);
}

.hero-lead {
  font-size: 1.125rem;
  color: var(--ink-soft);
  max-width: 36rem;
  margin: 0 0 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-bottom: 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--sage-600);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--sage-700);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--ink-soft);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--sage-400);
  color: var(--sage-700);
  background: rgba(255, 252, 248, 0.6);
}

.hero-note {
  font-size: 0.92rem;
  color: var(--ink-muted);
  margin: 0;
}

.hero-visual {
  position: relative;
}

.hero-visual figure {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.hero-wash {
  position: absolute;
  inset: auto -8% -12% -8%;
  height: 42%;
  background:
    linear-gradient(180deg, transparent, rgba(154, 168, 144, 0.18)),
    url("images/wash.jpg") center / cover no-repeat;
  opacity: 0.45;
  border-radius: 40% 40% 0 0 / 30% 30% 0 0;
  z-index: -1;
  pointer-events: none;
}

/* Soft divider */
.divider {
  width: min(100% - 2.5rem, 12rem);
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sage-400), transparent);
  opacity: 0.7;
}

/* Intro */
.intro {
  padding: 2.75rem 0 1rem;
  text-align: center;
}

.intro h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  margin: 0 0 1rem;
}

.intro p {
  margin: 0 auto 0.85rem;
  max-width: 40rem;
  color: var(--ink-soft);
}

/* Products */
.products {
  padding: 2rem 0 3.5rem;
}

.product-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 760px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.35rem;
    align-items: stretch;
  }
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 28px rgba(58, 61, 56, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  border-color: rgba(127, 143, 116, 0.35);
  box-shadow: var(--shadow);
}

.card.featured {
  border-color: rgba(127, 143, 116, 0.45);
  background:
    linear-gradient(180deg, #fffcf8 0%, #f4f6f0 100%);
}

.card-media {
  background: var(--stone-100);
  border-bottom: 1px solid var(--line);
}

.card-media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.card-body {
  padding: 1.25rem 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.55rem;
}

.card-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-600);
  margin: 0;
}

.card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.35rem;
  line-height: 1.25;
  margin: 0;
}

.price {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}

.price span {
  font-weight: 500;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  flex: 1;
}

.card .btn {
  width: 100%;
  margin-top: 0.65rem;
}

.save-pill {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: var(--sage-100);
  color: var(--sage-700);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Support / policy */
.support {
  padding: 0 0 3.5rem;
}

.support-panel {
  background: rgba(255, 252, 248, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
}

.support-panel h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.55rem;
  margin: 0 0 0.65rem;
}

.support-panel p {
  margin: 0 0 0.55rem;
  color: var(--ink-soft);
}

.support-panel a.mail {
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(81, 96, 74, 0.35);
}

.fineprint {
  font-size: 0.9rem;
  color: var(--ink-muted);
}

/* Footer */
.site-footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--line);
  text-align: center;
}

.site-footer p {
  margin: 0.25rem 0;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.site-footer .quiet-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ink-soft);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .card { transition: none; }
}
