/* =========================================================================
   MAMAQUILLA — Slow, relational textile brand
   Stylesheet rooted in earth, breath, and craft.
   ========================================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Palette — from the Brand Identity Manual */
  --c-terracotta: #a0522d;
  --c-terracotta-dark: #7a3e22;
  --c-terracotta-light: #c47a51;
  --c-purple: #7c408c;
  --c-green: #4e6e1b;
  --c-cream: #faf0e6;
  --c-cream-deep: #f1e2cf;
  --c-sand: #e9d8bf;
  --c-ink: #2a2826;
  --c-ink-soft: #4a4641;
  --c-line: rgba(42, 40, 38, 0.12);

  /* Surfaces */
  --surface: var(--c-cream);
  --surface-2: #f5e6d3;
  --on-surface: var(--c-ink);
  --on-dark: var(--c-cream);

  /* Type */
  --ff-serif: "Cormorant Garamond", "Adobe Garamond", "Garamond", Georgia, "Times New Roman", serif;
  --ff-sans: "Inter", "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --ff-script: "Italianno", "Great Vibes", "Cormorant Garamond", cursive;

  /* Scale (fluid) */
  --fs-display: clamp(3rem, 7vw + 1rem, 7.5rem);
  --fs-h1: clamp(2.3rem, 4.4vw + .5rem, 4.6rem);
  --fs-h2: clamp(1.8rem, 2.6vw + .5rem, 3rem);
  --fs-h3: clamp(1.35rem, 1.4vw + .6rem, 1.85rem);
  --fs-lead: clamp(1.05rem, .35vw + 1rem, 1.25rem);
  --fs-body: 1rem;
  --fs-micro: 0.78rem;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.75rem;
  --space-lg: 3rem;
  --space-xl: 5.5rem;
  --space-2xl: 8rem;

  /* Layout */
  --maxw: 1400px;
  --gutter: clamp(1.5rem, 4.5vw, 3.5rem);

  /* Motion */
  --ease: cubic-bezier(.2, .7, .2, 1);
  --dur: .6s;

  /* Other */
  --radius: 2px;
  --shadow-soft: 0 30px 60px -30px rgba(42, 40, 38, .25);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--ff-serif);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--on-surface);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video, svg { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
::selection { background: var(--c-terracotta); color: var(--c-cream); }

/* Subtle grain texture on cream surfaces */
body::before {
  content: "";
  position: fixed; inset: 0;
  background-image:
    radial-gradient(rgba(160, 82, 45, .035) 1px, transparent 1px);
  background-size: 3px 3px;
  pointer-events: none;
  z-index: 1;
  opacity: .6;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--ff-serif);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.005em;
}
.display { font-size: var(--fs-display); line-height: 1.02; letter-spacing: -0.02em; font-weight: 300; }
h1 { font-size: var(--fs-h1); font-weight: 300; }
h2 { font-size: var(--fs-h2); font-weight: 300; }
h3 { font-size: var(--fs-h3); font-weight: 400; }
p { max-width: 62ch; }
em, i { font-style: italic; color: var(--c-terracotta-dark); }

.eyebrow {
  font-family: var(--ff-sans);
  font-size: var(--fs-micro);
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--c-terracotta);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: .85rem;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 1.6rem; height: 1px;
  background: currentColor;
  opacity: .7;
}
.eyebrow.centered { justify-content: center; }
.eyebrow.no-line::before { display: none; }

/* Delicate ornamental divider (4-pointed bullet) */
.ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem;
  color: var(--c-terracotta);
  margin: 2rem auto;
}
.ornament::before, .ornament::after {
  content: ""; display: block;
  width: clamp(2rem, 8vw, 5rem); height: 1px;
  background: currentColor;
  opacity: .35;
}
.ornament .glyph {
  width: 6px; height: 6px;
  border: 1px solid currentColor;
  background: transparent;
  transform: rotate(45deg);
  display: inline-block;
  flex-shrink: 0;
  /* Hide any text inside (in case browser shows tofu for ◇) */
  font-size: 0;
  color: transparent;
}
.ornament-thin::before, .ornament-thin::after { width: clamp(1.4rem, 5vw, 3rem); }

.lead {
  font-family: var(--ff-serif);
  font-size: var(--fs-lead);
  line-height: 1.6;
  color: var(--c-ink-soft);
  max-width: 60ch;
}

.script {
  font-family: var(--ff-script);
  font-style: italic;
  color: var(--c-terracotta);
  font-weight: 400;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}
.section { padding: var(--space-2xl) 0; position: relative; }
.section--sm { padding: var(--space-xl) 0; }
.section--alt { background: var(--c-cream-deep); }
.section--dark { background: var(--c-ink); color: var(--on-dark); }
.section--terracotta { background: var(--c-terracotta); color: var(--c-cream); }
.section--divider { border-top: 1px solid var(--c-line); }
.section--divider-bottom { border-bottom: 1px solid var(--c-line); }

/* Scale section header text 2x (eyebrow, h2, link).
   Used on Section 5 "Featured collection" — bigger editorial presence. */
.section--text-2x .eyebrow {
  font-size: clamp(.95rem, .35vw + .85rem, 1.25rem);
  letter-spacing: .32em;
}
.section--text-2x h2 {
  font-size: clamp(3.6rem, 5.2vw + 1rem, 6rem);
  line-height: 1.05;
  letter-spacing: -0.018em;
}
.section--text-2x .link {
  font-size: clamp(.95rem, .3vw + .85rem, 1.2rem);
  letter-spacing: .22em;
  padding-bottom: .5rem;
}
.section--text-2x .piece-name { font-size: clamp(1.6rem, .8vw + 1.2rem, 2.4rem); }
.section--text-2x .piece-meta { font-size: clamp(.85rem, .25vw + .8rem, 1.05rem); letter-spacing: .24em; }
.section--text-2x .piece-tag { font-size: clamp(.78rem, .18vw + .75rem, .95rem); padding: .6rem 1rem; }

/* ---------- Buttons (Doên-style: thin, refined) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  padding: 1rem 2.2rem;
  font-family: var(--ff-sans);
  font-size: .76rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid currentColor;
  border-radius: 0;
  transition: all .45s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn .arrow {
  display: inline-block;
  transition: transform .45s var(--ease);
  font-weight: 300;
}
.btn:hover .arrow { transform: translateX(.4rem); }
.btn--solid {
  background: var(--c-terracotta);
  color: var(--c-cream);
  border-color: var(--c-terracotta);
}
.btn--solid:hover { background: var(--c-terracotta-dark); border-color: var(--c-terracotta-dark); }
.btn--ghost { background: transparent; }
.btn--ghost:hover { background: var(--c-ink); color: var(--c-cream); border-color: var(--c-ink); }
.btn--cream { background: transparent; color: var(--c-cream); border-color: rgba(250,240,230,.6); }
.btn--cream:hover { background: var(--c-cream); color: var(--c-ink); border-color: var(--c-cream); }

.link {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--ff-sans);
  font-size: .82rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: .35rem;
  transition: gap .3s var(--ease);
}
.link:hover { gap: 1rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 1.5rem 0;
  transition: background .4s var(--ease), padding .4s var(--ease), color .4s var(--ease);
  color: var(--c-cream);
}
.site-header.is-scrolled {
  background: rgba(250, 240, 230, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 1rem 0;
  color: var(--c-ink);
  box-shadow: 0 1px 0 rgba(42,40,38,.08);
}
.site-header.is-light { color: var(--c-ink); } /* on cream pages */

.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
}
.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: var(--ff-serif);
  line-height: 1;
}
.brand-mark {
  width: 200px;
  height: auto;
  transition: transform .6s var(--ease), width .4s var(--ease), opacity .4s var(--ease);
  flex-shrink: 0;
  display: block;
}
/* Two stacked SVGs: cream for dark bg, terracotta for cream bg */
.brand-mark--dark { display: none; } /* terracotta wordmark — shown when header is scrolled */
.site-header.is-scrolled .brand-mark--light { display: none; }
.site-header.is-scrolled .brand-mark--dark { display: block; width: 175px; }
.site-header.is-light .brand-mark--light { display: none; }
.site-header.is-light .brand-mark--dark { display: block; }
.footer-brand .brand-mark { width: 360px; max-width: 100%; }
.brand:hover .brand-mark { transform: scale(1.02); }
.brand-wordmark { display: none; } /* hidden — using SVG wordmark instead */

