/* Himawari Urban Carry theme
   Reference direction: compact gear-store navigation, split campaign media,
   product-first merchandising. Runtime colors remain owned by styles.css. */

:root {
  --announcement-h: 2.25rem;
  --header-h: 5rem;
  --page-pad: clamp(1.25rem, 4vw, 4.5rem);
  --section-space: max(15vh, 6rem);
  --max-width: 96rem;
  --accent-on-dark: color-mix(in srgb, var(--moss) 38%, var(--cream));
}

[hidden] {
  display: none !important; /* Preserve native hidden semantics against component display rules. */
}

body { background: var(--cream); }

html {
  scrollbar-color: color-mix(in srgb, var(--ink) 62%, transparent) var(--cream);
  scrollbar-width: thin;
}

*::-webkit-scrollbar { width: 8px; height: 8px; }
*::-webkit-scrollbar-track { background: var(--cream); }
*::-webkit-scrollbar-thumb { border: 2px solid var(--cream); background: var(--ink); }
*::-webkit-scrollbar-thumb:hover { background: var(--moss); }

.announcement-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--announcement-h);
  padding: .55rem var(--page-pad);
  background: var(--ink);
  color: var(--cream);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.announcement-bar a { border-bottom: 1px solid color-mix(in srgb, var(--cream) 68%, transparent); }

.site-header,
.about-header,
.interior-header,
.story-page .site-header {
  position: sticky;
  z-index: 600;
  top: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(2rem, 5vw, 5.5rem);
  height: var(--header-h);
  padding: 0 var(--page-pad);
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 22%, transparent);
  background: var(--cream);
  color: var(--ink);
}

.brand {
  grid-column: 1;
  align-self: center;
  width: clamp(4.8rem, 6vw, 6.15rem);
  height: 2.85rem;
  overflow: hidden;
  background: transparent url("himawari-logo.png") center 48% / 100% auto no-repeat;
  color: transparent;
  font-size: 0;
  white-space: nowrap;
}

.site-nav {
  grid-column: 2;
  align-self: stretch;
  justify-self: start;
  display: flex;
  align-items: center;
  gap: clamp(1.6rem, 3vw, 3.2rem);
  font-size: .71rem;
  font-weight: 680;
  letter-spacing: .1em;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding: .2rem 0 0;
  border-bottom: 2px solid transparent;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] { border-bottom-color: var(--ink); }

.header-store {
  grid-column: 3;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 1rem;
  border: 1px solid var(--ink);
  font-size: .68rem;
  font-weight: 720;
  letter-spacing: .12em;
}

.header-store:hover { background: var(--ink); color: var(--cream); }

/* Split film hero: a real product film that stays independent from page scroll. */
.home-film-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(24rem, 1fr);
  min-height: calc(100svh - var(--header-h));
  overflow: clip;
  background: var(--ink);
  color: var(--cream);
}

.home-film-hero__media {
  position: relative;
  min-height: 38rem;
  overflow: hidden;
  background: var(--ink) url("hero-poster.jpg") center / cover no-repeat;
}

.home-film-hero__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, color-mix(in srgb, var(--ink) 30%, transparent), transparent 52%);
  content: "";
  pointer-events: none;
}

.home-film-hero__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-film-hero__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3.5rem, 8vh, 7rem) var(--page-pad);
}

.home-film-hero__kicker {
  margin-bottom: 1.5rem;
  color: var(--accent-on-dark);
  font-size: .66rem;
  font-weight: 760;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.home-film-hero h1 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(3rem, 4.8vw, 5.6rem);
  font-weight: 640;
  letter-spacing: -.035em;
  line-height: 1.08;
  text-wrap: balance;
  word-break: keep-all;
}

.home-film-hero__copy > p {
  margin: 1.5rem 0 0;
  color: color-mix(in srgb, var(--cream) 76%, transparent);
  font-weight: 480;
}

.home-film-hero__link {
  display: inline-flex;
  width: min(100%, 15rem);
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  padding: 0 1.2rem;
  border: 1px solid var(--cream);
  background: var(--cream);
  color: var(--ink);
  font-size: .72rem;
  font-weight: 760;
  letter-spacing: .14em;
}

.home-film-hero__link:hover { background: transparent; color: var(--cream); }

