/* ==========================================================
   naraco theme — main stylesheet
   ========================================================== */

:root {
  --color-bg: #FFFFFF;
  --color-fg: #0A0A0A;
  --color-mute: #999999;
  --color-line: #E5E5E5;
  --color-soft: #F5F5F5;
  --color-dark: #0A0A0A;
  --font-en: 'Inter', -apple-system, sans-serif;
  --font-jp: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  --max-w: 1400px;
}

html { font-size: 16px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-jp), var(--font-en), sans-serif;
  font-weight: 400;
  color: var(--color-fg);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; height: auto; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 24px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-fg);
}
.site-header__nav {
  display: flex;
  gap: 32px;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.site-header__logo {
  grid-column: 2;
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--color-fg);
  text-decoration: none;
  transition: letter-spacing 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.site-header__logo:hover { letter-spacing: 0.12em; }
.site-header__nav a { color: var(--color-fg); text-decoration: none; }
.site-header__search {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.site-header__search:focus-within { border-bottom-color: var(--color-fg); }
.site-header__search input[type="search"] {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  outline: none;
  width: 0;
  padding: 0;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-fg);
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1), padding 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.site-header__search input[type="search"]::placeholder {
  color: var(--color-mute);
  text-transform: uppercase;
}
.site-header__search:hover input[type="search"],
.site-header__search:focus-within input[type="search"],
.site-header__search input[type="search"]:not(:placeholder-shown) {
  width: 140px;
  padding: 0 4px;
}
.site-header__search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  padding: 4px;
  cursor: pointer;
  color: var(--color-fg);
  transition: opacity 0.3s ease;
}
.site-header__search button:hover { opacity: 0.55; }
.site-header__search input[type="search"]::-webkit-search-cancel-button { display: none; }
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

/* ---------- Hero - Pickup carousel ---------- */
.hero {
  padding: 80px 40px 100px;
  background: var(--color-bg);
  position: relative;
}
.hero__label {
  text-align: center;
  margin-bottom: 48px;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-fg);
}
.hero__carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.7fr 3fr 0.7fr;
  gap: 24px;
  align-items: center;
}
.hero__slide { position: relative; overflow: hidden; }
.hero__slide--side {
  aspect-ratio: 3 / 4;
  opacity: 0.45;
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.hero__slide--side:hover { opacity: 0.7; }
.hero__slide--main {
  aspect-ratio: 16 / 10;
  position: relative;
}
.hero__slide-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

/* Hero slide direction transitions (triggered by JS) */
.hero.is-leaving-next .hero__slide-link,
.hero.is-leaving-next .hero__caption {
  opacity: 0;
  transform: translateX(-64px);
}
.hero.is-leaving-next .hero__slide--side { transform: translateX(-18px); opacity: 0.2; }
.hero.is-leaving-prev .hero__slide-link,
.hero.is-leaving-prev .hero__caption {
  opacity: 0;
  transform: translateX(64px);
}
.hero.is-leaving-prev .hero__slide--side { transform: translateX(18px); opacity: 0.2; }
.hero.is-entering-next .hero__slide-link,
.hero.is-entering-next .hero__caption {
  opacity: 0;
  transform: translateX(64px);
}
.hero.is-entering-next .hero__slide--side { transform: translateX(18px); opacity: 0.2; }
.hero.is-entering-prev .hero__slide-link,
.hero.is-entering-prev .hero__caption {
  opacity: 0;
  transform: translateX(-64px);
}
.hero.is-entering-prev .hero__slide--side { transform: translateX(-18px); opacity: 0.2; }
.hero__image {
  width: 100%;
  height: 100%;
  background: var(--color-soft);
  position: relative;
  overflow: hidden;
}
.hero__caption {
  position: absolute;
  left: 40px;
  bottom: 40px;
  background: var(--color-bg);
  padding: 28px 36px;
  max-width: 460px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.hero__caption-cat {
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-mute);
  margin-bottom: 10px;
}
.hero__caption-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0 0 14px;
  letter-spacing: 0.01em;
  color: var(--color-fg);
}
.hero__caption-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.hero__caption-tags span {
  background: var(--color-fg);
  color: var(--color-bg);
  font-family: var(--font-en);
  font-size: 10px;
  padding: 5px 11px;
  letter-spacing: 0.05em;
}
.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border: 1px solid var(--color-fg);
  border-radius: 50%;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  color: var(--color-fg);
}
.hero__arrow:hover {
  background: var(--color-fg);
  color: var(--color-bg);
  transform: translateY(-50%) scale(1.15);
}
.hero__arrow--prev { left: -28px; }
.hero__arrow--next { right: -28px; }
.hero__dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 56px;
}
.hero__dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-line);
  cursor: pointer;
  transition: background 0.3s;
}
.hero__dots span.active { background: var(--color-fg); }

