/* ————————————————————————————————————————————————
   GardenDSP — site stylesheet
   Brutalist-plain: white canvas, black hairlines, square corners,
   ordinary hyperlinks. Work Sans for UI, Newsreader for display.
   ———————————————————————————————————————————————— */

@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,500;1,6..72,400&display=swap");

:root {
  --white: #FFFFFF;
  --black: #000000;
  --gray-200: #DCDCDC;
  --gray-300: #BDBDBD;
  --gray-500: #5C5C5C;

  /* Pastel garden — 100 wash / 300 bloom / 500 ink */
  --sakura-100: #FCE9F0; --sakura-300: #F6BBD0; --sakura-500: #D6487F;
  --momo-100: #FFEFE2;   --momo-300: #FFCBA4;   --momo-500: #DE7A35;
  --kinako-100: #FBF3D8; --kinako-300: #F5DF8E; --kinako-500: #B08D1E;
  --matcha-100: #EAF3E1; --matcha-300: #C2DFA9; --matcha-500: #5F9440;
  --ramune-100: #E0F5F3; --ramune-300: #A5E2DC; --ramune-500: #2E9A8F;
  --sora-100: #E5F0FA;   --sora-300: #ABCFF0;   --sora-500: #3F7FBF;
  --fuji-100: #EEEAF9;   --fuji-300: #C9BBEC;   --fuji-500: #6F58B8;
  --ume-100: #FBE8E5;    --ume-300: #F2A99F;    --ume-500: #C24B3C;

  --surface: var(--white);
  --ink: var(--black);
  --text-secondary: var(--gray-500);
  --hairline: var(--black);
  --hairline-soft: var(--gray-200);

  --accent-100: var(--sora-100);
  --accent-300: var(--sora-300);
  --accent-500: var(--sora-500);

  --font-sans: "Work Sans", -apple-system, "Helvetica Neue", sans-serif;
  --font-serif: "Newsreader", Georgia, serif;

  --label: 10px;
  --label-track: 0.12em;
  --tnum: "tnum" 1, "lnum" 1;
}

.theme-sora   { --accent-100: var(--sora-100);   --accent-300: var(--sora-300);   --accent-500: var(--sora-500); }
.theme-matcha { --accent-100: var(--matcha-100); --accent-300: var(--matcha-300); --accent-500: var(--matcha-500); }

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--ink); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent-500); }
::selection { background: var(--accent-300); color: var(--ink); }

h1, h2, h3 { font-weight: 400; line-height: 1.1; margin: 0; }

/* ————— Shell ————— */
.shell {
  max-width: 1264px; margin: 0 auto; min-height: 100vh;
  display: flex; flex-direction: column;
  background: var(--white);
}
.shell > footer { margin-top: auto; }


/* ————— Nav: plain hyperlinks ————— */
.site-nav {
  position: sticky; top: 0; z-index: 10;
  display: flex; align-items: center; gap: 24px;
  height: 56px; padding: 0 40px;
  background: var(--white);
}
.wordmark { font-size: 17px; text-decoration: none; line-height: 1; white-space: nowrap; }
.wordmark:hover { color: var(--ink); }
.wordmark .garden { font-weight: 300; }
.wordmark .dsp { font-family: var(--font-serif); font-weight: 500; }
.site-nav .spacer { flex: 1; }
.nav-link { font-size: 14px; text-decoration: none; color: var(--ink); white-space: nowrap; }
.nav-link:hover { text-decoration: underline; color: var(--ink); }
.nav-link.active { text-decoration: underline; text-underline-offset: 4px; }

/* ————— Buttons: square ————— */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 44px; padding: 0 24px; border-radius: 0;
  font-family: var(--font-sans); font-size: 14px; font-weight: 500;
  letter-spacing: 0.01em; white-space: nowrap; cursor: pointer;
  text-decoration: none; border: 1px solid var(--hairline);
  transition: background 120ms ease-out, color 120ms ease-out;
}
.btn-lg { height: 48px; padding: 0 29px; font-size: 15px; }
.btn-primary { background: var(--ink); color: var(--white); }
.btn-primary:hover { background: var(--ink); color: var(--white); }
.btn-buy {
  background: var(--ink); color: var(--white);
  border: none;
  cursor: default; pointer-events: none;
}
/* Small price, never big */
.price-note {
  font-size: 13px; color: var(--text-secondary);
  font-feature-settings: var(--tnum); white-space: nowrap;
}

/* ————— Framed shots: square ————— */
.shot-shell {
  border: 1px solid var(--hairline-soft); border-radius: 0;
  overflow: hidden; background: var(--white);
}
.shot-shell img, .shot-shell iframe {
  display: block; width: 100%; border: none;
}
.shot-shell iframe { aspect-ratio: 16 / 9; }

/* ————— Display type ————— */
.display {
  font-family: var(--font-serif); font-weight: 400;
  letter-spacing: -0.02em; line-height: 1.05;
}
.hero-h1 {
  font-family: var(--font-sans); font-weight: 500;
  font-size: clamp(32px, 3.6vw, 52px);
  letter-spacing: -0.02em; line-height: 1.12;
}
.page-h1 { font-size: clamp(38px, 4.5vw, 60px); }
.title-h1 { font-size: clamp(34px, 4vw, 52px); }
.h-serif { font-family: var(--font-serif); font-weight: 400; font-size: 28px; letter-spacing: -0.01em; }