.home-film-hero__toggle {
  position: absolute;
  z-index: 2;
  right: 1.25rem;
  bottom: 1.25rem;
  min-height: 44px;
  padding: 0 1rem;
  border: 1px solid color-mix(in srgb, var(--cream) 72%, transparent);
  background: color-mix(in srgb, var(--ink) 76%, transparent);
  color: var(--cream);
  cursor: pointer;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
}

.home-film-hero__toggle:hover { background: var(--cream); color: var(--ink); }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--ink);
  color: var(--cream);
}

.trust-item {
  min-height: 5.25rem;
  display: grid;
  place-items: center;
  padding: 1rem;
  border-right: 1px solid color-mix(in srgb, var(--cream) 24%, transparent);
  text-align: center;
}

.trust-item:last-child { border-right: 0; }
.trust-item strong { font-size: .7rem; letter-spacing: .14em; }
.trust-item span { display: block; margin-top: .25rem; font-size: .65rem; opacity: .66; }

.section { padding: var(--section-space) var(--page-pad); }
.display-title { font-size: clamp(3.25rem, 5.8vw, 6.4rem); }
.section-head { margin-bottom: max(7vh, 3.5rem); }
.kicker { font-weight: 720; letter-spacing: .24em; }

.intro,
.journal,
.founder-quote,
.founder-promise {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
}

.home-film-hero h1,
.display-title {
  text-shadow: .035em .045em 0 color-mix(in srgb, var(--moss) 28%, transparent);
}

.accent-word {
  color: var(--moss);
  text-shadow: .045em .055em 0 color-mix(in srgb, var(--ink) 24%, transparent);
}

.home-film-hero .accent-word,
.intro .accent-word,
.feature .accent-word,
.journal .accent-word,
.contact .accent-word {
  color: var(--accent-on-dark);
  text-shadow: .045em .055em 0 color-mix(in srgb, var(--ink) 72%, transparent);
}

.intro::before,
.journal::before,
.founder-quote::before,
.founder-promise::before,
.intro::after,
.journal::after,
.founder-quote::after,
.founder-promise::after {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
}

.intro::before {
  background: url("campaign-1027.webp") 76% 42% / cover no-repeat;
}

.intro::after {
  z-index: -1;
  background: linear-gradient(90deg, var(--ink) 0 32%, color-mix(in srgb, var(--ink) 88%, transparent) 58%, color-mix(in srgb, var(--ink) 66%, transparent) 100%);
}

.journal::before {
  background: url("himawari-collection-v2.webp") center / cover no-repeat;
}

.journal::after {
  z-index: -1;
  background: color-mix(in srgb, var(--ink) 84%, transparent);
}

.founder-quote::before {
  background: url("campaign-0422-pink.webp") 78% 38% / cover no-repeat;
}

.founder-quote::after {
  z-index: -1;
  background: linear-gradient(90deg, color-mix(in srgb, var(--ink) 92%, transparent) 0 46%, color-mix(in srgb, var(--ink) 68%, transparent) 100%);
}

.founder-promise::before {
  background: url("campaign-1884-gray.webp") 62% center / cover no-repeat;
}

.founder-promise::after {
  z-index: -1;
  background: linear-gradient(90deg, color-mix(in srgb, var(--ink) 92%, transparent) 0 44%, color-mix(in srgb, var(--ink) 58%, transparent) 100%);
}

.intro { min-height: min(100svh, 62rem); }
.intro-grid { margin-top: max(8vh, 4rem); }
.principles { margin-top: max(7vh, 3.5rem); }
.intro .principles,
.intro .principles > div { border-color: color-mix(in srgb, var(--cream) 42%, transparent); }
.intro .body-copy,
.intro .principles dd { color: color-mix(in srgb, var(--cream) 82%, transparent); }

.collection { background: var(--cream); color: var(--ink); }
.collection .featured-product-slot,
.collection .product-grid { color: inherit; }
.collection .section-head,
.collection .curated-heading { border-color: var(--ink); }

.collection .section-head::after,
.catalog-products .section-head::after {
  grid-column: 2;
  align-self: end;
  width: min(100%, 26rem);
  border-bottom: 1px solid var(--ink);
  content: "";
}

.featured-product {
  grid-template-columns: minmax(0, 1.08fr) minmax(22rem, .92fr);
  border: 0;
  background: var(--ink);
  color: var(--cream);
  box-shadow: .75rem .75rem 0 color-mix(in srgb, var(--moss) 74%, transparent);
}

