@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800;900&family=DM+Mono:wght@400;500&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #11131d;
  --ink-raised: #1b1e2a;
  --ink-soft: #c1c4cf;
  --paper: #292c35;
  --paper-deep: #3a3e49;
  --white: #dedbd2;
  --blue: #5270e6;
  --blue-deep: #3046c2;
  --yellow: #e8c94c;
  --yellow-soft: #d4b93d;
  --coral: #e5674d;
  --slate: #b5b9c6;
  --line: rgba(255, 253, 247, .2);
  --line-light: rgba(255, 253, 247, .24);
  --shadow: 8px 8px 0 var(--ink);
  --shadow-soft: 0 18px 42px rgba(17, 19, 29, .18);
  --radius: .25rem;
  --max-width: 74rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--white); background: var(--paper); font-family: Manrope, Arial, sans-serif; font-size: 16px; line-height: 1.6; }
body.menu-open { overflow: hidden; }
body::selection { background: var(--yellow); color: var(--ink); }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }

.skip-link { position: fixed; top: 1rem; left: 1rem; z-index: 200; padding: .75rem 1rem; background: var(--yellow); color: var(--ink); font-weight: 800; text-decoration: none; transform: translateY(-180%); transition: transform .2s ease; box-shadow: 4px 4px 0 var(--ink); }
.skip-link:focus { transform: translateY(0); outline: 3px solid var(--blue); outline-offset: 2px; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; }

.container { width: min(calc(100% - 3rem), var(--max-width)); margin-inline: auto; }
.eyebrow { display: inline-flex; align-items: center; gap: .65rem; margin: 0 0 1.15rem; color: var(--blue-deep); font-family: "DM Mono", monospace; font-size: .68rem; font-weight: 500; letter-spacing: .14em; line-height: 1.3; text-transform: uppercase; }
.eyebrow::before { width: .62rem; height: .62rem; content: ""; border: 2px solid currentColor; background: var(--coral); transform: rotate(45deg); }
.eyebrow--light { color: var(--yellow); }
.eyebrow--light::before { background: var(--yellow); }
.display, .section-title, .stacked-words, .category-card__title, .editorial-card h3, .photo-feature h3, .visit-card h2, .visit-shop-card--details address, .visit-shop-card--social h3, .feature-list h3 { font-family: "Barlow Condensed", Impact, sans-serif; font-weight: 900; letter-spacing: -.055em; text-transform: uppercase; }
.display { margin: 0; font-size: clamp(4rem, 8vw, 7.6rem); line-height: .8; }
.section-title { max-width: 13ch; margin: 0; font-size: clamp(3rem, 5.3vw, 5rem); line-height: .87; }
.section-intro { max-width: 38rem; margin: 1.4rem 0 0; color: var(--ink-soft); font-size: 1.02rem; }
.section-lede { display: grid; grid-template-columns: minmax(0, 1fr) minmax(16rem, .8fr); align-items: end; gap: 2.5rem; }

.site-header { position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(255,253,247,.2); background: rgba(41,44,53,.94); backdrop-filter: blur(18px); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 5.7rem; gap: 1.3rem; }
.brand { display: inline-flex; align-items: center; flex: none; text-decoration: none; }
.brand__logo { width: 9rem; height: auto; }
.menu-toggle { display: none; align-items: center; justify-content: center; width: 3rem; height: 3rem; border: 2px solid var(--ink); background: var(--yellow); color: var(--ink); cursor: pointer; box-shadow: 3px 3px 0 var(--ink); }
.menu-toggle svg { width: 1.35rem; height: 1.35rem; }
.site-nav { display: flex; align-items: center; gap: clamp(1.8rem, 2.8vw, 2.7rem); }
.site-nav a { position: relative; color: var(--ink); font-family: "DM Mono", monospace; font-size: .72rem; font-weight: 500; letter-spacing: .12em; text-decoration: none; text-transform: uppercase; white-space: nowrap; }
.site-nav a:not(.nav-cta)::after { position: absolute; right: 0; bottom: -.55rem; left: 0; height: 2px; content: ""; background: var(--coral); transform: scaleX(0); transform-origin: right; transition: transform .2s ease; }
.site-nav a:not(.nav-cta):hover::after, .site-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: .72rem 1rem; border: 2px solid var(--ink); background: var(--ink); color: var(--paper) !important; box-shadow: 4px 4px 0 var(--coral); transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.nav-cta:hover { background: var(--blue-deep); transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--coral); }

