:root {
  --ivory: #f4f1eb;
  --ivory-deep: #ebe6de;
  --gray: #d8d6d1;
  --charcoal: #302f2d;
  --brown: #83654d;
  --white: #fffdf8;
  --serif-en: "Cormorant Garamond", Georgia, serif;
  --serif-ja: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --header-height: 72px;
  --page-pad: clamp(20px, 5vw, 72px);
  --content-max: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9;
  line-break: strict;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

p {
  text-wrap: pretty;
}

.title-line {
  display: block;
  white-space: nowrap;
}

.no-break {
  white-space: nowrap;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

figure,
h1,
h2,
p,
dl,
dd {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--brown);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  transform: translateY(-160%);
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.875rem;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid rgb(48 47 45 / 10%);
  background: rgb(244 241 235 / 92%);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 1440px);
  height: 100%;
  margin-inline: auto;
  padding-inline: var(--page-pad);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
}

.brand__logo {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: clamp(1.05rem, 2.6vw, 1.35rem);
  letter-spacing: 0.01em;
  color: var(--charcoal);
  white-space: nowrap;
}

.proposal-label {
  font-family: var(--sans);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: clamp(20px, 2.5vw, 40px);
}

.desktop-nav a {
  position: relative;
  padding-block: 12px;
  font-family: var(--serif-en);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  content: "";
  transition: transform 300ms var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 64px;
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: var(--serif-en);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-button__icon {
  display: grid;
  gap: 5px;
  width: 20px;
}

.menu-button__icon i {
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
}

.mobile-nav {
  position: fixed;
  inset: var(--header-height) 0 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  padding: 24px var(--page-pad) 36px;
  transform: translateX(100%);
  visibility: hidden;
  background: var(--ivory);
  transition:
    transform 500ms var(--ease),
    visibility 0s linear 500ms;
}

.mobile-nav.is-open {
  transform: translateX(0);
  visibility: visible;
  transition:
    transform 500ms var(--ease),
    visibility 0s;
}

.mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--gray);
}

.mobile-nav__close {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: var(--serif-en);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.mobile-nav__close span:last-child {
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 300;
}

.mobile-nav__links {
  display: grid;
  align-content: center;
  flex: 1;
}

.mobile-nav__links a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  min-height: 56px;
  padding-block: 12px;
  border-bottom: 1px solid rgb(48 47 45 / 16%);
  font-family: var(--serif-en);
  font-size: clamp(1.7rem, 8vw, 2.5rem);
  line-height: 1;
  text-transform: uppercase;
}

.mobile-nav__links a span {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.hero {
  position: relative;
  display: flex;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  background: var(--ivory);
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgb(244 241 235 / 38%) 0%, rgb(244 241 235 / 12%) 54%, rgb(48 47 45 / 6%) 100%),
    linear-gradient(90deg, rgb(244 241 235 / 26%) 0%, rgb(244 241 235 / 4%) 78%, transparent 100%);
  content: "";
}

.hero__media picture,
.hero__media img {
  width: 100%;
  height: 100%;
}

.hero__media img {
  filter: saturate(1.08) contrast(1.05);
  object-fit: cover;
  object-position: center;
}

.hero__copy {
  position: relative;
  z-index: 2;
  align-self: flex-start;
  width: 100%;
  max-width: 620px;
  padding: clamp(72px, 12vh, 128px) var(--page-pad) 120px;
}