.featured-product-media { min-height: min(76vh, 50rem); border: 0; }
.featured-product-media img { filter: none; }
.featured-product-content { padding: clamp(2.5rem, 5vw, 5.5rem); }
.featured-product-content h3 { font-weight: 620; }
.featured-tagline,
.featured-product-footer { border-color: color-mix(in srgb, var(--cream) 35%, transparent); }
.featured-highlights { opacity: .76; }
.featured-buy-link { border: 1px solid var(--cream); background: var(--cream); color: var(--ink); }
.featured-buy-link:hover { background: transparent; color: var(--cream); }
.featured-direct-buy-link { border-color: var(--cream); background: var(--moss); color: var(--cream); }
.featured-direct-buy-link:hover { background: var(--cream); color: var(--ink); }

.curated-heading {
  margin-top: max(8vh, 4rem);
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--ink);
}

.curated-heading h3 { font-weight: 650; }

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 1.7vw, 1.7rem);
  margin-top: 0;
  padding: 0 .8rem .8rem 0;
  background: transparent;
  border: 0;
}

.store-product-card {
  border: 1px solid var(--ink);
  box-shadow: .45rem .45rem 0 color-mix(in srgb, var(--ink) 24%, transparent);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}
.store-product-media { border-bottom: 0; }
.store-product-media img { filter: none; }
.store-product-body { padding: 1.15rem; }
.store-product-body h3 { min-height: 4.4em; font-size: 1rem; font-weight: 650; line-height: 1.45; }
.product-tagline { min-height: 3.2em; margin-top: .75rem; font-size: .76rem; }
.store-product-footer {
  align-items: stretch;
  flex-direction: column;
  margin-top: 1.3rem;
  padding-top: .85rem;
}
.store-product-actions,
.featured-product-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .55rem;
}
.detail-link,
.buy-link,
.direct-buy-link {
  min-width: 0;
  min-height: 44px;
  padding: .65rem .7rem;
  border: 1px solid var(--ink);
  font-size: .65rem;
  white-space: nowrap;
}
.detail-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  background: transparent;
  color: var(--ink);
  font-weight: 690;
}
.detail-link:hover { border-color: var(--moss); background: var(--moss); color: var(--cream); }
.buy-link { background: var(--ink); color: var(--cream); }
.buy-link:hover { background: transparent; color: var(--ink); }
.direct-buy-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  background: var(--moss);
  color: var(--cream);
  font-weight: 720;
  letter-spacing: .04em;
}
.direct-buy-link:hover { background: var(--ink); color: var(--cream); }
.featured-product .featured-buy-link { border-color: var(--cream); background: var(--cream); color: var(--ink); }
.featured-product .featured-buy-link:hover { background: transparent; color: var(--cream); }
.featured-product .featured-detail-link { border-color: var(--cream); color: var(--cream); }
.featured-product .featured-detail-link:hover { background: var(--cream); color: var(--ink); }
.featured-product .featured-direct-buy-link { border-color: var(--cream); background: var(--moss); color: var(--cream); }
.featured-product .featured-direct-buy-link:hover { background: var(--cream); color: var(--ink); }

