@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500&display=swap');

@font-face {
  font-family: 'Karumbi';
  src: url('fonts/Karumbi-Regular.woff2') format('woff2'),
       url('fonts/Karumbi-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ─── TOKENS ──────────────────────────────────────────────── */
:root {
  --parchment:  #F0EAE0;
  --warm-white: #F5F0E8;
  --periwinkle: #6B8FAE;
  --sky-blue:   #8AABCA;
  --dark-olive: #4A4530;
  --sand:       #D4CCBA;
  --sage:       #9BA890;

  --font-brand: 'Karumbi', serif;
  --font-body:  'Open Sans', sans-serif;

  /* SVG paper texture (reusable) */
  --paper-texture: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.12'/%3E%3C/svg%3E");
}

/* ─── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
ul { list-style: none; }

/* ─── SCROLL SNAP CONTAINER ───────────────────────────────── */
html {
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  scroll-behavior: smooth;
  height: 100%;
}
/* Proximity on mobile — mandatory traps users on small screens */
@media (max-width: 768px) {
  html { scroll-snap-type: y proximity; }
}

body {
  height: 100%;
  background-color: var(--sage);
  background-image: var(--paper-texture);
  color: var(--dark-olive);
  font-family: var(--font-body);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.snap-section {
  height: 100vh;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
}

/* ─── SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.10s; }
.d2 { transition-delay: 0.22s; }
.d3 { transition-delay: 0.34s; }

/* ─── CUSTOM CURSOR ───────────────────────────────────────── */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--periwinkle);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.25s ease, height 0.25s ease, opacity 0.25s ease;
  mix-blend-mode: normal;
  opacity: 0;
}
.cursor.visible { opacity: 1; }
.cursor.hovering { width: 32px; height: 32px; background: rgba(107,143,174,0.25); border: 1px solid var(--periwinkle); }

@media (hover: none) { .cursor { display: none; } }

/* ─── SECTION DOTS ────────────────────────────────────────── */
.section-dots {
  position: fixed;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.section-dots .dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(245,240,232,0.3);
  transition: background 0.3s, transform 0.3s;
}
.section-dots .dot.active,
.section-dots .dot:hover {
  background: var(--periwinkle);
  transform: scale(1.4);
}

@media (max-width: 768px) { .section-dots { display: none; } }

/* ─── TOP NAV ─────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 28px;
  left: 32px;
  z-index: 200;
}
.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  cursor: pointer;
}
.nav-studio {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.6);
  margin-bottom: 1px;
}
.nav-askew {
  font-family: var(--font-brand);
  font-size: 36px;
  color: var(--warm-white);
  line-height: 1;
  transition: opacity 0.3s;
}
.nav-brand:hover .nav-askew { opacity: 0.75; }

/* ─── BOTTOM NAV ──────────────────────────────────────────── */
.bottom-nav {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}
.bottom-nav-link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.65);
  transition: color 0.3s;
  cursor: pointer;
  padding: 12px 6px; /* 44px touch target */
}
.bottom-nav-link:hover { color: var(--warm-white); }
.bottom-nav-sep {
  display: block;
  width: 1px;
  height: 10px;
  background: rgba(245,240,232,0.25);
}

/* ─── SHARED COMPONENTS ───────────────────────────────────── */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--periwinkle);
  margin-bottom: 20px;
}
.eyebrow--faint    { color: rgba(245,240,232,0.55); }
.eyebrow--periwinkle { color: var(--periwinkle); }

.cta-link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dark-olive);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: color 0.3s;
  cursor: pointer;
}
.cta-link::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
  transition: width 0.35s ease;
}
.cta-link:hover::before { width: 44px; }
.cta-link--light {
  color: rgba(245,240,232,0.65);
}
.cta-link--light:hover { color: var(--warm-white); }

/* ─── 01 HERO ─────────────────────────────────────────────── */
.section-hero {
  background-image: url('../images/hero-painting.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(74,69,48,0.68);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-content .eyebrow {
  margin-bottom: 6px;
  opacity: 0;
  animation: fadeUp 1.1s cubic-bezier(0.16,1,0.3,1) 0.1s forwards;
}
.hero-askew {
  font-family: var(--font-brand);
  font-size: clamp(72px, 12vw, 140px);
  color: var(--warm-white);
  line-height: 0.9;
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp 1.4s cubic-bezier(0.16,1,0.3,1) 0.2s forwards;
}
.hero-tagline {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.45);
  opacity: 0;
  animation: fadeUp 1.2s cubic-bezier(0.16,1,0.3,1) 0.5s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  animation: fadeUp 1s ease 1.4s forwards;
}
.hero-scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(245,240,232,0.5), rgba(245,240,232,0));
  animation: scrollPulse 2s ease-in-out 2s infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50%       { transform: scaleY(1.3); opacity: 1; }
}