.eyebrow,
.section-label {
  color: var(--brown);
  font-family: var(--serif-en);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.canele h2,
.seasonal h2,
.feature-card h2,
.shop h2 {
  font-family: var(--serif-ja);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-wrap: balance;
}

.hero h1 {
  margin-top: 20px;
  font-size: clamp(2.45rem, 11vw, 4.6rem);
  line-height: 1.55;
}

.hero__location {
  margin-top: 26px;
  font-family: var(--serif-ja);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.hero__lead {
  margin-top: 10px;
  color: rgb(48 47 45 / 78%);
  font-size: 0.78rem;
  line-height: 2;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border: 1px solid var(--charcoal);
  border-radius: 1px;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4;
  transition:
    background-color 250ms ease,
    color 250ms ease,
    border-color 250ms ease;
}

.button--primary {
  background: var(--charcoal);
  color: var(--white);
}

.button--primary:hover {
  background: var(--brown);
  border-color: var(--brown);
}

.button--secondary {
  background: rgb(244 241 235 / 62%);
}

.button--secondary:hover {
  background: var(--charcoal);
  color: var(--white);
}

.hero__scroll {
  position: absolute;
  z-index: 2;
  right: var(--page-pad);
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgb(48 47 45 / 70%);
  font-family: var(--serif-en);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__scroll span {
  display: block;
  width: 34px;
  height: 1px;
  background: currentColor;
}

.section {
  width: min(100%, var(--content-max));
  margin-inline: auto;
  padding: clamp(96px, 13vw, 176px) var(--page-pad);
}

.section h2,
.canele h2,
.seasonal h2,
.shop h2 {
  margin-top: 18px;
  font-size: clamp(2rem, 6vw, 3.6rem);
  line-height: 1.55;
}

.sweets h2 {
  font-size: clamp(1.5rem, 6.4vw, 3.6rem);
}

.section-heading {
  display: grid;
  gap: 2px;
  margin-bottom: clamp(42px, 7vw, 80px);
}

.section-heading--center {
  justify-items: center;
  text-align: center;
}

.about {
  display: grid;
  gap: 48px;
}

.about__media {
  position: relative;
  order: 2;
}

.about__image-frame {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.about__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-note {
  margin-top: 8px;
  color: rgb(48 47 45 / 56%);
  font-family: var(--serif-en);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about__copy {
  position: relative;
  order: 1;
  align-self: center;
}

.about__copy > p:not(.section-label, .section-number) {
  margin-top: 28px;
  color: rgb(48 47 45 / 76%);
  font-family: var(--serif-ja);
  font-size: 0.9rem;
  line-height: 2.3;
}

.section-number {
  position: absolute;
  right: 0;
  bottom: -52px;
  color: rgb(131 101 77 / 14%);
  font-family: var(--serif-en);
  font-size: 5rem;
  line-height: 1;
}

.canele {
  overflow: hidden;
  background: var(--ivory-deep);
}

.canele__inner {
  display: grid;
  width: min(100%, 1440px);
  margin-inline: auto;
}

.canele__copy {
  align-self: center;
  padding: 88px var(--page-pad) 64px;
}

.canele__copy > p:last-child {
  margin-top: 28px;
  color: rgb(48 47 45 / 74%);
  font-size: 0.88rem;
  line-height: 2.2;
}

.canele__figure,
.canele__figure picture,
.canele__figure img {
  width: 100%;
  height: 100%;
  min-height: 380px;
}

.canele__figure picture {
  display: block;
}

.canele__figure img {
  object-fit: cover;
  object-position: center;
}

.sweets-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px 12px;
}

.sweet-card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--gray);
}

.sweet-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms var(--ease);
}

.sweet-card:hover img {
  transform: scale(1.02);
}

.sweet-card figcaption {
  padding-top: 16px;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  line-height: 1.6;
}

.sweet-card figcaption span {
  display: block;
  margin-bottom: 2px;
  font-family: var(--serif-en);
  font-size: 1.16rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seasonal {
  display: grid;
  gap: 48px;
  padding: clamp(96px, 13vw, 176px) var(--page-pad);
  background: #e5e5e2;
}

.seasonal__intro {
  align-self: center;
  max-width: 470px;
}

.seasonal__intro > p:not(.section-label) {
  margin-top: 28px;
  color: rgb(48 47 45 / 74%);
  font-size: 0.88rem;
  line-height: 2.15;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 44px;
  margin-top: 28px;
  border-bottom: 1px solid currentColor;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.text-link span {
  font-size: 1rem;
}

.seasonal__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.seasonal__main {
  grid-column: 1 / -1;
}

.seasonal__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.seasonal__main img {
  aspect-ratio: 16 / 10;
  object-position: 50% center;
}

.seasonal__sub img {
  aspect-ratio: 4 / 5;
}

.feature-band {
  display: grid;
  background: var(--charcoal);
}

.feature-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: var(--white);
}

.feature-card > img,
.feature-card__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.feature-card > img {
  object-fit: cover;
  transition: transform 750ms var(--ease);
}

.feature-card--gift > img {
  object-position: center;
}

.feature-card--cafe > img {
  object-position: 58% center;
}

.feature-card__shade {
  background: linear-gradient(180deg, rgb(32 29 27 / 18%) 0%, rgb(32 29 27 / 76%) 100%);
}

.feature-card__copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 44px var(--page-pad);
}

.feature-card .section-label {
  color: rgb(255 253 248 / 78%);
}

.feature-card h2 {
  margin-top: 12px;
  font-size: clamp(1.8rem, 6vw, 2.7rem);
  line-height: 1.5;
}

.feature-card__copy > p:not(.section-label) {
  margin-top: 16px;
  color: rgb(255 253 248 / 84%);
  font-size: 0.76rem;
  line-height: 1.9;
}

.feature-card__copy > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  margin-top: 14px;
  border-bottom: 1px solid rgb(255 253 248 / 72%);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.feature-card:hover > img {
  transform: scale(1.02);
}

.journal {
  width: min(100%, 1440px);
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
}

.journal-grid a {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--gray);
}