/* Product detail: a quiet equipment sheet followed by a commerce-style long-form image rail. */
.product-detail-main { min-height: 80svh; padding-top: clamp(8rem, 14vh, 11rem); }
.product-breadcrumb { width: min(100%, var(--max-width)); margin: 0 auto; padding: 0 var(--page-pad) 1.25rem; }
.product-breadcrumb ol { display: flex; flex-wrap: wrap; gap: .5rem; margin: 0; padding: 0; list-style: none; font-size: .68rem; }
.product-breadcrumb li + li::before { margin-right: .5rem; content: "→"; opacity: .55; }
.product-breadcrumb a { border-bottom: 1px solid currentColor; }
.product-detail-state, .product-not-found { width: min(100%, var(--max-width)); min-height: 65svh; margin: 0 auto; padding: 3rem var(--page-pad); }
.product-detail-state { display: grid; place-items: center; align-content: center; gap: 1rem; text-align: center; }
.product-detail-state p { margin: 0; font-size: .78rem; }
.product-loader { width: 1.4rem; height: 1.4rem; border: 2px solid color-mix(in srgb, var(--ink) 22%, transparent); border-top-color: var(--ink); animation: product-spin .8s linear infinite; }
@keyframes product-spin { to { transform: rotate(360deg); } }
.product-not-found { display: grid; align-content: center; }
.product-not-found h1 { max-width: 12ch; margin: 0; font-size: clamp(3rem, 7vw, 7rem); font-weight: 520; letter-spacing: -.045em; line-height: 1.08; }
.product-not-found > p:not(.kicker) { margin: 1.5rem 0 0; }
.product-not-found a { width: min(100%, 20rem); min-height: 44px; display: flex; justify-content: space-between; align-items: center; margin-top: 2rem; border-bottom: 1px solid var(--ink); font-size: .76rem; font-weight: 690; }
.product-detail-hero { width: min(100%, var(--max-width)); min-height: min(82svh, 58rem); display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(24rem, .92fr); margin: 0 auto; padding: 0 var(--page-pad) max(10vh, 6rem); }
.product-detail-visual { min-width: 0; margin: 0; border: 1px solid var(--ink); background: var(--cream); box-shadow: .7rem .7rem 0 color-mix(in srgb, var(--moss) 75%, transparent); }
.product-detail-image-frame { min-height: 100%; display: grid; place-items: center; overflow: hidden; background: var(--cream); }
.product-detail-image-frame img { display: block; width: 100%; height: 100%; object-fit: cover; }
.product-detail-image-frame.is-missing { min-height: 20rem; background: var(--moss); color: var(--cream); }
.product-detail-copy { min-width: 0; display: flex; flex-direction: column; justify-content: center; padding: clamp(2.5rem, 6vw, 7rem); border: 1px solid var(--ink); border-left: 0; }
.product-detail-model { margin: 0 0 1rem; font-size: .68rem; font-weight: 760; letter-spacing: .15em; text-transform: uppercase; }
.product-detail-copy h1 { margin: 0; font-size: clamp(2.8rem, 5vw, 5.7rem); font-weight: 560; letter-spacing: -.045em; line-height: 1.08; overflow-wrap: anywhere; word-break: keep-all; text-wrap: balance; }
.product-detail-tagline { max-width: 32rem; margin: 2rem 0 0; padding-top: 1.25rem; border-top: 1px solid var(--moss); font-size: clamp(1.05rem, 1.5vw, 1.35rem); line-height: 1.7; }
.product-detail-price { margin-top: 2.5rem; font-size: clamp(1.2rem, 2vw, 1.8rem); font-weight: 650; }
.product-detail-actions { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; margin-top: 1.25rem; }
.product-detail-actions .buy-link, .product-detail-actions .direct-buy-link { width: 100%; min-width: 0; min-height: 50px; }
.product-detail-note { margin: 1rem 0 0; font-size: .67rem; opacity: .66; }
.product-description { border-top: 1px solid var(--ink); }
.product-description-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(19rem, .55fr); gap: clamp(4rem, 11vw, 12rem); align-items: start; }
.product-description-heading { position: sticky; top: 12vh; }
.product-description .display-title { max-width: 13ch; }
.product-description-body { padding-top: 3rem; }
.product-description-body p { margin: 0 0 2rem; font-size: clamp(1.05rem, 1.4vw, 1.3rem); line-height: 1.9; }
.product-highlights { background: var(--ink); color: var(--cream); }
.product-highlights-grid { display: grid; grid-template-columns: minmax(18rem, .65fr) minmax(0, 1fr); gap: clamp(4rem, 10vw, 10rem); align-items: start; }
.product-highlights h2 { max-width: 11ch; margin: 0; font-size: clamp(2.6rem, 5vw, 5.5rem); font-weight: 520; letter-spacing: -.045em; line-height: 1.08; }
.product-highlights ol { margin: 0; padding: 0; border-top: 1px solid var(--moss); list-style: none; }
.product-highlights li { display: grid; grid-template-columns: 3rem 1fr; gap: 1rem; padding: clamp(1.4rem, 3vw, 2.5rem) 0; border-bottom: 1px solid var(--moss); }
.product-highlights li span { padding-top: .2rem; font-size: .65rem; letter-spacing: .12em; }
.product-highlights li p { margin: 0; font-size: clamp(1.15rem, 2vw, 2rem); line-height: 1.5; }
.product-gallery { background: var(--cream); }
.product-gallery-head { width: min(100%, 56rem); display: grid; grid-template-columns: minmax(0, 1fr) minmax(18rem, .62fr); gap: clamp(2rem, 7vw, 6rem); align-items: end; margin: 0 auto; padding-bottom: 2rem; border-bottom: 1px solid var(--ink); }
.product-gallery-head h2 { margin: 0; font-size: clamp(2.6rem, 5vw, 5.5rem); font-weight: 520; letter-spacing: -.045em; line-height: 1.08; }
.product-gallery-head > p { max-width: 34ch; margin: 0; font-size: .78rem; line-height: 1.8; }
.product-gallery-rail { width: min(100%, 56rem); margin: clamp(2rem, 5vh, 4rem) auto 0; border: 1px solid var(--ink); background: var(--cream); }
.product-gallery-rail .product-detail-image-frame--longform { min-height: 0; display: block; overflow: visible; background: transparent; }
.product-gallery-rail .product-detail-image-frame--longform + .product-detail-image-frame--longform { border-top: 0; }
.product-gallery-rail .product-detail-image-frame--longform img { display: block; width: 100%; height: auto; object-fit: contain; }
.product-gallery-rail .product-detail-image-frame--longform.is-missing { min-height: 18rem; display: grid; place-items: center; }
.product-detail-closing { min-height: 72svh; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 3rem; align-items: end; padding: var(--section-space) max(var(--page-pad), calc((100vw - var(--max-width)) / 2 + var(--page-pad))); background: var(--moss); color: var(--cream); }
.product-detail-closing h2 { max-width: 14ch; margin: 0; font-size: clamp(3rem, 6.5vw, 7rem); font-weight: 520; letter-spacing: -.045em; line-height: 1.08; }
.product-detail-closing a { min-width: 18rem; min-height: 52px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: .8rem 0; border-bottom: 1px solid var(--cream); font-size: .76rem; font-weight: 700; }