/* ─── 02 ABOUT ────────────────────────────────────────────── */
.section-about {
  background-image: url('../images/hero-painting.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
}
.about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(74,69,48,0.72);
}
.about-split {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 100%;
  align-items: center;
}
.about-left {
  padding: 80px 64px 80px 96px;
  border-right: 1px solid rgba(245,240,232,0.12);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-headline {
  font-family: var(--font-brand);
  font-size: clamp(40px, 5vw, 68px);
  color: var(--warm-white);
  line-height: 1.05;
  margin-top: 8px;
  letter-spacing: -0.01em;
}
.about-right {
  padding: 80px 96px 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-body {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(245,240,232,0.82);
  margin-bottom: 18px;
}
.about-right .cta-link { margin-top: 28px; }

/* ─── 03 COLLECTION ───────────────────────────────────────── */
.section-collection {
  background-color: var(--parchment);
  background-image: var(--paper-texture);
  display: flex;
  flex-direction: column;
}
.collection-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px 16px;
  flex-shrink: 0;
}
.collection-header .eyebrow { margin-bottom: 0; }
.collection-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
  min-height: 0;
}
.print-panel {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--sand);
  display: block;
}
.print-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.print-panel:hover img { transform: scale(1.04); }
.print-caption {
  position: absolute;
  inset: 0;
  background: rgba(74,69,48,0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.print-panel:hover .print-caption { opacity: 1; }
.print-caption-title {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.06em;
  color: var(--warm-white);
  margin-bottom: 8px;
}
.print-caption-price {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.7);
}

/* ─── 04 STORY ────────────────────────────────────────────── */
.section-story {
  background-image: url('../images/story-painting.jpg');
  background-size: cover;
  background-position: center;
  display: grid;
  grid-template-columns: 160px 1fr 160px;
  align-items: center;
}
.story-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(74,69,48,0.55) 0%,
    rgba(74,69,48,0.78) 20%,
    rgba(74,69,48,0.78) 80%,
    rgba(74,69,48,0.55) 100%
  );
}
.story-photo {
  position: relative;
  z-index: 1;
  display: flex;
  padding: 48px 16px;
  height: 100%;
}
.story-photo--oma  { align-items: flex-start; justify-content: center; padding-top: 72px; }
.story-photo--dylan { align-items: flex-end;   justify-content: center; padding-bottom: 72px; }
.story-photo img {
  width: 170px;
  height: 170px;
  object-fit: cover;
  display: block;
}
.story-content {
  position: relative;
  z-index: 1;
  padding: 60px 40px;
  max-width: 500px;
  margin: 0 auto;
}
.story-content .eyebrow { margin-bottom: 28px; }
.story-body {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(245,240,232,0.92);
  margin-bottom: 18px;
}
.story-signoff {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: rgba(245,240,232,0.45);
  margin-top: 36px;
}

/* ─── 05 PROCESS ──────────────────────────────────────────── */
.section-process {
  background-color: var(--dark-olive);
  background-image: url('../images/hero-painting.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 80px;
}
.section-process > * { position: relative; z-index: 1; }
.section-process .eyebrow { color: var(--periwinkle); }

.process-header { margin-bottom: 48px; }
.process-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid rgba(245,240,232,0.15);
}
.process-card {
  background: rgba(245,240,232,0.06);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 52px 44px;
  border-right: 1px solid rgba(245,240,232,0.12);
  transition: background 0.4s;
}
.process-card:last-child { border-right: none; }
.process-card:hover { background: rgba(245,240,232,0.11); }
.process-num {
  font-family: var(--font-brand);
  font-weight: 400;
  font-size: 72px;
  letter-spacing: 0.04em;
  color: rgba(245,240,232,0.18);
  display: block;
  margin-bottom: 24px;
  line-height: 1;
}
.process-title {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  color: var(--warm-white);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.process-body {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(245,240,232,0.65);
}

/* ─── 06 SIZES + NEWSLETTER ───────────────────────────────── */
.section-sizes {
  background-color: var(--dark-olive);
  background-image: url('../images/story-painting.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}
.section-sizes > * { position: relative; z-index: 1; }
.section-sizes .eyebrow { color: var(--periwinkle); }
.section-sizes .section-heading { color: var(--warm-white); }
.section-sizes .sizes-divider { background: rgba(245,240,232,0.2); }
.sizes-left {
  flex: 1;
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sizes-divider {
  width: 1px;
  height: 55%;
  background: var(--sand);
  flex-shrink: 0;
}
.sizes-right {
  flex: 1;
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sizes-table {
  border-collapse: collapse;
  width: 100%;
  max-width: 320px;
  margin: 28px 0;
}
.sizes-table tr { border-bottom: 1px solid rgba(245,240,232,0.2); }
.sizes-table tr:first-child { border-top: 1px solid rgba(245,240,232,0.2); }
.size-label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--warm-white);
  padding: 18px 0;
}
.size-price {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--warm-white);
  text-align: right;
  padding: 18px 0;
}
.size-currency {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(245,240,232,0.5);
  margin-left: 3px;
}
.sizes-note {
  font-size: 13px;
  letter-spacing: 0.02em;
  color: rgba(245,240,232,0.6);
  line-height: 1.7;
}
.newsletter-body {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(245,240,232,0.82);
  margin: 20px 0 28px;
}
.newsletter-form {
  display: flex;
  border: 1px solid rgba(245,240,232,0.3);
  max-width: 360px;
}
.newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  color: var(--warm-white);
  outline: none;
  min-width: 0;
}
.newsletter-input::placeholder { color: rgba(245,240,232,0.35); }
.newsletter-btn {
  background: var(--dark-olive);
  border: none;
  padding: 14px 22px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm-white);
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
}
.newsletter-btn:hover { background: var(--periwinkle); }