.nav-list {
  display: flex;
  gap: 2.5rem;
  font-family: var(--ff-sans);
  font-size: .74rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-list a { position: relative; padding: .35rem 0; }
.nav-list a::after {
  content: ""; position: absolute;
  left: 0; right: 100%; bottom: -2px;
  height: 1px; background: currentColor;
  transition: right .5s var(--ease);
  opacity: .8;
}

/* ---------- Nav submenu (hover + focus accessible) ---------- */
.nav-list .has-submenu {
  position: relative;
}
.nav-list .has-submenu > a {
  display: inline-flex;
  align-items: center;
  gap: .35em;
}
.submenu-caret {
  font-size: .55em;
  line-height: 1;
  display: inline-block;
  transform: translateY(.05em);
  transition: transform .35s var(--ease);
}
.has-submenu:hover .submenu-caret,
.has-submenu:focus-within .submenu-caret { transform: translateY(.05em) rotate(180deg); }

.submenu {
  position: absolute;
  top: calc(100% + .6rem);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 220px;
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  padding: .65rem 0;
  display: grid;
  gap: 0;
  font-family: var(--ff-sans);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility 0s linear .35s;
  visibility: hidden;
  z-index: 60;
  box-shadow: 0 24px 48px -28px rgba(42, 40, 38, 0.25);
}
.submenu::before {
  /* invisible bridge so the cursor can travel into the submenu without losing hover */
  content: "";
  position: absolute;
  top: -.6rem;
  left: 0; right: 0;
  height: .6rem;
}
.submenu li { list-style: none; }
.submenu a {
  display: block;
  color: var(--c-ink);
  padding: .75rem 1.5rem;
  white-space: nowrap;
  transition: background .25s var(--ease), color .25s var(--ease), padding-left .3s var(--ease);
}
.submenu a::after { display: none; }   /* no underline anim inside submenu */
.submenu a:hover,
.submenu a:focus-visible {
  background: var(--c-cream-deep);
  color: var(--c-terracotta);
  padding-left: 1.75rem;
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility 0s linear 0s;
}

/* ---------- Mobile drawer submenu (always visible, indented) ---------- */
.drawer-submenu {
  margin-top: .8rem;
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 1px solid var(--c-line);
  display: grid;
  gap: .9rem;
}
.drawer-submenu a {
  font-family: var(--ff-sans);
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--c-ink-soft);
  border-bottom: 0 !important;
  padding-bottom: 0;
  display: inline-block;
}
.drawer-submenu a:hover { color: var(--c-terracotta); }
.nav-list a:hover::after,
.nav-list a.is-active::after { right: 0; }

.nav-tools {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  font-family: var(--ff-sans);
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.nav-tools .shop-cta {
  border: 1px solid currentColor;
  padding: .55rem 1.1rem;
  transition: all .3s var(--ease);
}
.nav-tools .shop-cta:hover { background: var(--c-terracotta); border-color: var(--c-terracotta); color: var(--c-cream); }

.nav-toggle {
  display: none;
  width: 32px; height: 32px;
  align-items: center; justify-content: center;
}
.nav-toggle span {
  display: block;
  position: relative;
  width: 22px; height: 1px;
  background: currentColor;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 22px; height: 1px;
  background: currentColor;
  transition: transform .35s var(--ease);
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span::after { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100vh;
  width: min(420px, 92vw);
  background: var(--c-cream);
  color: var(--c-ink);
  transform: translateX(100%);
  transition: transform .55s var(--ease);
  z-index: 60;
  padding: 6rem 2.5rem 2.5rem;
  overflow-y: auto;
}
.nav-drawer.is-open { transform: translateX(0); }
.nav-drawer ul { display: grid; gap: 1.25rem; font-family: var(--ff-serif); font-size: 2rem; }
.nav-drawer ul a { padding-bottom: .2rem; border-bottom: 1px solid var(--c-line); display: inline-block; }
.nav-drawer .drawer-meta {
  margin-top: 2rem;
  font-family: var(--ff-sans);
  font-size: .8rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--c-ink-soft);
  display: grid; gap: .8rem;
}

.scrim {
  position: fixed; inset: 0;
  background: rgba(42, 40, 38, .45);
  opacity: 0; pointer-events: none;
  transition: opacity .4s var(--ease);
  z-index: 55;
}
.scrim.is-on { opacity: 1; pointer-events: auto; }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--c-ink);
  color: var(--c-cream);
  font-family: var(--ff-sans);
  font-size: .68rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  text-align: center;
  padding: .65rem 1rem;
  position: relative; z-index: 51;
  font-weight: 500;
}
.announce span { opacity: .85; }
.announce a { color: var(--c-terracotta-light); margin-left: .6rem; border-bottom: 1px solid currentColor; padding-bottom: 1px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  color: var(--c-cream);
  isolation: isolate;
  padding: 9rem 0 5rem;
}
.hero-media {
  position: absolute; inset: 0;
  z-index: -1;
  overflow: hidden;
}
.hero-media video, .hero-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  /* ~50% black veil for stronger contrast with the headline + buttons.
     Slightly heavier at the very top (under nav) and bottom (under CTAs)
     for depth without losing the video underneath. */
  background:
    linear-gradient(180deg, rgba(20,18,16,.58) 0%, rgba(20,18,16,.48) 40%, rgba(20,18,16,.52) 70%, rgba(20,18,16,.72) 100%);
}
.hero-content {
  max-width: 960px;
  text-align: left;
}
.hero-statement,
.hero-subline { text-align: left; }
.hero-content .eyebrow { color: rgba(250,240,230,.85); }
.hero-content .eyebrow::before { background: rgba(250,240,230,.7); }
.hero h1 {
  font-size: var(--fs-display);
  letter-spacing: -0.025em;
  margin: 1.5rem 0 1.25rem;
  font-weight: 300;
}
.hero h1 .accent {
  font-style: italic;
  color: var(--c-cream);
  display: inline-block;
}

/* Manifesto-style hero (typography only, no CTAs) */
.hero-statement {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 4.5vw + 1rem, 5.4rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--c-cream);
  margin: 0;
  max-width: 22ch;
}
.hero-subline {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-size: clamp(1.15rem, .7vw + 1rem, 1.55rem);
  line-height: 1.65;
  letter-spacing: 0;
  color: rgba(250, 240, 230, 0.85);
  margin: 2.8rem 0 0;
  max-width: 46ch;
}
.hero-lead {
  font-size: var(--fs-lead);
  max-width: 56ch;
  color: rgba(250, 240, 230, 0.92);
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  font-family: var(--ff-sans);
  font-size: .7rem; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(250, 240, 230, 0.7);
  display: flex; flex-direction: column; align-items: center; gap: .8rem;
}
.hero-scroll .line {
  width: 1px; height: 38px;
  background: rgba(250, 240, 230, 0.4);
  position: relative; overflow: hidden;
}
.hero-scroll .line::after {
  content: ""; position: absolute;
  left: 0; right: 0; top: -100%;
  height: 50%;
  background: var(--c-cream);
  animation: scroll-line 2.4s var(--ease) infinite;
}
@keyframes scroll-line {
  0% { top: -50%; } 60%, 100% { top: 110%; }
}

/* ---------- Marquee (running tagline) ---------- */
.marquee {
  background: var(--c-cream-deep);
  border-block: 1px solid var(--c-line);
  overflow: hidden;
  padding: 1.5rem 0;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 38s linear infinite;
  white-space: nowrap;
  font-family: var(--ff-serif);
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  font-style: italic;
  color: var(--c-terracotta-dark);
}
.marquee-track span { display: inline-flex; align-items: center; gap: 3rem; }
.marquee-track .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-terracotta);
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Manifesto ---------- */
.manifesto {
  text-align: center;
  padding: var(--space-2xl) 0;
}
.manifesto-text {
  font-family: var(--ff-serif);
  font-size: clamp(1.6rem, 2.4vw + .6rem, 2.6rem);
  line-height: 1.4;
  max-width: 28ch;
  margin: 2rem auto;
  font-weight: 300;
}
.manifesto-text em { color: var(--c-terracotta); font-style: italic; }

/* ---------- What is MamaQuilla (homepage section 2) ---------- */
.what-is {
  text-align: center;
  background: var(--c-cream); /* warm-white */
  padding: calc(var(--space-2xl) + 1.5rem) 0;
}
.what-is-logo {
  display: block;
  margin: 0 auto 1.5rem;
  width: clamp(140px, 16vw, 180px);
  height: auto;
}
.what-is .eyebrow {
  color: var(--c-terracotta);
  letter-spacing: .34em;
  font-size: .78rem;
  opacity: .9;
}
.what-is-body {
  margin: 2.5rem auto 0;
  max-width: 58ch;
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: clamp(1.1rem, .55vw + 1rem, 1.35rem);
  line-height: 1.75;
  color: var(--c-ink);
}
.what-is-body p { max-width: none; margin: 0 auto; }
.what-is-body p + p { margin-top: 1.5rem; }

.what-is-mantra {
  margin: 4.5rem auto 0;
  max-width: 38ch;
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 1.4vw + 1rem, 2.2rem);
  line-height: 1.4;
  color: var(--c-terracotta);
  letter-spacing: -.005em;
  position: relative;
}
/* delicate hairline above the mantra to set it apart */
.what-is-mantra::before {
  content: "";
  display: block;
  width: 48px; height: 1px;
  background: currentColor;
  opacity: .45;
  margin: 0 auto 2rem;
}

/* ---------- The Collections (homepage 2x2 grid) ---------- */
.collections-section {
  background: var(--c-cream-deep);
  padding: calc(var(--space-2xl) + 1rem) 0;
}
.collections-header {
  text-align: center;
  margin: 0 auto 4.5rem;
  max-width: 720px;
}
.collections-header .eyebrow {
  color: var(--c-terracotta);
  letter-spacing: .34em;
  margin-bottom: 1.75rem;
}
.collections-intro {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: clamp(1.1rem, .45vw + 1rem, 1.3rem);
  line-height: 1.7;
  color: var(--c-ink-soft);
  max-width: 56ch;
  margin: 0 auto;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2.5rem, 4vw, 4.5rem);
}

.collection-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.collection-card-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--c-sand);
  border: 1px solid var(--c-line);
  margin: 0;
}
.collection-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.8s var(--ease), filter .7s var(--ease);
}
.collection-card-img::after {
  /* gentle, slow-fading darkening veil on hover */
  content: ""; position: absolute; inset: 0;
  background: rgba(20, 18, 16, 0);
  transition: background .7s var(--ease);
  pointer-events: none;
}
.collection-card:hover .collection-card-img img {
  transform: scale(1.025);
  filter: brightness(.94);
}
.collection-card:hover .collection-card-img::after {
  background: rgba(20, 18, 16, 0.08);
}

