/* Palette warmed 2026-09-27 (owner: "the blue feels cold" - porch tea, not night sky): coffee ink, linen, walnut dusk.
   Slow Sunday Tees v2 — static, no JS. Mobile first (375 px), light + dark via prefers-color-scheme. */
:root {
  --cream: #f2e7d2;
  --paper: #faf4e7;
  --navy: #3a2a1f;
  --mustard: #c48a2c;
  --rust: #b4532b;
  --bg: var(--cream);
  --surface: var(--paper);
  --ink: var(--navy);
  --ink-soft: #6a5444;
  --accent: var(--rust);
  --accent-ink: #fff;
  --line: rgba(58, 42, 31, .14);
  --shadow: 0 1px 2px rgba(58, 42, 31, .06), 0 10px 30px -12px rgba(58, 42, 31, .22);
  --radius: 16px;
  --wrap: 1120px;
  --serif: Fraunces, Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #2b2019;
    --surface: #382a20;
    --ink: #f4e8d2;
    --ink-soft: #cfbda2;
    --accent: #e8885a;
    --accent-ink: #2b2019;
    --mustard: #e3b560;
    --line: rgba(244, 232, 210, .14);
    --shadow: 0 1px 2px rgba(0, 0, 0, .3), 0 10px 30px -12px rgba(0, 0, 0, .6);
  }
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--bg); color: var(--ink); font: 17px/1.6 var(--sans); overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--accent); text-underline-offset: 3px; }
:focus-visible { outline: 3px solid var(--mustard); outline-offset: 3px; border-radius: 6px; }
h1, h2, h3 { font-family: var(--serif); line-height: 1.12; letter-spacing: -.012em; margin: 0; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--ink); color: var(--bg); padding: 8px 12px; border-radius: 8px; z-index: 10; }
.skip:focus { left: 8px; }

/* buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 12px 24px; border-radius: 999px;
  font-weight: 650; text-decoration: none; letter-spacing: .01em; border: 2px solid transparent; transition: transform .12s ease, background .12s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: var(--accent-ink); box-shadow: var(--shadow); }
.btn-ghost { border-color: var(--ink); color: var(--ink); }
.btn-sm { min-height: 40px; padding: 8px 16px; font-size: .9rem; }

/* header */
.site-header { background: var(--bg); border-bottom: 1px solid var(--line); }
.bar { max-width: var(--wrap); margin: 0 auto; padding: 10px 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; font-family: var(--serif); font-weight: 700; font-size: 1.15rem; white-space: nowrap; }
.brand img { width: 40px; height: 40px; }
.site-nav { max-width: var(--wrap); margin: 0 auto; padding: 0 16px 10px; display: flex; gap: 20px; overflow-x: auto; scrollbar-width: none; white-space: nowrap; font-size: .92rem; }
.site-nav::-webkit-scrollbar { display: none; }
.site-nav a { color: var(--ink-soft); text-decoration: none; padding: 6px 0; }
.site-nav a:hover { color: var(--ink); text-decoration: underline; }

/* hero */
main { display: block; }
.hero { max-width: var(--wrap); margin: 0 auto; padding: 20px 16px 8px; display: grid; gap: 20px; }
.hero-photo { margin: 0; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow); background: var(--surface); }
.hero-photo img { width: 100%; aspect-ratio: 6 / 5; object-fit: cover; object-position: 50% 30%; }
.hero-text { order: 2; }
.eyebrow { margin: 0 0 6px; font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); }
.hero h1 { font-size: clamp(2.3rem, 10vw, 4.2rem); font-weight: 700; }
.lede { font-size: 1.12rem; color: var(--ink-soft); margin: 12px 0 0; max-width: 34em; }
.cta { margin-top: 22px; display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.cta .btn { width: 100%; }
.also { margin: 0; color: var(--ink-soft); font-size: .95rem; }
.also a { color: var(--ink); font-weight: 600; }

/* facts strip */
.facts { list-style: none; max-width: var(--wrap); margin: 20px auto 0; padding: 0 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.facts li { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 12px 14px; display: flex; flex-direction: column; }
.facts b { font-size: .98rem; }
.facts span { font-size: .85rem; color: var(--ink-soft); }

/* sections */
.section { max-width: var(--wrap); margin: 0 auto; padding: 40px 16px 0; }
.section > h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); margin-bottom: 18px; }
.more { text-align: center; margin: 24px 0 0; }

/* collection tiles: 5 tiles fill evenly (1 wide + 2x2 on phones; 2 + 3 on desktop) */
.tiles { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.tiles li:first-child { grid-column: span 2; }
.tile a { position: relative; display: block; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); color: #fff; text-decoration: none; background: var(--surface); }
.tile img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 30%; transition: transform .4s ease; }
.tiles li:first-child img { aspect-ratio: 16 / 10; }
.tile a:hover img { transform: scale(1.03); }
.tile-label { position: absolute; inset: auto 0 0 0; padding: 36px 14px 12px; background: linear-gradient(transparent, rgba(20, 26, 40, .78)); display: flex; flex-direction: column; }
.tile-name { font-family: var(--serif); font-weight: 700; font-size: 1.12rem; line-height: 1.15; }
.tile-count { font-size: .82rem; opacity: .9; }

/* product grid: counts are 4 or 6 so rows always fill (2 cols phone; 4 -> 4 cols, 6 -> 3 cols desktop) */
.grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.card a { display: flex; flex-direction: column; height: 100%; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; color: inherit; text-decoration: none; box-shadow: var(--shadow); transition: transform .15s ease; }
.card a:hover { transform: translateY(-2px); }
.card img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 32%; background: var(--cream); }
.card-body { display: flex; flex-direction: column; gap: 2px; padding: 12px 12px 14px; flex: 1; }
.card-title { font-family: var(--serif); font-weight: 700; font-size: 1.02rem; line-height: 1.2; }
.card-sub { font-size: .9rem; color: var(--ink-soft); line-height: 1.3; }