/* ─── 07 FOOTER ───────────────────────────────────────────── */
.section-footer {
  background: var(--dark-olive);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.footer-studio {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.35);
  margin-bottom: 4px;
}
.footer-askew {
  font-family: var(--font-brand);
  font-size: 52px;
  color: var(--warm-white);
  line-height: 1;
}
.footer-tagline {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.28);
}
.footer-links {
  display: flex;
  gap: 28px;
  margin-top: 4px;
}
.footer-link {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
  transition: color 0.3s;
  cursor: pointer;
}
.footer-link:hover { color: var(--warm-white); }
.footer-insta {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--periwinkle);
  transition: color 0.3s;
}
.footer-insta:hover { color: var(--sky-blue); }
.footer-domain {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(245,240,232,0.18);
}

/* ─── INNER PAGES (shop, print, story, etc.) ──────────────── */
/* Shared nav for inner pages */
.page-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 72px;
  background: rgba(26,25,16,0.88) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border-bottom: 1px solid rgba(245,240,232,0.08) !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(240,234,224,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(74,69,48,0.08);
}
.page-nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.page-nav-studio {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 8px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.45);
  margin-bottom: 1px;
}
.page-nav-askew {
  font-family: var(--font-brand);
  font-size: 26px;
  color: var(--warm-white);
  line-height: 1;
}
.page-nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.page-nav-links a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.45);
  transition: color 0.3s;
  cursor: pointer;
}
.page-nav-links a:hover,
.page-nav-links a.active { color: var(--warm-white); }

/* Page scaffold */
.page-wrap {
  padding-top: 72px;
  background-color: #1a1910;
  background-image: url('../images/hero-painting.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
}
.page-wrap::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(20,19,12,0.82);
  z-index: 0;
  pointer-events: none;
}
.page-wrap > * { position: relative; z-index: 1; }
.page-hero-inner {
  padding: 80px 80px 60px;
  background: transparent;
  border-bottom: 1px solid rgba(245,240,232,0.1);
}
.page-label {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--periwinkle);
  margin-bottom: 16px;
}
.page-heading {
  font-family: var(--font-brand);
  font-size: clamp(32px, 4vw, 52px);
  color: var(--warm-white);
  letter-spacing: 0.01em;
  line-height: 1.1;
  max-width: 680px;
}

/* Shop grid */
.shop-filters {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 40px 80px 32px;
}
.filter-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.35);
}
.filter-btn {
  background: none;
  border: 1px solid rgba(245,240,232,0.2);
  padding: 8px 20px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.55);
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.filter-btn:hover,
.filter-btn.active {
  background: rgba(245,240,232,0.1);
  color: var(--warm-white);
  border-color: rgba(245,240,232,0.5);
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  padding: 2px 0 0;
}
.shop-card {
  cursor: pointer;
  display: block;
  color: inherit;
  position: relative;
  overflow: hidden;
}
.shop-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 0;
  background: #1a1910;
}
.shop-card-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 1.1s cubic-bezier(0.16,1,0.3,1), opacity 0.4s ease;
}
.shop-card:hover .shop-card-img img { transform: scale(1.06); }
.shop-card-info {
  padding: 20px 24px 28px;
  background: rgba(20,19,12,0.6);
  backdrop-filter: blur(4px);
  border-top: 1px solid rgba(245,240,232,0.08);
  transition: background 0.4s;
}
.shop-card:hover .shop-card-info { background: rgba(20,19,12,0.8); }
.shop-card-title {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--warm-white);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.shop-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.shop-card-artist {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
}
.shop-card-price {
  font-size: 12px;
  color: rgba(245,240,232,0.6);
}