.collection-card-body {
  padding-top: 1.75rem;
}
.collection-card-name {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(2.4rem, 2.6vw + 1rem, 3.8rem);
  line-height: 1.02;
  color: var(--c-ink);
  letter-spacing: -.015em;
  margin: 0 0 .65rem;
  transition: color .55s var(--ease);
}
.collection-card:hover .collection-card-name { color: var(--c-terracotta); }
.collection-card-region {
  font-family: var(--ff-sans);
  font-size: .76rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--c-terracotta);
  margin: 0 0 1.1rem;
  font-weight: 500;
}
.collection-card-desc {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--c-ink-soft);
  margin: 0 0 1.5rem;
  max-width: 48ch;
}
.collection-card-cta {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--ff-sans);
  font-size: .76rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--c-ink);
  border-bottom: 1px solid currentColor;
  padding-bottom: .3rem;
  transition: gap .35s var(--ease), color .3s var(--ease);
}
.collection-card-cta .arrow { transition: transform .35s var(--ease); }
.collection-card:hover .collection-card-cta { gap: 1rem; color: var(--c-terracotta); }
.collection-card:hover .collection-card-cta .arrow { transform: translateX(.3rem); }

@media (max-width: 720px) {
  .collections-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .collections-header { margin-bottom: 3rem; }
}

/* ---------- Archive note (a quiet line, not a section) ---------- */
.archive-note {
  background: var(--c-cream-deep); /* same warm tone as collections — no visual break */
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
}
.archive-note .container {
  display: flex;
  justify-content: center;
}
.archive-note p {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2rem, .8vw + 1.9rem, 2.4rem);
  line-height: 1.5;
  color: var(--c-ink-soft);
  text-align: center;
  max-width: 32ch;
  margin: 0;
  padding: 2.5rem 2rem;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  letter-spacing: -.005em;
}
.archive-note em {
  color: var(--c-terracotta);
  font-style: italic;
  font-weight: 400;
}

/* ---------- Made by named hands (artisans preview) ---------- */
.made-by-hands {
  background: var(--c-cream); /* warm white — let photos breathe */
  padding: calc(var(--space-2xl) + 1rem) 0;
}
.made-by-hands-header {
  text-align: center;
  margin: 0 auto 4.5rem;
  max-width: 760px;
}
.made-by-hands-header .eyebrow {
  color: var(--c-terracotta);
  letter-spacing: .34em;
  margin-bottom: 2rem;
}
.made-by-hands-intro {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: clamp(1.1rem, .5vw + 1rem, 1.3rem);
  line-height: 1.7;
  color: var(--c-ink-soft);
  max-width: 62ch;
  margin: 0 auto;
}

.artisans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 3vw, 3.5rem) clamp(1.5rem, 2.5vw, 2.5rem);
}

.artisan-portrait {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.artisan-portrait-img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--c-sand);
  /* No border — photos breathe on the warm bg */
}
.artisan-portrait-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease), filter .6s var(--ease);
}
.artisan-portrait:hover .artisan-portrait-img img {
  transform: scale(1.025);
  filter: brightness(.96);
}

.artisan-portrait figcaption {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  padding: 0 .25rem;
}
.artisan-name {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.45rem;
  line-height: 1.1;
  color: var(--c-ink);
  letter-spacing: -.005em;
}
.artisan-name--pending {
  color: var(--c-ink-soft);
  opacity: .7;
  font-style: italic;
}
.artisan-place {
  font-family: var(--ff-sans);
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--c-terracotta);
  font-weight: 500;
}

.made-by-hands-cta {
  margin-top: 4.5rem;
  text-align: center;
}

@media (max-width: 980px) {
  .artisans-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem 1.5rem; }
}
@media (max-width: 720px) {
  .artisans-grid {
    /* horizontal scroll on mobile — like the brief mentioned */
    grid-template-columns: repeat(6, 70vw);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: var(--gutter);
    padding-bottom: 1.5rem;
    margin: 0 calc(-1 * var(--gutter));
    padding-left: var(--gutter);
    padding-right: var(--gutter);
    -webkit-overflow-scrolling: touch;
  }
  .artisan-portrait { scroll-snap-align: start; }
  .made-by-hands-header { margin-bottom: 3rem; }
}

/* ---------- The Founder (homepage section 6) ---------- */
.founder-section {
  background: var(--c-cream-deep);
  padding: calc(var(--space-2xl) + 1rem) 0;
}
.founder-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6.5rem);
  align-items: center;
}
.founder-media {
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--c-sand);
}
.founder-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.8s var(--ease);
}
.founder-media:hover img { transform: scale(1.025); }

.founder-text .eyebrow {
  color: var(--c-terracotta);
  letter-spacing: .34em;
}
.founder-title {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2.2rem, 3vw + .8rem, 3.6rem);
  line-height: 1.1;
  letter-spacing: -.015em;
  color: var(--c-ink);
  margin: 1.5rem 0 2rem;
  max-width: 18ch;
}
.founder-text p {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: clamp(1.05rem, .35vw + 1rem, 1.2rem);
  line-height: 1.75;
  color: var(--c-ink-soft);
  margin-bottom: 1.5rem;
  max-width: 56ch;
}
.founder-link {
  margin-top: 1rem;
  display: inline-flex;
}

@media (max-width: 720px) {
  .founder-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .founder-media { aspect-ratio: 4 / 5; }
}

/* ---------- Ixchel · social impact (homepage section 7) ---------- */
:root {
  /* Soft sage derived from the brand's forest green, dialed down for surface use */
  --c-sage: #5a6f3c;
  --c-sage-dark: #3f5128;
}
.ixchel-section {
  background:
    radial-gradient(120% 80% at 50% 0%, #6a7e4d 0%, var(--c-sage) 55%, var(--c-sage-dark) 100%);
  color: var(--c-cream);
  padding: calc(var(--space-2xl) + 1.5rem) 0;
  text-align: center;
  position: relative;
  isolation: isolate;
}
/* subtle grain on the sage band to keep it warm and tactile */
.ixchel-section::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(250,240,230,.05) 1px, transparent 1px);
  background-size: 4px 4px;
  pointer-events: none;
  opacity: .5;
  z-index: 0;
}
.ixchel-section .container { position: relative; z-index: 1; }
.ixchel-content {
  max-width: 680px;
  margin: 0 auto;
}
.ixchel-section .eyebrow {
  color: rgba(250,240,230,.92);
  letter-spacing: .42em;
  font-size: .8rem;
}
.ixchel-section .eyebrow::before { background: rgba(250,240,230,.6); }

.ixchel-title {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2rem, 2.4vw + 1rem, 3.2rem);
  line-height: 1.2;
  letter-spacing: -.01em;
  color: var(--c-cream);
  margin: 2rem auto 2.25rem;
  max-width: 18ch;
}
.ixchel-body {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: clamp(1.08rem, .45vw + 1rem, 1.3rem);
  line-height: 1.75;
  color: rgba(250,240,230,.88);
  max-width: 60ch;
  margin: 0 auto 2.5rem;
}
.ixchel-link {
  color: var(--c-cream);
  border-bottom-color: rgba(250,240,230,.7);
}
.ixchel-link:hover { border-bottom-color: var(--c-cream); }

/* ---------- Journal preview (section 8 — hidden at launch) ---------- */
.journal-preview-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.journal-preview-header .eyebrow {
  color: var(--c-terracotta);
  letter-spacing: .34em;
  font-size: .82rem;
}

/* Utility: hide a section completely (including from accessibility tree) */
.is-hidden { display: none !important; }

/* ========================================================================
   About Us page — three movements, one page
   ======================================================================== */

/* Page header — bigger title, italic tagline */
.about-page-header { min-height: 64vh; }
.about-title {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(3rem, 6vw + 1rem, 6.5rem);
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--c-cream);
  margin: 0;
  max-width: none;
}
.about-tagline {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.15rem, .55vw + 1rem, 1.55rem);
  line-height: 1.6;
  color: rgba(250, 240, 230, 0.88);
  margin-top: 1.75rem;
  max-width: 52ch;
}

/* Sticky shortcut menu */
.about-shortcuts {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(250, 240, 230, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  padding: 1.1rem 0;
}
.about-shortcuts-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.about-shortcut {
  font-family: var(--ff-sans);
  font-size: .76rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--c-ink);
  padding: .35rem 0;
  border-bottom: 1px solid transparent;
  transition: border-color .35s var(--ease), color .3s var(--ease);
}
.about-shortcut:hover,
.about-shortcut.is-active {
  border-bottom-color: var(--c-terracotta);
  color: var(--c-terracotta);
}
.about-shortcuts-sep {
  color: var(--c-line);
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  line-height: 1;
}

/* Part wrapper */
.about-part { padding: var(--space-2xl) 0; scroll-margin-top: 80px; }
.about-part-header {
  text-align: left;
  max-width: 760px;
  margin: 0 auto 3rem;
}
.about-part-eyebrow {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: .72rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--c-terracotta);
  margin-bottom: 1rem;
}
.about-part-title {
  font-family: var(--ff-serif);
  font-weight: 700;          /* large + bold — each part is a movement */
  font-style: normal;
  font-size: clamp(2.6rem, 4vw + 1rem, 4.6rem);
  line-height: 1.05;
  letter-spacing: -.025em;
  color: var(--c-ink);
  margin: 0;
}