@media (max-width: 820px) {
  .store-product-actions, .featured-product-actions { grid-template-columns: 1fr; }
  .product-detail-hero { grid-template-columns: minmax(0, 1fr); }
  .product-detail-visual { aspect-ratio: 4 / 5; }
  .product-detail-copy { padding: 2.25rem 1.25rem; border-top: 0; border-left: 1px solid var(--ink); }
  .product-description-grid, .product-highlights-grid, .product-detail-closing { grid-template-columns: 1fr; }
  .product-description-heading { position: static; }
  .product-highlights ol { margin-top: 2rem; }
  .product-gallery-head { grid-template-columns: 1fr; align-items: start; }
  .product-detail-closing { min-height: 62svh; align-items: start; }
  .product-detail-closing a { min-width: 0; }
}

@media (max-width: 480px) {
  .product-detail-actions { grid-template-columns: 1fr; }
}

@media (hover: hover) {
  .store-product-card:hover,
  .store-product-card:focus-within {
    border-color: var(--moss);
    box-shadow: .7rem .7rem 0 color-mix(in srgb, var(--moss) 82%, transparent);
    transform: translate(-.18rem, -.18rem);
  }
}

.feature {
  min-height: min(82svh, 54rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(24rem, 1fr);
  align-items: stretch;
}

.feature-film {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  overflow: hidden;
  background: var(--ink) url("campaign-film-poster.jpg") center / cover no-repeat;
}

.feature-film__video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: min(82svh, 54rem);
  object-fit: cover;
  object-position: 50% 50%;
}

.feature-film__toggle {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  min-height: 44px;
  padding: .72rem .9rem;
  border: 1px solid var(--cream);
  background: var(--ink);
  color: var(--cream);
  font: inherit;
  font-size: .64rem;
  font-weight: 720;
  letter-spacing: .11em;
}

.feature-film__toggle:hover { background: var(--cream); color: var(--ink); }

.feature-copy {
  grid-column: 2;
  grid-row: 1;
  width: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--section-space) clamp(2rem, 5vw, 5rem);
  background: var(--ink);
}

.journal-card a,
.story-list-card > a { padding-right: 1rem; padding-left: 1rem; }

.journal .journal-list,
.journal .journal-card { border-color: color-mix(in srgb, var(--cream) 42%, transparent); }
.journal .journal-card:hover { background: color-mix(in srgb, var(--cream) 10%, transparent); }