/* Print detail page — layout is handled by print.html inline styles */
.print-detail { display: block; }
.print-detail-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--sand);
}
.print-detail-title {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(24px, 3vw, 36px);
  color: var(--dark-olive);
  margin-bottom: 8px;
  line-height: 1.2;
}
.print-detail-artist {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--periwinkle);
  margin-bottom: 28px;
}
.print-detail-desc {
  font-size: 13px;
  line-height: 2.1;
  color: rgba(74,69,48,0.7);
  margin-bottom: 36px;
}
.print-sizes-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(74,69,48,0.45);
  margin-bottom: 16px;
}
.print-sizes-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 8px;
  margin-bottom: 32px;
}
.size-option {
  border: 1px solid var(--sand);
  padding: 14px 8px;
  text-align: center;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s;
  background: none;
  font-family: var(--font-body);
}
.size-option:hover,
.size-option.selected {
  background: var(--dark-olive);
  border-color: var(--dark-olive);
  color: var(--warm-white);
}
.size-option-label {
  display: block;
  font-weight: 400;
  font-size: 16px;
  color: inherit;
}
.size-option-price {
  display: block;
  font-size: 11px;
  color: inherit;
  opacity: 0.65;
  margin-top: 4px;
}
.btn-buy {
  display: block;
  width: 100%;
  background: var(--dark-olive);
  color: var(--warm-white);
  border: none;
  padding: 18px 32px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
  text-align: center;
}
.btn-buy:hover { background: var(--periwinkle); }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .section-process { padding: 48px; }
  .process-cards { grid-template-columns: 1fr; }
  .process-card { border-right: none; border-bottom: 1px solid rgba(245,240,232,0.12); padding: 36px 32px; }
  .process-card:last-child { border-bottom: none; }

  .section-story { grid-template-columns: 1fr; }
  .story-photo { display: none; }
  .story-content { padding: 48px 40px; max-width: 640px; }

  .shop-grid { grid-template-columns: 1fr 1fr; padding: 40px 40px 80px; }
}

@media (max-width: 768px) {
  /* iOS: background-attachment fixed not supported */
  .section-hero,
  .section-about { background-attachment: scroll; }

  /* Sections can be taller than 100vh on small phones — allow scrolling within */
  .snap-section { height: auto; min-height: 100vh; }

  .site-nav { top: 16px; left: 16px; }
  .nav-studio { font-size: 9px; }
  .nav-askew  { font-size: 26px; }

  .bottom-nav { gap: 0; bottom: 16px; padding: 0 8px; }
  .bottom-nav-link { padding: 12px 10px; } /* keeps 44px touch target */

  /* Hero */
  .hero-askew { font-size: clamp(56px, 14vw, 90px); }

  /* About */
  .about-split { grid-template-columns: 1fr; }
  .about-left { padding: 64px 32px 32px; border-right: none; border-bottom: 1px solid rgba(245,240,232,0.12); height: auto; }
  .about-right { padding: 32px 32px 64px; }
  .about-headline { font-size: clamp(36px, 9vw, 52px); }
  .about-body { font-size: 14px; }

  /* Collection */
  .collection-header { padding: 20px 24px 12px; }
  .collection-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }

  /* Story */
  .story-content { padding: 48px 24px; }
  .story-body { font-size: 14px; }

  /* Process */
  .section-process { padding: 48px 24px; }
  .process-body { font-size: 14px; }

  /* Sizes */
  .section-sizes { flex-direction: column; }
  .sizes-left, .sizes-right { padding: 48px 24px; width: 100%; }
  .sizes-divider { width: 50%; height: 1px; }
  .newsletter-body { font-size: 14px; }
  .newsletter-form { max-width: 100%; }

  /* Footer */
  .footer-askew { font-size: 42px; }

  /* Inner pages */
  .page-nav { padding: 0 20px; }
  .page-nav-links { gap: 16px; }
  .page-hero-inner { padding: 56px 24px 40px; }
  .shop-filters { padding: 32px 24px 0; }
  .shop-grid { padding: 32px 24px 64px; grid-template-columns: 1fr 1fr; }

  /* Shop card text */
  .shop-card-title { font-size: 14px; }
  .shop-card-artist,
  .shop-card-price { font-size: 11px; }
}

@media (max-width: 480px) {
  .snap-section { min-height: 100svh; } /* use svh on small phones (excludes browser chrome) */

  .collection-grid { grid-template-columns: 1fr; grid-template-rows: repeat(4, 40vw); }
  .shop-grid { grid-template-columns: 1fr; }
  .print-sizes-grid { grid-template-columns: repeat(2,1fr); }
  .sizes-left, .sizes-right { padding: 36px 20px; }
  .bottom-nav-sep { display: none; }

  .process-cards { gap: 10px; }
  .process-card { padding: 24px 20px; }
}