/* Long-form reading column */
.about-prose {
  max-width: 70ch;
  margin: 0 auto;
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: 1.2rem;          /* ~19px */
  line-height: 1.7;
  color: var(--c-ink);
}
.about-prose p { max-width: none; margin: 0 0 1.5rem; }
.about-prose p em { color: var(--c-terracotta); }

.about-mantra-line {
  text-align: center;
  margin: 2.5rem 0 !important;
  font-size: 1.4rem;
  color: var(--c-terracotta) !important;
}
.about-mantra-line em {
  color: inherit !important;
  font-style: italic;
}

/* Sub-titles (italic, distinguishable from part titles but still serif) */
.about-subtitle {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.5rem, 1vw + 1rem, 2.1rem);
  line-height: 1.25;
  color: var(--c-ink);
  margin: 3rem 0 1.25rem;
  letter-spacing: -.005em;
}

/* Figures — wider than the prose, breathing room above and below */
.about-figure {
  margin: 3.5rem -2rem;   /* slight outward bleed on desktop */
  background: var(--c-sand);
}
.about-figure img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.about-figure--narrow { margin: 2rem auto; max-width: 56ch; }
.about-figure--narrow img { aspect-ratio: 3 / 4; }

/* Founder part — first-person, slightly different tone via background */
.about-part--founder { background: var(--c-cream-deep); }

/* Cat-Vi instagram link line */
.about-cat-link {
  margin-top: 2.5rem !important;
  font-family: var(--ff-sans);
  font-size: .82rem !important;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.6 !important;
}
.about-cat-link a {
  color: var(--c-terracotta);
  border-bottom: 1px solid currentColor;
  padding-bottom: .25rem;
  display: inline-flex;
  gap: .6rem;
  align-items: center;
}
.about-cat-link .arrow { transition: transform .35s var(--ease); }
.about-cat-link a:hover .arrow { transform: translateX(.35rem); }

/* Out-links at the end of Part 3 */
.about-outlinks {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  margin: 3rem 0 !important;
  font-family: var(--ff-sans);
  font-size: .78rem !important;
  letter-spacing: .26em;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1 !important;
}
.about-outlink {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: var(--c-ink);
  border-bottom: 1px solid currentColor;
  padding-bottom: .35rem;
  transition: gap .3s var(--ease), color .3s var(--ease);
}
.about-outlink:hover { gap: 1rem; color: var(--c-terracotta); }

/* Back-to-top */
.about-back-top {
  margin-top: 3.5rem !important;
  text-align: center;
  font-family: var(--ff-sans);
  font-size: .72rem !important;
  letter-spacing: .32em;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1 !important;
}
.about-back-top a {
  color: var(--c-ink-soft);
  padding: .35rem .25rem;
  border-bottom: 1px solid transparent;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.about-back-top a:hover {
  color: var(--c-terracotta);
  border-bottom-color: currentColor;
}

@media (max-width: 720px) {
  .about-shortcuts-inner { gap: .75rem 1rem; }
  .about-shortcut { font-size: .7rem; letter-spacing: .22em; }
  .about-shortcuts-sep { display: none; }
  .about-prose { font-size: 1.1rem; }
  .about-figure { margin: 2.5rem 0; }
  .about-outlinks { flex-direction: column; gap: 1.25rem; }
}

/* visually-hidden — for screen-reader-only labels */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Stay close · email sign-up (section 9) ---------- */
.stay-close {
  /* warm, earthy band — slight gradient to give depth without busyness */
  background:
    radial-gradient(120% 80% at 50% 0%, #b06036 0%, var(--c-terracotta) 55%, var(--c-terracotta-dark) 100%);
  color: var(--c-cream);
  padding: calc(var(--space-2xl) + 1rem) 0;
  text-align: center;
  position: relative;
  isolation: isolate;
}
.stay-close::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(250,240,230,.06) 1px, transparent 1px);
  background-size: 4px 4px;
  pointer-events: none;
  opacity: .55;
  z-index: 0;
}
.stay-close .container { position: relative; z-index: 1; }
.stay-close-content { max-width: 620px; margin: 0 auto; }

.stay-close-title {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2.4rem, 3vw + 1rem, 4rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--c-cream);
  margin: 0 0 1.75rem;
}
.stay-close-body {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: clamp(1.05rem, .4vw + 1rem, 1.25rem);
  line-height: 1.7;
  color: rgba(250,240,230,.92);
  max-width: 52ch;
  margin: 0 auto 2.5rem;
}

.stay-close-form {
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  gap: 1rem;
  max-width: 560px;
  margin: 0 auto;
}
.stay-close-field input {
  width: 100%;
  padding: 1rem 1.1rem;
  background: rgba(250, 240, 230, 0.08);
  border: 1px solid rgba(250, 240, 230, 0.35);
  color: var(--c-cream);
  font-family: var(--ff-serif);
  font-size: 1.02rem;
  outline: none;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.stay-close-field input::placeholder {
  color: rgba(250, 240, 230, 0.62);
  font-style: italic;
}
.stay-close-field input:focus {
  border-color: var(--c-cream);
  background: rgba(250, 240, 230, 0.14);
}
.stay-close-btn {
  padding: 1rem 2rem;
  font-family: var(--ff-sans);
  font-size: .78rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-weight: 500;
  background: var(--c-cream);
  color: var(--c-terracotta-dark);
  border: 1px solid var(--c-cream);
  cursor: pointer;
  transition: background .35s var(--ease), color .35s var(--ease);
}
.stay-close-btn:hover {
  background: transparent;
  color: var(--c-cream);
}

.stay-close-note {
  margin: 2rem auto 0;
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.05rem;
  color: rgba(250, 240, 230, 0.85);
}
.stay-close-consent {
  margin: 1.25rem auto 0;
  font-family: var(--ff-sans);
  font-size: .72rem;
  line-height: 1.6;
  letter-spacing: .04em;
  color: rgba(250, 240, 230, 0.62);
  max-width: 52ch;
}

@media (max-width: 720px) {
  .stay-close-form { grid-template-columns: 1fr; gap: .85rem; }
  .stay-close-btn { width: 100%; }
}

/* ---------- Editorial split (more generous, Doên-style) ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2.5rem, 6vw, 7rem);
  align-items: center;
}
.split--flip { direction: rtl; }
.split--flip > * { direction: ltr; }
.split-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--c-sand);
  border: 1px solid var(--c-line);
}
.split-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease), opacity .5s var(--ease);
}
.split-media:hover img { transform: scale(1.035); }
.split-media .stamp {
  position: absolute;
  bottom: 1.25rem; left: 1.25rem;
  background: var(--c-cream);
  color: var(--c-ink);
  font-family: var(--ff-sans);
  font-size: .68rem; letter-spacing: .28em; text-transform: uppercase;
  padding: .6rem .9rem;
  border: 1px solid var(--c-line);
}
.split-text h2 { margin-bottom: 1.5rem; }
.split-text p + p { margin-top: 1rem; }
.split-text .lead { margin-bottom: 2rem; }
.split-text .actions { margin-top: 2.5rem; display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- Collection grid (editorial · Doên-inspired) ---------- */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1.5rem, 2.2vw, 2.5rem) clamp(1.25rem, 2vw, 2rem);
}
.piece {
  position: relative;
  isolation: isolate;
  display: block;
}
.piece-img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--c-sand);
  position: relative;
  border: 1px solid var(--c-line);
}
.piece-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease), opacity .55s var(--ease);
}
.piece:hover .piece-img img { transform: scale(1.035); opacity: .96; }
.piece-info {
  padding: 1.5rem 0 0;
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 1rem;
}
.piece-name {
  font-family: var(--ff-serif);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 400;
}
.piece-meta {
  font-family: var(--ff-sans);
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
}
.piece-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--c-cream);
  font-family: var(--ff-sans);
  font-size: .64rem; letter-spacing: .26em; text-transform: uppercase;
  padding: .5rem .8rem;
  z-index: 2;
  border: 1px solid var(--c-line);
  font-weight: 500;
}
.piece-tag.one-of { background: var(--c-cream); color: var(--c-purple); border-color: var(--c-purple); }
.piece-tag.green { background: var(--c-cream); color: var(--c-green); border-color: var(--c-green); }

/* Grid spans */
.piece.span-7 { grid-column: span 7; }
.piece.span-5 { grid-column: span 5; }
.piece.span-6 { grid-column: span 6; }
.piece.span-4 { grid-column: span 4; }
.piece.span-8 { grid-column: span 8; }
.piece.span-12 { grid-column: span 12; }
.piece.tall .piece-img { aspect-ratio: 4 / 5.8; }
.piece.wide .piece-img { aspect-ratio: 4 / 3; }

/* ---------- Values (Doên-style: hairline, airy) ---------- */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.value {
  padding: 3rem 2.5rem;
  background: transparent;
  position: relative;
}
.value + .value::before {
  content: "";
  position: absolute;
  left: 0; top: 2.5rem; bottom: 2.5rem;
  width: 1px;
  background: var(--c-line);
}
.values > .value:nth-child(n+4) { border-top: 1px solid var(--c-line); }
.value-num {
  font-family: var(--ff-sans);
  font-size: .72rem;
  letter-spacing: .3em;
  color: var(--c-terracotta);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.value h3 {
  font-style: italic;
  margin-bottom: 1rem;
  font-size: 1.6rem;
  font-weight: 400;
}
.value p { font-size: 1rem; color: var(--c-ink-soft); line-height: 1.7; }

/* ---------- Artisans card ---------- */
.artisan-card {
  position: relative;
  overflow: hidden;
}
.artisan-card .piece-img { aspect-ratio: 4/5; }
.artisan-card-text {
  padding: 1.5rem 0 0;
}
.artisan-card-text .place {
  font-family: var(--ff-sans);
  font-size: .72rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--c-terracotta);
  margin-bottom: .5rem;
  display: block;
}
.artisan-card-text h3 { font-style: italic; margin-bottom: .5rem; }
.artisan-card-text p { color: var(--c-ink-soft); }