/* how it's made */
.how { max-width: var(--wrap); margin: 48px auto 0; padding: 32px 16px; background: var(--surface); border-block: 1px solid var(--line); }
.how h2 { font-size: clamp(1.5rem, 5.5vw, 2rem); margin-bottom: 18px; }
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.steps li { position: relative; padding-left: 52px; }
.step-n { position: absolute; left: 0; top: 0; width: 38px; height: 38px; border-radius: 50%; background: var(--mustard); color: #1b2130; font-weight: 800; display: grid; place-items: center; }
.steps h3 { font-size: 1.15rem; margin-bottom: 4px; }
.steps p { margin: 0; color: var(--ink-soft); }

/* inner pages */
.page { max-width: var(--wrap); margin: 0 auto; padding: 16px 16px 0; }
.crumbs { font-size: .85rem; color: var(--ink-soft); margin-bottom: 14px; }
.crumbs a { color: var(--ink-soft); }
.page-head { max-width: 44em; margin-bottom: 22px; }
.page-head h1, .prose h1 { font-size: clamp(2rem, 8vw, 3rem); margin-bottom: 12px; }
.page-head p { margin: 0 0 10px; color: var(--ink-soft); font-size: 1.05rem; }
.chips { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.chips a { display: inline-block; padding: 10px 16px; border-radius: 999px; border: 1px solid var(--line); background: var(--surface); color: var(--ink); text-decoration: none; font-weight: 600; }
.more-cols h2 { font-size: 1.4rem; }

.prose { max-width: 720px; }
.prose h2 { font-size: 1.35rem; margin: 30px 0 8px; }
.prose p, .prose li { color: var(--ink-soft); }
.prose p { margin: 0 0 12px; }
.prose b { color: var(--ink); }
.prose .lede { font-size: 1.15rem; }
.center { text-align: center; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 20px; }
.big-mail { font-size: clamp(1.2rem, 6vw, 1.6rem); font-weight: 700; margin: 8px 0 18px; overflow-wrap: anywhere; }
.sizes { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.sizes li { min-width: 56px; padding: 10px 14px; text-align: center; border-radius: 12px; border: 1px solid var(--line); background: var(--surface); color: var(--ink); font-weight: 700; }
.table-wrap { overflow-x: auto; margin: 10px 0 8px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); }
table { border-collapse: collapse; width: 100%; font-size: .92rem; }
caption { text-align: left; padding: 12px 14px 0; font-weight: 700; color: var(--ink); }
th, td { text-align: left; padding: 10px 14px; border-top: 1px solid var(--line); vertical-align: top; }
thead th { border-top: 0; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); }
td { color: var(--ink-soft); }
tbody th { color: var(--ink); }

/* footer */
.site-footer { margin-top: 56px; border-top: 1px solid var(--line); padding: 32px 16px 40px; }
.foot-grid { max-width: var(--wrap); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.foot-grid > div:nth-child(2) { grid-column: span 2; order: 3; }
.site-footer h2 { font-family: var(--sans); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 8px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: 6px 0; }
.site-footer a { color: var(--ink); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.fine { max-width: var(--wrap); margin: 16px auto 0; font-size: .85rem; color: var(--ink-soft); }
.fine + .fine { margin-top: 4px; }

@media (min-width: 560px) {
  .facts { grid-template-columns: repeat(4, 1fr); }
  .cta { flex-direction: row; align-items: center; flex-wrap: wrap; gap: 16px; }
  .cta .btn { width: auto; }
  .grid { gap: 18px; }
  .steps { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .steps li { padding-left: 0; padding-top: 50px; }
}
@media (min-width: 900px) {
  body { font-size: 18px; }
  .hero { grid-template-columns: 1.05fr 1fr; align-items: center; gap: 48px; padding-top: 40px; }
  .hero-text { order: 0; }
  .hero-photo img { aspect-ratio: 1 / 1; }
  .tiles { grid-template-columns: repeat(6, 1fr); gap: 18px; }
  .tiles li { grid-column: span 2; }
  .tiles li:nth-child(-n+2) { grid-column: span 3; }
  .tiles li:nth-child(-n+2) img { aspect-ratio: 16 / 10; }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .how { border-radius: 22px; border: 1px solid var(--line); padding: 40px; }
  .foot-grid { grid-template-columns: repeat(3, 1fr); }
  .foot-grid > div:nth-child(2) { grid-column: auto; order: 0; }
  .fine { text-align: left; }
}
@media (prefers-reduced-motion: reduce) { .btn, .card a, .tile img { transition: none; } .btn:hover, .card a:hover { transform: none; } .tile a:hover img { transform: none; } }

/* 10 collection tiles (buyer pages, 2026-09-27): phone 1 wide + 4 rows of 2 + 1 wide; desktop 2 wide + 2 rows of 3 + 2 wide */
.tiles-10 li:last-child { grid-column: span 2; }
.tiles-10 li:last-child img { aspect-ratio: 16 / 10; }
@media (min-width: 900px) {
  .tiles-10 li:nth-last-child(-n+2) { grid-column: span 3; }
  .tiles-10 li:nth-last-child(-n+2) img { aspect-ratio: 16 / 10; }
}
/* 9 collection tiles: phone 1 wide + 4 rows of 2 (default); desktop 3 rows of 3 */
@media (min-width: 900px) {
  .tiles-9 li, .tiles-9 li:nth-child(-n+2) { grid-column: span 2; }
  .tiles-9 li img, .tiles-9 li:nth-child(-n+2) img { aspect-ratio: 4 / 5; }
}