/* ---------- Marquee ---------- */
.section-marquee {
  overflow: hidden;
  padding: 100px 0 60px;
  border-top: 1px solid var(--color-fg);
}
.section-marquee__inner {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  font-family: var(--font-en);
  font-size: 72px;
  font-weight: 200;
  letter-spacing: -0.02em;
  animation: marquee 40s linear infinite;
}
.section-marquee__inner span { flex-shrink: 0; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Categories ---------- */
.categories {
  padding: 0 40px 60px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}
.categories a {
  padding: 13px 28px;
  border: 1px solid var(--color-fg);
  border-radius: 999px;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-fg);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.categories a:hover {
  background: var(--color-fg);
  color: var(--color-bg);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* ---------- Articles grid ---------- */
.articles {
  padding: 40px 40px 120px;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px 32px;
}
.article { display: flex; flex-direction: column; }
.article a {
  display: block;
  position: relative;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}
.article__image {
  aspect-ratio: 4 / 3;
  background: var(--color-soft);
  margin-bottom: 20px;
  overflow: hidden;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s;
  position: relative;
}
.article__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0);
  transition: background 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 2;
  pointer-events: none;
}
.article__image::after {
  content: 'VIEW';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: #fff;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 3;
  pointer-events: none;
}
.article:hover .article__image { transform: scale(1.05); }
.article:hover .article__image::before { background: rgba(10,10,10,0.35); }
.article:hover .article__image::after { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.article__category {
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-mute);
  margin-bottom: 10px;
}
.article__category a { color: inherit; text-decoration: none; }
.article__title {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
  margin: 0 0 14px;
  letter-spacing: 0.01em;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.article__title a { color: inherit; text-decoration: none; }
.article:hover .article__title { transform: translateX(4px); }
.article__date {
  font-family: var(--font-en);
  font-size: 11px;
  color: var(--color-mute);
  letter-spacing: 0.05em;
}
.articles__more {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.articles__more a {
  padding: 18px 56px;
  border: 1px solid var(--color-fg);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-fg);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.articles__more a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-fg);
  transition: left 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: -1;
}
.articles__more a:hover::before { left: 0; }
.articles__more a:hover { color: var(--color-bg); letter-spacing: 0.3em; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-dark);
  color: var(--color-bg);
  padding: 100px 40px 40px;
  text-align: center;
}
.site-footer__logo {
  font-family: var(--font-en);
  font-size: 64px;
  font-weight: 900;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  transition: letter-spacing 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.site-footer:hover .site-footer__logo { letter-spacing: 0.15em; }
.site-footer__tag {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 64px;
}
.site-footer__nav {
  display: flex;
  gap: 40px;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 56px;
}
.site-footer__nav a { color: var(--color-bg); text-decoration: none; }
.site-footer__social {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 80px;
}
.site-footer__social a {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-bg);
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.site-footer__social a:hover {
  background: var(--color-bg);
  color: var(--color-dark);
  border-color: var(--color-bg);
  transform: translateY(-4px) scale(1.1);
}
.site-footer__copy {
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.18em;
  opacity: 0.4;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ---------- Animated nav underlines ---------- */
.site-header__nav a,
.site-footer__nav a {
  position: relative;
  display: inline-block;
}
.site-header__nav a::after,
.site-footer__nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.site-header__nav a:hover::after,
.site-footer__nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

/* ---------- Keyframes & page intro ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-100%); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes kenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.12) translate(-1%, -1%); }
}
@keyframes clipReveal {
  from { clip-path: inset(0 100% 0 0); }
  to { clip-path: inset(0 0 0 0); }
}
@keyframes breathe {
  0%, 100% { transform: translateY(-50%) scale(1); }
  50% { transform: translateY(-50%) scale(1.08); }
}

.site-header { animation: slideDown 1s cubic-bezier(0.22, 1, 0.36, 1) both; }
.hero__label { animation: fadeUp 1s 0.5s cubic-bezier(0.22, 1, 0.36, 1) both; }
.hero__slide--main { animation: clipReveal 1.4s 0.6s cubic-bezier(0.77, 0, 0.175, 1) both; }
.hero__slide--side:nth-of-type(2) { animation: fadeIn 1.4s 1.0s cubic-bezier(0.22, 1, 0.36, 1) both; }
.hero__slide--side:nth-of-type(4) { animation: fadeIn 1.4s 1.2s cubic-bezier(0.22, 1, 0.36, 1) both; }
.hero__slide--main .hero__image { animation: kenBurns 24s 1.2s ease-out infinite alternate; transform-origin: center; }
.hero__caption { animation: fadeUp 1.2s 1.4s cubic-bezier(0.22, 1, 0.36, 1) both; }
.hero__arrow { opacity: 0; animation: fadeIn 1s 1.6s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.hero__dots { opacity: 0; animation: fadeIn 1s 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards; }

/* ---------- Scroll reveal (only when JS is available) ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1),
              transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.js .reveal.in-view { opacity: 1; transform: translateY(0); }
.js .reveal-stagger > * {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1),
              transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.js .reveal-stagger.in-view > * { opacity: 1; transform: translateY(0); }
.js .reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0s; }
.js .reveal-stagger.in-view > *:nth-child(2) { transition-delay: 0.08s; }
.js .reveal-stagger.in-view > *:nth-child(3) { transition-delay: 0.16s; }
.js .reveal-stagger.in-view > *:nth-child(4) { transition-delay: 0.24s; }
.js .reveal-stagger.in-view > *:nth-child(5) { transition-delay: 0.32s; }
.js .reveal-stagger.in-view > *:nth-child(6) { transition-delay: 0.40s; }
.js .reveal-stagger.in-view > *:nth-child(7) { transition-delay: 0.48s; }
.js .reveal-stagger.in-view > *:nth-child(8) { transition-delay: 0.56s; }
.js .reveal-stagger.in-view > *:nth-child(9) { transition-delay: 0.64s; }
.js .reveal-stagger.in-view > *:nth-child(10) { transition-delay: 0.72s; }

.js .reveal-clip .article__image {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}
.js .reveal-clip.in-view .article__image { clip-path: inset(0 0 0 0); }

/* Failsafe: if the IntersectionObserver somehow misses an element while JS is active,
   auto-reveal after 3s so content is never permanently hidden. */
@keyframes naracoAutoReveal {
  to { opacity: 1; transform: translateY(0); }
}
.js .reveal:not(.in-view),
.js .reveal-stagger:not(.in-view) > * {
  animation: naracoAutoReveal 1.1s 3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.js .reveal-clip:not(.in-view) .article__image {
  animation: naracoAutoReveal 1.2s 3s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

/* ---------- Custom cursor ---------- */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  transition: opacity 0.3s, width 0.3s, height 0.3s;
}
.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid #fff;
  border-radius: 50%;
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1), height 0.4s cubic-bezier(0.22, 1, 0.36, 1), background 0.4s, opacity 0.3s;
}
.cursor-ring.hovering {
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,0.1);
}
.cursor-dot.hovering { opacity: 0; }
@media (hover: none), (max-width: 900px) {
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
}
@media (hover: hover) and (min-width: 901px) {
  body { cursor: none; }
  a, button { cursor: none; }
}