/* ---------- Journal entries ---------- */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.entry {
  display: grid;
  gap: 1.25rem;
}
.entry-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--c-sand);
  border: 1px solid var(--c-line);
}
.entry-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease);
}
.entry:hover .entry-img img { transform: scale(1.035); }
.entry-meta {
  display: flex; gap: 1rem;
  font-family: var(--ff-sans);
  font-size: .7rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--c-ink-soft);
  font-weight: 500;
}
.entry-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--c-terracotta); align-self: center; }
.entry h3 { font-style: italic; font-size: 1.55rem; line-height: 1.25; font-weight: 400; }
.entry p { color: var(--c-ink-soft); font-size: 1.02rem; line-height: 1.7; }

/* ---------- Newsletter ---------- */
.newsletter {
  text-align: center;
  padding: var(--space-2xl) 0;
}
.newsletter h2 { margin-bottom: 1.25rem; }
.newsletter .lead { margin: 0 auto 2.5rem; }
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 540px;
  margin: 0 auto;
  border-bottom: 1px solid currentColor;
}
.newsletter-form input {
  flex: 1;
  padding: 1.1rem .5rem;
  background: transparent;
  border: 0;
  outline: none;
  font-family: var(--ff-serif);
  font-size: 1.1rem;
}
.newsletter-form input::placeholder { color: rgba(42,40,38,.55); font-style: italic; }
.newsletter-form button {
  padding: 1.1rem 1.5rem;
  font-family: var(--ff-sans);
  font-size: .78rem; letter-spacing: .25em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: .5rem;
  transition: gap .3s var(--ease);
}
.newsletter-form button:hover { gap: .9rem; }
.newsletter-fineprint {
  font-family: var(--ff-sans);
  font-size: .75rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--c-ink-soft);
  margin-top: 1.5rem;
}
.newsletter--dark { background: var(--c-ink); color: var(--c-cream); }
.newsletter--dark .lead { color: rgba(250,240,230,.78); }
.newsletter--dark .newsletter-form input { color: var(--c-cream); }
.newsletter--dark .newsletter-form input::placeholder { color: rgba(250,240,230,.55); }
.newsletter--dark .newsletter-fineprint { color: rgba(250,240,230,.55); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--c-ink);
  color: var(--c-cream);
  padding: 6rem 0 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(250, 240, 230, 0.12);
}
.footer-brand .brand-mark { width: 280px; height: auto; max-width: 100%; }
.footer-brand p {
  margin-top: 1.5rem;
  color: rgba(250, 240, 230, 0.7);
  font-size: 1.05rem;
  font-family: var(--ff-serif);
  font-style: italic;
  max-width: 32ch;
}
.footer-col h4 {
  font-family: var(--ff-sans);
  font-size: .7rem; letter-spacing: .32em; text-transform: uppercase;
  color: var(--c-terracotta-light);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.footer-col ul { display: grid; gap: 1rem; }
.footer-col a {
  color: rgba(250, 240, 230, 0.78);
  transition: color .3s var(--ease), padding-left .3s var(--ease);
  font-family: var(--ff-sans);
  font-size: .9rem;
}
.footer-col a:hover { color: var(--c-cream); padding-left: .35rem; }
/* Footer tagline (slogan under the logo) */
.footer-tagline {
  margin-top: 1.5rem !important;
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 1.4;
  color: rgba(250, 240, 230, 0.85);
  max-width: 28ch;
}

/* Quiet note above the bottom line — optional disclosure */
.footer-note {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 300;
  font-size: .95rem;
  line-height: 1.6;
  color: rgba(250, 240, 230, 0.55);
  text-align: center;
  max-width: 64ch;
  margin: 0 auto 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(250, 240, 230, 0.10);
}
.footer-note em {
  color: var(--c-terracotta-light);
  font-style: italic;
}

.footer-bottom {
  display: flex; justify-content: center;
  flex-wrap: wrap; gap: 1rem;
  padding-top: 1rem;
  font-family: var(--ff-sans);
  font-size: .68rem; letter-spacing: .28em; text-transform: uppercase;
  color: rgba(250, 240, 230, 0.5);
  font-weight: 500;
  text-align: center;
}

/* ---------- Page header (interior pages) ---------- */
.page-header {
  padding: 12rem 0 6rem;
  background: var(--c-cream-deep);
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
}
.page-header .container { position: relative; z-index: 2; }
.page-header .eyebrow { color: var(--c-terracotta); }
.page-header h1 {
  font-size: var(--fs-h1);
  margin: 1.25rem 0;
  max-width: 18ch;
}
.page-header .lead { max-width: 60ch; }
.page-header.has-media { color: var(--c-cream); background-color: var(--c-ink); }
/* Layer 1: the photograph (using separate background-* props so the
   var(--bg-img) URL is reliably resolved in all browsers — using it
   inside the `background:` shorthand silently fails in some engines). */
.page-header.has-media::before {
  content: ""; position: absolute; inset: 0;
  background-image: var(--bg-img);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
/* Layer 2: 50% dark veil for font contrast (slightly heavier top + bottom) */
.page-header.has-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(20,18,16,.55) 0%,
    rgba(20,18,16,.50) 50%,
    rgba(20,18,16,.62) 100%);
  z-index: 1;
}
.page-header.has-media .eyebrow { color: var(--c-cream); }
.page-header.has-media .lead { color: rgba(250,240,230,.92); }

/* About Us page header — image as real <img> tag, full opacity, with a
   dark ~50% veil over it (matching the home hero). Text in cream for
   strong contrast against the image. */
.about-page-header--with-img {
  background: var(--c-ink);
  color: var(--c-cream);
  position: relative;
  overflow: hidden;
}
.about-page-header-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  z-index: 0;
  pointer-events: none;
}
.about-page-header-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(20,18,16,.58) 0%,
    rgba(20,18,16,.48) 40%,
    rgba(20,18,16,.52) 70%,
    rgba(20,18,16,.72) 100%);
  z-index: 1;
  pointer-events: none;
}
.about-page-header--with-img .container {
  position: relative;
  z-index: 2;
}
.about-page-header--with-img .about-title { color: var(--c-cream); }
.about-page-header--with-img .about-tagline { color: rgba(250, 240, 230, 0.9); }

/* ========================================================================
   The Collections page — intro band + 4 large cards + 2 notes
   ======================================================================== */

/* Section 1 — calm intro on warm cream, centered title + flowing prose */
.collection-intro {
  background: var(--c-cream);
  padding: var(--space-2xl) 0 calc(var(--space-2xl) - 1rem);
}
.collection-intro-content {
  max-width: 76ch;
  margin: 0 auto;
  text-align: center;
}
.collection-intro-content .eyebrow {
  color: var(--c-terracotta);
  letter-spacing: .34em;
}
.collection-intro-title {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2.2rem, 3vw + 1rem, 3.8rem);
  line-height: 1.1;
  letter-spacing: -.015em;
  color: var(--c-ink);
  margin: 0 auto 3rem;
  max-width: 22ch;
}
.collection-intro-body {
  text-align: left;
  max-width: 70ch;
  margin: 0 auto;
}
.collection-intro-body p {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--c-ink);
  margin: 0 0 1.5rem;
  max-width: none;
}
.collection-intro-body p:last-child { margin-bottom: 0; }

/* Section 2 — four large cards (vertical sequence, wide) */
.collections-page-grid { background: var(--c-cream); padding-top: 3rem; }
.collection-cards {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: clamp(4rem, 6vw, 6.5rem);
}
.collection-card-large { scroll-margin-top: 100px; }
.collection-card-large-link {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.collection-card-large:nth-child(even) .collection-card-large-link {
  /* alternate sides for editorial rhythm */
  grid-template-columns: 1fr 1.1fr;
}
.collection-card-large:nth-child(even) .collection-card-large-img { order: 2; }

.collection-card-large-img {
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--c-sand);
}
.collection-card-large-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.8s var(--ease), filter .6s var(--ease);
}
.collection-card-large-link:hover .collection-card-large-img img {
  transform: scale(1.025);
  filter: brightness(.96);
}

.collection-card-large-body { padding: 0 .5rem; }
.collection-card-large-num {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: .72rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--c-terracotta);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.collection-card-large-name {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(2.8rem, 3.5vw + 1rem, 4.6rem);
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--c-ink);
  margin: 0 0 .65rem;
  transition: color .55s var(--ease);
}
.collection-card-large-link:hover .collection-card-large-name {
  color: var(--c-terracotta);
}
.collection-card-large-region {
  font-family: var(--ff-sans);
  font-size: .78rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--c-terracotta);
  margin: 0 0 1.5rem;
  font-weight: 500;
}
.collection-card-large-desc {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--c-ink-soft);
  margin: 0 0 1.75rem;
  max-width: 52ch;
}
.collection-card-large-cta {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--ff-sans);
  font-size: .78rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--c-ink);
  border-bottom: 1px solid currentColor;
  padding-bottom: .35rem;
  transition: gap .35s var(--ease), color .3s var(--ease);
}
.collection-card-large-cta .arrow { transition: transform .35s var(--ease); }
.collection-card-large-link:hover .collection-card-large-cta {
  gap: 1rem;
  color: var(--c-terracotta);
}
.collection-card-large-link:hover .collection-card-large-cta .arrow {
  transform: translateX(.35rem);
}