.button { display: inline-flex; align-items: center; justify-content: center; gap: .55rem; min-height: 3.25rem; padding: .78rem 1.2rem; border: 2px solid var(--ink); font-family: "DM Mono", monospace; font-size: .7rem; font-weight: 500; letter-spacing: .04em; text-align: center; text-decoration: none; text-transform: uppercase; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.button svg { width: 1em; height: 1em; }
.button--primary { background: var(--yellow); color: var(--ink); box-shadow: 4px 4px 0 var(--coral); }
.button--primary:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--coral); }
.button--secondary { border-color: rgba(255,253,247,.62); background: transparent; color: var(--white); }
.button--secondary:hover { border-color: var(--yellow); background: var(--yellow); color: var(--ink); }
.button--dark { background: var(--ink); color: var(--paper); box-shadow: 4px 4px 0 var(--blue); }
.button--dark:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--blue); }

.hero { position: relative; overflow: hidden; padding: clamp(5rem, 9vw, 8rem) 0 clamp(4.5rem, 7vw, 6.5rem); border-bottom: 1px solid var(--line-light); background: var(--ink); color: var(--white); }
.hero::before { position: absolute; top: -18rem; left: -11rem; width: 38rem; height: 38rem; content: ""; border: 1px solid rgba(255,253,247,.15); border-radius: 50%; box-shadow: 0 0 0 2rem rgba(255,253,247,.025), 0 0 0 5rem rgba(255,253,247,.018); }
.hero::after { position: absolute; right: 7%; bottom: 6%; width: 4rem; height: 4rem; content: ""; border: 1px solid var(--coral); transform: rotate(45deg); opacity: .65; }
.hero__grid { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(22rem, .92fr); align-items: center; gap: clamp(2.3rem, 6vw, 6rem); }
.hero .display { max-width: 7.5ch; }
.hero .display em { color: var(--yellow); font-style: normal; }
.hero__copy { max-width: 36rem; margin: 1.8rem 0 0; color: #d5d6dc; font-size: clamp(1rem, 1.5vw, 1.13rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero__meta { display: flex; flex-wrap: wrap; gap: .6rem 1.2rem; margin: 2.25rem 0 0; padding: 0; list-style: none; color: #bfc1c9; font-family: "DM Mono", monospace; font-size: .66rem; text-transform: uppercase; }
.hero__meta li { display: flex; align-items: center; gap: .45rem; }
.hero__meta li::before { width: .42rem; height: .42rem; content: ""; background: var(--coral); }
.hero__photo { position: relative; margin: 0; aspect-ratio: 16 / 11; border: 3px solid var(--white); background: var(--paper-deep); box-shadow: 10px 10px 0 var(--yellow); transform: rotate(1.5deg); }
.hero__photo::after { position: absolute; right: -1.1rem; bottom: -1.1rem; width: 3rem; height: 3rem; content: ""; border: 3px solid var(--ink); background: var(--coral); transform: rotate(45deg); }
.hero__photo img, .page-hero__visual img, .category-card__media img, .gallery-item img, .story-panel__image img, .visit-photo img, .photo-feature__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__photo figcaption { position: absolute; bottom: 1rem; left: 1rem; z-index: 1; max-width: 14rem; padding: .55rem .7rem; border: 2px solid var(--ink); background: var(--paper); color: var(--ink); font-family: "DM Mono", monospace; font-size: .61rem; line-height: 1.35; text-transform: uppercase; }

.home-intro { position: relative; padding: clamp(5rem, 10vw, 9rem) 0; }
.burst-copy { display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(2rem, 7vw, 6rem); align-items: end; }
.stacked-words { display: grid; gap: .12em; font-size: clamp(3.6rem, 7vw, 7rem); line-height: .76; }
.stacked-words span:nth-child(2) { padding-left: .6em; color: var(--blue-deep); }
.stacked-words span:nth-child(3) { color: var(--coral); }
.intro-card { position: relative; padding: clamp(1.7rem, 3vw, 2.5rem); border: 1px solid var(--ink); border-top: 5px solid var(--coral); background: var(--white); box-shadow: var(--shadow-soft); }
.intro-card::before { position: absolute; top: -1.1rem; right: 1.6rem; width: 1.5rem; height: 1.5rem; content: ""; background: var(--yellow); transform: rotate(45deg); }
.intro-card p { margin: 0; font-size: 1.06rem; }
.intro-card p + p { margin-top: 1rem; color: var(--slate); font-size: .92rem; }

.category-section { position: relative; padding: clamp(5rem, 9vw, 8rem) 0; border-block: 1px solid var(--line); background: var(--paper-deep); }
.category-section::before { position: absolute; top: 0; right: 0; width: 34%; height: 100%; content: ""; background: repeating-linear-gradient(135deg, transparent 0 12px, rgba(17,19,29,.035) 12px 13px); pointer-events: none; }
.category-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 3.2rem; }
.category-card { position: relative; display: grid; overflow: hidden; border: 1px solid var(--ink); background: var(--white); box-shadow: 6px 6px 0 var(--ink); text-decoration: none; transition: transform .22s ease, box-shadow .22s ease; }
.category-card:hover { transform: translate(-4px, -4px); box-shadow: 10px 10px 0 var(--coral); }
.category-card__media { aspect-ratio: 16 / 10; overflow: hidden; border-bottom: 1px solid var(--ink); background: var(--ink); }
.category-card__media img { transition: transform .45s ease, filter .45s ease; }
.category-card:hover .category-card__media img { transform: scale(1.045); filter: saturate(1.08); }
.category-card__body { display: grid; min-height: 12.5rem; align-content: end; padding: 1.45rem; }
.category-card__number { color: var(--coral); font-family: "DM Mono", monospace; font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; }
.category-card__title { margin: .55rem 0 0; font-size: clamp(2.5rem, 4vw, 3.3rem); line-height: .82; }
.category-card__link { display: inline-flex; align-items: center; gap: .4rem; margin-top: .95rem; color: var(--blue-deep); font-family: "DM Mono", monospace; font-size: .68rem; font-weight: 500; text-transform: uppercase; }
.category-card__link svg { width: 1em; }