.journal-grid a::after {
  position: absolute;
  inset: 0;
  border: 0 solid rgb(244 241 235 / 78%);
  content: "";
  transition: border-width 350ms var(--ease);
}

.journal-grid a:hover::after,
.journal-grid a:focus-visible::after {
  border-width: 8px;
}

.journal-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}

.journal-grid a:hover img {
  transform: scale(1.02);
}

.journal__cta {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.shop {
  background: var(--ivory-deep);
}

.shop__inner {
  display: grid;
  gap: 56px;
  width: min(100%, var(--content-max));
  margin-inline: auto;
  padding: clamp(96px, 13vw, 160px) var(--page-pad);
}

.shop__heading {
  position: relative;
}

.shop__place {
  margin-top: 52px;
  color: rgb(131 101 77 / 25%);
  font-family: var(--serif-en);
  font-size: clamp(3.8rem, 15vw, 8rem);
  line-height: 0.78;
  letter-spacing: -0.04em;
}

.shop__details {
  align-self: center;
}

.shop__name {
  padding-bottom: 22px;
  border-bottom: 1px solid rgb(48 47 45 / 24%);
  font-family: var(--serif-ja);
  font-size: 1.45rem;
  letter-spacing: 0.08em;
}

.shop__details dl > div {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 16px;
  padding-block: 17px;
  border-bottom: 1px solid rgb(48 47 45 / 15%);
}

.shop__details dt {
  font-family: var(--serif-en);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.shop__details dd {
  font-size: 0.84rem;
}

.shop__details dd a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.shop__notice {
  margin-top: 22px;
  color: rgb(48 47 45 / 66%);
  font-size: 0.74rem;
  line-height: 1.9;
}

.shop__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  margin-top: 32px;
}

.shop__actions .text-link {
  margin-top: 0;
}

.site-footer {
  padding: 56px var(--page-pad) 28px;
  background: var(--charcoal);
  color: var(--white);
}

.site-footer__top,
.site-footer__bottom {
  width: min(100%, var(--content-max));
  margin-inline: auto;
}

.site-footer__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 44px;
}

.site-footer__logo {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: clamp(1.4rem, 3.4vw, 1.9rem);
  letter-spacing: 0.01em;
  color: var(--white);
  white-space: nowrap;
  margin: 0;
}

.site-footer .proposal-label {
  margin-top: 10px;
  color: rgb(255 253 248 / 60%);
}

.site-footer nav {
  display: grid;
  gap: 6px;
  text-align: right;
}

.site-footer nav a {
  min-height: 32px;
  font-family: var(--serif-en);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__bottom {
  display: grid;
  gap: 6px;
  padding-top: 22px;
  border-top: 1px solid rgb(255 253 248 / 16%);
  color: rgb(255 253 248 / 58%);
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 620ms var(--ease),
    transform 620ms var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 899px) {
  .hero__copy {
    max-width: 390px;
    padding: clamp(68px, 9vh, 84px) var(--page-pad) 92px;
  }

  .hero .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.22em;
  }

  .hero .eyebrow::after,
  .hero__location::after {
    display: block;
    width: 30px;
    height: 1px;
    background: rgb(131 101 77 / 58%);
    content: "";
  }

  .hero .eyebrow::after {
    margin-top: 20px;
  }

  .hero h1 {
    margin-top: 38px;
    font-size: clamp(2.05rem, 8.8vw, 2.35rem);
    line-height: 1.58;
  }

  .hero__location {
    margin-top: 24px;
    font-size: 0.94rem;
    letter-spacing: 0.1em;
  }

  .hero__location::after {
    margin-top: 18px;
  }

  .hero__lead {
    margin-top: 24px;
    color: rgb(48 47 45 / 86%);
    font-family: var(--serif-ja);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    line-height: 2.25;
  }

  .hero__lead span {
    display: block;
    white-space: nowrap;
  }

  .hero__scroll {
    display: none;
  }
}