/* Sections 3 & 4 — quiet notes (no image, centered) */
.collection-note { background: var(--c-cream); padding: var(--space-2xl) 0; }
.collection-note--alt { background: var(--c-cream-deep); }
.collection-note-block {
  max-width: 70ch;
  margin: 0 auto;
  text-align: center;
}
.collection-note-title {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.8rem, 1.6vw + 1rem, 2.6rem);
  line-height: 1.15;
  letter-spacing: -.005em;
  color: var(--c-terracotta);
  margin: 0 0 1.75rem;
}
.collection-note-body {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--c-ink);
  margin: 0 auto;
  max-width: none;
}
.collection-note-body em {
  color: var(--c-terracotta);
  font-style: italic;
}
.collection-note-link {
  margin-top: 2.5rem !important;
  text-align: center;
}

@media (max-width: 900px) {
  .collection-card-large-link,
  .collection-card-large:nth-child(even) .collection-card-large-link {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .collection-card-large:nth-child(even) .collection-card-large-img { order: 0; }
  .collection-card-large-img { aspect-ratio: 4 / 3; max-width: none; }
  .collection-cards { gap: 4rem; }
}
@media (max-width: 720px) {
  .collection-intro-band { height: 11rem; }
  .collection-intro-content { padding-top: 4rem; padding-bottom: 3rem; }
  .collection-intro-title { margin-bottom: 2.5rem; }
}

/* ---------- Story / long-form ---------- */
.story-body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.85;
}
.story-body p { margin-bottom: 1.5rem; max-width: none; }
.story-body p.dropcap::first-letter {
  font-family: var(--ff-serif);
  font-size: 4.5rem;
  float: left;
  line-height: .9;
  padding: .35rem .6rem 0 0;
  color: var(--c-terracotta);
  font-style: italic;
}
.story-pull {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  line-height: 1.35;
  text-align: center;
  margin: 3rem auto;
  max-width: 26ch;
  color: var(--c-terracotta);
}
.story-pull::before, .story-pull::after {
  content: ""; display: block;
  width: 50px; height: 1px;
  background: currentColor;
  margin: 1rem auto;
}

/* Inline images in long-form */
.inline-image {
  margin: 3rem -2rem;
}
.inline-image img { width: 100%; }
.inline-image figcaption {
  font-family: var(--ff-sans);
  font-size: .76rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--c-ink-soft);
  margin-top: .85rem;
  text-align: center;
}

/* ---------- Contact form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.field { margin-bottom: 1.5rem; }
.field label {
  display: block;
  font-family: var(--ff-sans);
  font-size: .72rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--c-ink-soft);
  margin-bottom: .5rem;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: .9rem 0;
  border: 0;
  border-bottom: 1px solid var(--c-line);
  background: transparent;
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  outline: none;
  transition: border-color .3s var(--ease);
}
.field input:focus, .field textarea:focus { border-color: var(--c-terracotta); }
.field textarea { resize: vertical; min-height: 140px; }

.info-card {
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  padding: 2.5rem;
}
.info-card h3 { font-style: italic; margin-bottom: 1.25rem; }
.info-card .meta-row { display: grid; grid-template-columns: auto 1fr; gap: 1rem 1.25rem; font-size: .98rem; }
.info-card .meta-row .label { font-family: var(--ff-sans); font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--c-terracotta); padding-top: .15rem; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .2s; }
.reveal.delay-3 { transition-delay: .3s; }
.reveal.delay-4 { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .journal-grid { grid-template-columns: 1fr 1fr; }
  .values { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .piece.span-7, .piece.span-5, .piece.span-6, .piece.span-4, .piece.span-8 { grid-column: span 6; }
}

@media (max-width: 720px) {
  :root { --space-2xl: 5rem; --space-xl: 3.5rem; }
  .nav-list, .nav-tools .shop-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-inner { grid-template-columns: 1fr auto; }
  .nav-tools { gap: .75rem; }
  .brand-mark, .site-header.is-scrolled .brand-mark--dark { width: 150px; }
  .footer-brand .brand-mark { width: 320px; }
  .split { grid-template-columns: 1fr; }
  .split--flip { direction: ltr; }
  .journal-grid { grid-template-columns: 1fr; gap: 3rem; }
  .values { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; }
  .piece.span-7, .piece.span-5, .piece.span-6, .piece.span-4, .piece.span-8 { grid-column: span 12; }
  .inline-image { margin: 2rem 0; }
  .hero { padding: 8rem 0 4rem; }
  .hero h1 { font-size: clamp(2.6rem, 11vw, 4.5rem); }
}

/* =========================================================
   Q'olle — collection page (Chinchero, Sacred Valley, Peru)
   ========================================================= */

/* HERO — extends about-page-header pattern: image + dark veil + cream text */
.qolle-hero {
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(3rem, 6vw, 5.5rem);
}
.qolle-hero .container { max-width: 1280px; }
.qolle-eyebrow {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: .72rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: rgba(250, 240, 230, .85);
  margin-bottom: 1.5rem;
}
.qolle-title {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(4.5rem, 11vw, 9.5rem);
  line-height: .95;
  letter-spacing: -.02em;
  color: var(--c-cream);
  margin: 0 0 1rem;
}
.qolle-region {
  font-family: var(--ff-sans);
  font-size: .82rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(250, 240, 230, .82);
  margin: 0 0 2rem;
}
.qolle-tagline {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.4rem, 2vw + .5rem, 2.1rem);
  line-height: 1.3;
  color: var(--c-cream);
  max-width: 32ch;
  margin: 0;
}

/* INTRO paragraph under the hero */
.qolle-intro {
  background: var(--c-cream);
  padding: clamp(3rem, 5vw, 5rem) 0 0;
}
.qolle-intro-content {
  max-width: 70ch;
  text-align: center;
}
.qolle-intro-content p {
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  line-height: 1.7;
  font-style: italic;
  color: var(--c-ink);
  margin: 0;
}

/* SHARED — section rhythm + headings */
.qolle-section { padding: clamp(4rem, 7vw, 7rem) 0; background: var(--c-cream); }
.qolle-section + .qolle-section { padding-top: 0; }
.qolle-h2 {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(2rem, 2.6vw + .5rem, 3.2rem);
  line-height: 1.15;
  letter-spacing: -.01em;
  color: var(--c-ink);
  margin: .5rem 0 1.75rem;
}
.qolle-section .split-text p {
  font-family: var(--ff-serif);
  font-size: 1.13rem;
  line-height: 1.75;
  color: var(--c-ink);
  max-width: 60ch;
}
.qolle-section .split-text p + p { margin-top: 1.1rem; }
.qolle-section .split-text em { color: var(--c-terracotta); font-style: italic; }
.qolle-link-row { margin-top: 2rem !important; }
.qolle-link-row .arrow {
  display: inline-block;
  transition: transform .3s var(--ease);
}
.qolle-link-row a:hover .arrow { transform: translateX(.35rem); }