.inside-section { padding: clamp(5rem, 9vw, 8rem) 0; background: var(--ink); color: var(--white); }
.inside-section .section-intro { color: #c9cad1; }
.inside-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 3.2rem; }
.gallery-item { position: relative; min-width: 0; margin: 0; aspect-ratio: 3 / 4; overflow: hidden; border: 1px solid rgba(255,253,247,.62); background: var(--paper-deep); }
.gallery-item:nth-child(2), .gallery-item:nth-child(4) { transform: translateY(1.4rem); }
.gallery-item img { transition: transform .45s ease; }
.gallery-item:hover img { transform: scale(1.045); }
.gallery-item figcaption { position: absolute; right: .6rem; bottom: .6rem; left: .6rem; padding: .45rem .55rem; background: rgba(17,19,29,.9); color: var(--white); font-family: "DM Mono", monospace; font-size: .57rem; line-height: 1.35; text-transform: uppercase; }

.owner-section { padding: clamp(5rem, 9vw, 8rem) 0; border-top: 1px solid var(--line); background: var(--paper); }
.owner-grid { display: grid; grid-template-columns: .86fr 1.14fr; align-items: center; gap: clamp(2rem, 7vw, 7rem); }
.owner-photo { position: relative; max-width: 28rem; margin: 0; aspect-ratio: 3 / 4; border: 3px solid var(--ink); box-shadow: 9px 9px 0 var(--blue); }
.owner-photo::after { position: absolute; bottom: -1rem; left: -1rem; width: 2.2rem; height: 2.2rem; content: ""; border: 3px solid var(--ink); background: var(--yellow); transform: rotate(45deg); }
.owner-photo figcaption { position: absolute; right: .85rem; bottom: .85rem; left: .85rem; padding: .55rem .7rem; border: 1px solid var(--ink); background: var(--white); font-family: "DM Mono", monospace; font-size: .6rem; line-height: 1.35; text-transform: uppercase; }