/* ---------- Scroll progress bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--color-fg);
  z-index: 1000;
  width: 0%;
  transition: width 0.1s linear;
}

/* ---------- Archive / Query loop overrides ---------- */
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.archive-grid li.wp-block-post { margin: 0; }
.archive-grid .wp-block-post-featured-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 20px;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.archive-grid .wp-block-post:hover .wp-block-post-featured-image img { transform: scale(1.05); }

.wp-block-query-pagination {
  margin-top: 80px;
  gap: 16px;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.wp-block-query-pagination a,
.wp-block-query-pagination .page-numbers {
  color: var(--color-fg);
  text-decoration: none;
  padding: 8px 12px;
  border: 1px solid transparent;
  transition: all 0.3s;
}
.wp-block-query-pagination .current,
.wp-block-query-pagination a:hover {
  border-color: var(--color-fg);
}

/* ---------- Single post content ---------- */
.single-post .wp-block-post-content {
  font-size: 16px;
  line-height: 1.9;
}
.single-post .wp-block-post-content h2 {
  font-size: 22px;
  font-weight: 500;
  margin-top: 64px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-line);
}
.single-post .wp-block-post-content h3 {
  font-size: 18px;
  font-weight: 500;
  margin-top: 48px;
  margin-bottom: 16px;
}
.single-post .wp-block-post-content p {
  margin-bottom: 1.5em;
}
.single-post .wp-block-post-content img {
  margin: 2em 0;
}
.single-post .wp-block-post-featured-image img {
  width: 100%;
  height: auto;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero__slide--main .hero__image { animation: none; }
  .section-marquee__inner { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero__carousel { grid-template-columns: 0.4fr 4fr 0.4fr; gap: 12px; }
  .articles { grid-template-columns: repeat(2, 1fr); gap: 56px 24px; }
  .archive-grid { grid-template-columns: repeat(2, 1fr); gap: 56px 24px; }
  .section-marquee__inner { font-size: 56px; }
}
@media (max-width: 640px) {
  .site-header { padding: 18px 20px; }
  .site-header__nav { display: none; }
  .site-header__logo { font-size: 18px; }
  .site-header__search input[type="search"] { width: 84px; padding: 0 4px; font-size: 10px; }
  .site-header__search:hover input[type="search"],
  .site-header__search:focus-within input[type="search"],
  .site-header__search input[type="search"]:not(:placeholder-shown) { width: 84px; }
  .hero { padding: 50px 20px 70px; }
  .hero__carousel { grid-template-columns: 1fr; gap: 0; }
  .hero__slide--side { display: none; }
  .hero__arrow { display: none; }
  .hero__caption { left: 16px; right: 16px; bottom: 16px; padding: 20px 24px; max-width: none; }
  .hero__caption-title { font-size: 15px; }
  .articles { grid-template-columns: 1fr; gap: 48px; padding: 30px 20px 80px; }
  .archive-grid { grid-template-columns: 1fr; gap: 48px; }
  .section-marquee { padding: 60px 0 40px; }
  .section-marquee__inner { font-size: 36px; }
  .site-footer { padding: 70px 20px 30px; }
  .site-footer__logo { font-size: 40px; }
  .site-footer__nav { gap: 20px; flex-wrap: wrap; }
}