/* PIECES — category row + Shop CTA */
.qolle-categories {
  margin-top: clamp(3.5rem, 5vw, 5rem);
  text-align: center;
  border-top: 1px solid var(--c-line);
  padding-top: clamp(3rem, 4vw, 4rem);
}
.qolle-categories-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(1.25rem, 3vw, 3rem);
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
}
.qolle-categories-list li {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.2vw + .5rem, 1.4rem);
  color: var(--c-ink);
  position: relative;
}
.qolle-categories-list li:not(:last-child)::after {
  content: "·";
  position: absolute;
  right: calc(clamp(1.25rem, 3vw, 3rem) / -2);
  top: 50%;
  transform: translate(50%, -55%);
  color: var(--c-terracotta);
}
.qolle-shop-cta {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: var(--c-terracotta);
  color: var(--c-cream);
  font-family: var(--ff-sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  padding: 1.15rem 2.2rem;
  border: 1px solid var(--c-terracotta);
  text-decoration: none;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.qolle-shop-cta:hover { background: transparent; color: var(--c-terracotta); }
.qolle-shop-cta .arrow { transition: transform .3s var(--ease); }
.qolle-shop-cta:hover .arrow { transform: translateX(.35rem); }
.qolle-shop-note {
  margin: 1.5rem auto 0;
  max-width: 50ch;
  font-family: var(--ff-serif);
  font-size: .98rem;
  line-height: 1.6;
  color: var(--c-ink-soft);
  font-style: italic;
}
.qolle-shop-note em { color: var(--c-terracotta); font-style: italic; }

/* SECTION 7 — the name (closing band, quiet) */
.qolle-name {
  background: var(--c-cream-deep);
  padding: clamp(4rem, 6vw, 6rem) 0;
}
.qolle-name-block {
  max-width: 62ch;
  margin: 0 auto;
  text-align: center;
}
.qolle-name-title {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.8rem, 1.6vw + 1rem, 2.6rem);
  color: var(--c-terracotta);
  margin: 0 0 1.75rem;
}
.qolle-name-body {
  font-family: var(--ff-serif);
  font-size: 1.18rem;
  line-height: 1.75;
  color: var(--c-ink);
  margin: 0 0 2.5rem;
}
.qolle-closing-line {
  font-family: var(--ff-serif);
  font-size: clamp(1.2rem, 1.4vw + .5rem, 1.65rem);
  line-height: 1.45;
  color: var(--c-terracotta);
  max-width: 36ch;
  margin: 0 auto 1.25rem;
}
.qolle-closing-line em { font-style: italic; }
.qolle-moons {
  font-size: 1.1rem;
  letter-spacing: .1em;
  color: var(--c-ink);
  margin: 0;
  opacity: .85;
}

/* MOBILE — Q'olle */
@media (max-width: 720px) {
  .qolle-hero { min-height: 70vh; padding-bottom: 3rem; }
  .qolle-title { font-size: clamp(3.5rem, 16vw, 5.5rem); }
  .qolle-tagline { font-size: 1.2rem; }
  .qolle-intro-content p { font-size: 1.1rem; }
  .qolle-categories-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
  .qolle-categories-list li::after { display: none; }
  .qolle-shop-cta { width: 100%; justify-content: center; }
}

/* =========================================================
   Yaga — collection page (San Sebastián Río Hondo, Oaxaca)
   Reuses the .qolle-* tokens; adds video + Instagram embed.
   ========================================================= */

/* Video inside the split-media frame — same crop as the photo frames */
.split-media--video { background: var(--c-ink); }
.split-media--video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Instagram reel frame — keep the same vertical proportion as a photo */
.split-media--reel {
  background: var(--c-cream-deep);
  border: 1px solid var(--c-line);
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  overflow: auto;
}
.yaga-reel-frame {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}
.yaga-reel-frame .instagram-media {
  margin: 0 auto !important;
}

/* Pull line inside the craft section */
.yaga-pull {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(1.3rem, 1.6vw + .5rem, 1.85rem);
  line-height: 1.4;
  color: var(--c-terracotta);
  margin-top: 2rem !important;
  padding-top: 1.5rem;
  border-top: 1px solid var(--c-line);
  max-width: 32ch;
}

/* Closing band figure — small evocative image above the name */
.yaga-name .qolle-name-block { max-width: 70ch; }
.yaga-name-figure {
  margin: 0 auto 2.5rem;
  max-width: 360px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--c-sand);
  border: 1px solid var(--c-line);
}
.yaga-name-figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 720px) {
  .split-media--reel { aspect-ratio: 3 / 4; padding: 1rem; }
  .yaga-name-figure { max-width: 240px; }
}

/* =========================================================
   Ixoq — collection page (Quetzaltenango / Xela, Guatemala)
   Reuses qolle-* tokens; adds a 5-item category row,
   a link separator, and the closing invitation block.
   ========================================================= */
.ixoq-link-sep {
  display: inline-block;
  margin: 0 .75rem;
  color: var(--c-terracotta);
  opacity: .7;
}
.ixoq-categories-list { max-width: 60rem; margin-left: auto; margin-right: auto; }

.ixoq-invitation {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 1.3vw + .5rem, 1.55rem);
  line-height: 1.55;
  color: var(--c-ink);
  max-width: 48ch;
  margin: 2.5rem auto;
  padding: 1.75rem 1.5rem;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}

@media (max-width: 720px) {
  .ixoq-categories-list { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   Artisan Stories — page
   Community bands + portrait blocks + video placeholders
   ========================================================= */

/* Community band — sits between sections, anchors each community */
.community-band {
  background: var(--c-cream-deep);
  padding: clamp(3rem, 5vw, 4.5rem) 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.community-band--alt { background: var(--c-cream); }
.community-band-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}
.community-num {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  color: var(--c-terracotta);
  opacity: .85;
}
.community-collection {
  font-family: var(--ff-sans);
  font-size: .72rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--c-terracotta);
  margin: 0 0 .5rem;
}
.community-place {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.6rem, 1.8vw + .5rem, 2.4rem);
  line-height: 1.2;
  color: var(--c-ink);
  margin: 0 0 .75rem;
}
.community-intro {
  font-family: var(--ff-serif);
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--c-ink-soft);
  font-style: italic;
  margin: 0;
  max-width: 60ch;
}

/* Artisan portrait block — reuses .split + .split-media + .split-text */
.artisan-portrait { padding: clamp(3.5rem, 6vw, 6rem) 0; }
.artisan-portrait + .artisan-portrait { padding-top: 0; }
.artisan-portrait .split-text p {
  font-family: var(--ff-serif);
  font-size: 1.13rem;
  line-height: 1.75;
  color: var(--c-ink);
  max-width: 62ch;
}
.artisan-portrait .split-text p + p { margin-top: 1.1rem; }
.artisan-portrait .split-text em { color: var(--c-terracotta); font-style: italic; }

.artisan-name {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.4rem, 3vw + 1rem, 3.6rem);
  line-height: 1;
  letter-spacing: -.01em;
  color: var(--c-ink);
  margin: .5rem 0 .75rem;
}
.artisan-role {
  font-family: var(--ff-sans);
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-terracotta);
  margin: 0 0 1.75rem !important;
}
.artisan-attribution {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.4;
  color: var(--c-terracotta);
  margin-top: 1.75rem !important;
  padding-top: 1.5rem;
  border-top: 1px solid var(--c-line);
  max-width: 38ch;
}

/* Artisan video — sits below the portrait split */
.artisan-video {
  margin: clamp(2.5rem, 4vw, 4rem) 0 0;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.artisan-video-intro {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--c-ink-soft);
  text-align: center;
  margin: 0 0 1.5rem !important;
  max-width: 56ch;
  margin-left: auto !important;
  margin-right: auto !important;
}
.artisan-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--c-ink);
  border: 1px solid var(--c-line);
  overflow: hidden;
}
.artisan-video-frame video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Video placeholder — "in production" state */
.artisan-video-frame--placeholder {
  aspect-ratio: 16 / 9;
  background: var(--c-cream-deep);
  border-style: dashed;
  border-color: var(--c-line);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.artisan-video-pending {
  text-align: center;
  max-width: 36ch;
}
.artisan-video-pending .pending-tag {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--c-terracotta);
  border: 1px solid var(--c-terracotta);
  padding: .55rem 1rem;
  margin-bottom: 1.25rem;
}
.artisan-video-pending p {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--c-ink-soft);
  margin: 0;
}

@media (max-width: 900px) {
  .community-band-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: left;
  }
  .community-num { font-size: 3rem; }
}
@media (max-width: 720px) {
  .artisan-video-frame--placeholder { aspect-ratio: 4 / 3; }
}

/* =========================================================
   Video thumbnail (poster + play overlay) + modal player
   ========================================================= */
.video-thumb {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background: var(--c-ink);
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  overflow: hidden;
  font: inherit;
  color: inherit;
}
/* When .video-thumb is used standalone (not inside an aspect-locked parent), it sets its own 16:9 */
.artisan-video-frame > .video-thumb,
.split-media--video > .video-thumb { aspect-ratio: auto; }

.video-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s var(--ease), opacity .35s var(--ease);
}
.video-thumb:hover img,
.video-thumb:focus-visible img { transform: scale(1.035); opacity: .9; }

.video-thumb-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 88px; height: 88px;
  border-radius: 50%;
  background: rgba(160, 82, 45, .88);
  border: 2px solid rgba(250, 240, 230, .9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s var(--ease), transform .25s var(--ease);
  pointer-events: none;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .25);
}
.video-thumb-play::before {
  content: '';
  display: block;
  width: 0; height: 0;
  border-left: 22px solid var(--c-cream);
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 7px;
}
.video-thumb:hover .video-thumb-play,
.video-thumb:focus-visible .video-thumb-play {
  background: var(--c-terracotta);
  transform: translate(-50%, -50%) scale(1.08);
}

/* Modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}
.video-modal.is-open { display: flex; }
.video-modal-scrim {
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 14, .94);
  cursor: pointer;
}
.video-modal-dialog {
  position: relative;
  width: min(94vw, 1180px);
  max-height: 92vh;
  z-index: 1;
}
.video-modal-close {
  position: absolute;
  top: -3rem;
  right: 0;
  background: transparent;
  border: 0;
  color: var(--c-cream);
  padding: .25rem .5rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity .2s var(--ease);
  opacity: .9;
}
.video-modal-close:hover { opacity: 1; }
.video-modal-frame {
  background: #000;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(250, 240, 230, .12);
}
.video-modal-frame video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
}
@media (max-width: 720px) {
  .video-thumb-play { width: 64px; height: 64px; }
  .video-thumb-play::before {
    border-left-width: 16px;
    border-top-width: 10px;
    border-bottom-width: 10px;
    margin-left: 5px;
  }
  .video-modal-dialog { width: 100vw; }
  .video-modal-close { top: -2.5rem; right: .5rem; }
}

/* =========================================================
   Ixchel — social impact page
   ========================================================= */

.ixchel-twomoons {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 1.4vw + .5rem, 1.7rem);
  line-height: 1.4;
  color: var(--c-terracotta);
  margin: 2.25rem auto 0 !important;
  max-width: 30ch;
  padding-top: 1.5rem;
  border-top: 1px solid var(--c-line);
}

/* Partner card (Favela Inc.) */
.ixchel-partner-card {
  background: var(--c-cream-deep);
  border: 1px solid var(--c-line);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 5;
  padding: clamp(1.5rem, 3vw, 3rem);
}
.ixchel-partner-card-inner {
  text-align: center;
  width: 100%;
}
.ixchel-partner-label {
  display: block;
  font-family: var(--ff-sans);
  font-size: .68rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
  margin-bottom: 2rem;
}
.ixchel-partner-logo {
  display: block;
  max-width: min(75%, 280px);
  height: auto;
  margin: 0 auto 2rem;
}