.visit-section { padding: clamp(5rem, 9vw, 8rem) 0; background: var(--blue-deep); color: var(--white); }
.visit-section .section-intro { color: #e0e4ff; }
.visit-shop-grid { display: grid; grid-template-columns: 1.05fr 1.02fr .86fr; gap: 1.25rem; margin-top: 3.2rem; }
.visit-shop-card { min-height: 23rem; padding: 1.7rem; border: 1px solid var(--ink); box-shadow: 6px 6px 0 var(--ink); }
.visit-shop-card__label { display: block; margin-bottom: 2.5rem; font-family: "DM Mono", monospace; font-size: .66rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; }
.visit-shop-card--details { display: flex; flex-direction: column; background: var(--yellow); color: var(--ink); }
.visit-shop-card--details address { font-size: clamp(2.2rem, 3.2vw, 3.4rem); font-style: normal; line-height: .86; }
.visit-shop-card__contact { display: grid; gap: .3rem; margin-top: 1.4rem; }
.visit-shop-card__contact a { font-family: "DM Mono", monospace; font-size: .73rem; font-weight: 500; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.visit-shop-card--details .button { width: 100%; margin-top: auto; }
.visit-shop-card--hours { background: var(--ink); color: var(--white); }
.home-hours { display: grid; gap: .44rem; margin: 0; }
.home-hours div { display: flex; justify-content: space-between; gap: .8rem; padding-bottom: .44rem; border-bottom: 1px solid rgba(255,253,247,.23); font-size: .8rem; }
.home-hours dt { font-weight: 700; }
.home-hours dd { margin: 0; color: #d5d7df; text-align: right; }
.visit-shop-card--social { display: flex; flex-direction: column; background: var(--coral); color: var(--ink); }
.visit-shop-card--social h3 { margin: 0; font-size: 3rem; line-height: .85; }
.visit-shop-card--social p { margin: 1.2rem 0 0; font-size: .92rem; }
.visit-shop-card__social-links { display: grid; gap: .7rem; margin-top: auto; }
.visit-shop-card__social-links a { display: flex; justify-content: space-between; padding-top: .65rem; border-top: 1px solid var(--ink); font-family: "DM Mono", monospace; font-size: .7rem; font-weight: 500; text-decoration: none; text-transform: uppercase; }
.visit-shop-card__social-links a:hover { text-decoration: underline; text-underline-offset: 3px; }

.page-hero { position: relative; overflow: hidden; padding: clamp(4.5rem, 8vw, 7rem) 0; border-bottom: 1px solid var(--line); background: var(--white); }
.page-hero--blue { background: var(--blue-deep); color: var(--white); }
.page-hero--yellow { background: var(--yellow); }
.page-hero--coral { background: var(--coral); }
.page-hero--ink { background: var(--ink); color: var(--white); }
.page-hero__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(18rem, .82fr); align-items: center; gap: clamp(2rem, 6vw, 5rem); }
.page-hero .display { max-width: 8ch; }
.page-hero__copy { max-width: 32rem; margin: 1.5rem 0 0; color: var(--ink-soft); font-size: 1.04rem; }
.page-hero--blue .page-hero__copy, .page-hero--ink .page-hero__copy { color: #e0e2ed; }
.page-hero__visual { position: relative; margin: 0; aspect-ratio: 16 / 10; overflow: hidden; border: 3px solid var(--ink); background: var(--paper-deep); box-shadow: 8px 8px 0 var(--ink); }
.page-hero--blue .page-hero__visual, .page-hero--ink .page-hero__visual { border-color: var(--white); box-shadow: 8px 8px 0 var(--yellow); }
.page-hero__visual::after { position: absolute; top: 1rem; right: 1rem; width: .72rem; height: .72rem; content: ""; border: 2px solid var(--ink); background: var(--yellow); transform: rotate(45deg); }

.content-section { padding: clamp(5rem, 9vw, 8rem) 0; }
.content-section--paper-deep { border-block: 1px solid var(--line); background: var(--paper-deep); }
.content-section--ink { background: var(--ink); color: var(--white); }
.content-section--ink .section-intro { color: #c7cad5; }
.content-grid { display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(15rem, .82fr); gap: clamp(2rem, 7vw, 7rem); align-items: start; }
.content-grid__aside { padding: 1.6rem; border: 1px solid var(--ink); background: var(--yellow); box-shadow: 6px 6px 0 var(--ink); }
.content-grid__aside p { margin: 0; font-size: .92rem; }
.content-grid__aside strong { display: block; margin-bottom: .65rem; font-family: "DM Mono", monospace; font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; }
.content-grid__aside--blue { background: var(--blue-deep); color: var(--white); }
.content-grid__aside--coral { background: var(--coral); }

.feature-list { display: grid; gap: 0; margin: 2.5rem 0 0; padding: 0; list-style: none; border-top: 2px solid var(--ink); }
.feature-list li { display: grid; grid-template-columns: 2.4rem 1fr; align-items: start; gap: 1rem; padding: 1.3rem 0; border-bottom: 1px solid var(--line); }
.feature-list__number { padding-top: .33rem; color: var(--coral); font-family: "DM Mono", monospace; font-size: .68rem; }
.feature-list h3 { margin: 0; font-size: 2.05rem; line-height: .88; }
.feature-list p { max-width: 33rem; margin: .5rem 0 0; color: var(--ink-soft); font-size: .92rem; }
.content-section--ink .feature-list { border-top-color: rgba(255,253,247,.5); }
.content-section--ink .feature-list li { border-bottom-color: rgba(255,253,247,.2); }
.content-section--ink .feature-list__number { color: var(--yellow); }
.content-section--ink .feature-list p { color: #c7cad5; }

.photo-feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; margin-top: 3rem; }
.photo-feature { overflow: hidden; border: 1px solid var(--ink); background: var(--white); box-shadow: 6px 6px 0 var(--ink); transition: transform .22s ease, box-shadow .22s ease; }
.photo-feature:hover { transform: translateY(-4px); box-shadow: 6px 10px 0 var(--coral); }
.photo-feature__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--ink); }
.photo-feature__media img { transition: transform .45s ease; }
.photo-feature:hover .photo-feature__media img { transform: scale(1.04); }
.photo-feature__body { padding: 1.4rem; }
.photo-feature__eyebrow { display: block; color: var(--coral); font-family: "DM Mono", monospace; font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; }
.photo-feature h3 { margin: .7rem 0 0; font-size: clamp(2.2rem, 4vw, 3.1rem); line-height: .86; }
.photo-feature p { margin: .85rem 0 0; color: var(--ink-soft); font-size: .92rem; }

.editorial-card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; margin-top: 3rem; }
.editorial-card { min-height: 16rem; padding: 1.55rem; border: 1px solid var(--ink); background: var(--white); box-shadow: 6px 6px 0 var(--ink); }
.editorial-card:nth-child(2n) { background: var(--yellow-soft); }
.editorial-card__index { font-family: "DM Mono", monospace; font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; }
.editorial-card h3 { margin: 3rem 0 .6rem; font-size: 2.35rem; line-height: .86; }
.editorial-card p { margin: 0; color: var(--ink-soft); font-size: .9rem; }

.story-panel { display: grid; grid-template-columns: 1fr .9fr; min-height: 34rem; overflow: hidden; border: 1px solid var(--ink); background: var(--white); box-shadow: var(--shadow); }
.story-panel__image { min-height: 25rem; margin: 0; background: var(--ink); }
.story-panel__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(2rem, 5vw, 4rem); }
.story-panel__copy .section-title { max-width: 9ch; }
.story-panel__copy p { margin: 1.4rem 0 0; color: var(--ink-soft); }
.story-panel__copy p:first-of-type { margin-top: 1.4rem; }