.reel-showcase {
  --reel-card-width: clamp(17rem, 29vw, 28rem);
  overflow: hidden;
  padding-right: 0;
  padding-left: 0;
  background: var(--cream);
  color: var(--ink);
}

.reel-showcase > .section-inner { padding-right: var(--page-pad); padding-left: var(--page-pad); }

.reel-showcase__head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(19rem, .85fr);
  gap: clamp(2rem, 7vw, 8rem);
  align-items: end;
  padding-bottom: clamp(2rem, 5vh, 4rem);
  border-bottom: 1px solid var(--ink);
}

.reel-showcase__guide {
  display: grid;
  gap: 1.5rem;
  justify-items: start;
}

.reel-showcase__guide > p { max-width: 32ch; }

.reel-showcase__controls {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.reel-showcase__controls button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 44px;
  padding: .72rem .9rem;
  border: 0;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: .66rem;
  font-weight: 720;
  letter-spacing: .08em;
  cursor: pointer;
}

.reel-showcase__controls button:hover,
.reel-showcase__controls button[aria-pressed="true"] { background: var(--ink); color: var(--cream); }

.reel-rail {
  display: flex;
  gap: clamp(.8rem, 1.8vw, 1.75rem);
  margin-top: clamp(2rem, 6vh, 5rem);
  padding: 0 calc((100% - var(--reel-card-width)) / 2) 1.5rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-padding-inline: calc((100% - var(--reel-card-width)) / 2);
  scroll-snap-type: x mandatory;
  scrollbar-gutter: stable;
}

.reel-card {
  flex: 0 0 var(--reel-card-width);
  scroll-snap-align: center;
  border: 1px solid var(--ink);
  background: var(--cream);
  opacity: .38;
  transition: opacity 320ms ease;
}

.reel-card.is-active { opacity: 1; }

.reel-card__media {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: var(--ink);
}

.reel-card:nth-child(1) .reel-card__media { background: var(--ink) url("reel-0422-poster.jpg") center / cover no-repeat; }
.reel-card:nth-child(2) .reel-card__media { background: var(--ink) url("reel-1088m-poster.jpg") center / cover no-repeat; }
.reel-card:nth-child(3) .reel-card__media { background: var(--ink) url("reel-1884-poster.jpg") center / cover no-repeat; }
.reel-card:nth-child(4) .reel-card__media { background: var(--ink) url("reel-1027-poster.jpg") center / cover no-repeat; }
.reel-card:nth-child(5) .reel-card__media { background: var(--ink) url("reel-school-set-poster.jpg") center / cover no-repeat; }

.reel-card__media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel-card__playing {
  position: absolute;
  top: .8rem;
  left: .8rem;
  padding: .45rem .55rem;
  border: 1px solid var(--cream);
  background: var(--ink);
  color: var(--cream);
  font-size: .58rem;
  font-weight: 720;
  letter-spacing: .14em;
  opacity: 0;
  text-transform: uppercase;
}

.reel-card.is-playing .reel-card__playing { opacity: 1; }

.reel-card__select {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border: 0;
  background: linear-gradient(0deg, color-mix(in srgb, var(--ink) 78%, transparent), transparent 42%);
  color: var(--cream);
  cursor: pointer;
  font: inherit;
  font-size: .68rem;
  font-weight: 720;
  letter-spacing: .08em;
  text-align: left;
}

.reel-card__select span {
  padding: .65rem .75rem;
  border: 1px solid var(--cream);
  background: color-mix(in srgb, var(--ink) 84%, transparent);
}

.reel-card__select span:last-child { padding-inline: .8rem; }
.reel-card__select:hover span,
.reel-card__select:focus-visible span { background: var(--cream); color: var(--ink); }
.reel-card.is-active .reel-card__select { pointer-events: none; opacity: 0; }

.reel-card__caption {
  min-height: 8.5rem;
  padding: 1.15rem;
  border-top: 1px solid var(--ink);
}