/* Five pillars */
.ixchel-pillars-section {
  background: var(--c-cream);
  padding: clamp(4rem, 7vw, 6rem) 0;
}
.ixchel-pillars-head { text-align: center; margin-bottom: clamp(3rem, 5vw, 4.5rem); }
.ixchel-pillars-intro {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.18rem;
  line-height: 1.6;
  color: var(--c-ink-soft);
  max-width: 50ch;
  margin: 0 auto;
}
.ixchel-pillars {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1080px;
  display: grid;
  gap: clamp(1.5rem, 2vw, 2rem);
}
.ixchel-pillar {
  position: relative;
  background: var(--c-cream-deep);
  border: 1px solid var(--c-line);
  padding: clamp(2rem, 3vw, 2.75rem);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 3vw, 2.75rem);
  align-items: start;
}
.ixchel-pillar-num {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.2rem, 3vw + .5rem, 3.2rem);
  line-height: 1;
  color: var(--c-terracotta);
  opacity: .85;
}
.ixchel-pillar-title {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.35rem, 1.4vw + .5rem, 1.8rem);
  line-height: 1.25;
  color: var(--c-ink);
  margin: 0 0 .75rem;
}
.ixchel-pillar p {
  font-family: var(--ff-serif);
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--c-ink);
  margin: 0;
  max-width: 64ch;
}

/* Get involved — final CTA */
.ixchel-cta-section {
  background: var(--c-terracotta);
  color: var(--c-cream);
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  text-align: center;
}
.ixchel-cta-block { max-width: 60ch; margin: 0 auto; }
.ixchel-cta-section .eyebrow {
  color: var(--c-cream);
  opacity: .9;
}
.ixchel-cta-section .eyebrow::before { background: var(--c-cream); opacity: .55; }
.ixchel-cta-title {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.2rem, 3vw + 1rem, 3.6rem);
  line-height: 1.15;
  letter-spacing: -.01em;
  color: var(--c-cream);
  margin: 0 0 1.75rem;
}
.ixchel-cta-body {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(250, 240, 230, .9);
  margin: 0 0 2.5rem;
}
.ixchel-cta-btn {
  background: var(--c-cream);
  color: var(--c-terracotta);
  border-color: var(--c-cream);
}
.ixchel-cta-btn:hover {
  background: transparent;
  color: var(--c-cream);
  border-color: var(--c-cream);
}

@media (max-width: 720px) {
  .ixchel-pillar { grid-template-columns: 1fr; gap: 1rem; }
  .ixchel-partner-card { aspect-ratio: 4 / 3; }
}

/* =========================================================
   The Journal — page (article index)
   ========================================================= */
.journal-section { background: var(--c-cream); padding: clamp(3.5rem, 6vw, 6rem) 0; }
.journal-cards {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: clamp(2.5rem, 4vw, 4rem);
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}
.journal-card { background: transparent; }
.journal-card-link {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 1.5rem;
  text-decoration: none;
  color: inherit;
}
.journal-card-img {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--c-sand);
  border: 1px solid var(--c-line);
}
.journal-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.4s var(--ease), opacity .5s var(--ease);
}
.journal-card-link:hover .journal-card-img img,
.journal-card-link:focus-visible .journal-card-img img {
  transform: scale(1.045);
  opacity: .94;
}
.journal-card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--c-cream);
  color: var(--c-terracotta);
  font-family: var(--ff-sans);
  font-size: .66rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  padding: .55rem .9rem;
  border: 1px solid var(--c-line);
}
.journal-card-body { padding: 0 .25rem; }
.journal-card-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
  font-family: var(--ff-sans);
  font-size: .68rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
  margin: 0 0 1.1rem !important;
}
.journal-card-meta .dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--c-terracotta);
  border-radius: 50%;
}
.journal-card-voice { color: var(--c-terracotta); }
.journal-card-title {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.7rem, 1.8vw + .5rem, 2.4rem);
  line-height: 1.15;
  letter-spacing: -.005em;
  color: var(--c-ink);
  margin: 0 0 1rem;
  transition: color .25s var(--ease);
}
.journal-card-link:hover .journal-card-title { color: var(--c-terracotta); }
.journal-card-excerpt {
  font-family: var(--ff-serif);
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--c-ink);
  margin: 0 0 1.5rem;
  max-width: 56ch;
}
.journal-card-cta {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--ff-sans);
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--c-terracotta);
  border-bottom: 1px solid var(--c-terracotta);
  padding-bottom: .35rem;
  transition: gap .25s var(--ease);
}
.journal-card-link:hover .journal-card-cta { gap: .85rem; }
.journal-card-cta .arrow { transition: transform .25s var(--ease); }
.journal-card-link:hover .journal-card-cta .arrow { transform: translateX(.3rem); }

/* Waiting line — when no articles are published */
.journal-waiting {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--c-ink-soft);
  text-align: center;
  max-width: 50ch;
  margin: 3rem auto 0;
}

/* Single-article state — center the lone card */
.journal-cards:has(> :only-child) {
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
}

/* Journal newsletter — quiet eyebrow above the title */
.journal-newsletter .eyebrow { color: var(--c-terracotta); }

@media (max-width: 720px) {
  .journal-cards { grid-template-columns: 1fr; gap: 3rem; }
}

/* =========================================================
   Contact — page (form, ways to reach, follow along)
   ========================================================= */
.contact-form-section {
  background: var(--c-cream);
  padding: clamp(3rem, 5vw, 5rem) 0 clamp(4rem, 7vw, 6rem);
}
.contact-form {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}
.contact-field {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.contact-field-label {
  font-family: var(--ff-sans);
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
}
.contact-field-hint {
  font-style: italic;
  letter-spacing: .04em;
  text-transform: none;
  color: var(--c-ink-soft);
  opacity: .8;
}
.contact-field input,
.contact-field textarea,
.contact-select {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--c-line);
  padding: .85rem 0 .9rem;
  font-family: var(--ff-serif);
  font-size: 1.18rem;
  line-height: 1.5;
  color: var(--c-ink);
  border-radius: 0;
  transition: border-color .25s var(--ease);
}
.contact-field textarea {
  resize: vertical;
  min-height: 9rem;
}
.contact-select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6' fill='none' stroke='%23a0522d' stroke-width='1.4'><polyline points='1,1 5,5 9,1'/></svg>");
  background-repeat: no-repeat;
  background-position: right .25rem center;
  background-size: 12px;
  padding-right: 1.75rem;
  cursor: pointer;
}
.contact-field input:focus,
.contact-field textarea:focus,
.contact-select:focus {
  outline: none;
  border-bottom-color: var(--c-terracotta);
}
.contact-form-btn {
  align-self: flex-start;
  margin-top: .75rem;
}
.contact-form-consent {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: .95rem;
  line-height: 1.6;
  color: var(--c-ink-soft);
  max-width: 60ch;
  margin: 0;
}

/* Ways to reach us — four blocks */
.contact-ways {
  background: var(--c-cream-deep);
  padding: clamp(4rem, 7vw, 6rem) 0;
}
.contact-ways-head { text-align: center; margin-bottom: clamp(3rem, 4vw, 4rem); }
.contact-ways-title { margin: 0 auto; max-width: 28ch; }
.contact-ways-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1080px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 3vw, 3rem);
}
.contact-way {
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  padding: clamp(2rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.contact-way-label {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.2;
  color: var(--c-terracotta);
  margin: 0;
}
.contact-way p {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--c-ink);
  margin: 0;
  max-width: 50ch;
}
.contact-way-email {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: auto;
  padding-top: .5rem;
  font-family: var(--ff-sans);
  font-size: .82rem;
  letter-spacing: .04em;
  color: var(--c-terracotta);
  border-bottom: 1px solid currentColor;
  width: fit-content;
  word-break: break-word;
  transition: gap .25s var(--ease);
}
.contact-way-email:hover { gap: .75rem; }

/* Follow along */
.contact-follow {
  background: var(--c-cream);
  padding: clamp(4rem, 7vw, 6rem) 0;
}
.contact-follow-block { max-width: 60ch; margin: 0 auto; text-align: center; }
.contact-follow-body {
  font-family: var(--ff-serif);
  font-size: 1.18rem;
  line-height: 1.7;
  color: var(--c-ink);
  margin: 0 0 2.5rem;
}
.contact-follow-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.contact-follow-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--c-cream-deep);
  border: 1px solid var(--c-line);
  text-decoration: none;
  color: var(--c-ink);
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  text-align: left;
}
.contact-follow-link:hover {
  background: var(--c-terracotta);
  color: var(--c-cream);
  border-color: var(--c-terracotta);
}
.contact-follow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-terracotta);
  transition: color .25s var(--ease);
  flex-shrink: 0;
}
.contact-follow-link:hover .contact-follow-icon { color: var(--c-cream); }
.contact-follow-text { display: flex; flex-direction: column; gap: .15rem; }
.contact-follow-label {
  font-family: var(--ff-sans);
  font-size: .66rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
  transition: color .25s var(--ease);
}
.contact-follow-link:hover .contact-follow-label { color: rgba(250, 240, 230, .8); }
.contact-follow-handle {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.18rem;
  line-height: 1.2;
}

@media (max-width: 720px) {
  .contact-form-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact-ways-list { grid-template-columns: 1fr; }
  .contact-follow-list { grid-template-columns: 1fr; }
  .contact-form-btn { width: 100%; justify-content: center; }
}