.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin-top: 2.8rem; }
.visit-card { min-height: 14.5rem; padding: 1.6rem; border: 1px solid var(--ink); background: var(--white); box-shadow: 6px 6px 0 var(--ink); }
.visit-card--address { background: var(--yellow); }
.visit-card--hours { background: var(--blue-deep); color: var(--white); }
.visit-card--contact { background: var(--coral); }
.visit-card--social { background: var(--ink); color: var(--white); }
.visit-card__label { display: block; margin-bottom: 2.6rem; font-family: "DM Mono", monospace; font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; }
.visit-card h2 { margin: 0; font-size: clamp(2rem, 3vw, 3rem); line-height: .87; }
.visit-card p { margin: .8rem 0 0; font-size: .92rem; }
.visit-card a { text-decoration-thickness: 1px; text-underline-offset: 3px; }
.hours-list { display: grid; gap: .34rem; margin: .85rem 0 0; font-size: .88rem; }
.hours-list div { display: flex; justify-content: space-between; gap: .7rem; border-bottom: 1px solid rgba(255,253,247,.32); }
.hours-list div:last-child { border: 0; }
.hours-list strong { font-weight: 700; }
.visit-photo { position: relative; min-height: 22rem; margin: 0; overflow: hidden; border: 3px solid var(--ink); box-shadow: var(--shadow); }
.visit-photo figcaption { position: absolute; right: .8rem; bottom: .8rem; left: .8rem; padding: .55rem .7rem; border: 1px solid var(--ink); background: var(--paper); color: var(--ink); font-family: "DM Mono", monospace; font-size: .61rem; line-height: 1.35; text-transform: uppercase; }

