/* ================================================================
   Acrehand — main stylesheet
   Tokens live in theme.json (WP exposes them as --wp--preset--*).
   We also alias short --ah-* variables for readability.
   Server-rendered, no build step. Mobile-first.
   ================================================================ */

:root {
	--ah-bg:          var(--wp--preset--color--bg,          #FCFBF7);
	--ah-bg-elev:     var(--wp--preset--color--bg-elevated, #F5F2EA);
	--ah-bg-inverse:  var(--wp--preset--color--bg-inverse,  #1A1A17);
	--ah-ink:         var(--wp--preset--color--ink,         #1E1A17);
	--ah-ink-soft:    var(--wp--preset--color--ink-soft,    #3E3833);
	--ah-ink-muted:   var(--wp--preset--color--ink-muted,   #8A7F74);
	--ah-forest:      var(--wp--preset--color--forest,      #2E4A32);
	--ah-forest-soft: var(--wp--preset--color--forest-soft, #4A6B4E);
	--ah-walnut:      var(--wp--preset--color--walnut,      #6B4A2B);
	--ah-line:        var(--wp--preset--color--line,        #E8E1D2);

	--ah-serif:       var(--wp--preset--font-family--serif,  "Fraunces", Georgia, serif);
	--ah-sans:        var(--wp--preset--font-family--sans,   "Public Sans", system-ui, sans-serif);
	--ah-script:      var(--wp--preset--font-family--script, "Caveat", cursive);

	--ah-gutter:      clamp(1rem, 3vw, 2rem);
	--ah-content-w:   1240px;
	--ah-prose-w:     720px;

	--ah-ease:        cubic-bezier(0.2, 0.6, 0.2, 1);
}

/* ---------- Reset ---------- */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; background: var(--ah-bg); color: var(--ah-ink); font-family: var(--ah-sans); line-height: 1.6; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, svg, video { max-width: 100%; height: auto; display: block; }
button { font: inherit; color: inherit; background: transparent; border: 0; padding: 0; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--ah-forest); outline-offset: 2px; }
:where(a) { color: var(--ah-forest); text-decoration: none; transition: color .18s var(--ah-ease); }
:where(a:hover) { color: var(--ah-ink); }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ---------- Base typography ---------- */

h1, h2, h3, h4 { font-family: var(--ah-serif); font-weight: 400; margin: 0 0 .6em; }
h1 { font-weight: 300; letter-spacing: 0; line-height: 1.02; }
h2 { font-weight: 300; letter-spacing: 0;  line-height: 1.05; }
h3 { letter-spacing: 0; line-height: 1.15; }
h4 { font-weight: 500; line-height: 1.3; }
p  { margin: 0 0 1em; max-width: 62ch; }
strong { font-weight: 500; }
em { font-style: italic; }
blockquote { margin: 1.5em 0; padding-left: 1rem; border-left: 2px solid var(--ah-forest); font-family: var(--ah-serif); font-style: italic; font-size: 1.25rem; line-height: 1.4; }
hr { border: 0; border-top: 0.5px solid var(--ah-line); margin: 2rem 0; }

/* ---------- Site header ---------- */

.ah-site-header { position: relative; z-index: 40; background: var(--ah-bg); border-bottom: 0.5px solid var(--ah-line); }
.ah-site-header__inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem var(--ah-gutter); max-width: var(--ah-content-w); margin: 0 auto; }

.ah-brand { display: inline-flex; align-items: center; color: var(--ah-ink); text-decoration: none; flex: 0 0 auto; min-width: 0; }
.ah-brand:hover { color: var(--ah-ink); }
.ah-brand__logo { display: block; width: auto; height: auto; object-fit: contain; flex-shrink: 0; }
.ah-brand__logo--header { height: 44px; max-width: min(198px, 40vw); }
.ah-brand__logo--footer { height: 64px; max-width: min(260px, 80vw); }
.ah-brand__mark { width: 26px; height: 34px; color: var(--ah-ink); flex-shrink: 0; }
.ah-brand__text { display: flex; flex-direction: column; line-height: 1; }
.ah-brand__wordmark { font-family: var(--ah-serif); font-size: 1.25rem; letter-spacing: 0.14em; }
.ah-brand__tagline  { font-family: var(--ah-serif); font-size: 0.5625rem; letter-spacing: 0.22em; color: var(--ah-ink-muted); margin-top: 3px; }

.ah-nav { display: none; }
.ah-nav__list { display: flex; gap: 1.75rem; list-style: none; margin: 0; padding: 0; }
.ah-nav__item { display: flex; align-items: center; min-height: 32px; }
.ah-nav__link { position: relative; display: inline-flex; align-items: center; min-height: 32px; color: var(--ah-ink-soft); font-size: 0.8125rem; font-weight: 400; letter-spacing: 0.02em; padding: .25rem 0; }
.ah-nav__link::after { content: ""; position: absolute; left: 0; right: 0; bottom: 1px; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left center; transition: transform .2s var(--ah-ease); }
.ah-nav__item:hover > .ah-nav__link,
.ah-nav__item:focus-within > .ah-nav__link,
.ah-nav__link:hover { color: var(--ah-ink); font-weight: 600; }
.ah-nav__item:hover > .ah-nav__link::after,
.ah-nav__item:focus-within > .ah-nav__link::after,
.ah-nav__link:hover::after { transform: scaleX(1); }

.ah-mega-menu { position: absolute; left: 50%; top: 100%; width: min(760px, calc(100vw - 2rem)); padding-top: 14px; opacity: 0; visibility: hidden; transform: translate(-50%, -6px); pointer-events: none; transition: opacity .18s var(--ah-ease), transform .18s var(--ah-ease), visibility .18s var(--ah-ease); }
.ah-nav__item:hover > .ah-mega-menu,
.ah-nav__item:focus-within > .ah-mega-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); pointer-events: auto; }
.ah-mega-menu__inner { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; padding: 18px; background: rgba(252,251,247,.98); border: 1px solid var(--ah-line); box-shadow: 0 18px 42px rgba(30,26,23,.12); }
.ah-mega-item { display: grid; grid-template-columns: 68px 1fr; gap: 14px; align-items: center; min-height: 88px; padding: 10px; color: var(--ah-ink); text-decoration: none; background: rgba(245,242,234,.62); border: 1px solid rgba(232,225,210,.72); transition: background .18s var(--ah-ease), border-color .18s var(--ah-ease), transform .18s var(--ah-ease); }
.ah-mega-item:hover { color: var(--ah-ink); background: #fffdf8; border-color: rgba(46,74,50,.28); transform: translateY(-1px); }
.ah-mega-item__image { display: block; width: 68px; height: 68px; background: #e7dfd0; overflow: hidden; }
.ah-mega-item__text { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.ah-mega-item strong { font-family: var(--ah-serif); font-size: 1rem; font-weight: 400; line-height: 1.15; }
.ah-mega-item small { display: block; font-size: 11px; line-height: 1.45; color: var(--ah-ink-muted); }
.ah-mega-item__image--all { background: linear-gradient(135deg, #efe5d1, #7b856f); }
.ah-mega-item__image--wall { background: linear-gradient(135deg, #f8f3e9, #5c7280); }
.ah-mega-item__image--tabletop { background: linear-gradient(135deg, #ddd8c6, #6f7c65); }
.ah-mega-item__image--gifts { background: linear-gradient(135deg, #efe4d6, #9b6752); }
.ah-mega-item__image--desk { background: linear-gradient(135deg, #f2eadb, #8e7658); }
.ah-mega-item__image--storage { background: linear-gradient(135deg, #d6c76f, #5e6437); }
.ah-mega-item__image--ritual { background: linear-gradient(135deg, #d9d4c5, #2e4a32); }
.ah-mega-item__image--lighting { background: radial-gradient(circle at 52% 42%, rgba(252,251,247,.45), transparent 22%), linear-gradient(135deg, #e2d5bd, #69716a); }
.ah-mega-item__image--wood { background: repeating-linear-gradient(90deg, rgba(255,255,255,.12) 0 2px, transparent 2px 10px), linear-gradient(135deg, #c79a61, #6b4528); }
.ah-mega-item__image--paper { background: radial-gradient(circle at 25% 25%, rgba(255,255,255,.5), transparent 28%), linear-gradient(135deg, #f7f0df, #b8ad9d); }
.ah-mega-item__image--bamboo { background: repeating-linear-gradient(45deg, rgba(255,255,255,.16) 0 4px, transparent 4px 18px), linear-gradient(135deg, #d5c77c, #70713d); }
.ah-mega-item__image--textile { background: repeating-linear-gradient(0deg, rgba(255,255,255,.11) 0 1px, transparent 1px 8px), linear-gradient(135deg, #c8896d, #6e4636); }
.ah-mega-item__image--straw { background: repeating-linear-gradient(90deg, rgba(255,255,255,.16) 0 2px, transparent 2px 12px), linear-gradient(135deg, #d8c698, #6f705d); }
.ah-mega-item__image--bead { background: radial-gradient(circle at 30% 36%, #f3ecdf 0 9%, transparent 10%), radial-gradient(circle at 55% 55%, #7e8d91 0 8%, transparent 9%), linear-gradient(135deg, #e5ded2, #4b5657); }
.ah-mega-item__image--process { background: linear-gradient(135deg, #23362c, #8d9b84); }
.ah-mega-item__image--notes { background: linear-gradient(135deg, #f7f0df, #6b7f8b); }
.ah-mega-item__image--guide { background: linear-gradient(135deg, #ecefe4, #573528); }

.ah-utils { display: flex; align-items: center; gap: 1rem; color: var(--ah-ink-soft); }
.ah-utils__btn { display: inline-flex; align-items: center; justify-content: center; }
.ah-utils__btn--saved { position: relative; }
.ah-utils__count { position: absolute; top: -6px; right: -8px; min-width: 16px; height: 16px; padding: 0 4px; border-radius: 8px; background: var(--ah-forest); color: var(--ah-bg); font-size: 10px; line-height: 16px; text-align: center; letter-spacing: 0; }
.ah-utils__count:empty { display: none; }
.ah-utils__subscribe { display: none; font-size: 0.6875rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ah-forest); border-bottom: 0.5px solid var(--ah-forest); padding-bottom: 2px; }
.ah-utils__btn--menu { display: inline-flex; }

/* ---------- Search modal ---------- */

.ah-search-modal { position: fixed; inset: 0; z-index: 60; display: flex; align-items: flex-start; justify-content: center; padding: 15vh 1rem 1rem; }
.ah-search-modal[hidden] { display: none; }
.ah-search-modal__scrim { position: absolute; inset: 0; background: rgba(20, 20, 18, 0.55); backdrop-filter: blur(2px); }
.ah-search-modal__panel { position: relative; background: var(--ah-bg); width: 100%; max-width: 640px; padding: 2rem 2rem 1.5rem; }
.ah-search-form { display: flex; align-items: center; gap: 1rem; border-bottom: 1px solid var(--ah-ink); padding-bottom: 0.75rem; }
.ah-search-form__label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.ah-search-form input { flex: 1; border: 0; background: transparent; font-family: var(--ah-serif); font-size: 1.75rem; font-weight: 300; letter-spacing: 0; padding: 0.25rem 0; }
.ah-search-form input:focus { outline: none; }
.ah-search-form button { font-size: 1.75rem; color: var(--ah-forest); }
.ah-search-modal__close { position: absolute; top: 0.5rem; right: 0.75rem; font-size: 1.75rem; color: var(--ah-ink-muted); line-height: 1; }

/* ---------- Mobile drawer ---------- */

.ah-drawer { position: fixed; inset: 0; z-index: 55; }
.ah-drawer[hidden] { display: none; }
.ah-drawer__scrim { position: absolute; inset: 0; background: rgba(20,20,18,0.55); }
.ah-drawer__panel { position: relative; margin-left: auto; height: 100%; width: min(88%, 380px); background: var(--ah-bg); padding: 5rem 2rem 2rem; overflow-y: auto; }
.ah-drawer__close { position: absolute; top: 1rem; right: 1rem; font-size: 1.75rem; color: var(--ah-ink-muted); line-height: 1; }
.ah-drawer__list { list-style: none; margin: 0; padding: 0; }
.ah-drawer__list li { border-bottom: 0.5px solid var(--ah-line); }
.ah-drawer__list a { display: block; padding: 1rem 0; font-family: var(--ah-serif); font-size: 1.5rem; color: var(--ah-ink); }
.ah-drawer__sublist { list-style: none; margin: -0.25rem 0 0.75rem; padding: 0 0 0.25rem; display: grid; grid-template-columns: 1fr; gap: 2px; }
.ah-drawer__sublist li { border-bottom: 0; }
.ah-drawer__sublist a { padding: 0.3rem 0; font-family: var(--ah-sans); font-size: 0.8125rem; color: var(--ah-ink-muted); }
.ah-drawer__utils { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.875rem; color: var(--ah-ink-soft); }

/* ---------- Main content ---------- */

.ah-main { min-height: 60vh; }
.ah-main > * { padding-left: var(--ah-gutter); padding-right: var(--ah-gutter); }
.ah-main .alignwide { max-width: var(--ah-content-w); margin-left: auto; margin-right: auto; }

.ah-page,
.ah-single { max-width: var(--ah-prose-w); margin: 0 auto; }
.ah-single__meta { color: var(--ah-ink-muted); letter-spacing: 0.06em; text-transform: uppercase; gap: 1rem !important; padding-bottom: 1rem; border-bottom: 0.5px solid var(--ah-line); margin-bottom: 2rem; }

/* ---------- Site footer ---------- */

.ah-site-footer { background: var(--ah-bg); border-top: 0.5px solid var(--ah-line); padding: 2.5rem var(--ah-gutter) 1.5rem; margin-top: 4rem; }
.ah-site-footer__top { display: grid; grid-template-columns: 1fr; gap: 2rem; max-width: var(--ah-content-w); margin: 0 auto; padding-bottom: 1.5rem; border-bottom: 0.5px solid var(--ah-line); }
.ah-site-footer__brand .ah-brand--footer { margin-bottom: 1rem; }
.ah-site-footer__brand .ah-brand--footer:hover { opacity: .82; }
.ah-site-footer__brand .ah-brand__mark { width: 30px; height: 40px; }
.ah-site-footer__brand .ah-brand__wordmark { font-size: 1.375rem; }
.ah-site-footer__tagline { font-family: var(--ah-serif); font-style: italic; font-size: 0.8125rem; color: var(--ah-ink-muted); line-height: 1.5; max-width: 300px; }
.ah-site-footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.ah-site-footer__col ul { list-style: none; margin: 0; padding: 0; line-height: 2; font-size: 0.75rem; }
.ah-site-footer__col a { color: var(--ah-ink-soft); }
.ah-site-footer__col-label { font-size: 0.625rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ah-ink-muted); margin-bottom: 0.5rem; }
.ah-site-footer__bottom { display: flex; justify-content: space-between; align-items: center; max-width: var(--ah-content-w); margin: 1rem auto 0; font-size: 0.625rem; letter-spacing: 0.04em; color: var(--ah-ink-muted); }
.ah-site-footer__sign { font-family: var(--ah-script); font-size: 1.0625rem; line-height: 1; color: var(--ah-ink-muted); }

/* ---------- Wave rule (hand-drawn hairline replacement) ---------- */

.ah-wave-rule { display: block; width: 72px; height: 8px; margin: 0.75rem 0 1.5rem; background: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 72 8' fill='none' stroke='%232E4A32' stroke-width='1.1' stroke-linecap='round'%3E%3Cpath d='M2 5 Q 12 1 22 5 T 42 5 T 70 4'/%3E%3C/svg%3E") no-repeat center / contain; }
.ah-wave-rule--muted { background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 72 8' fill='none' stroke='%238A7F74' stroke-width='1' stroke-linecap='round'%3E%3Cpath d='M2 5 Q 12 1 22 5 T 42 5 T 70 4'/%3E%3C/svg%3E"); }
.ah-wave-rule--center { margin-left: auto; margin-right: auto; }

/* ---------- Cards (base — full compositions in Phase 4) ---------- */

.ah-card { display: flex; flex-direction: column; gap: 0.75rem; color: var(--ah-ink); }
.ah-card:hover { color: var(--ah-ink); }
.ah-card__media { position: relative; overflow: hidden; background: var(--ah-bg-elev); aspect-ratio: 4 / 5; }
.ah-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ah-ease); }
.ah-card:hover .ah-card__media img { transform: scale(1.02); }
.ah-card__meta { font-size: 0.625rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ah-ink-muted); }
.ah-card__title { font-family: var(--ah-serif); font-size: 1.0625rem; font-weight: 400; letter-spacing: 0; line-height: 1.15; margin: 0; }
.ah-card__price { font-size: 0.6875rem; letter-spacing: 0.06em; color: var(--ah-ink-muted); margin-top: 0.25rem; }
.ah-card__badge { position: absolute; top: 8px; right: 8px; font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(252,251,247,0.85); padding: 3px 6px; border: 0.5px solid rgba(252,251,247,0.35); background: rgba(30,26,23,0.15); }

/* ---------- Editorial "meta line" utility ---------- */

.ah-eyebrow { font-size: 0.625rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ah-ink-muted); margin-bottom: 0.5rem; }
.ah-caption { font-family: var(--ah-serif); font-style: italic; font-size: 0.8125rem; color: var(--ah-ink-muted); }
.ah-script  { font-family: var(--ah-script); font-size: 1.375rem; color: var(--ah-forest); line-height: 1; }
.ah-chapter { font-family: var(--ah-script); font-size: 1.5rem; color: var(--ah-forest); margin-bottom: 0.25rem; line-height: 1; }

/* ---------- Buttons ---------- */

.ah-btn { display: inline-flex; align-items: center; gap: 0.625rem; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.6875rem 1.125rem; border: 1px solid var(--ah-ink); color: var(--ah-ink); background: transparent; transition: background .18s var(--ah-ease), color .18s var(--ah-ease); }
.ah-btn:hover { background: var(--ah-ink); color: var(--ah-bg); }
.ah-btn--muted { border-color: var(--ah-line); }
.ah-btn--link  { border: 0; padding: 0 0 0.25rem; border-bottom: 0.5px solid currentColor; }

/* ---------- Responsive breakpoints ---------- */

@media (min-width: 768px) {
	.ah-site-header__inner { padding-top: 1.25rem; padding-bottom: 1.25rem; }
	.ah-nav { display: block; }
	.ah-utils__subscribe { display: inline-flex; }
	.ah-utils__btn--menu { display: none; }
	.ah-site-footer__top { grid-template-columns: 1.2fr 2fr; gap: 3rem; }
}

@media (min-width: 1024px) {
	.ah-site-header__inner { padding-top: 1.5rem; padding-bottom: 1.5rem; }
}

/* ================================================================
   HOMEPAGE — Phase 4 segment 1
   ================================================================ */

.ah-home > * { padding-left: 0; padding-right: 0; }

/* Hero — full-bleed cinematic */
.ah-home-hero { position: relative; height: 68vh; min-height: 520px; max-height: 720px; background: #2A2622; overflow: hidden; color: #FCFBF7; }
.ah-home-hero__scene { position: absolute; inset: 0; background: radial-gradient(ellipse 72% 62% at 58% 52%, #5C4632 0%, #362E24 55%, #1F1A16 100%); }
.ah-home-hero__object { position: absolute; left: 46%; top: 18%; width: 32%; height: 64%; background: #E8DDC4; box-shadow: 0 20px 40px rgba(0,0,0,0.25); }
.ah-home-hero__object-band { position: absolute; left: 46%; top: 46%; width: 32%; height: 3%; background: #6B4A2B; opacity: 0.5; }
.ah-home-hero__object-shadow { position: absolute; left: 46%; top: 74%; width: 32%; height: 6%; background: #A98867; opacity: 0.35; }

.ah-home-hero__corner { position: absolute; top: 26px; display: flex; align-items: center; gap: 8px; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(252,251,247,0.55); }
.ah-home-hero__corner--tl { left: var(--ah-gutter); }
.ah-home-hero__corner--tr { right: var(--ah-gutter); }
.ah-home-hero__rule { display: inline-block; width: 22px; height: 0.5px; background: rgba(252,251,247,0.35); }

.ah-home-hero__inner { position: absolute; left: var(--ah-gutter); bottom: 88px; max-width: 480px; }
.ah-home-hero__title { font-family: var(--ah-serif); font-size: clamp(3rem, 8vw, 5rem); line-height: 0.94; font-weight: 300; letter-spacing: 0; margin: 0 0 22px; color: inherit; }
.ah-home-hero__answer { font-family: var(--ah-sans); font-size: 15px; line-height: 1.6; color: rgba(252,251,247,0.72); max-width: 420px; margin: 0 0 30px; }
.ah-home-hero__cta { display: inline-flex; align-items: center; gap: 12px; color: #FCFBF7; text-decoration: none; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; padding-bottom: 6px; border-bottom: 0.5px solid rgba(252,251,247,0.5); }
.ah-home-hero__cta span { font-family: var(--ah-serif); font-size: 16px; }
.ah-home-hero__caption { position: absolute; bottom: 24px; left: 0; right: 0; text-align: center; font-family: var(--ah-serif); font-style: italic; font-size: 11px; letter-spacing: 0.06em; color: rgba(252,251,247,0.55); }

/* Editor byline */
.ah-home-byline { display: flex; align-items: center; justify-content: center; gap: 14px; padding: 28px var(--ah-gutter); border-bottom: 0.5px solid var(--ah-line); background: var(--ah-bg); }
.ah-home-byline__avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--ah-bg-elev); border: 0.5px solid var(--ah-line); flex-shrink: 0; }
.ah-home-byline__text { font-size: 12px; color: var(--ah-ink-soft); line-height: 1.5; }
.ah-home-byline__text em { font-family: var(--ah-serif); font-style: italic; }
.ah-home-byline__script { font-family: var(--ah-script); font-size: 14px; color: var(--ah-forest); margin-top: 2px; line-height: 1; }

/* Section skeleton */
.ah-home-section { padding: 64px var(--ah-gutter); max-width: var(--ah-content-w); margin: 0 auto; }
.ah-home-section__head { margin-bottom: 32px; }
.ah-home-section__head--split { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; }
.ah-home-section__head--center { text-align: center; }
.ah-home-section__eyebrow-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.ah-home-section__eyebrow, .ah-home-section__count { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ah-ink-muted); }
.ah-home-section__title { font-family: var(--ah-serif); font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 300; letter-spacing: 0; line-height: 1.05; margin: 0 0 14px; }
.ah-home-section__chapter { font-family: var(--ah-script); font-size: 1.5rem; color: var(--ah-forest); line-height: 1; margin-bottom: 4px; }
.ah-home-section__aside { font-family: var(--ah-serif); font-style: italic; font-size: 13px; color: var(--ah-ink-soft); max-width: 240px; text-align: right; margin: 0; }
.ah-home-section__foot { margin-top: 36px; display: flex; justify-content: flex-end; }

/* Today's edit */
.ah-todays-edit__grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.ah-todays-edit__hero .ah-card__media { aspect-ratio: 4/5; }
.ah-todays-edit__hero .ah-card__title { font-size: 1.5rem; margin-top: 8px; max-width: 440px; }
.ah-todays-edit__side { display: flex; flex-direction: column; gap: 22px; }

.ah-card--row { display: grid; grid-template-columns: 1fr 1.2fr; gap: 16px; align-items: center; text-decoration: none; }
.ah-card--row .ah-card__media { aspect-ratio: 4/3; }
.ah-card__body { display: flex; flex-direction: column; gap: 4px; }
.ah-card__title-lg { font-family: var(--ah-serif); font-size: 1.5rem; font-weight: 400; letter-spacing: 0; line-height: 1.15; margin: 12px 0 12px; }
.ah-card__quote { font-family: var(--ah-serif); font-style: italic; font-size: 14px; line-height: 1.55; color: var(--ah-ink-soft); margin: 0 0 16px; }
.ah-card__lede { font-family: var(--ah-serif); font-style: italic; font-size: 14px; line-height: 1.55; color: var(--ah-ink-soft); margin: 0; max-width: 520px; }
.ah-card__meta-row { display: flex; justify-content: space-between; align-items: baseline; padding-bottom: 12px; border-bottom: 0.5px solid var(--ah-line); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ah-ink-muted); }
.ah-card__badge--sm { top: 6px; right: 6px; font-size: 8px; padding: 2px 5px; }
.ah-card__media--tall { aspect-ratio: 4/5; }
.ah-card__media--wide { aspect-ratio: 3/2; }

.ah-link-arrow { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ah-forest); text-decoration: none; border-bottom: 0.5px solid var(--ah-forest); padding-bottom: 3px; }
.ah-link-arrow--walnut { color: var(--ah-walnut); border-bottom-color: var(--ah-walnut); }
.ah-link-arrow span { font-family: var(--ah-serif); font-size: 14px; }

/* Featured objects */
.ah-featured { background: var(--ah-bg-elev); max-width: none; padding-left: var(--ah-gutter); padding-right: var(--ah-gutter); padding-top: 72px; padding-bottom: 80px; }
.ah-featured > .ah-home-section__head, .ah-featured > .ah-featured__grid { max-width: var(--ah-content-w); margin-left: auto; margin-right: auto; }
.ah-featured__grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
.ah-featured__item { text-decoration: none; }
.ah-featured__item .ah-card__media { aspect-ratio: 4/5; }

/* Quiet moment */
.ah-quiet { padding: 120px var(--ah-gutter); text-align: center; max-width: none; background: var(--ah-bg); }
.ah-quiet__inner { max-width: 720px; margin: 0 auto; }
.ah-quiet__quote { font-family: var(--ah-serif); font-size: clamp(2rem, 5vw, 3.25rem); line-height: 1.15; font-weight: 300; letter-spacing: 0; color: var(--ah-ink); margin: 0; }
.ah-quiet__sign { margin-top: 36px; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ah-ink-muted); }

/* Held in the hand */
.ah-held { background: #F8F5EE; max-width: none; padding-left: var(--ah-gutter); padding-right: var(--ah-gutter); padding-top: 64px; padding-bottom: 56px; }
.ah-held > .ah-home-section__head, .ah-held__grid, .ah-held__thumbs { max-width: var(--ah-content-w); margin-left: auto; margin-right: auto; }
.ah-held__grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start; }
.ah-held__scene { min-height: 340px; background: radial-gradient(ellipse 90% 80% at 40% 45%, #FCFBF7 0%, #E8DDC4 100%); position: relative; }
.ah-held__body { padding: 12px 0; }
.ah-held__quote { font-family: var(--ah-serif); font-style: italic; font-size: 1.4rem; line-height: 1.35; font-weight: 300; color: var(--ah-ink); margin: 14px 0 20px; }
.ah-held__body-text { font-size: 14px; line-height: 1.7; color: var(--ah-ink-soft); margin: 0 0 14px; }
.ah-held__thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 20px; }
.ah-held__thumb { aspect-ratio: 3/2; background: #EDE4D1; }

/* Journal */
.ah-journal__grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
.ah-journal__hero { text-decoration: none; }
.ah-journal__hero .ah-card__media { aspect-ratio: 3/2; }
.ah-journal__side { display: flex; flex-direction: column; gap: 28px; }
.ah-journal__side .ah-card { text-decoration: none; }

/* Materials grid */
.ah-materials__lede { font-family: var(--ah-serif); font-style: italic; font-size: 14px; color: var(--ah-ink-muted); margin: 14px auto 0; max-width: 440px; }
.ah-materials__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 36px; }
.ah-material-tile { display: block; aspect-ratio: 1/1; position: relative; overflow: hidden; text-decoration: none; color: var(--ah-ink); }
.ah-material-tile__scene { position: absolute; inset: 0; }
.ah-material-tile__label { position: absolute; bottom: 12px; left: 14px; color: inherit; }
.ah-material-tile__name { font-family: var(--ah-serif); font-size: 1.125rem; font-weight: 400; }
.ah-material-tile__count { font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; margin-top: 3px; opacity: 0.7; }

/* Newsletter — forest green */
.ah-newsletter { background: var(--ah-forest); color: #FCFBF7; text-align: center; position: relative; overflow: hidden; padding: 96px var(--ah-gutter) 80px; max-width: none; }
.ah-newsletter__ornament { position: absolute; opacity: 0.15; color: rgba(252,251,247,1); }
.ah-newsletter__ornament--tl { right: 44px; bottom: 44px; width: 60px; height: 90px; }
.ah-newsletter__inner { max-width: 540px; margin: 0 auto; position: relative; z-index: 1; }
.ah-newsletter__eyebrow { font-family: var(--ah-script); font-size: 2.25rem; color: rgba(252,251,247,0.9); margin-bottom: 12px; line-height: 1; }
.ah-newsletter__title { font-family: var(--ah-serif); font-size: clamp(1.75rem, 4vw, 2.375rem); font-weight: 300; letter-spacing: 0; line-height: 1.1; margin: 0 auto 16px; color: inherit; }
.ah-newsletter__lede { font-size: 13px; color: rgba(252,251,247,0.72); margin: 0 auto 30px; line-height: 1.6; }
.ah-newsletter__form { display: flex; gap: 0; max-width: 420px; margin: 0 auto; border-bottom: 0.5px solid rgba(252,251,247,0.4); }
.ah-newsletter__form input { flex: 1; background: transparent; border: none; color: #FCFBF7; padding: 12px 4px; font-size: 13px; font-family: inherit; outline: none; }
.ah-newsletter__form input::placeholder { color: rgba(252,251,247,0.4); }
.ah-newsletter__form button { background: transparent; color: #FCFBF7; border: none; padding: 12px 4px; font-size: 11px; font-family: inherit; cursor: pointer; letter-spacing: 0.12em; text-transform: uppercase; }
.ah-newsletter__sign { margin-top: 32px; font-family: var(--ah-script); font-size: 1.5rem; color: rgba(252,251,247,0.9); line-height: 1.15; }
.ah-newsletter__sign--small { font-size: 1.0625rem; }
.ah-newsletter__meta { margin-top: 22px; font-size: 10px; color: rgba(252,251,247,0.4); letter-spacing: 0.08em; }

/* Wave rule variants */
.ah-wave-rule--short { width: 32px; height: 6px; margin: 16px 0; }
.ah-wave-rule--newsletter { margin: 0 auto 26px; background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 72 8' fill='none' stroke='rgba(252,251,247,0.55)' stroke-width='1.1' stroke-linecap='round'%3E%3Cpath d='M2 5 Q 12 1 22 5 T 42 5 T 70 4'/%3E%3C/svg%3E"); }

/* Placeholder media (until real photos uploaded) */
.ah-media-paper-notebook { background: radial-gradient(ellipse 85% 85% at 50% 55%, #E8DDC4 0%, #A89E85 100%); }
.ah-media-paper-notebook::before { content: ""; position: absolute; left: 18%; top: 12%; width: 64%; height: 76%; background: #F5EFE1; border: 0.5px solid #C9BFAE; }
.ah-media-fabric-toy { background: radial-gradient(ellipse 85% 85% at 50% 55%, #C88B6E 0%, #7A4B33 100%); }
.ah-media-fabric-toy::before { content: ""; position: absolute; left: 30%; top: 22%; width: 40%; height: 56%; background: #F5EFE1; border-radius: 50% 50% 40% 40% / 40% 40% 30% 30%; }
.ah-media-sketchbook { background: radial-gradient(ellipse 85% 85% at 50% 55%, #B5905E 0%, #4A3E2E 100%); }
.ah-media-sketchbook::before { content: ""; position: absolute; left: 20%; top: 14%; width: 60%; height: 72%; background: #DDD3BF; border-left: 3px solid #6B4A2B; }
.ah-media-clay { background: radial-gradient(ellipse 85% 85% at 50% 55%, #6B5B4A 0%, #2E241C 100%); }
.ah-media-clay::before { content: ""; position: absolute; left: 30%; top: 25%; width: 40%; height: 55%; background: #3C2E22; border-radius: 8% 8% 50% 50% / 4% 4% 40% 40%; }
.ah-media-paper-notebook-dark { background: radial-gradient(ellipse 85% 85% at 50% 55%, #6A5342 0%, #221A12 100%); }
.ah-media-paper-notebook-dark::before { content: ""; position: absolute; left: 20%; top: 14%; width: 60%; height: 72%; background: #F5EFE1; border: 0.5px solid #8A6A45; }
.ah-media-fabric-toy-dark { background: radial-gradient(ellipse 85% 85% at 50% 55%, #7A3A28 0%, #2E1810 100%); }
.ah-media-fabric-toy-dark::before { content: ""; position: absolute; left: 26%; top: 22%; width: 48%; height: 56%; background: #C88B6E; border-radius: 50% 50% 40% 40%; }
.ah-media-sketchbook-dark { background: radial-gradient(ellipse 85% 85% at 50% 55%, #7A5A38 0%, #221810 100%); }
.ah-media-sketchbook-dark::before { content: ""; position: absolute; left: 18%; top: 14%; width: 64%; height: 72%; background: #B5905E; border-left: 4px solid #3C2E20; }
.ah-media-woodblock { background: radial-gradient(ellipse 85% 85% at 50% 55%, #3E2E20 0%, #14100A 100%); }
.ah-media-woodblock::before { content: ""; position: absolute; left: 18%; top: 12%; width: 64%; height: 76%; background: #F5EFE1; border: 0.5px solid #8A6A45; }
.ah-media-woodblock::after { content: ""; position: absolute; left: 24%; top: 20%; width: 52%; height: 56%; background: #8A2A22; }
.ah-media-notebook-light { background: radial-gradient(ellipse 90% 80% at 40% 45%, #FCFBF7 0%, #E8DDC4 100%); }
.ah-media-notebook-light::before { content: ""; position: absolute; left: 25%; top: 20%; width: 40%; height: 60%; background: #F5EFE1; border: 0.5px solid #C9BFAE; }
.ah-media-detail-1 { background: radial-gradient(ellipse 80% 80% at 40% 50%, #FCFBF7 0%, #D6C8AC 100%); }
.ah-media-detail-2 { background: radial-gradient(ellipse 80% 80% at 60% 50%, #FCFBF7 0%, #C9BFAE 100%); }
.ah-media-detail-3 { background: radial-gradient(ellipse 80% 80% at 50% 55%, #FCFBF7 0%, #D6C8AC 100%); }
.ah-media-story-notebook { background: radial-gradient(ellipse 85% 85% at 50% 55%, #6A7A6A 0%, #2A362B 100%); }
.ah-media-story-notebook::before { content: ""; position: absolute; left: 14%; top: 24%; width: 72%; height: 52%; background: #8DA88A; }
.ah-media-story-textile { background: radial-gradient(ellipse 85% 85% at 50% 55%, #C88B6E 0%, #6A4232 100%); }
.ah-media-story-textile::before { content: ""; position: absolute; left: 20%; top: 18%; width: 60%; height: 64%; background: #F5EFE1; }
.ah-media-story-print { background: radial-gradient(ellipse 85% 85% at 50% 55%, #5A7080 0%, #1E2A34 100%); }
.ah-media-story-print::before { content: ""; position: absolute; left: 20%; top: 22%; width: 60%; height: 56%; background: #2E4A5A; }
.ah-media-material-paper { background: radial-gradient(ellipse 80% 80% at 50% 50%, #F5EFE1 0%, #C9BFAE 100%); }
.ah-media-material-textile { background: radial-gradient(ellipse 80% 80% at 50% 50%, #C88B6E 0%, #7A4B33 100%); }
.ah-media-material-wood { background: radial-gradient(ellipse 80% 80% at 50% 50%, #8D6B4A 0%, #3C2E20 100%); }
.ah-media-material-bamboo { background: radial-gradient(ellipse 80% 80% at 50% 50%, #A8A265 0%, #4A4020 100%); }
.ah-media-material-clay { background: radial-gradient(ellipse 80% 80% at 50% 50%, #6B5B4A 0%, #2E241C 100%); }

.ah-material-tile:hover .ah-material-tile__scene { transform: scale(1.03); }
.ah-material-tile__scene { transition: transform 0.5s var(--ah-ease); }

/* ================================================================
   OBJECT PAGE — segment 2
   ================================================================ */
.ah-object { padding: 24px var(--ah-gutter) 40px; max-width: var(--ah-content-w); margin: 0 auto; }
.ah-object__crumbs { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ah-ink-muted); padding-bottom: 8px; }
.ah-object__crumbs a { color: var(--ah-ink-muted); }
.ah-object__ribbon { display: flex; align-items: center; gap: 10px; font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ah-forest); padding-bottom: 20px; }
.ah-object__ribbon-line { display: inline-block; width: 22px; height: 0.5px; background: var(--ah-forest); }
.ah-object-hero { display: grid; grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
.ah-object-hero__media-main { aspect-ratio: 4/5; }
.ah-object-hero__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 10px; }
.ah-object-hero__thumb { aspect-ratio: 1/1; }
.ah-object-hero__eyebrow { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ah-ink-muted); margin-bottom: 12px; }
.ah-object-hero__title { font-family: var(--ah-serif); font-size: 2.25rem; font-weight: 300; line-height: 1.05; letter-spacing: 0; margin: 0 0 12px; }
.ah-object-hero__intro { font-family: var(--ah-serif); font-style: italic; font-size: 15px; line-height: 1.5; color: var(--ah-ink-soft); margin: 0 0 24px; }
.ah-object-specs { display: grid; grid-template-columns: auto 1fr; row-gap: 9px; column-gap: 18px; font-size: 12px; line-height: 1.35; margin-bottom: 28px; }
.ah-object-specs dt { color: var(--ah-ink-muted); letter-spacing: 0.06em; }
.ah-object-specs dd { margin: 0; }
.ah-object-cta { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 20px; background: var(--ah-ink); color: var(--ah-bg); text-decoration: none; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 10px; }
.ah-object-secondary { display: flex; gap: 8px; }
.ah-object-secondary button { flex: 1; padding: 11px 14px; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; background: transparent; border: 1px solid var(--ah-line); color: var(--ah-ink-soft); cursor: pointer; font-family: inherit; display: flex; align-items: center; justify-content: center; gap: 6px; }
.ah-object-ship { margin-top: 14px; font-size: 10px; color: var(--ah-ink-muted); }

.ah-object-why { margin: 0 var(--ah-gutter) 40px; padding: 26px 28px; border-left: 2px solid var(--ah-walnut); max-width: var(--ah-content-w); }
.ah-object-why__label { font-family: var(--ah-script); font-size: 1.25rem; color: var(--ah-forest); line-height: 1; margin-bottom: 10px; }
.ah-object-why p { font-family: var(--ah-serif); font-size: 16px; line-height: 1.55; margin: 0; max-width: 620px; }

/* ================================================================
   STORY PAGE — segment 3
   ================================================================ */
.ah-story-hero { padding: 40px var(--ah-gutter) 8px; max-width: 720px; margin: 0 auto; }
.ah-story-hero__meta { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ah-ink-muted); margin-bottom: 22px; }
.ah-story-hero__meta > .ah-story-hero__column { color: var(--ah-forest); }
.ah-story-hero__meta-sep { display: inline-block; width: 14px; height: 0.5px; background: var(--ah-ink-muted); }
.ah-story-hero__title { font-family: var(--ah-serif); font-size: 2.75rem; font-weight: 300; letter-spacing: 0; line-height: 1.02; margin: 0 0 22px; }
.ah-story-hero__answer { font-size: 17px; line-height: 1.55; color: var(--ah-ink-soft); margin: 0; }
.ah-story-hero__byline { display: flex; align-items: center; gap: 10px; margin-top: 18px; padding-top: 18px; border-top: 0.5px solid var(--ah-line); }
.ah-story-hero__avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--ah-bg-elev); border: 0.5px solid var(--ah-line); }
.ah-story-hero__byline-text { font-size: 11px; color: var(--ah-ink-soft); line-height: 1.4; }
.ah-story-hero__byline-text em { font-family: var(--ah-serif); font-style: italic; }

.ah-story-key-image { max-width: 960px; margin: 32px auto; padding: 0 var(--ah-gutter); }
.ah-story-key-image__frame { aspect-ratio: 16/9; }

.ah-story-body { padding: 8px var(--ah-gutter) 60px; display: grid; grid-template-columns: 1fr; gap: 36px; max-width: 960px; margin: 0 auto; }
.ah-story-toc { position: static; height: fit-content; font-size: 10px; }
.ah-story-toc__label { text-transform: uppercase; letter-spacing: 0.14em; color: var(--ah-ink-muted); padding-bottom: 10px; border-bottom: 0.5px solid var(--ah-line); margin-bottom: 12px; }
.ah-story-toc__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.ah-story-toc__list a { color: var(--ah-ink-muted); text-decoration: none; padding-left: 8px; display: block; }
.ah-story-toc__list a.is-current { color: var(--ah-ink-soft); border-left: 1.5px solid var(--ah-forest); font-weight: 500; }
.ah-story-body__prose h2 { font-family: var(--ah-serif); font-size: 1.5rem; font-weight: 400; letter-spacing: 0; line-height: 1.15; margin: 32px 0 12px; }
.ah-story-body__answer { font-family: var(--ah-serif); font-size: 11px; font-style: italic; color: var(--ah-ink-muted); margin: 0 0 12px; letter-spacing: 0.02em; }
.ah-story-body__prose p { font-size: 15px; line-height: 1.75; margin: 0 0 18px; }
.ah-story-pullquote { margin: 32px 0; padding: 22px 28px; border-left: 2px solid var(--ah-forest); background: var(--ah-bg-elev); }
.ah-story-pullquote__text { font-family: var(--ah-serif); font-style: italic; font-size: 20px; line-height: 1.4; margin-bottom: 10px; }
.ah-story-pullquote__attr { font-size: 11px; letter-spacing: 0.06em; color: var(--ah-ink-muted); }

/* Larger breakpoints */
@media (min-width: 768px) {
	.ah-todays-edit__grid { grid-template-columns: 1.35fr 1fr; }
	.ah-featured__grid { grid-template-columns: 1fr 1fr; }
	.ah-held__grid { grid-template-columns: 1.3fr 1fr; }
	.ah-journal__grid { grid-template-columns: 1.5fr 1fr; }
	.ah-materials__grid { grid-template-columns: repeat(5, 1fr); }
	.ah-object-hero { grid-template-columns: 1fr 0.85fr; }
	.ah-story-body { grid-template-columns: 0.32fr 1fr; }
	.ah-story-toc { position: sticky; top: 20px; }
	.ah-featured__grid { gap: 36px; }
	.ah-home-hero__inner { max-width: 520px; bottom: 100px; }
}

/* ================================================================
   ARCHIVES + HUB PAGES — Phase 4 completion
   ================================================================ */

.ah-archive { padding: 4rem var(--ah-gutter) 5rem; max-width: var(--ah-content-w); margin: 0 auto; }
.ah-archive__head { text-align: center; margin-bottom: 3rem; }
.ah-archive__title { font-family: var(--ah-serif); font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 300; letter-spacing: 0; margin: 0 auto 12px; }
.ah-archive__lede { font-family: var(--ah-serif); font-style: italic; font-size: 15px; color: var(--ah-ink-muted); max-width: 480px; margin: 14px auto 0; }

.ah-archive__filters { display: flex; align-items: baseline; gap: 1rem; padding: 1rem 0 2rem; border-bottom: 0.5px solid var(--ah-line); margin-bottom: 2.5rem; flex-wrap: wrap; }
.ah-archive__filter-label { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ah-ink-muted); }
.ah-archive__filter-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.ah-archive__filter-links a { font-size: 12px; color: var(--ah-ink-soft); text-decoration: none; padding: 4px 0; }
.ah-archive__filter-links a:hover { color: var(--ah-forest); border-bottom: 0.5px solid var(--ah-forest); }

.ah-archive__grid-wrap { padding: 0 var(--ah-gutter); }
.ah-archive__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; list-style: none; padding: 0; }
.ah-archive__grid > * { list-style: none; }
.ah-archive__item { text-decoration: none; color: var(--ah-ink); }
.ah-archive__item:hover { color: var(--ah-ink); }
.ah-archive__item .wp-block-post-featured-image { display: block; margin-bottom: 1rem; overflow: hidden; }
.ah-archive__item .wp-block-post-featured-image img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; transition: transform .5s var(--ah-ease); }
.ah-archive__item:hover .wp-block-post-featured-image img { transform: scale(1.02); }
.ah-archive__item .wp-block-post-title a { color: var(--ah-ink); text-decoration: none; }
.ah-archive__item .wp-block-post-title { font-family: var(--ah-serif); font-size: 1.125rem; font-weight: 400; line-height: 1.2; margin: 8px 0 6px; }
.ah-archive__item .wp-block-post-excerpt { font-family: var(--ah-serif); font-style: italic; font-size: 13px; line-height: 1.5; color: var(--ah-ink-muted); margin: 0; }
.ah-archive__item .wp-block-post-terms { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ah-ink-muted); margin: 0 0 6px; }
.ah-archive__item .wp-block-post-terms a { color: var(--ah-ink-muted); text-decoration: none; }

.ah-archive__grid--stories .ah-archive__item .wp-block-post-featured-image img { aspect-ratio: 3/2; }
.ah-archive__grid--collections .ah-archive__item .wp-block-post-featured-image img { aspect-ratio: 3/2; }

.ah-archive__grid--tiles { grid-template-columns: repeat(2, 1fr); gap: 12px; }
.ah-archive__tile { position: relative; aspect-ratio: 1/1; display: block; overflow: hidden; text-decoration: none; color: var(--ah-ink); }
.ah-archive__tile .wp-block-post-featured-image { position: absolute; inset: 0; margin: 0; height: 100%; }
.ah-archive__tile .wp-block-post-featured-image img { width: 100%; height: 100%; object-fit: cover; }
.ah-archive__tile .ah-material-tile__label { position: absolute; bottom: 12px; left: 14px; }
.ah-archive__tile .wp-block-post-title { font-family: var(--ah-serif); font-size: 1.125rem; font-weight: 400; color: var(--ah-ink); background: rgba(252,251,247,0.9); padding: 4px 10px; margin: 0; display: inline-block; }

.ah-card__meta-row-line { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; padding: 0; background: transparent; }
.ah-card__meta-row-line .wp-block-post-terms, .ah-card__meta-row-line .wp-block-post-date { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ah-ink-muted); }
.ah-card__meta-row-line .wp-block-post-terms a, .ah-card__meta-row-line .wp-block-post-date { color: var(--ah-ink-muted); text-decoration: none; }

.ah-archive__empty { text-align: center; font-family: var(--ah-serif); font-style: italic; font-size: 15px; color: var(--ah-ink-muted); padding: 3rem 0; }
.ah-archive__empty a { color: var(--ah-forest); border-bottom: 0.5px solid var(--ah-forest); }

/* Hub pages (single material/technique/collection) */
.ah-hub__hero { display: grid; grid-template-columns: 1fr; gap: 2rem; padding: 4rem var(--ah-gutter) 2rem; max-width: var(--ah-content-w); margin: 0 auto; }
.ah-hub__hero .wp-block-post-featured-image img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.ah-hub__intro { padding: 1rem 0; }
.ah-hub__title { font-family: var(--ah-serif); font-size: clamp(2.25rem, 4.5vw, 3.25rem); font-weight: 300; letter-spacing: 0; margin: 8px 0 14px; }
.ah-hub__lede { font-family: var(--ah-serif); font-style: italic; font-size: 15px; color: var(--ah-ink-muted); line-height: 1.5; }
.ah-hub__body { padding: 2rem var(--ah-gutter); }
.ah-hub__body h2, .ah-hub__body h3 { font-family: var(--ah-serif); font-weight: 400; }
.ah-hub__body p { line-height: 1.7; margin-bottom: 1.25em; }

.ah-collection__hero img { width: 100%; aspect-ratio: 16/8; object-fit: cover; }

/* Story hero refinements when using this template */
.ah-story-hero__meta .wp-block-post-terms, .ah-story-hero__meta .wp-block-post-date { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ah-ink-muted); }
.ah-story-hero__meta .wp-block-post-terms a { color: var(--ah-forest); text-decoration: none; }
.ah-story-key-image img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

/* Object hero refinements when using this template */
.ah-object-hero .wp-block-post-featured-image img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }

@media (min-width: 768px) {
	.ah-archive__grid { grid-template-columns: repeat(3, 1fr); }
	.ah-archive__grid--stories { grid-template-columns: repeat(2, 1fr); }
	.ah-archive__grid--collections { grid-template-columns: repeat(2, 1fr); }
	.ah-archive__grid--tiles { grid-template-columns: repeat(5, 1fr); }
	.ah-hub__hero { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
}
@media (min-width: 1200px) {
	.ah-archive__grid { grid-template-columns: repeat(4, 1fr); }
	.ah-archive__grid--stories { grid-template-columns: repeat(3, 1fr); }
}

/* ================================================================
   Acrehand clean framework patch
   ================================================================ */

.ah-home-hero--framework .ah-home-hero__scene {
	background:
		radial-gradient(ellipse 54% 58% at 64% 44%, rgba(215, 224, 202, 0.32) 0%, rgba(56, 70, 58, 0.18) 42%, rgba(18, 27, 22, 0) 70%),
		linear-gradient(135deg, #122019 0%, #25251f 48%, #3d342c 100%);
}
.ah-home-hero--framework .ah-home-hero__object {
	left: 54%;
	top: 15%;
	width: min(32vw, 420px);
	height: 62%;
	background: linear-gradient(160deg, #f7f1e7 0%, #d9e3d0 54%, #aebaa6 100%);
}
.ah-home-hero--framework .ah-home-hero__object-band { left: 54%; background: #263d31; }
.ah-home-hero--framework .ah-home-hero__object-shadow { left: 54%; background: #101713; }
.ah-home-hero__actions { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
.ah-home-hero__cta--secondary { color: rgba(252,251,247,0.78); border-bottom-color: rgba(252,251,247,0.28); }

.ah-video-strip {
	background: #f6f8f1;
	max-width: none;
	padding-left: var(--ah-gutter);
	padding-right: var(--ah-gutter);
}
.ah-video-strip > .ah-home-section__head,
.ah-video-strip__grid {
	max-width: var(--ah-content-w);
	margin-left: auto;
	margin-right: auto;
}
.ah-video-strip__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
}
.ah-video-card {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
	color: var(--ah-ink);
}
.ah-video-card__media {
	position: relative;
	aspect-ratio: 9 / 14;
	min-height: 280px;
	background:
		linear-gradient(160deg, rgba(255,255,255,0.1), rgba(255,255,255,0)),
		linear-gradient(135deg, #23362c, #8d9b84);
	overflow: hidden;
}
.ah-video-card__media::before {
	content: "";
	position: absolute;
	inset: 18px;
	border: 1px solid rgba(252,251,247,0.36);
}
.ah-video-card__media::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 56px;
	height: 56px;
	transform: translate(-50%, -50%);
	background: rgba(252,251,247,0.88);
	clip-path: polygon(34% 24%, 34% 76%, 78% 50%);
}
.ah-video-card__media span {
	position: absolute;
	left: 18px;
	bottom: 16px;
	font-size: 10px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(252,251,247,0.78);
}
.ah-video-card__body h3 {
	font-size: 1.25rem;
	font-weight: 400;
	margin: 4px 0 0;
}

.ah-featured--framework {
	background: #f2f4ed;
}
.ah-card--placeholder .ah-card__quote {
	max-width: 36rem;
}
.ah-placeholder-media {
	position: relative;
	overflow: hidden;
	background: #e5e9dc;
}
.ah-placeholder-media::before {
	content: "";
	position: absolute;
	inset: 14%;
	border: 1px solid rgba(30,26,23,0.22);
}
.ah-placeholder-media::after {
	content: "";
	position: absolute;
	left: 24%;
	right: 24%;
	top: 44%;
	height: 1px;
	background: rgba(30,26,23,0.2);
}
.ah-placeholder-media--sage { background: linear-gradient(135deg, #dfe8d5, #71846e); }
.ah-placeholder-media--ink { background: linear-gradient(135deg, #242a2c, #9ca7a3); }
.ah-placeholder-media--clay { background: linear-gradient(135deg, #d9c8b4, #836a5a); }
.ah-placeholder-media--paper { background: linear-gradient(135deg, #fbf6ea, #bcc8ba); }
.ah-placeholder-media--workshop { background: linear-gradient(135deg, #1f2e28, #b3bdab); }
.ah-placeholder-media--fiber { background: linear-gradient(135deg, #ebe6d8, #5d6f78); }
.ah-placeholder-media--gift { background: linear-gradient(135deg, #eef2e8, #37453b); }

.ah-pathways__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 22px;
}
.ah-pathway {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	color: var(--ah-ink);
	text-decoration: none;
	border-top: 1px solid var(--ah-line);
	padding-top: 22px;
}
.ah-pathway:hover { color: var(--ah-ink); }
.ah-pathway__media {
	aspect-ratio: 4 / 3;
	min-height: 220px;
}
.ah-pathway__body h3 {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 300;
	margin: 8px 0 10px;
}
.ah-pathway__body p {
	color: var(--ah-ink-soft);
	font-size: 14px;
	line-height: 1.7;
	margin: 0;
}

.ah-static-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin: 0 auto 3rem;
	max-width: var(--ah-content-w);
}
.ah-static-tile {
	display: flex;
	min-height: 148px;
	flex-direction: column;
	justify-content: space-between;
	padding: 18px;
	background: #eef2e8;
	color: var(--ah-ink);
	text-decoration: none;
	border: 1px solid rgba(30,26,23,0.08);
	scroll-margin-top: 96px;
}
.ah-static-tile:nth-child(2n) { background: #e5ecf0; }
.ah-static-tile:nth-child(3n) { background: #efe5d8; }
.ah-static-tile span {
	font-family: var(--ah-serif);
	font-size: 1.35rem;
}
.ah-static-tile small {
	font-size: 10px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ah-ink-muted);
}

.ah-product {
	background: #fbfaf6;
}
.ah-product__crumbs {
	max-width: var(--ah-content-w);
	margin: 0 auto;
	padding-top: 28px;
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ah-ink-muted);
}
.ah-product__crumbs a {
	color: inherit;
	text-decoration: none;
}
.ah-product__crumb-sep {
	display: inline-block;
	margin: 0 8px;
	color: rgba(30,26,23,0.32);
}
.ah-product__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 34px;
	max-width: var(--ah-content-w);
	margin: 0 auto;
	padding-top: 28px;
	padding-bottom: 64px;
}
.ah-product__grid--editorial {
	align-items: start;
}
.ah-product__hero-figure {
	position: relative;
	margin: 0;
	overflow: hidden;
	background: #e7e9e6;
	aspect-ratio: 4 / 5;
}
.ah-product__hero-figure img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.ah-product__image-placeholder {
	width: 100%;
	height: 100%;
	background:
		linear-gradient(135deg, rgba(255,255,255,0.16), rgba(255,255,255,0)),
		linear-gradient(160deg, #dde3df 0%, #c3cbc5 56%, #8b9891 100%);
}
.ah-product__image-placeholder::before {
	content: "";
	position: absolute;
	inset: 12%;
	border: 1px solid rgba(30,26,23,0.2);
}
.ah-product__media-strip {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin-top: 12px;
}
.ah-product__media-strip span {
	display: block;
	aspect-ratio: 1;
	background:
		linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0)),
		#e7e9e3;
	border: 1px solid rgba(30,26,23,0.08);
}
.ah-product__media-strip a {
	display: block;
	aspect-ratio: 1;
	overflow: hidden;
	background: #e7e9e3;
	border: 1px solid rgba(30,26,23,0.08);
}
.ah-product__media-strip img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 180ms ease;
}
.ah-product__media-strip a:hover img {
	transform: scale(1.03);
}
.ah-product__gallery-note,
.ah-product__ship {
	margin-top: 14px;
	font-size: 12px;
	line-height: 1.6;
	color: var(--ah-ink-muted);
}
.ah-product__info {
	border-top: 1px solid var(--ah-line);
	padding-top: 22px;
}
.ah-product__eyebrow,
.ah-product__use {
	font-size: 10px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ah-ink-muted);
}
.ah-product__use a {
	color: var(--ah-forest);
	text-decoration: none;
}
.ah-product__title {
	max-width: 11em;
	margin: 12px 0 16px;
	font-size: clamp(2.25rem, 5vw, 4.5rem);
	font-weight: 300;
	line-height: 0.98;
}
.ah-product__intro {
	margin: 0;
}
.ah-product__intro p,
.ah-product__body p {
	font-size: 15px;
	line-height: 1.8;
	color: var(--ah-ink-soft);
}
.ah-product__facts {
	display: grid;
	gap: 0;
	margin: 28px 0;
	border-top: 1px solid var(--ah-line);
	border-bottom: 1px solid var(--ah-line);
}
.ah-product__facts div {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	padding: 12px 0;
	border-bottom: 1px solid var(--ah-line);
	font-size: 13px;
}
.ah-product__facts div:last-child { border-bottom: 0; }
.ah-product__facts dt {
	color: var(--ah-ink-muted);
	margin: 0;
}
.ah-product__facts dd {
	margin: 0;
	font-weight: 400;
	text-align: right;
}

/* Editor-only working note — never shown to customers or search engines. */
.ah-admin-note {
	margin: 16px 0 0;
	padding: 10px 12px;
	font-size: 12px;
	line-height: 1.6;
	color: var(--ah-ink-soft);
	background: rgba(46,74,50,0.06);
	border: 1px dashed rgba(46,74,50,0.35);
	border-radius: 4px;
}
.ah-admin-note__tag {
	display: inline-block;
	margin-right: 8px;
	padding: 1px 7px;
	font-size: 10px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ah-bg);
	background: var(--ah-forest);
	border-radius: 3px;
	vertical-align: 1px;
}
.ah-product__actions {
	display: grid;
	gap: 12px;
}
.ah-product__primary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 48px;
	padding: 0 18px;
	background: var(--ah-ink);
	color: #fff;
	text-decoration: none;
	font-size: 12px;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	transition: background .25s var(--ah-ease), transform .25s var(--ah-ease);
}
.ah-product__primary:hover {
	background: var(--ah-forest);
	transform: translateY(-1px);
}
.ah-product__secondary {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}
.ah-product__secondary button {
	min-height: 42px;
	border: 1px solid var(--ah-line);
	background: transparent;
	color: var(--ah-ink);
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
}
.ah-product__body {
	background: #f5f6f1;
}
.ah-product__body h2,
.ah-product__body h3 {
	font-family: var(--ah-serif);
	font-weight: 400;
	letter-spacing: 0;
	color: var(--ah-ink);
}
.ah-product-editorial {
	border-top: 1px solid var(--ah-line);
	padding-top: 28px;
}
.ah-product-story {
	display: grid;
	gap: 26px;
	padding-top: 18px;
}
.ah-product-story__lead {
	font-family: var(--ah-serif);
	font-size: clamp(1.55rem, 3vw, 2.35rem);
	font-style: italic;
	line-height: 1.22;
	color: var(--ah-red);
	margin: 0 0 8px;
}
.ah-product-story h2 {
	margin: 0 0 10px;
	font-size: clamp(1.5rem, 2.6vw, 2.1rem);
	line-height: 1.18;
}
.ah-product-story p {
	margin-top: 0;
}
.ah-product-story__pair {
	display: grid;
	grid-template-columns: 1fr;
	gap: 22px;
	border-top: 1px solid var(--ah-line);
	padding-top: 26px;
}
.ah-product-story__uses {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
	margin: 14px 0 0;
	padding: 0;
	list-style: none;
}
.ah-product-story__uses li {
	border-top: 1px solid rgba(30,26,23,0.12);
	padding-top: 10px;
	font-size: 14px;
	line-height: 1.6;
	color: var(--ah-ink-soft);
}
.ah-product-editorial__note {
	margin-top: 28px;
	padding-top: 22px;
	border-top: 1px solid var(--ah-line);
}
.ah-product-editorial ul {
	margin: 0 0 1.5rem 1.1rem;
	padding: 0;
	color: var(--ah-ink-soft);
	font-size: 14px;
	line-height: 1.8;
}
.ah-product__detail-sections {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	margin: 0 0 36px;
	border-top: 1px solid var(--ah-line);
}
.ah-product__detail-section {
	padding: 20px 0;
	border-bottom: 1px solid var(--ah-line);
}
.ah-product__detail-section h2 {
	font-family: var(--ah-sans);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.13em;
	line-height: 1.35;
	margin: 0 0 8px;
	text-transform: uppercase;
	color: var(--ah-ink-muted);
}
.ah-product__detail-section p {
	margin: 0;
	max-width: none;
	font-size: 14px;
	line-height: 1.75;
	color: var(--ah-ink-soft);
}

.ah-shop-card__name a,
.ah-card__title a,
.ah-card__title-lg a {
	color: inherit;
	text-decoration: none;
}
.ah-shop-card__image {
	display: block;
	overflow: hidden;
	background: #e7e9e3;
	aspect-ratio: 4 / 5;
}
.ah-shop-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s var(--ah-ease);
}
.ah-shop-card:hover .ah-shop-card__image img {
	transform: scale(1.02);
}
.ah-shop-card__image--placeholder {
	background:
		linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0)),
		linear-gradient(160deg, #eceee8, #b9c4ba);
}

.ah-product-recs {
	max-width: var(--ah-content-w);
	margin: 0 auto;
	padding: 72px var(--ah-gutter) 86px;
}
.ah-product-recs__head {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
	align-items: end;
	border-top: 1px solid var(--ah-line);
	padding-top: 24px;
	margin-bottom: 28px;
}
.ah-product-recs__eyebrow {
	font-size: 10px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ah-ink-muted);
	margin-bottom: 8px;
}
.ah-product-recs__head h2 {
	font-family: var(--ah-serif);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 300;
	line-height: 1.05;
	margin: 0;
	color: var(--ah-ink);
}
.ah-product-recs__head p {
	max-width: 520px;
	margin: 12px 0 0;
	font-size: 14px;
	line-height: 1.65;
	color: var(--ah-ink-soft);
}
.ah-product-recs__head a {
	width: fit-content;
	color: var(--ah-ink);
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	border-bottom: 1px solid currentColor;
}
.ah-product-recs__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
}
.ah-rec-card {
	display: block;
	color: var(--ah-ink);
	text-decoration: none;
}
.ah-rec-card:hover {
	color: var(--ah-ink);
}
.ah-rec-card__media {
	position: relative;
	display: block;
	aspect-ratio: 4 / 5;
	margin: 0 0 14px;
	overflow: hidden;
	background: #e8e9e2;
}
.ah-rec-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s var(--ah-ease);
}
.ah-rec-card:hover .ah-rec-card__media img {
	transform: scale(1.025);
}
.ah-rec-card__media span {
	position: absolute;
	inset: 16%;
	border: 1px solid rgba(30,26,23,0.2);
}
.ah-rec-card__media span::before,
.ah-rec-card__media span::after {
	content: "";
	position: absolute;
	background: rgba(30,26,23,0.22);
}
.ah-rec-card__media span::before {
	left: 18%;
	right: 18%;
	top: 50%;
	height: 1px;
}
.ah-rec-card__media span::after {
	top: 18%;
	bottom: 18%;
	left: 50%;
	width: 1px;
}
.ah-rec-card__media--wood { background: linear-gradient(145deg, #f1dfbd 0%, #d3b47d 48%, #7a664a 100%); }
.ah-rec-card__media--paper { background: linear-gradient(145deg, #f7f4ec 0%, #dce2dc 58%, #96a59c 100%); }
.ah-rec-card__media--desk { background: linear-gradient(145deg, #dce5e8 0%, #a9b7bd 54%, #4d5b5f 100%); }
.ah-rec-card__media--gift { background: linear-gradient(145deg, #efe2d7 0%, #b98979 52%, #733d35 100%); }
.ah-rec-card__media--journal { background: linear-gradient(145deg, #f4efe0 0%, #9caa86 54%, #2f4a34 100%); }
.ah-rec-card__media--all { background: linear-gradient(145deg, #ebe8df 0%, #a9a095 50%, #312a26 100%); }
.ah-rec-card__body span {
	display: block;
	margin-bottom: 6px;
	font-size: 10px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ah-ink-muted);
}
.ah-rec-card__body h3 {
	margin: 0 0 6px;
	font-family: var(--ah-sans);
	font-size: clamp(1rem, 1.4vw, 1.2rem);
	font-weight: 400;
	line-height: 1.25;
}
.ah-rec-card__body p {
	margin: 0;
	font-size: 13px;
	line-height: 1.55;
	color: var(--ah-ink-soft);
}

.ah-home-hero__title,
.ah-home-section__title,
.ah-card__title-lg,
.ah-quiet__quote,
.ah-hub__title,
.ah-product__title,
.ah-shop-hero__title,
.ah-archive__title {
	letter-spacing: 0;
}

@media (min-width: 768px) {
	.ah-video-strip__grid { grid-template-columns: 1.25fr 0.85fr 0.85fr; align-items: start; }
	.ah-video-card--tall .ah-video-card__media { min-height: 520px; }
	.ah-pathways__grid { grid-template-columns: 1fr 1fr; }
	.ah-pathway { grid-template-columns: 0.9fr 1fr; align-items: center; }
	.ah-static-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
	.ah-static-grid--materials { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.ah-static-grid--collections { grid-template-columns: repeat(4, minmax(0, 1fr)); }
	.ah-product__grid { grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.72fr); gap: 64px; padding-top: 42px; }
	.ah-product__info { position: sticky; top: 104px; }
	.ah-product-story__pair { grid-template-columns: 0.95fr 1.05fr; }
	.ah-product-recs__head { grid-template-columns: 1fr auto; }
	.ah-product-recs__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 34px 26px; }
	.ah-product__detail-sections { grid-template-columns: repeat(2, minmax(0, 1fr)); border-left: 1px solid var(--ah-line); }
	.ah-product__detail-section { padding: 24px; border-right: 1px solid var(--ah-line); }
}

/* ================================================================
   SHOP-FIRST HOMEPAGE + ABOUT UPDATES
   ================================================================ */

.ah-featured--shop-grid {
	background: var(--ah-bg);
	padding-top: 52px;
	padding-bottom: 66px;
}
.ah-featured--shop-grid > .ah-home-section__head,
.ah-featured--shop-grid > .ah-featured-products {
	max-width: var(--ah-content-w);
	margin-left: auto;
	margin-right: auto;
}
.ah-featured-products {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 30px 16px;
}
.ah-featured-product {
	display: block;
	color: var(--ah-ink);
	text-align: center;
	text-decoration: none;
}
.ah-featured-product:hover { color: var(--ah-ink); }
.ah-featured-product__media {
	aspect-ratio: 1 / 1;
	min-height: 0;
	margin-bottom: 12px;
	transition: transform .5s var(--ah-ease), filter .5s var(--ah-ease);
}
.ah-featured-product__media--image {
	background: #e7e9e3;
	overflow: hidden;
}
.ah-featured-product__media--image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.ah-featured-product:hover .ah-featured-product__media {
	transform: translateY(-2px);
	filter: saturate(1.05);
}
.ah-featured-product h3 {
	font-family: var(--ah-sans);
	font-size: clamp(.82rem, 1.15vw, 1rem);
	font-weight: 400;
	line-height: 1.28;
	min-height: 2.56em;
	margin: 0 0 4px;
}
.ah-featured-product p {
	max-width: none;
	margin: 0;
	font-size: clamp(.82rem, 1.05vw, .95rem);
	line-height: 1.35;
	color: var(--ah-ink-soft);
}
.ah-product-slot span {
	position: absolute;
	inset: auto 12px 12px 12px;
	font-size: 9px;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: rgba(30,26,23,.48);
}
.ah-product-slot--01 { background: radial-gradient(circle at 50% 45%, rgba(252,251,247,.32), transparent 24%), linear-gradient(135deg, #d8c698, #6f705d); }
.ah-product-slot--02 { background: linear-gradient(135deg, #f8f3e9, #5c7280); }
.ah-product-slot--03 { background: repeating-linear-gradient(90deg, rgba(255,255,255,.16) 0 2px, transparent 2px 12px), linear-gradient(135deg, #f7f2e8, #9f7b53); }
.ah-product-slot--04 { background: repeating-linear-gradient(0deg, rgba(255,255,255,.1) 0 1px, transparent 1px 8px), linear-gradient(135deg, #d9c8b4, #71604f); }
.ah-product-slot--05 { background: repeating-linear-gradient(45deg, rgba(255,255,255,.15) 0 4px, transparent 4px 18px), linear-gradient(135deg, #d5c77c, #70713d); }
.ah-product-slot--06 { background: linear-gradient(135deg, #e9dfcf, #35453b); }
.ah-product-slot--07 { background: repeating-linear-gradient(0deg, rgba(255,255,255,.12) 0 1px, transparent 1px 10px), linear-gradient(135deg, #f2eee5, #6b7f8b); }
.ah-product-slot--08 { background: linear-gradient(135deg, #e5cfbf, #573528); }

.ah-material-shop {
	background: #f7f5ee;
	max-width: none;
	padding-left: var(--ah-gutter);
	padding-right: var(--ah-gutter);
}
.ah-material-shop > .ah-home-section__head,
.ah-material-shop__grid {
	max-width: var(--ah-content-w);
	margin-left: auto;
	margin-right: auto;
}
.ah-material-shop__lede {
	margin: 0 auto;
	max-width: 560px;
	font-family: var(--ah-serif);
	font-style: italic;
	font-size: 15px;
	line-height: 1.65;
	color: var(--ah-ink-soft);
}
.ah-material-shop__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}
.ah-material-card {
	position: relative;
	display: block;
	aspect-ratio: 1 / 1;
	min-height: 150px;
	overflow: hidden;
	color: #FCFBF7;
	text-decoration: none;
	background: #ddd5c6;
}
.ah-material-card:hover { color: #FCFBF7; }
.ah-material-card__photo {
	position: absolute;
	inset: 0;
	transition: transform .55s var(--ah-ease), filter .55s var(--ah-ease);
}
.ah-material-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(20,18,16,.46), rgba(20,18,16,.04) 62%);
}
.ah-material-card:hover .ah-material-card__photo {
	transform: scale(1.04);
	filter: contrast(1.03);
}
.ah-material-card__mark {
	position: absolute;
	z-index: 2;
	left: 50%;
	top: 50%;
	display: grid;
	width: 52px;
	height: 52px;
	place-items: center;
	border-radius: 50%;
	border: 1px solid rgba(252,251,247,.85);
	background: rgba(30,26,23,.28);
	backdrop-filter: blur(3px);
	font-family: var(--ah-serif);
	font-size: 1.35rem;
	transform: translate(-50%, -42%);
	opacity: 0;
	transition: opacity .24s var(--ah-ease), transform .24s var(--ah-ease);
}
.ah-material-card:hover .ah-material-card__mark,
.ah-material-card:focus-visible .ah-material-card__mark {
	opacity: 1;
	transform: translate(-50%, -50%);
}
.ah-material-card__label {
	position: absolute;
	z-index: 2;
	left: 16px;
	right: 16px;
	bottom: 14px;
	font-family: var(--ah-serif);
	font-size: clamp(1.1rem, 2vw, 1.45rem);
	line-height: 1.15;
}
.ah-material-card--wood .ah-material-card__photo {
	background:
		repeating-linear-gradient(90deg, rgba(255,255,255,.08) 0 2px, transparent 2px 10px),
		linear-gradient(135deg, #c79a61, #6b4528 58%, #2e2018);
}
.ah-material-card--paper .ah-material-card__photo {
	background:
		radial-gradient(circle at 22% 28%, rgba(255,255,255,.48), transparent 28%),
		linear-gradient(135deg, #f7f0df, #c8bdab 58%, #7f7569);
}
.ah-material-card--textile .ah-material-card__photo {
	background:
		repeating-linear-gradient(0deg, rgba(255,255,255,.11) 0 1px, transparent 1px 8px),
		repeating-linear-gradient(90deg, rgba(30,26,23,.12) 0 1px, transparent 1px 9px),
		linear-gradient(135deg, #c8896d, #6e4636);
}
.ah-material-card--straw .ah-material-card__photo {
	background:
		repeating-linear-gradient(90deg, rgba(255,255,255,.16) 0 2px, transparent 2px 12px),
		linear-gradient(135deg, #d8c698, #6f705d 62%, #3e4235);
}
.ah-material-card--bamboo .ah-material-card__photo {
	background:
		repeating-linear-gradient(45deg, rgba(255,255,255,.13) 0 4px, transparent 4px 18px),
		linear-gradient(135deg, #d5c77c, #70713d 62%, #36351d);
}
.ah-material-card--bead .ah-material-card__photo {
	background:
		radial-gradient(circle at 30% 36%, #f3ecdf 0 8%, transparent 9%),
		radial-gradient(circle at 55% 55%, #7e8d91 0 8%, transparent 9%),
		linear-gradient(135deg, #e5ded2, #4b5657);
}

.ah-collection-preview__grid,
.ah-collection-directory {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
}
.ah-collection-card,
.ah-collection-directory__item {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
	color: var(--ah-ink);
	text-decoration: none;
	border-top: 1px solid var(--ah-line);
	padding-top: 18px;
}
.ah-collection-card:hover,
.ah-collection-directory__item:hover { color: var(--ah-ink); }
.ah-collection-card__media,
.ah-collection-directory__media {
	display: block;
	aspect-ratio: 4 / 3;
	background: #ece7da;
	transition: transform .45s var(--ah-ease), filter .45s var(--ah-ease);
}
.ah-collection-card:hover .ah-collection-card__media,
.ah-collection-directory__item:hover .ah-collection-directory__media {
	transform: translateY(-2px);
	filter: saturate(1.04);
}
.ah-collection-card__body,
.ah-collection-directory__body {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.ah-collection-card strong,
.ah-collection-directory__body strong {
	font-family: var(--ah-serif);
	font-size: clamp(1.4rem, 3vw, 2rem);
	font-weight: 300;
	line-height: 1.1;
}
.ah-collection-card small,
.ah-collection-directory__body small {
	max-width: 28ch;
	font-size: 12px;
	line-height: 1.55;
	color: var(--ah-ink-soft);
}
.ah-collection-card--desk .ah-collection-card__media,
.ah-collection-directory__item--desk .ah-collection-directory__media { background: linear-gradient(135deg, #f2eadb, #8e7658); }
.ah-collection-card--table .ah-collection-card__media,
.ah-collection-directory__item--table .ah-collection-directory__media { background: linear-gradient(135deg, #ddd8c6, #6f7c65); }
.ah-collection-card--gifts .ah-collection-card__media,
.ah-collection-directory__item--gifts .ah-collection-directory__media { background: linear-gradient(135deg, #efe4d6, #9b6752); }
.ah-collection-card--lighting .ah-collection-card__media,
.ah-collection-directory__item--lighting .ah-collection-directory__media { background: radial-gradient(circle at 52% 42%, rgba(252,251,247,.45), transparent 22%), linear-gradient(135deg, #e2d5bd, #69716a); }
.ah-collection-card--wall .ah-collection-card__media,
.ah-collection-directory__item--wall .ah-collection-directory__media { background: linear-gradient(135deg, #f8f3e9, #5c7280); }
.ah-collection-directory__item--rituals .ah-collection-directory__media { background: linear-gradient(135deg, #d9d4c5, #2e4a32); }
.ah-collection-directory__item--textile .ah-collection-directory__media { background: linear-gradient(135deg, #ead8c5, #6b3f31); }
.ah-collection-archive__head { margin-bottom: 2.25rem; }
.ah-collection-directory {
	max-width: var(--ah-content-w);
	margin: 0 auto 2rem;
}
.ah-collection-archive__note {
	max-width: 720px;
	margin: 0 auto 3.25rem;
	padding: 18px 0;
	border-top: 1px solid var(--ah-line);
	border-bottom: 1px solid var(--ah-line);
}
.ah-collection-archive__note p {
	margin: 0 auto;
	text-align: center;
	font-family: var(--ah-serif);
	font-style: italic;
	font-size: 14px;
	line-height: 1.65;
	color: var(--ah-ink-muted);
}

.ah-about {
	padding: 0;
}
.ah-about-hero {
	display: grid;
	grid-template-columns: 1fr;
	gap: 34px;
	max-width: var(--ah-content-w);
	margin: 0 auto;
	padding: 44px var(--ah-gutter) 54px;
	align-items: center;
}
.ah-about-hero__media {
	position: relative;
	min-height: 340px;
	background:
		linear-gradient(160deg, rgba(252,251,247,.18), rgba(252,251,247,0)),
		linear-gradient(135deg, #28372d, #ad9b82);
	overflow: hidden;
}
.ah-about-hero__media span {
	position: absolute;
	left: 18%;
	top: 18%;
	width: 64%;
	height: 64%;
	border: 1px solid rgba(252,251,247,.42);
	background:
		repeating-linear-gradient(90deg, rgba(252,251,247,.16) 0 1px, transparent 1px 12px),
		rgba(252,251,247,.08);
}
.ah-about-hero__body h1 {
	font-size: clamp(2.5rem, 6vw, 4.6rem);
	font-weight: 300;
	letter-spacing: 0;
	line-height: 1.02;
	margin: 0 0 24px;
}
.ah-about-hero__body p {
	font-family: var(--ah-serif);
	font-style: italic;
	font-size: clamp(1.05rem, 2vw, 1.35rem);
	line-height: 1.55;
	color: var(--ah-ink-soft);
	margin: 0;
}
.ah-about-intro {
	padding: 72px var(--ah-gutter);
	background: #f7f5ee;
}
.ah-about-intro__lead {
	max-width: 820px;
	margin: 0 auto;
	font-family: var(--ah-serif);
	font-size: clamp(1.45rem, 3vw, 2.25rem);
	font-weight: 300;
	line-height: 1.32;
	text-align: center;
}
.ah-about-intro__rule {
	width: 72px;
	height: 1px;
	margin: 34px auto 0;
	background: var(--ah-forest);
}
.ah-about-blocks {
	display: grid;
	grid-template-columns: 1fr;
	max-width: var(--ah-content-w);
	margin: 0 auto;
	padding: 70px var(--ah-gutter);
	border-bottom: 1px solid var(--ah-line);
}
.ah-about-block {
	display: grid;
	grid-template-columns: 54px 1fr;
	gap: 18px 26px;
	padding: 26px 0;
	border-top: 1px solid var(--ah-line);
}
.ah-about-block__num {
	font-size: 10px;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--ah-ink-muted);
}
.ah-about-block h2 {
	font-size: clamp(1.45rem, 3vw, 2.1rem);
	font-weight: 300;
	margin: 0;
}
.ah-about-block p {
	grid-column: 2;
	margin: 0;
	font-size: 14px;
	line-height: 1.8;
	color: var(--ah-ink-soft);
}
.ah-about-materials {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	max-width: var(--ah-content-w);
	margin: 0 auto;
	padding: 72px var(--ah-gutter);
	align-items: center;
}
.ah-about-materials__body h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 300;
	line-height: 1.08;
	margin: 0 0 20px;
}
.ah-about-materials__body p {
	font-size: 15px;
	line-height: 1.75;
	color: var(--ah-ink-soft);
	margin: 0 0 24px;
}
.ah-about-materials__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}
.ah-about-materials__tile {
	display: block;
	aspect-ratio: 1 / 1;
	background: #e6dfcf;
}
.ah-about-materials__tile--wood { background: linear-gradient(135deg, #d1ad76, #6b4528); }
.ah-about-materials__tile--paper { background: linear-gradient(135deg, #fbf6ea, #b8ad9d); }
.ah-about-materials__tile--textile { background: linear-gradient(135deg, #c8896d, #644033); }
.ah-about-materials__tile--bamboo { background: linear-gradient(135deg, #d6c76f, #5e6437); }
.ah-about-closing {
	padding: 88px var(--ah-gutter);
	text-align: center;
	background: #1f2e28;
	color: #FCFBF7;
}
.ah-about-closing p {
	max-width: none;
	margin: 0 auto 28px;
	font-family: var(--ah-serif);
	font-size: clamp(1.85rem, 4vw, 3rem);
	font-weight: 300;
	line-height: 1.15;
}
.ah-about-closing .ah-btn {
	color: #FCFBF7;
	border-color: rgba(252,251,247,.7);
}
.ah-about-closing .ah-btn:hover {
	background: #FCFBF7;
	color: #1f2e28;
}

.ah-categories {
	padding: 0;
}
.ah-categories-hero {
	max-width: 820px;
	margin: 0 auto;
	padding: 70px var(--ah-gutter) 48px;
	text-align: center;
}
.ah-categories-hero h1 {
	font-family: var(--ah-serif);
	font-size: clamp(3rem, 7vw, 5rem);
	font-weight: 300;
	line-height: 1;
	letter-spacing: 0;
	margin: 0 0 22px;
}
.ah-categories-hero p {
	max-width: 620px;
	margin: 0 auto;
	font-family: var(--ah-serif);
	font-style: italic;
	font-size: clamp(1.05rem, 2vw, 1.35rem);
	line-height: 1.55;
	color: var(--ah-ink-soft);
}
.ah-category-directory {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	max-width: var(--ah-content-w);
	margin: 0 auto;
	padding: 0 var(--ah-gutter) 72px;
}
.ah-category-entry {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	color: var(--ah-ink);
	text-decoration: none;
	border-top: 1px solid var(--ah-line);
	padding-top: 20px;
	scroll-margin-top: 96px;
}
.ah-category-entry:hover { color: var(--ah-ink); }
.ah-category-entry__image {
	display: block;
	aspect-ratio: 4 / 3;
	background: #e7dfd0;
	transition: transform .45s var(--ah-ease), filter .45s var(--ah-ease);
}
.ah-category-entry:hover .ah-category-entry__image {
	transform: translateY(-2px);
	filter: saturate(1.04);
}
.ah-category-entry__body {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.ah-category-entry strong {
	font-family: var(--ah-serif);
	font-size: clamp(1.5rem, 3vw, 2.15rem);
	font-weight: 300;
	line-height: 1.08;
}
.ah-category-entry small {
	display: block;
	max-width: 36ch;
	font-size: 13px;
	line-height: 1.65;
	color: var(--ah-ink-soft);
}
.ah-category-entry--wall .ah-category-entry__image { background: linear-gradient(135deg, #f8f3e9, #5c7280); }
.ah-category-entry--tabletop .ah-category-entry__image { background: linear-gradient(135deg, #ddd8c6, #6f7c65); }
.ah-category-entry--desk .ah-category-entry__image { background: linear-gradient(135deg, #f2eadb, #8e7658); }
.ah-category-entry--storage .ah-category-entry__image { background: repeating-linear-gradient(45deg, rgba(255,255,255,.15) 0 4px, transparent 4px 18px), linear-gradient(135deg, #d5c77c, #70713d); }
.ah-category-entry--textiles .ah-category-entry__image { background: repeating-linear-gradient(0deg, rgba(255,255,255,.11) 0 1px, transparent 1px 8px), linear-gradient(135deg, #c8896d, #6e4636); }
.ah-category-entry--lighting .ah-category-entry__image { background: radial-gradient(circle at 52% 42%, rgba(252,251,247,.45), transparent 22%), linear-gradient(135deg, #e2d5bd, #69716a); }
.ah-category-entry--toys .ah-category-entry__image { background: linear-gradient(135deg, #efe4d6, #573528); }
.ah-category-entry--gifts .ah-category-entry__image { background: linear-gradient(135deg, #efe5d1, #9b6752); }
.ah-categories-note {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	align-items: end;
	max-width: var(--ah-content-w);
	margin: 0 auto 72px;
	padding: 36px var(--ah-gutter) 0;
	border-top: 1px solid var(--ah-line);
}
.ah-categories-note h2 {
	max-width: 620px;
	font-size: clamp(1.7rem, 3vw, 2.55rem);
	font-weight: 300;
	line-height: 1.12;
	margin: 0 0 18px;
}
.ah-categories-note p {
	max-width: 640px;
	margin: 0;
	font-size: 15px;
	line-height: 1.75;
	color: var(--ah-ink-soft);
}

.ah-material-guide {
	display: grid;
	grid-template-columns: 1fr;
	gap: 28px;
	max-width: var(--ah-content-w);
	margin: 0 auto 72px;
	padding: 0 var(--ah-gutter);
}
.ah-material-guide__copy,
.ah-material-guide__list {
	border-top: 1px solid var(--ah-line);
	padding-top: 24px;
}
.ah-material-guide h2 {
	font-size: clamp(1.75rem, 3vw, 2.45rem);
	font-weight: 300;
	letter-spacing: 0;
	line-height: 1.08;
	margin: 0 0 14px;
}
.ah-material-guide p {
	max-width: 680px;
	margin: 0 0 16px;
	font-size: 15px;
	line-height: 1.75;
	color: var(--ah-ink-soft);
}
.ah-material-guide__list p {
	padding-bottom: 14px;
	border-bottom: 1px solid var(--ah-line);
}

.ah-shop-preview {
	max-width: var(--ah-content-w);
	margin: 0 auto 56px;
	padding: 0 var(--ah-gutter);
}
.ah-shop-preview__head {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	margin-bottom: 26px;
	padding-top: 28px;
	border-top: 1px solid var(--ah-line);
}
.ah-shop-preview__head h2 {
	font-size: clamp(1.8rem, 3.2vw, 2.8rem);
	font-weight: 300;
	line-height: 1.08;
	margin: 0;
}
.ah-shop-preview__head p {
	max-width: 680px;
	margin: 0;
	color: var(--ah-ink-soft);
	font-size: 14px;
	line-height: 1.7;
}
.ah-shop-preview__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}
.ah-shop-preview__grid article {
	min-height: 156px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 16px;
	background: var(--ah-bg-elev);
	border: 1px solid rgba(30,26,23,0.08);
}
.ah-shop-preview__grid span {
	font-size: 10px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ah-ink-muted);
}
.ah-shop-preview__grid h3 {
	font-size: 1.2rem;
	font-weight: 400;
	line-height: 1.15;
	margin: 24px 0 8px;
}
.ah-shop-preview__grid p {
	margin: 0;
	font-size: 12px;
	line-height: 1.45;
	color: var(--ah-ink-muted);
}

.ah-shop-landing {
	position: relative;
	max-width: calc(var(--ah-content-w) + 96px);
	margin: 0 auto;
	padding: 28px var(--ah-gutter) 0;
}
.ah-shop-landing__media {
	position: relative;
	min-height: 360px;
	aspect-ratio: 16 / 7;
	overflow: hidden;
	background: #29342e;
}
.ah-shop-landing__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(20,24,21,.62) 0%, rgba(20,24,21,.22) 48%, rgba(20,24,21,.04) 100%);
	pointer-events: none;
}
.ah-shop-landing__media img,
.ah-shop-landing__media video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.ah-shop-landing__placeholder {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(18,26,21,.92), rgba(46,74,50,.42), rgba(188,177,155,.2)),
		linear-gradient(135deg, #17231d 0%, #677566 58%, #d8d6c8 100%);
}
.ah-shop-landing__placeholder span {
	position: absolute;
	right: 8%;
	top: 18%;
	width: min(34vw, 420px);
	aspect-ratio: 4 / 3;
	border: 1px solid rgba(252,251,247,.35);
	background:
		repeating-linear-gradient(90deg, rgba(252,251,247,.16) 0 1px, transparent 1px 18px),
		linear-gradient(135deg, rgba(252,251,247,.22), rgba(252,251,247,.04));
}
.ah-shop-landing__copy {
	position: absolute;
	left: calc(var(--ah-gutter) + 32px);
	bottom: 42px;
	z-index: 1;
	max-width: min(560px, calc(100% - var(--ah-gutter) * 2 - 64px));
	color: #fffdf7;
}
.ah-shop-landing__kicker {
	font-size: 10px;
	letter-spacing: .16em;
	text-transform: uppercase;
	margin-bottom: 14px;
	color: rgba(255,253,247,.72);
}
.ah-shop-landing h1 {
	font-family: var(--ah-serif);
	font-size: clamp(2.8rem, 6.8vw, 6.7rem);
	font-weight: 300;
	letter-spacing: 0;
	line-height: .9;
	margin: 0 0 18px;
}
.ah-shop-landing p {
	max-width: 480px;
	margin: 0;
	font-size: 15px;
	line-height: 1.65;
	color: rgba(255,253,247,.82);
}
.ah-shop-paths {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	max-width: var(--ah-content-w);
	margin: 34px auto 42px;
	padding: 0 var(--ah-gutter);
}
.ah-shop-path {
	display: grid;
	gap: 12px;
	min-height: 168px;
	align-content: space-between;
	padding: 18px;
	color: var(--ah-ink);
	text-decoration: none;
	background: var(--ah-bg-elev);
	border: 1px solid rgba(30,26,23,.08);
}
.ah-shop-path:hover {
	color: var(--ah-ink);
	background: #fffdf8;
}
.ah-shop-path__label {
	font-size: 10px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--ah-ink-muted);
}
.ah-shop-path strong {
	max-width: 13em;
	font-family: var(--ah-serif);
	font-size: clamp(1.35rem, 2vw, 1.85rem);
	font-weight: 300;
	line-height: 1.1;
}
.ah-shop-path em {
	max-width: 26em;
	font-style: normal;
	font-size: 13px;
	line-height: 1.6;
	color: var(--ah-ink-soft);
}
.ah-shop-path--material { background: linear-gradient(135deg, #f7f1e5 0%, #d7ddcf 100%); }
.ah-shop-path--use { background: linear-gradient(135deg, #eef2f1 0%, #d7cfc1 100%); }
.ah-shop-path--journal { background: linear-gradient(135deg, #f6ecdf 0%, #c7a690 100%); }
.ah-shop-catalog-head {
	max-width: var(--ah-content-w);
	margin: 0 auto;
	padding: 10px var(--ah-gutter) 20px;
}
.ah-shop-catalog-head header {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	border-top: 1px solid var(--ah-line);
	padding-top: 26px;
}
.ah-shop-catalog-head h2 {
	max-width: 640px;
	margin: 0;
	font-size: clamp(1.9rem, 3.5vw, 3rem);
	font-weight: 300;
	line-height: 1.08;
}
.ah-shop-catalog-head p {
	max-width: 560px;
	margin: 0;
	font-size: 14px;
	line-height: 1.7;
	color: var(--ah-ink-soft);
}
.ah-shop .ah-shop-grid-wrap {
	padding: 0 var(--ah-gutter) 72px;
}
.ah-shop-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 30px 14px;
	list-style: none;
	padding: 0;
}
.ah-shop-grid > * {
	list-style: none;
}
.ah-shop-card {
	color: var(--ah-ink);
}
.ah-shop-card__image {
	position: relative;
	aspect-ratio: 1 / 1;
}
.ah-shop-card__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity .28s var(--ah-ease);
}
.ah-shop-card:hover .ah-shop-card__video {
	opacity: 1;
}
.ah-shop-card__motion {
	position: absolute;
	left: 10px;
	bottom: 10px;
	padding: 6px 8px;
	background: rgba(20,24,21,.72);
	color: #fffdf7;
	font-size: 9px;
	letter-spacing: .12em;
	text-transform: uppercase;
	opacity: 0;
	transform: translateY(4px);
	transition: opacity .24s var(--ah-ease), transform .24s var(--ah-ease);
}
.ah-shop-card:hover .ah-shop-card__motion {
	opacity: 1;
	transform: translateY(0);
}
.ah-shop-card__body {
	padding-top: 10px;
}
.ah-shop-card__name {
	margin: 0 0 6px;
	font-family: var(--ah-sans);
	font-size: clamp(.92rem, 1.15vw, 1.05rem);
	font-weight: 400;
	line-height: 1.25;
}
.ah-shop-card__details {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	align-items: baseline;
	font-size: 11px;
	line-height: 1.4;
	color: var(--ah-ink-muted);
}
.ah-shop-card__details strong {
	font-weight: 400;
	color: var(--ah-ink);
	white-space: nowrap;
}
.ah-journal-columns {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	max-width: var(--ah-content-w);
	margin: -18px auto 42px;
	padding: 0 var(--ah-gutter);
}
.ah-journal-column {
	display: flex;
	min-height: 190px;
	flex-direction: column;
	justify-content: space-between;
	padding: 22px;
	background: var(--ah-bg-elev);
	border: 1px solid rgba(30,26,23,0.08);
	color: var(--ah-ink);
	text-decoration: none;
	scroll-margin-top: 96px;
}
.ah-journal-column:hover {
	color: var(--ah-ink);
	background: #fffdf8;
}
.ah-journal-column span {
	font-size: 10px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ah-ink-muted);
}
.ah-journal-column h2 {
	font-size: 1.45rem;
	font-weight: 400;
	line-height: 1.1;
	margin: 28px 0 10px;
}
.ah-journal-column p {
	margin: 0;
	font-size: 13px;
	line-height: 1.65;
	color: var(--ah-ink-soft);
}

.ah-info-page {
	padding: 0;
}
.ah-info-hero {
	max-width: 840px;
	margin: 0 auto;
	padding: 76px var(--ah-gutter) 44px;
}
.ah-info-hero--center {
	text-align: center;
}
.ah-info-hero h1 {
	font-size: clamp(2.4rem, 6vw, 4.4rem);
	font-weight: 300;
	letter-spacing: 0;
	line-height: 1.02;
	margin: 0 0 18px;
}
.ah-info-hero p {
	max-width: 680px;
	font-family: var(--ah-serif);
	font-size: 18px;
	font-style: italic;
	line-height: 1.55;
	color: var(--ah-ink-soft);
}
.ah-info-hero--center p {
	margin-left: auto;
	margin-right: auto;
}
.ah-info-grid,
.ah-policy-blocks,
.ah-faq-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	max-width: var(--ah-content-w);
	margin: 0 auto 72px;
	padding: 0 var(--ah-gutter);
}
.ah-info-card,
.ah-policy-blocks article,
.ah-faq-list article {
	padding: 24px 0;
	border-top: 1px solid var(--ah-line);
}
.ah-info-card:last-child,
.ah-policy-blocks article:last-child,
.ah-faq-list article:last-child {
	border-bottom: 1px solid var(--ah-line);
}
.ah-info-card h2,
.ah-policy-blocks h2,
.ah-faq-list h2 {
	font-size: 1.35rem;
	font-weight: 400;
	line-height: 1.16;
	margin: 0 0 10px;
}
.ah-info-card p,
.ah-policy-blocks p,
.ah-faq-list p {
	max-width: 62ch;
	margin: 0;
	font-size: 15px;
	line-height: 1.75;
	color: var(--ah-ink-soft);
}
.ah-shipping-rates {
	display: grid;
	grid-template-columns: 1fr;
	gap: 28px;
	max-width: var(--ah-content-w);
	margin: 0 auto 52px;
	padding: 0 var(--ah-gutter);
}
.ah-shipping-rates h2 {
	max-width: 8.4em;
	margin: 0 0 14px;
	font-size: clamp(2rem, 4vw, 3.25rem);
	font-weight: 300;
	line-height: 1;
}
.ah-shipping-rates p {
	max-width: 52ch;
	margin: 0;
	color: var(--ah-ink-soft);
	font-size: 15px;
	line-height: 1.75;
}
.ah-rate-table {
	border-top: 1px solid var(--ah-ink);
}
.ah-rate-table [role="row"] {
	display: grid;
	grid-template-columns: 1.15fr .9fr .7fr;
	gap: 16px;
	padding: 16px 0;
	border-bottom: 1px solid var(--ah-line);
}
.ah-rate-table [role="columnheader"] {
	font-size: 10px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ah-ink-muted);
}
.ah-rate-table [role="cell"] {
	font-size: 14px;
	line-height: 1.35;
}
.ah-contact-panel,
.ah-newsletter-panel,
.ah-saved-panel {
	display: grid;
	grid-template-columns: 1fr;
	gap: 28px;
	max-width: var(--ah-content-w);
	margin: 0 auto 80px;
	padding: 36px var(--ah-gutter);
	background: var(--ah-bg-elev);
}
.ah-contact-panel__copy h2,
.ah-newsletter-panel__copy h2 {
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	font-weight: 300;
	line-height: 1.08;
	margin: 0 0 14px;
}
.ah-newsletter-panel__copy ul {
	margin: 0;
	padding-left: 1.2rem;
	color: var(--ah-ink-soft);
	line-height: 1.75;
}
.ah-form {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}
.ah-form label {
	display: grid;
	gap: 7px;
}
.ah-form__hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
.ah-form label span {
	font-size: 10px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ah-ink-muted);
}
.ah-form input,
.ah-form textarea,
.ah-form select {
	width: 100%;
	border: 1px solid var(--ah-line);
	background: var(--ah-bg);
	padding: 12px 13px;
	font-size: 14px;
}
.ah-form textarea {
	resize: vertical;
}
.ah-form button {
	justify-self: start;
	min-height: 46px;
	padding: 0 18px;
	background: var(--ah-ink);
	color: var(--ah-bg);
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}
.ah-form--dark p {
	margin: 0;
	font-size: 12px;
	line-height: 1.6;
	color: var(--ah-ink-muted);
}
.ah-form-status {
	margin: 0 0 16px;
	padding: 12px 14px;
	border: 1px solid var(--ah-line);
	font-size: 13px;
	line-height: 1.5;
}
.ah-form-status--ok {
	background: rgba(45, 73, 54, .08);
	color: var(--ah-forest);
}
.ah-form-status--error {
	background: rgba(121, 44, 37, .08);
	color: var(--ah-red);
}
.ah-saved-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
	width: 100%;
}
.ah-saved-empty {
	margin: 0;
	max-width: 620px;
	color: var(--ah-ink-soft);
	font-family: var(--ah-serif);
	font-size: 18px;
	font-style: italic;
}
.ah-saved-item {
	display: grid;
	grid-template-columns: 76px 1fr;
	gap: 18px;
	align-items: center;
	padding: 14px;
	background: var(--ah-bg);
	border: 1px solid var(--ah-line);
}
.ah-saved-item__image {
	display: block;
	width: 76px;
	aspect-ratio: 1;
	background: linear-gradient(135deg, #f2eadb, #8e7658);
	background-size: cover;
	background-position: center;
}
.ah-saved-item__body span {
	display: block;
	margin-bottom: 4px;
	font-size: 10px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ah-ink-muted);
}
.ah-saved-item__body h2 {
	margin: 0;
	font-family: var(--ah-serif);
	font-size: 1.15rem;
	font-weight: 400;
}
.ah-saved-item__body a {
	color: var(--ah-ink);
}

@media (min-width: 768px) {
	.ah-featured-products { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 34px 22px; }
	.ah-material-shop__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
	.ah-collection-preview__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.ah-collection-directory { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 22px; }
	.ah-about-hero { grid-template-columns: 1fr .88fr; padding-top: 64px; padding-bottom: 74px; }
	.ah-about-hero__media { min-height: 520px; }
	.ah-about-blocks { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 42px; }
	.ah-about-materials { grid-template-columns: .82fr 1fr; gap: 52px; }
	.ah-category-directory { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px 24px; }
	.ah-categories-note { grid-template-columns: 1fr auto; }
	.ah-material-guide { grid-template-columns: .95fr 1fr; gap: 60px; }
	.ah-shop-paths { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
	.ah-shop-catalog-head header { grid-template-columns: .82fr 1fr; align-items: end; }
	.ah-shop-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 36px 22px; }
	.ah-info-grid,
	.ah-policy-blocks,
	.ah-faq-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 42px; }
	.ah-shipping-rates { grid-template-columns: .72fr 1fr; gap: 72px; align-items: start; }
	.ah-contact-panel,
	.ah-newsletter-panel { grid-template-columns: .88fr 1.12fr; align-items: start; padding: 48px; }
	.ah-shop-preview__head { grid-template-columns: .85fr 1fr; align-items: end; }
	.ah-shop-preview__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
	.ah-journal-columns { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1180px) {
	.ah-featured-products { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 36px 26px; }
	.ah-static-grid--materials { grid-template-columns: repeat(6, minmax(0, 1fr)); }
	.ah-collection-preview__grid,
	.ah-collection-directory { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ================================================================
   SHOP + MATERIALS POLISH
   ================================================================ */

.ah-shop {
	padding-bottom: 40px;
}
.ah-shop-landing {
	max-width: var(--ah-content-w);
	padding-top: 30px;
}
.ah-shop-landing__media {
	min-height: clamp(300px, 38vw, 500px);
	aspect-ratio: 16 / 6.4;
}
.ah-shop-landing__placeholder {
	background:
		linear-gradient(90deg, rgba(18,26,21,.86), rgba(62,77,69,.46), rgba(218,213,200,.16)),
		repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 1px, transparent 1px 16px),
		linear-gradient(135deg, #17231d 0%, #69796b 58%, #d9d7ca 100%);
}
.ah-shop-landing__copy {
	left: calc(var(--ah-gutter) + 28px);
	bottom: 34px;
	max-width: min(520px, calc(100% - var(--ah-gutter) * 2 - 56px));
}
.ah-shop-landing h1 {
	max-width: 8.4em;
	font-size: clamp(2.35rem, 5vw, 4.9rem);
	line-height: .96;
}
.ah-shop-landing p {
	max-width: 440px;
	font-size: 14px;
}
.ah-shop-paths {
	margin-top: 22px;
	margin-bottom: 28px;
}
.ah-shop-path {
	min-height: 132px;
	padding: 18px 20px;
	border-color: rgba(30,26,23,.1);
}
.ah-shop-path strong {
	font-size: clamp(1.2rem, 1.75vw, 1.55rem);
}
.ah-shop-filters {
	max-width: var(--ah-content-w);
	margin: 0 auto;
	padding: 0 var(--ah-gutter);
}
.ah-shop-filters__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 16px 0;
	border-top: 1px solid var(--ah-line);
	border-bottom: 1px solid var(--ah-line);
}
.ah-shop-filters__group {
	display: flex;
	align-items: center;
	gap: 9px;
	flex-wrap: wrap;
}
.ah-shop-filters__label {
	margin-right: 4px;
	font-size: 10px;
	letter-spacing: .15em;
	text-transform: uppercase;
	color: var(--ah-ink-muted);
}
.ah-shop-filters__link {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 0 10px;
	border: 1px solid transparent;
	color: var(--ah-ink-soft);
	font-size: 12px;
	line-height: 1;
}
.ah-shop-filters__link:hover,
.ah-shop-filters__link.is-active {
	border-color: rgba(46,74,50,.24);
	background: rgba(46,74,50,.06);
	color: var(--ah-forest);
}
.ah-shop-filters__select {
	min-height: 32px;
	border: 1px solid var(--ah-line);
	background: var(--ah-bg);
	padding: 0 30px 0 10px;
	font-size: 12px;
	color: var(--ah-ink-soft);
}
.ah-shop-catalog-head {
	padding-top: 28px;
	padding-bottom: 18px;
}
.ah-shop-catalog-head header {
	grid-template-columns: 1fr;
	align-items: end;
	padding-top: 0;
	border-top: 0;
}
.ah-shop-catalog-head h2 {
	max-width: 520px;
	font-size: clamp(1.7rem, 2.6vw, 2.45rem);
	line-height: 1.08;
}
.ah-shop-catalog-head p {
	max-width: 520px;
	font-size: 13px;
	color: var(--ah-ink-muted);
}
.ah-shop .ah-shop-grid-wrap {
	padding-bottom: 78px;
}
.ah-shop-grid {
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 208px), 1fr));
	gap: 34px 22px;
	align-items: start;
}
.ah-shop-card {
	max-width: 280px;
}
.ah-shop-card__image {
	display: block;
	overflow: hidden;
	background: #e3e2d8;
}
.ah-shop-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .42s var(--ah-ease), filter .42s var(--ah-ease);
}
.ah-shop-card:hover .ah-shop-card__image img {
	transform: scale(1.025);
	filter: saturate(1.03);
}
.ah-shop-card__name {
	font-size: .92rem;
}
.ah-shop-card__details {
	font-size: 10.5px;
}
.ah-shop-pagination {
	margin-top: 42px;
}
.ah-shop-empty {
	margin: 0 auto;
	max-width: 520px;
	padding: 48px 0;
	text-align: center;
	font-family: var(--ah-serif);
	font-style: italic;
	color: var(--ah-ink-muted);
}

.ah-materials-page {
	padding: 0 0 72px;
}
.ah-materials-hero {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
	max-width: var(--ah-content-w);
	margin: 0 auto;
	padding: 70px var(--ah-gutter) 30px;
	border-bottom: 1px solid var(--ah-line);
}
.ah-materials-hero h1 {
	margin: 0;
	font-size: clamp(2.4rem, 5.6vw, 5rem);
	font-weight: 300;
	line-height: .98;
}
.ah-materials-hero p {
	max-width: 560px;
	margin: 0;
	font-size: 15px;
	line-height: 1.75;
	color: var(--ah-ink-soft);
}
.ah-material-index {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	max-width: var(--ah-content-w);
	margin: 0 auto;
	padding: 28px var(--ah-gutter) 54px;
}
.ah-material-index-card {
	position: relative;
	display: flex;
	min-height: 190px;
	flex-direction: column;
	justify-content: flex-end;
	overflow: hidden;
	padding: 16px;
	color: #fffdf7;
	text-decoration: none;
	background: #d7d2c6;
}
.ah-material-index-card:hover {
	color: #fffdf7;
}
.ah-material-index-card__photo {
	position: absolute;
	inset: 0;
	transition: transform .5s var(--ah-ease), filter .5s var(--ah-ease);
}
.ah-material-index-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(22,20,18,.52), rgba(22,20,18,.06) 62%);
}
.ah-material-index-card:hover .ah-material-index-card__photo {
	transform: scale(1.035);
	filter: contrast(1.04);
}
.ah-material-index-card__mark {
	position: absolute;
	z-index: 2;
	top: 14px;
	right: 14px;
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	border: 1px solid rgba(255,253,247,.62);
	background: rgba(30,26,23,.22);
	font-family: var(--ah-serif);
	font-size: 1rem;
}
.ah-material-index-card strong,
.ah-material-index-card small {
	position: relative;
	z-index: 2;
}
.ah-material-index-card strong {
	margin-bottom: 8px;
	font-family: var(--ah-serif);
	font-size: clamp(1.25rem, 2vw, 1.7rem);
	font-weight: 400;
	line-height: 1.1;
}
.ah-material-index-card small {
	max-width: 18em;
	font-size: 10px;
	letter-spacing: .11em;
	line-height: 1.45;
	text-transform: uppercase;
	color: rgba(255,253,247,.76);
}
.ah-material-index-card--wood .ah-material-index-card__photo,
.ah-material-row--wood .ah-material-row__image {
	background:
		repeating-linear-gradient(90deg, rgba(255,255,255,.07) 0 2px, transparent 2px 12px),
		linear-gradient(135deg, #c69a63 0%, #77502f 56%, #2f2219 100%);
}
.ah-material-index-card--paper .ah-material-index-card__photo,
.ah-material-row--paper .ah-material-row__image {
	background:
		radial-gradient(circle at 28% 26%, rgba(255,255,255,.48), transparent 28%),
		repeating-linear-gradient(0deg, rgba(30,26,23,.035) 0 1px, transparent 1px 9px),
		linear-gradient(135deg, #f3ecdc 0%, #c6bdad 58%, #83786b 100%);
}
.ah-material-index-card--textile .ah-material-index-card__photo,
.ah-material-row--textile .ah-material-row__image {
	background:
		repeating-linear-gradient(0deg, rgba(255,255,255,.12) 0 1px, transparent 1px 8px),
		repeating-linear-gradient(90deg, rgba(30,26,23,.12) 0 1px, transparent 1px 10px),
		linear-gradient(135deg, #c98f72 0%, #76503f 100%);
}
.ah-material-index-card--bamboo .ah-material-index-card__photo,
.ah-material-row--bamboo .ah-material-row__image {
	background:
		repeating-linear-gradient(45deg, rgba(255,255,255,.14) 0 4px, transparent 4px 18px),
		linear-gradient(135deg, #d3c276 0%, #73723e 62%, #38351f 100%);
}
.ah-material-index-card--straw .ah-material-index-card__photo,
.ah-material-row--straw .ah-material-row__image {
	background:
		repeating-linear-gradient(90deg, rgba(255,255,255,.16) 0 2px, transparent 2px 12px),
		repeating-linear-gradient(0deg, rgba(30,26,23,.09) 0 1px, transparent 1px 14px),
		linear-gradient(135deg, #d8c698 0%, #77735d 64%, #3f4336 100%);
}
.ah-material-index-card--bead .ah-material-index-card__photo,
.ah-material-row--bead .ah-material-row__image {
	background:
		radial-gradient(circle at 28% 34%, #f4ede1 0 8%, transparent 9%),
		radial-gradient(circle at 54% 52%, #7e8d91 0 8%, transparent 9%),
		radial-gradient(circle at 72% 32%, #6d4d42 0 7%, transparent 8%),
		linear-gradient(135deg, #e5ded2 0%, #4b5657 100%);
}
.ah-material-editorial {
	display: grid;
	gap: 0;
	max-width: var(--ah-content-w);
	margin: 0 auto;
	padding: 0 var(--ah-gutter);
}
.ah-material-row {
	display: grid;
	grid-template-columns: 92px 1fr;
	gap: 22px;
	align-items: start;
	padding: 28px 0;
	border-top: 1px solid var(--ah-line);
	scroll-margin-top: 96px;
}
.ah-material-row:last-child {
	border-bottom: 1px solid var(--ah-line);
}
.ah-material-row__image {
	aspect-ratio: 1;
	background: var(--ah-bg-elev);
}
.ah-material-row__body span {
	display: block;
	margin-bottom: 8px;
	font-size: 10px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--ah-ink-muted);
}
.ah-material-row__body h2 {
	max-width: 720px;
	margin: 0 0 10px;
	font-size: clamp(1.35rem, 2.5vw, 2.15rem);
	font-weight: 300;
	line-height: 1.12;
}
.ah-material-row__body p {
	max-width: 700px;
	margin: 0 0 14px;
	font-size: 14px;
	line-height: 1.72;
	color: var(--ah-ink-soft);
}
.ah-material-row__body a {
	display: inline-flex;
	padding-bottom: 3px;
	border-bottom: 1px solid rgba(46,74,50,.42);
	font-size: 11px;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--ah-forest);
}

@media (min-width: 768px) {
	.ah-shop-catalog-head header {
		grid-template-columns: minmax(0, .8fr) minmax(320px, .55fr);
	}
	.ah-materials-hero {
		grid-template-columns: .8fr .72fr;
		align-items: end;
	}
	.ah-material-index {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.ah-material-row {
		grid-template-columns: 180px minmax(0, 1fr);
		gap: 42px;
		padding: 38px 0;
	}
}

@media (min-width: 1180px) {
	.ah-material-index {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}
	.ah-material-index-card {
		min-height: 214px;
	}
}

@media (max-width: 767px) {
	.ah-shop-landing__copy {
		left: calc(var(--ah-gutter) + 16px);
		bottom: 24px;
		max-width: calc(100% - var(--ah-gutter) * 2 - 32px);
	}
	.ah-shop-filters__inner {
		align-items: flex-start;
		flex-direction: column;
	}
	.ah-shop-card {
		max-width: none;
	}
	.ah-material-index-card {
		min-height: 170px;
	}
}

/* ================================================================
   CATEGORIES POLISH
   ================================================================ */

.ah-categories {
	padding-bottom: 72px;
}
.ah-categories-hero {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
	max-width: var(--ah-content-w);
	margin: 0 auto;
	padding: 70px var(--ah-gutter) 30px;
	text-align: left;
	border-bottom: 1px solid var(--ah-line);
}
.ah-categories-hero h1 {
	max-width: 8em;
	margin: 0;
	font-size: clamp(2.4rem, 5.6vw, 5rem);
	font-weight: 300;
	line-height: .98;
}
.ah-categories-hero p {
	max-width: 560px;
	margin: 0;
	font-family: var(--ah-sans);
	font-style: normal;
	font-size: 15px;
	line-height: 1.75;
	color: var(--ah-ink-soft);
}
.ah-category-directory {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px 16px;
	max-width: var(--ah-content-w);
	margin: 0 auto;
	padding: 28px var(--ah-gutter) 54px;
}
.ah-category-entry {
	display: block;
	padding: 0;
	border-top: 0;
	color: var(--ah-ink);
	text-decoration: none;
	scroll-margin-top: 96px;
}
.ah-category-entry:hover {
	color: var(--ah-ink);
}
.ah-category-entry__image {
	position: relative;
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #e3ded4;
	transition: transform .42s var(--ah-ease), filter .42s var(--ah-ease);
}
.ah-category-entry__image::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(22,20,18,.22), transparent 58%);
}
.ah-category-entry__image span {
	position: absolute;
	z-index: 2;
	left: 12px;
	top: 10px;
	font-size: 10px;
	letter-spacing: .14em;
	color: rgba(255,253,247,.74);
}
.ah-category-entry:hover .ah-category-entry__image {
	transform: translateY(-2px);
	filter: saturate(1.04) contrast(1.02);
}
.ah-category-entry__body {
	display: block;
	padding-top: 13px;
}
.ah-category-entry em {
	display: block;
	margin-bottom: 6px;
	font-style: normal;
	font-size: 10px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--ah-ink-muted);
}
.ah-category-entry strong {
	display: block;
	min-height: 2.34em;
	font-family: var(--ah-serif);
	font-size: clamp(1.1rem, 1.7vw, 1.45rem);
	font-weight: 400;
	line-height: 1.17;
}
.ah-category-entry small {
	display: block;
	max-width: 30ch;
	margin-top: 8px;
	font-size: 12.5px;
	line-height: 1.58;
	color: var(--ah-ink-soft);
}
.ah-category-entry--wall .ah-category-entry__image {
	background:
		linear-gradient(135deg, rgba(252,251,247,.54) 0 18%, transparent 18% 100%),
		linear-gradient(135deg, #f2eee5 0%, #6b7f8b 100%);
}
.ah-category-entry--tabletop .ah-category-entry__image {
	background:
		radial-gradient(circle at 58% 50%, rgba(252,251,247,.42) 0 18%, transparent 19%),
		linear-gradient(135deg, #ddd8c6 0%, #6f7c65 100%);
}
.ah-category-entry--desk .ah-category-entry__image {
	background:
		linear-gradient(90deg, rgba(255,255,255,.2) 0 2px, transparent 2px 12px),
		linear-gradient(135deg, #f2eadb 0%, #8e7658 100%);
}
.ah-category-entry--storage .ah-category-entry__image {
	background:
		repeating-linear-gradient(45deg, rgba(255,255,255,.15) 0 4px, transparent 4px 18px),
		linear-gradient(135deg, #d5c77c 0%, #70713d 100%);
}
.ah-category-entry--textiles .ah-category-entry__image {
	background:
		repeating-linear-gradient(0deg, rgba(255,255,255,.11) 0 1px, transparent 1px 8px),
		repeating-linear-gradient(90deg, rgba(30,26,23,.1) 0 1px, transparent 1px 10px),
		linear-gradient(135deg, #c8896d 0%, #6e4636 100%);
}
.ah-category-entry--lighting .ah-category-entry__image {
	background:
		radial-gradient(circle at 52% 42%, rgba(252,251,247,.5) 0 16%, transparent 17%),
		linear-gradient(135deg, #e2d5bd 0%, #69716a 100%);
}
.ah-category-entry--toys .ah-category-entry__image {
	background:
		radial-gradient(circle at 48% 38%, rgba(252,251,247,.3) 0 14%, transparent 15%),
		linear-gradient(135deg, #efe4d6 0%, #573528 100%);
}
.ah-category-entry--gifts .ah-category-entry__image {
	background:
		linear-gradient(90deg, transparent 46%, rgba(252,251,247,.32) 46% 54%, transparent 54%),
		linear-gradient(0deg, transparent 44%, rgba(252,251,247,.28) 44% 52%, transparent 52%),
		linear-gradient(135deg, #efe5d1 0%, #9b6752 100%);
}
.ah-categories-note {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	align-items: end;
	max-width: var(--ah-content-w);
	margin: 0 auto;
	padding: 38px var(--ah-gutter) 0;
	border-top: 1px solid var(--ah-line);
}
.ah-categories-note h2 {
	max-width: 760px;
	margin: 0 0 14px;
	font-size: clamp(1.55rem, 2.8vw, 2.35rem);
	font-weight: 300;
	line-height: 1.12;
}
.ah-categories-note p {
	max-width: 680px;
	margin: 0;
	font-size: 14px;
	line-height: 1.75;
	color: var(--ah-ink-soft);
}

@media (min-width: 768px) {
	.ah-categories-hero {
		grid-template-columns: .8fr .72fr;
		align-items: end;
	}
	.ah-category-directory {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 34px 22px;
	}
	.ah-categories-note {
		grid-template-columns: minmax(0, 1fr) auto;
	}
}

@media (max-width: 767px) {
	.ah-category-entry strong {
		min-height: 0;
	}
}

/* ================================================================
   HOMEPAGE POLISH
   ================================================================ */

.ah-featured--shop-grid {
	padding-top: 58px;
	padding-bottom: 74px;
	border-bottom: 1px solid var(--ah-line);
}
.ah-featured--shop-grid .ah-home-section__head {
	margin-bottom: 28px;
}
.ah-featured--shop-grid .ah-home-section__title {
	font-size: clamp(1.9rem, 3.3vw, 2.8rem);
}
.ah-featured--shop-grid .ah-home-section__aside {
	max-width: 360px;
	font-family: var(--ah-sans);
	font-style: normal;
	font-size: 13px;
	line-height: 1.65;
}
.ah-featured-products {
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 185px), 1fr));
	gap: 32px 22px;
	align-items: start;
}
.ah-featured-product {
	text-align: left;
}
.ah-featured-product__media {
	overflow: hidden;
	border: 1px solid rgba(30,26,23,.06);
}
.ah-featured-product h3 {
	min-height: 2.48em;
	font-size: .92rem;
}
.ah-featured-product p {
	font-size: .8rem;
	color: var(--ah-ink-muted);
}
.ah-product-slot {
	position: relative;
}
.ah-product-slot span {
	color: rgba(30,26,23,.54);
}
.ah-material-shop {
	padding-top: 66px;
	padding-bottom: 72px;
	border-bottom: 1px solid var(--ah-line);
}
.ah-material-shop .ah-home-section__title {
	font-size: clamp(1.9rem, 3.5vw, 3rem);
}
.ah-material-shop__grid {
	gap: 14px;
}
.ah-material-card {
	min-height: 176px;
}
.ah-video-strip {
	background: var(--ah-bg);
	padding-top: 70px;
	padding-bottom: 74px;
	border-bottom: 1px solid var(--ah-line);
}
.ah-video-strip .ah-home-section__title {
	font-size: clamp(1.9rem, 3.3vw, 2.75rem);
}
.ah-video-card {
	border-top: 0;
	background: #f6f3ec;
}
.ah-video-card__media {
	background:
		linear-gradient(135deg, rgba(252,251,247,.16), rgba(252,251,247,0)),
		repeating-linear-gradient(90deg, rgba(255,255,255,.08) 0 1px, transparent 1px 15px),
		linear-gradient(135deg, #d8d2c2 0%, #6d776e 100%);
}
.ah-video-card__media span {
	background: rgba(252,251,247,.9);
	color: var(--ah-ink-soft);
}
.ah-collection-preview {
	padding-top: 66px;
	padding-bottom: 72px;
}
.ah-collection-preview .ah-home-section__title {
	font-size: clamp(1.9rem, 3.3vw, 2.75rem);
}
.ah-collection-preview__grid {
	gap: 28px 22px;
}
.ah-collection-card {
	padding-top: 0;
	border-top: 0;
}
.ah-collection-card__media {
	overflow: hidden;
	border: 1px solid rgba(30,26,23,.06);
}
.ah-collection-card strong {
	font-size: clamp(1.15rem, 1.9vw, 1.55rem);
	font-weight: 400;
}

@media (min-width: 768px) {
	.ah-featured-products {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
	.ah-material-shop__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (min-width: 1180px) {
	.ah-featured-products {
		grid-template-columns: repeat(8, minmax(0, 1fr));
		gap: 28px 18px;
	}
	.ah-material-shop__grid {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}
}

/* ---------- Mobile compact experience ---------- */

@media (max-width: 767px) {
	:root {
		--ah-gutter: 16px;
	}

	.ah-site-header__inner {
		min-height: 56px;
		padding-top: 12px;
		padding-bottom: 12px;
	}
	.ah-brand__logo--header {
		height: 36px;
		max-width: 138px;
	}
	.ah-brand__tagline,
	.ah-utils__subscribe {
		display: none;
	}

	.ah-home-hero {
		height: auto;
		min-height: 420px;
		max-height: none;
	}
	.ah-home-hero__corner {
		top: 16px;
		font-size: 8px;
		letter-spacing: .13em;
	}
	.ah-home-hero__corner--tr {
		display: none;
	}
	.ah-home-hero__object,
	.ah-home-hero--framework .ah-home-hero__object {
		left: 56%;
		top: 17%;
		width: 34%;
		height: 48%;
	}
	.ah-home-hero__object-band,
	.ah-home-hero--framework .ah-home-hero__object-band {
		left: 56%;
		top: 39%;
		width: 34%;
	}
	.ah-home-hero__object-shadow,
	.ah-home-hero--framework .ah-home-hero__object-shadow {
		left: 56%;
		top: 61%;
		width: 34%;
	}
	.ah-home-hero__inner {
		left: var(--ah-gutter);
		right: var(--ah-gutter);
		bottom: 52px;
		max-width: none;
	}
	.ah-home-hero__title {
		max-width: 100%;
		font-size: clamp(2.45rem, 14vw, 3.35rem);
		overflow-wrap: anywhere;
		margin-bottom: 14px;
	}
	.ah-home-hero__answer {
		max-width: 25rem;
		margin-bottom: 20px;
		font-size: 13px;
		line-height: 1.55;
	}
	.ah-home-hero__actions {
		gap: 14px;
	}
	.ah-home-hero__cta {
		font-size: 10px;
		letter-spacing: .1em;
	}
	.ah-home-hero__caption {
		display: none;
	}

	.ah-home-section,
	.ah-featured--shop-grid,
	.ah-material-shop,
	.ah-video-strip,
	.ah-collection-preview {
		padding-top: 38px;
		padding-bottom: 42px;
	}
	.ah-home-section__head,
	.ah-featured--shop-grid .ah-home-section__head {
		margin-bottom: 20px;
	}
	.ah-home-section__head--split {
		display: grid;
		grid-template-columns: 1fr;
		gap: 10px;
		align-items: start;
	}
	.ah-home-section__title,
	.ah-featured--shop-grid .ah-home-section__title,
	.ah-material-shop .ah-home-section__title,
	.ah-video-strip .ah-home-section__title,
	.ah-collection-preview .ah-home-section__title {
		font-size: 1.72rem;
		line-height: 1.05;
	}
	.ah-home-section__aside,
	.ah-featured--shop-grid .ah-home-section__aside {
		max-width: 30rem;
		text-align: left;
		font-size: 12px;
		line-height: 1.55;
	}
	.ah-wave-rule {
		margin-top: 10px;
	}

	.ah-featured-products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 20px 12px;
	}
	.ah-featured-product__media {
		margin-bottom: 8px;
	}
	.ah-featured-product h3 {
		min-height: 0;
		font-size: .82rem;
		line-height: 1.25;
	}
	.ah-featured-product p {
		font-size: .74rem;
		line-height: 1.3;
	}
	.ah-product-slot span {
		left: 8px;
		right: 8px;
		bottom: 8px;
		font-size: 7px;
	}

	.ah-material-shop__lede {
		font-size: 13px;
		line-height: 1.55;
	}
	.ah-material-shop__grid,
	.ah-material-index {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}
	.ah-material-card,
	.ah-material-index-card {
		min-height: 112px;
		padding: 12px;
	}
	.ah-material-card__label {
		left: 12px;
		right: 12px;
		bottom: 12px;
		font-size: 1rem;
	}
	.ah-material-index-card strong {
		font-size: 1rem;
	}
	.ah-material-card__mark,
	.ah-material-index-card__mark {
		width: 30px;
		height: 30px;
		font-size: .85rem;
		opacity: .82;
		transform: none;
		left: auto;
		top: 10px;
		right: 10px;
	}
	.ah-material-index-card small {
		display: none;
	}

	.ah-video-strip__grid {
		gap: 12px;
	}
	.ah-video-card:nth-child(n+2) {
		display: none;
	}
	.ah-video-card,
	.ah-video-card--tall {
		grid-template-columns: 104px 1fr;
		align-items: center;
		gap: 12px;
		padding: 10px;
	}
	.ah-video-card__media,
	.ah-video-card--tall .ah-video-card__media {
		aspect-ratio: 1;
		min-height: 0;
		height: 104px;
	}
	.ah-video-card__media::before {
		inset: 10px;
	}
	.ah-video-card__media::after {
		width: 34px;
		height: 34px;
	}
	.ah-video-card__media span {
		left: 10px;
		bottom: 8px;
		font-size: 7px;
	}
	.ah-video-card__body h3 {
		font-size: 1rem;
		line-height: 1.18;
	}

	.ah-collection-preview__grid {
		gap: 12px;
	}
	.ah-collection-card,
	.ah-collection-directory__item {
		grid-template-columns: 92px 1fr;
		gap: 12px;
		align-items: center;
	}
	.ah-collection-card__media,
	.ah-collection-directory__media {
		aspect-ratio: 1;
	}
	.ah-collection-card__body,
	.ah-collection-directory__body {
		gap: 4px;
	}
	.ah-collection-card strong,
	.ah-collection-directory__body strong {
		font-size: 1.08rem;
		line-height: 1.12;
	}
	.ah-collection-card small,
	.ah-collection-directory__body small {
		font-size: 11px;
		line-height: 1.42;
	}

	.ah-journal__grid,
	.ah-journal__side {
		gap: 16px;
	}
	.ah-journal__side .ah-card:nth-child(n+2) {
		display: none;
	}
	.ah-journal .ah-card__media {
		aspect-ratio: 16 / 9;
	}
	.ah-card__body {
		padding-top: 10px;
	}
	.ah-card__title,
	.ah-card__title-lg {
		font-size: 1.05rem;
		line-height: 1.18;
	}
	.ah-card__lede {
		font-size: 12px;
		line-height: 1.55;
	}
	.ah-newsletter {
		padding-top: 48px;
		padding-bottom: 46px;
	}
	.ah-newsletter__title {
		font-size: 1.65rem;
	}

	.ah-shop-landing {
		padding-top: 16px;
	}
	.ah-shop-landing__media {
		min-height: 220px;
		aspect-ratio: 4 / 3;
	}
	.ah-shop-landing__placeholder span {
		width: 38%;
		right: 7%;
		top: 16%;
	}
	.ah-shop-landing__copy {
		left: calc(var(--ah-gutter) + 12px);
		right: calc(var(--ah-gutter) + 12px);
		bottom: 20px;
		max-width: none;
	}
	.ah-shop-landing__kicker {
		margin-bottom: 8px;
		font-size: 8px;
	}
	.ah-shop-landing h1 {
		max-width: 9em;
		margin-bottom: 10px;
		font-size: 2.2rem;
		line-height: .96;
	}
	.ah-shop-landing p {
		max-width: 24rem;
		font-size: 12px;
		line-height: 1.45;
	}
	.ah-shop-paths {
		gap: 8px;
		margin-top: 14px;
		margin-bottom: 22px;
	}
	.ah-shop-path {
		min-height: 0;
		gap: 8px;
		padding: 13px 14px;
	}
	.ah-shop-path strong {
		max-width: none;
		font-size: 1.05rem;
	}
	.ah-shop-path em {
		font-size: 11px;
		line-height: 1.45;
	}
	.ah-shop-filters {
		overflow-x: hidden;
	}
	.ah-shop-filters__inner {
		gap: 10px;
		padding: 12px 0;
	}
	.ah-shop-filters__group--filters {
		display: flex;
		width: 100%;
		gap: 8px;
		overflow-x: auto;
		padding-bottom: 2px;
		-webkit-overflow-scrolling: touch;
	}
	.ah-shop-filters__label {
		flex: 0 0 auto;
	}
	.ah-shop-filters__link {
		flex: 0 0 auto;
	}
	.ah-shop-catalog-head {
		padding-top: 10px;
		padding-bottom: 14px;
	}
	.ah-shop-catalog-head header {
		padding-top: 18px;
	}
	.ah-shop-catalog-head h2 {
		font-size: 1.65rem;
	}
	.ah-shop-catalog-head p {
		font-size: 12px;
		line-height: 1.55;
	}
	.ah-shop .ah-shop-grid-wrap {
		padding-bottom: 46px;
	}
	.ah-shop-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 20px 12px;
	}
	.ah-shop-card__body {
		padding-top: 8px;
	}
	.ah-shop-card__name {
		font-size: .82rem;
		line-height: 1.24;
	}
	.ah-shop-card__details {
		display: grid;
		gap: 2px;
		font-size: 10px;
	}
	.ah-shop-card__details strong {
		white-space: normal;
	}

	.ah-materials-page,
	.ah-categories {
		padding-bottom: 42px;
	}
	.ah-materials-hero,
	.ah-categories-hero {
		gap: 10px;
		padding-top: 36px;
		padding-bottom: 20px;
	}
	.ah-materials-hero h1,
	.ah-categories-hero h1 {
		font-size: 2rem;
	}
	.ah-materials-hero p,
	.ah-categories-hero p {
		font-size: 13px;
		line-height: 1.55;
	}
	.ah-material-index,
	.ah-category-directory {
		padding-top: 18px;
		padding-bottom: 34px;
	}
	.ah-category-directory {
		gap: 18px 12px;
	}
	.ah-category-entry__image {
		aspect-ratio: 5 / 3;
	}
	.ah-category-entry__body {
		padding-top: 8px;
	}
	.ah-category-entry em {
		margin-bottom: 4px;
		font-size: 8px;
	}
	.ah-category-entry strong {
		font-size: 1rem;
		line-height: 1.12;
	}
	.ah-category-entry small {
		margin-top: 5px;
		font-size: 11px;
		line-height: 1.38;
	}
	.ah-categories-note {
		gap: 14px;
		padding-top: 24px;
	}
	.ah-categories-note h2 {
		font-size: 1.35rem;
	}
	.ah-categories-note p {
		font-size: 12px;
		line-height: 1.55;
	}
	.ah-material-row {
		grid-template-columns: 70px 1fr;
		gap: 14px;
		padding: 20px 0;
	}
	.ah-material-row__body h2 {
		margin-bottom: 7px;
		font-size: 1.18rem;
	}
	.ah-material-row__body p {
		margin-bottom: 10px;
		font-size: 12px;
		line-height: 1.55;
	}
	.ah-material-row__body a {
		font-size: 9px;
	}

	.ah-product {
		padding-top: 0;
	}
	.ah-product__crumbs {
		padding-top: 16px;
		font-size: 9px;
	}
	.ah-product__grid {
		gap: 20px;
		padding-top: 16px;
		padding-bottom: 34px;
	}
	.ah-product__hero-figure {
		aspect-ratio: 1 / 1;
		max-height: 360px;
	}
	.ah-product__media-strip {
		gap: 8px;
		margin-top: 8px;
	}
	.ah-product__info {
		padding-top: 18px;
	}
	.ah-product__title {
		max-width: 10.5em;
		margin-top: 8px;
		margin-bottom: 12px;
		font-size: 2rem;
	}
	.ah-product__intro p,
	.ah-product__body p {
		font-size: 13px;
		line-height: 1.65;
	}
	.ah-product__facts {
		margin: 20px 0;
	}
	.ah-product__facts div {
		padding: 10px 0;
		font-size: 12px;
	}
	.ah-product__body {
		padding-top: 36px !important;
		padding-bottom: 38px !important;
	}
	.ah-product-story {
		gap: 18px;
		padding-top: 0;
	}
	.ah-product-story__lead {
		font-size: 1.35rem;
	}
	.ah-product-story__pair {
		gap: 16px;
		padding-top: 20px;
	}
	.ah-product-story h2 {
		font-size: 1.28rem;
	}
	.ah-product__detail-section {
		padding: 16px 0;
	}
	.ah-product-recs {
		padding-top: 42px;
		padding-bottom: 48px;
	}
	.ah-product-recs__head {
		margin-bottom: 18px;
		padding-top: 18px;
	}
	.ah-product-recs__head h2 {
		font-size: 1.65rem;
	}
	.ah-product-recs__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 20px 12px;
	}
	.ah-rec-card__media {
		aspect-ratio: 1;
		margin-bottom: 8px;
	}
	.ah-rec-card h3 {
		font-size: .9rem;
		line-height: 1.2;
	}
	.ah-rec-card p,
	.ah-rec-card small {
		font-size: 10px;
		line-height: 1.35;
	}
}

/* ---------- Print ---------- */

@media print {
	.ah-site-header, .ah-site-footer, .ah-search-modal, .ah-drawer, .ah-newsletter { display: none !important; }
	body { background: white; color: black; }
}