.lede { font-size: 17px; line-height: 1.55; color: var(--text-secondary); margin: 0; }

/* ————— Homepage hero ————— */
.hero { display: grid; grid-template-columns: 5fr 7fr; min-height: 480px; }
.hero > * { min-width: 0; }
.hero-copy {
  padding: 48px 40px;
  display: flex; flex-direction: column; justify-content: center; gap: 36px;
}
.hero-copy .cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-visual {
  background: var(--accent-100);
  padding: 40px;
  display: flex; align-items: center;
}
.hero-visual .shot-shell { width: 100%; }

/* ————— Sections ————— */
.pad { padding: 48px 40px 56px; }
.section-head-row { margin-bottom: 24px; }

/* ————— Plugin cards ————— */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card {
  display: block; text-decoration: none; color: var(--ink);
}
.product-card:hover { color: var(--ink); }
.product-card:hover .name { text-decoration: underline; text-underline-offset: 4px; }
.product-card .plate {
  background: var(--accent-100);
  padding: 24px 20px;
}
.product-card .plate img {
  display: block; width: 100%; height: auto;
  border: 1px solid var(--hairline-soft);
  background: var(--white);
}
.product-card .meta { padding: 14px 0 0; }
.product-card .title-row { display: flex; align-items: baseline; gap: 8px; }
.product-card .name { font-family: var(--font-serif); font-size: 20px; }
.product-card .price {
  margin-left: auto; font-size: 13px; color: var(--text-secondary);
  font-feature-settings: var(--tnum);
}
.product-card .blurb { font-size: 13px; color: var(--text-secondary); margin-top: 6px; line-height: 1.5; }

/* ————— Product page ————— */
.title-bar {
  display: flex; align-items: baseline; gap: 16px;
  padding: 32px 40px 20px;
  flex-wrap: wrap;
}
.title-bar .price-note { margin-left: auto; }
.lede-row { padding: 0 40px 36px; max-width: 560px; }

.wash-plate { background: var(--accent-100); padding: 40px; }
.wash-plate .shot-shell { max-width: 960px; margin: 0 auto; }
.plate-shot { padding: clamp(24px, 5vw, 64px) 40px; }
.plate-shot .shot-shell { max-width: 1100px; margin: 0 auto; }

/* ————— Feature ledger ————— */
.ledger-wrap { padding: 40px 40px 64px; }
.ledger-wrap .h-serif { margin-bottom: 20px; max-width: 640px; }
.feature-list {
  list-style: disc; margin: 0; padding: 0 0 0 22px;
  max-width: 820px;
}
.feature-list li {
  padding: 7px 0;
  font-size: 16px; line-height: 1.55;
}
.feature-list strong { font-weight: 600; }

/* ————— About section (homepage) ————— */
#about { scroll-margin-top: 72px; }
.about-blurb { max-width: 620px; }
.about-blurb p { margin: 0 0 1.2em; font-size: 16px; line-height: 1.65; }
.about-blurb p:last-child { margin-bottom: 0; }

/* ————— Footer: brand left, links right ————— */
.site-footer { padding: 64px 40px 48px; }
.footer-inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 48px; flex-wrap: wrap;
}
.footer-brand { display: flex; flex-direction: column; gap: 10px; }
.footer-brand .wordmark { font-size: 22px; }
.footer-brand .fine { font-size: 12px; color: var(--text-secondary); font-feature-settings: var(--tnum); }
.footer-links { display: flex; gap: 72px; flex-wrap: wrap; }
.footer-links .col { display: flex; flex-direction: column; gap: 10px; }
.footer-links .eyebrow {
  font-size: var(--label); font-weight: 600;
  letter-spacing: var(--label-track); text-transform: uppercase;
  color: var(--text-secondary);
}
.footer-links a { font-size: 14px; text-decoration: none; }
.footer-links a:hover { text-decoration: underline; color: var(--ink); }

/* ————— Small screens ————— */
@media (max-width: 860px) {
  .site-nav {
    padding: 10px 20px; gap: 4px 16px;
    height: auto; min-height: 48px;
    flex-wrap: wrap;
  }
  .site-nav .spacer { flex-basis: 100%; }
  .nav-link { font-size: 13px; }
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { padding: 40px 20px; }
  .hero-visual { padding: 20px; }
  .pad { padding: 32px 20px 40px; }
  .card-grid { grid-template-columns: 1fr; }
  .title-bar { padding: 24px 20px 16px; }
  .title-bar .price-note { margin-left: 0; }
  .lede-row { padding: 0 20px 28px; }
  .wash-plate { padding: 20px; }
  .plate-shot { padding: 20px; }
  .ledger-wrap { padding: 28px 20px 48px; }
  .site-footer { padding: 40px 20px 32px; }
  .footer-inner { gap: 32px; }
  .footer-links { gap: 40px; }
}