.cta-band { padding: clamp(4rem, 7vw, 6rem) 0; border-top: 1px solid var(--line); background: var(--coral); }
.cta-band__grid { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: end; }
.cta-band .section-title { max-width: 11ch; }
.cta-band p { max-width: 34rem; margin: 1rem 0 0; }

.site-footer { padding: 4rem 0 1.5rem; background: var(--ink); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.1fr .75fr .8fr; gap: 2.5rem; }
.footer-grid--home { grid-template-columns: 1.05fr .72fr .8fr .8fr; }
.site-footer .brand__logo { width: 9.6rem; }
.footer-summary { max-width: 23rem; margin: 1.25rem 0 0; color: #c7cad6; font-size: .88rem; }
.footer-title { margin: .2rem 0 1rem; color: var(--yellow); font-family: "DM Mono", monospace; font-size: .66rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; }
.footer-title--spaced { margin-top: 1.8rem; }
.footer-links { display: grid; gap: .55rem; }
.footer-links a { color: #d8dae3; font-size: .86rem; text-decoration: none; }
.footer-hours { color: #d8dae3; font-size: .76rem; line-height: 1.45; }
.footer-links a:hover { color: var(--yellow); text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3.8rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,253,247,.2); color: #a8adbd; font-family: "DM Mono", monospace; font-size: .62rem; letter-spacing: .04em; text-transform: uppercase; }

@media (max-width: 980px) {
  .container { width: min(calc(100% - 2.5rem), var(--max-width)); }
  .hero__grid, .page-hero__grid { grid-template-columns: minmax(0, 1fr) minmax(19rem, .82fr); gap: 2.5rem; }
  .category-grid { gap: 1rem; }
  .visit-shop-grid { grid-template-columns: 1fr 1fr; }
  .visit-shop-card--social { grid-column: 1 / -1; min-height: 16rem; }
  .footer-grid--home { grid-template-columns: 1.1fr .8fr .8fr; }
  .footer-grid--home > :last-child { grid-column: 2 / -1; }
}

@media (max-width: 820px) {
  .header-inner { min-height: 5.25rem; }
  .brand__logo { width: 7.5rem; }
  .menu-toggle { display: inline-flex; z-index: 102; }
  .site-nav { position: fixed; inset: 5.25rem 0 auto; display: grid; gap: 0; padding: .75rem 1.25rem 1.3rem; border-bottom: 2px solid var(--ink); background: var(--paper); box-shadow: 0 16px 28px rgba(17,19,29,.16); transform: translateY(-130%); opacity: 0; pointer-events: none; transition: transform .23s ease, opacity .23s ease; }
  .site-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .site-nav a { padding: 1rem .5rem; border-bottom: 1px solid var(--line); font-size: .78rem; }
  .site-nav a:not(.nav-cta)::after { display: none; }
  .site-nav .nav-cta { margin-top: .85rem; border-bottom: 2px solid var(--ink); text-align: center; }
  .hero__grid, .page-hero__grid, .burst-copy, .owner-grid, .content-grid, .story-panel { grid-template-columns: 1fr; }
  .hero__grid { min-width: 0; }
  .hero { padding-top: 4.2rem; }
  .hero__grid { gap: 3rem; }
  .hero__photo { width: min(100%, 34rem); margin-inline: auto; }
  .hero__photo { aspect-ratio: auto; height: auto; }
  .hero__photo img { width: 100%; height: auto; object-fit: contain; }
  .page-hero__visual { width: min(100%, 34rem); margin-inline: auto; }
  .page-hero__visual { aspect-ratio: auto; height: auto; }
  .page-hero__visual img { width: 100%; height: auto; object-fit: contain; }
  .section-lede { grid-template-columns: 1fr; gap: 1rem; }
  .category-grid { grid-template-columns: 1fr; max-width: 34rem; }
  .inside-gallery { grid-template-columns: repeat(2, 1fr); max-width: 42rem; }
  .owner-photo { width: min(86%, 27rem); }
  .photo-feature-grid, .editorial-card-grid { grid-template-columns: 1fr; }
  .story-panel__image { min-height: 0; aspect-ratio: 1600 / 944; }
  .story-panel__image img { width: 100%; height: auto; object-fit: contain; }
  .story-panel__copy { padding: 2.4rem; }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-photo { min-height: 19rem; }
  .cta-band__grid { grid-template-columns: 1fr; }
  .footer-grid, .footer-grid--home { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child, .footer-grid--home > :first-child { grid-column: 1 / -1; }
  .footer-grid--home > :last-child { grid-column: auto; }
}

@media (max-width: 480px) {
  .container { width: min(calc(100% - 2rem), var(--max-width)); }
  .display { font-size: clamp(3.5rem, 17vw, 4.9rem); }
  .section-title { font-size: clamp(2.7rem, 13vw, 3.9rem); }
  .hero__actions, .hero__actions .button, .button { width: 100%; }
  .inside-gallery { gap: .7rem; }
  .gallery-item:nth-child(2), .gallery-item:nth-child(4) { transform: none; }
  .gallery-item figcaption { display: none; }
  .visit-shop-grid { grid-template-columns: 1fr; }
  .visit-shop-card, .visit-shop-card--social { grid-column: auto; min-height: auto; }
  .visit-shop-card--details { min-height: 23rem; }
  .visit-shop-card--social { min-height: 17rem; }
  .footer-grid, .footer-grid--home { grid-template-columns: 1fr; }
  .footer-grid > :first-child, .footer-grid--home > :first-child { grid-column: auto; }
  .footer-bottom { display: grid; }
}

/* Editorial refinement: fewer boxes, more space, and more visual rhythm. */
.display, .section-title, .stacked-words, .category-card__title, .editorial-card h3, .photo-feature h3, .visit-card h2, .visit-shop-card--details address, .visit-shop-card--social h3, .feature-list h3 { font-family: Manrope, Arial, sans-serif; font-weight: 800; letter-spacing: -.065em; }
.display { line-height: .86; }
.section-title { line-height: .92; }
.stacked-words { line-height: .82; }
.category-card__title, .photo-feature h3, .editorial-card h3, .feature-list h3 { line-height: .94; }
.site-nav a { color: var(--white); }
.site-nav a.nav-cta { border-color: var(--yellow); background: var(--yellow); color: var(--ink) !important; box-shadow: 4px 4px 0 var(--coral); }
.visit-card--address { color: var(--ink); }
.content-section--paper-deep .section-intro, .content-section--paper-deep .editorial-card p { color: var(--ink-soft); }
.visit-section { background: var(--ink); color: var(--white); }
.visit-section .section-intro { color: #c7cad5; }
.visit-shop-card--details, .visit-shop-card--hours, .visit-shop-card--social { border-color: rgba(255,253,247,.2); background: var(--ink-raised); color: var(--white); box-shadow: none; }
.visit-shop-card--details address, .visit-shop-card--social h3 { color: var(--white); }
.visit-shop-card--details .button { background: var(--yellow); color: var(--ink); }
.hero { padding-block: clamp(6rem, 12vw, 10rem) clamp(5rem, 9vw, 8rem); }
.hero__grid { align-items: end; }
.hero__grid > div { position: relative; z-index: 1; }
.hero__grid:has(> :only-child), .page-hero__grid:has(> :only-child), .story-panel:has(> :only-child), .owner-grid:has(> :only-child) { grid-template-columns: 1fr; }
.hero__photo { border-width: 1px; box-shadow: 18px 18px 0 rgba(232, 201, 76, .8); }
.hero__photo::after { border-width: 1px; }
.hero__photo figcaption { border-width: 1px; box-shadow: 5px 5px 0 var(--ink); }
.category-section { background: var(--paper); border-block: 0; }
.category-section::before { width: 48%; opacity: .7; }
.category-grid { grid-template-columns: 1.08fr .92fr 1.02fr; align-items: start; gap: clamp(1.5rem, 3vw, 3rem); }
.category-card { display: block; overflow: visible; border: 0; background: transparent; box-shadow: none; }
.category-card:nth-child(2) { margin-top: 4rem; }
.category-card:nth-child(3) { margin-top: 1.5rem; }
.category-card:hover { transform: translateY(-6px); box-shadow: none; }
.category-card__media { aspect-ratio: 4 / 3; border: 0; box-shadow: 0 12px 30px rgba(17, 19, 29, .12); }
.category-card:nth-child(2) .category-card__media { aspect-ratio: 1 / 1.12; }
.category-card:nth-child(3) .category-card__media { aspect-ratio: 5 / 6; }
.category-card__body { min-height: 0; padding: 1.2rem 0 0; }
.category-card__title { font-size: clamp(2.7rem, 4.5vw, 4.2rem); }
.inside-section { position: relative; }
.inside-gallery { gap: 1.8rem; }
.gallery-item { border: 0; }
.gallery-item:nth-child(1), .gallery-item:nth-child(3) { transform: translateY(-1.2rem); }
.gallery-item:nth-child(2), .gallery-item:nth-child(4) { transform: translateY(1.2rem); }
.content-grid__aside { border: 0; box-shadow: 0 12px 24px rgba(17, 19, 29, .12); }
.photo-feature-grid { gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.photo-feature { overflow: visible; border: 0; background: transparent; box-shadow: none; }
.photo-feature:nth-child(2) { margin-top: 5rem; }
.photo-feature:nth-child(3) { margin-top: -2rem; }
.photo-feature:hover { transform: translateY(-5px); box-shadow: none; }
.photo-feature__media { box-shadow: 0 16px 34px rgba(17, 19, 29, .14); }
.photo-feature__body { padding: 1.25rem 0 0; }
.editorial-card-grid { gap: 2.5rem; }
.editorial-card { min-height: 0; padding: 1rem 0; border: 0; border-top: 1px solid var(--ink); background: transparent !important; box-shadow: none; }
.editorial-card h3 { margin: 2rem 0 .6rem; }
.story-panel { overflow: visible; border: 0; background: transparent; box-shadow: none; }
.visit-card { border: 0; box-shadow: 0 12px 28px rgba(17, 19, 29, .12); }
.visit-photo { border-width: 1px; box-shadow: 0 16px 32px rgba(17, 19, 29, .16); }
.cta-band { border-top: 0; }

@media (max-width: 820px) {
  .category-grid { grid-template-columns: 1fr; max-width: 34rem; gap: 3.5rem; }
  .category-card:nth-child(2), .category-card:nth-child(3) { margin-top: 0; }
  .category-card__media, .category-card:nth-child(2) .category-card__media, .category-card:nth-child(3) .category-card__media { aspect-ratio: 16 / 10; }
  .photo-feature:nth-child(2), .photo-feature:nth-child(3) { margin-top: 0; }
  .inside-gallery { gap: 1rem; }
  .gallery-item:nth-child(1), .gallery-item:nth-child(2), .gallery-item:nth-child(3), .gallery-item:nth-child(4) { transform: none; }
  .story-panel__copy { padding-inline: 0; }
}

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

.hero__grid:has(> :only-child), .page-hero__grid:has(> :only-child), .story-panel:has(> :only-child), .owner-grid:has(> :only-child) { grid-template-columns: 1fr; }