@media (max-width: 699px) {
  .sweet-card--cake img {
    object-position: 50% 56%;
  }

  .sweet-card--baked img {
    object-position: 50% 68%;
  }

  .sweet-card--pudding img {
    object-position: 50% 64%;
  }

  .sweet-card--gift img {
    object-position: 50% 72%;
  }

  .seasonal__main img {
    object-position: 50% 66%;
  }

  .seasonal__sub--layered img,
  .seasonal__sub--stand img {
    object-position: 50% 60%;
  }

  .journal-card--parfait img {
    object-position: 50% 54%;
  }

  .journal-card--baked img {
    object-position: 50% 68%;
  }

  .journal-card--pudding img {
    object-position: 50% 64%;
  }

  .journal-card--gift img {
    object-position: 50% 72%;
  }

  .journal-card--cake img {
    object-position: 50% 58%;
  }

  .journal-card--cafe img {
    object-position: 55% 58%;
  }
}

@media (min-width: 700px) {
  .journal-grid a {
    aspect-ratio: 1;
  }

  .about {
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
    gap: clamp(56px, 8vw, 120px);
  }

  .about__media {
    order: 1;
  }

  .about__image-frame {
    aspect-ratio: 4 / 3;
  }

  .about__copy {
    order: 2;
  }

  .canele__figure img {
    object-position: right center;
  }

  .sweets-grid {
    gap: 56px 20px;
  }

  .sweet-card__image {
    aspect-ratio: 4 / 5;
  }

  .seasonal {
    grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
    align-items: center;
    padding-inline: max(var(--page-pad), calc((100vw - var(--content-max)) / 2));
  }

  .seasonal h2 {
    font-size: clamp(1.9rem, 3vw, 2.65rem);
  }

  .journal-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .shop__inner {
    grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  }

  .site-footer__bottom {
    grid-template-columns: 1fr auto auto;
    gap: 24px;
  }
}

@media (min-width: 900px) {
  :root {
    --header-height: 82px;
  }

  .desktop-nav {
    display: flex;
  }

  .menu-button,
  .mobile-nav {
    display: none;
  }

  .hero {
    display: flex;
  }

  .hero__media {
    position: absolute;
  }

  .hero__media::after {
    background:
      linear-gradient(90deg, rgb(244 241 235 / 90%) 0%, rgb(244 241 235 / 66%) 30%, rgb(244 241 235 / 14%) 56%, transparent 70%),
      linear-gradient(180deg, rgb(244 241 235 / 6%) 0%, transparent 72%, rgb(48 47 45 / 7%) 100%);
  }

  .hero__media img {
    object-position: center;
  }

  .hero__copy {
    align-self: center;
    width: min(58%, 720px);
    max-width: 720px;
    padding: 72px clamp(36px, 5vw, 88px);
  }

  .hero h1 {
    font-size: clamp(2.9rem, 4.2vw, 4.8rem);
  }

  .hero__scroll {
    left: clamp(36px, 5vw, 88px);
    right: auto;
  }

  .canele__inner {
    grid-template-columns: 40% 60%;
    min-height: 620px;
  }

  .canele__copy {
    padding: 88px clamp(36px, 5vw, 80px);
  }

  .canele h2 {
    font-size: clamp(1.9rem, 2.8vw, 2.55rem);
  }

  .sweets-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .sweets-grid .sweet-card:nth-child(even) {
    margin-top: 64px;
  }

  .feature-band {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-card {
    min-height: 600px;
  }

  .feature-card h2 {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
  }

  .feature-card__copy {
    padding: 48px clamp(28px, 3vw, 54px);
  }

  .feature-card + .feature-card {
    border-left: 1px solid rgb(255 253 248 / 24%);
  }

  .journal-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .site-header__inner {
    padding-inline: 48px;
  }

  .seasonal__gallery {
    grid-template-columns: 1.45fr 0.55fr;
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .seasonal__main {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .seasonal__main img,
  .seasonal__sub img {
    aspect-ratio: auto;
  }
}

@media (max-width: 389px) {
  .brand {
    gap: 8px;
  }

  .brand .proposal-label {
    max-width: 72px;
  }

  .hero__copy {
    padding-top: 64px;
  }

  .button {
    padding-inline: 18px;
  }

  .shop__details dl > div {
    grid-template-columns: 70px 1fr;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