.reel-card__caption p {
  margin-bottom: .75rem;
  font-size: .62rem;
  font-weight: 720;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.reel-card__caption h3 { max-width: 17ch; font-size: clamp(1.35rem, 2.2vw, 2rem); line-height: 1.18; }

.story-list-card:hover,
.story-post-nav a:hover { background: color-mix(in srgb, var(--ink) 7%, var(--cream)); }

.contact { background: var(--ink); }
.contact-form button { border: 1px solid var(--cream); padding: 1rem; }
.contact-form button:hover { background: var(--cream); color: var(--ink); }
.contact-form--light button { border-color: var(--ink); background: var(--ink); color: var(--cream); }
.contact-form--light button:hover { border-color: var(--moss); background: var(--moss); color: var(--cream); }

.site-footer {
  grid-template-columns: minmax(16rem, 1fr) auto minmax(14rem, auto);
  padding-top: clamp(4rem, 8vh, 7rem);
  padding-bottom: 2rem;
  border-top: 0;
  background: var(--ink);
  color: var(--cream);
}

.footer-brand strong {
  display: block;
  width: min(7.8rem, 100%);
  height: 3rem;
  overflow: hidden;
  background: transparent url("himawari-logo.png") center / 100% auto no-repeat;
  color: transparent;
  filter: brightness(0) invert(1);
  font-size: 0;
  white-space: nowrap;
}
.footer-brand p { max-width: 30ch; opacity: .68; }
.site-footer nav { display: grid; grid-template-columns: repeat(2, auto); gap: .8rem 3rem; }
.footer-contact { opacity: .78; }
.copyright { padding-top: 1.25rem; border-top: 1px solid color-mix(in srgb, var(--cream) 24%, transparent); }

/* Interior campaign pages */
.about-hero,
.catalog-hero,
.contact-page-hero,
.story-list-hero { min-height: calc(100svh - var(--header-h)); }

.about-hero-copy h1,
.catalog-hero h1,
.contact-page-intro h1,
.story-list-hero-copy h1 { font-weight: 620; letter-spacing: -.04em; line-height: 1.08; text-wrap: balance; }

.founder-portrait,
.catalog-index { border: 0; outline: 0; }
.founder-portrait > img { filter: none; }
.founder-quote { min-height: 82svh; }
.founder-quote p { font-weight: 520; }
.founder-quote blockquote,
.founder-promise .section-inner { position: relative; z-index: 1; }
.catalog-index { background: var(--ink); }
.catalog-products { padding-top: max(9vh, 5rem); }
.contact-page-hero { padding-top: max(10vh, 6rem); }
.contact-action:hover { background: var(--ink); }

.story-list-hero {
  min-height: 64svh;
  align-items: center;
  padding-top: max(10vh, 6rem);
  padding-bottom: max(10vh, 6rem);
  border-bottom: 1px solid var(--ink);
}

.story-archive-head h2 { font-weight: 560; }
.story-reading { padding-top: max(9vh, 5rem); }
.story-post-head h1 { font-weight: 580; }
.story-tag { background: var(--ink); color: var(--cream); }

@media (max-width: 980px) {
  .site-nav { gap: 1.4rem; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  :root { --header-h: 4.5rem; --section-space: max(15vh, 5.5rem); }

  .site-header,
  .about-header,
  .interior-header,
  .story-page .site-header {
    grid-template-columns: 44px minmax(0, 1fr) 64px;
    gap: 0;
    height: var(--header-h);
    padding: 0 .8rem;
  }

  .menu-button {
    grid-column: 1;
    grid-row: 1;
    display: grid;
    color: var(--ink);
  }

  .brand {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    width: 4.5rem;
    height: 2.45rem;
  }

  .header-store {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    min-width: 60px;
    min-height: 36px;
    padding: 0 .45rem;
    font-size: .55rem;
  }

  .site-nav,
  .story-page .site-nav {
    position: fixed;
    z-index: 590;
    inset: var(--header-h) 0 0;
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 2rem var(--page-pad);
    background: var(--ink);
    color: var(--cream);
    justify-self: stretch;
  }

  .site-nav.is-open { display: flex; }
  .site-nav a {
    justify-content: space-between;
    min-height: 4.25rem;
    height: auto;
    border-bottom: 1px solid color-mix(in srgb, var(--cream) 28%, transparent);
    font-size: 1.35rem;
    font-weight: 620;
    letter-spacing: -.02em;
  }
  .site-nav a::after { content: "↗"; font-size: .9rem; }
  .site-nav a:hover,
  .site-nav a[aria-current="page"] { border-bottom-color: var(--cream); }

  .menu-button[aria-expanded="true"] { color: var(--ink); }
  .about-header .menu-button[aria-expanded="true"] span:not(.sr-only),
  .interior-header .menu-button[aria-expanded="true"] span:not(.sr-only),
  .story-page .menu-button[aria-expanded="true"] span:not(.sr-only) { background: var(--ink); }

  .home-film-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    overflow: visible;
  }
  .home-film-hero__media {
    min-height: 0;
    aspect-ratio: 1;
  }
  .home-film-hero__copy {
    min-height: 0;
    align-items: center;
    padding: 3.25rem var(--page-pad) 4rem;
    text-align: center;
  }
  .home-film-hero h1 { max-width: 13ch; font-size: clamp(2.55rem, 11.5vw, 3.8rem); }
  .home-film-hero__copy > p { max-width: 31ch; }
  .home-film-hero__toggle { right: .9rem; bottom: .9rem; }

  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid color-mix(in srgb, var(--cream) 24%, transparent); }

  .intro::before { background-position: 64% 42%; }
  .intro::after { background: color-mix(in srgb, var(--ink) 78%, transparent); }
  .journal::after { background: color-mix(in srgb, var(--ink) 88%, transparent); }
  .founder-quote::before { background-position: 66% 38%; }
  .founder-quote::after,
  .founder-promise::after { background: color-mix(in srgb, var(--ink) 74%, transparent); }

  .featured-product { grid-template-columns: 1fr; }

  .collection .section-head::after,
  .catalog-products .section-head::after { grid-column: 1; }
  .featured-product-media { min-height: 0; aspect-ratio: 4 / 5; }
  .featured-product-content { padding: 2.25rem 1.25rem; }
  .featured-product-content h3 { font-size: clamp(2.2rem, 10vw, 3.4rem); }

  .feature { grid-template-columns: 1fr; }
  .feature-film { grid-column: 1; grid-row: 1; }
  .feature-film__video { min-height: 62svh; }
  .feature-copy { grid-column: 1; grid-row: 2; min-height: 60svh; }

  .reel-showcase__head { grid-template-columns: 1fr; align-items: start; }

  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-contact { grid-column: 1 / -1; justify-items: start; }
}

@media (max-width: 520px) {
  .announcement-bar { font-size: .58rem; letter-spacing: .11em; }
  .brand { width: 4rem; height: 2.2rem; }
  .display-title { font-size: clamp(3rem, 14vw, 4.5rem); }

  .reel-showcase { --reel-card-width: min(78vw, 22rem); }
  .reel-showcase__controls { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; }
  .reel-showcase__controls button { justify-content: center; }

  .product-grid {
    grid-auto-flow: column;
    grid-auto-columns: min(84vw, 22rem);
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-gutter: stable;
  }
  .store-product-card { scroll-snap-align: start; }

  .about-hero,
  .catalog-hero,
  .contact-page-hero { padding-top: max(8vh, 4rem); }
  .about-hero-copy h1,
  .catalog-hero h1,
  .contact-page-intro h1,
  .story-list-hero-copy h1 { font-size: clamp(3rem, 13vw, 4.5rem); }

  .site-footer { grid-template-columns: 1fr; gap: 2.5rem; }
  .site-footer nav { grid-template-columns: repeat(2, 1fr); }
  .footer-contact { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .product-grid { scroll-snap-type: none; }
  .reel-rail { scroll-snap-type: none; }
  .reel-card { transition: none; }
  .store-product-card { transition: none; }
  .store-product-card:hover,
  .store-product-card:focus-within { transform: none; }
  .reel-card__media video { visibility: hidden; }
  [data-reel-play],
  [data-reel-sound] { display: none; }
  .feature-film__video,
  .feature-film__toggle { display: none; }
  .feature-film { min-height: min(82svh, 54rem); }
  .home-film-hero__video,
  .home-film-hero__toggle { display: none; }
}

@media (forced-colors: active) {
  html { scrollbar-color: auto; }
  .announcement-bar,
  .site-footer,
  .featured-product { forced-color-adjust: auto; }

  .brand,
  .footer-brand strong {
    width: auto;
    height: auto;
    background: none;
    color: CanvasText;
    filter: none;
    font-size: .82rem;
    font-weight: 780;
    letter-spacing: .18em;
  }

  .intro::before,
  .journal::before,
  .founder-quote::before,
  .founder-promise::before,
  .intro::after,
  .journal::after,
  .founder-quote::after,
  .founder-promise::after { display: none; }
}
