@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Jost:wght@300;400;500;600&display=swap");

:root {
  --cream: #f4f0e6;
  --cream-soft: #faf7ef;
  --cream-deep: #e8dfce;
  --ink: #282720;
  --ink-soft: #686354;
  --green: #2e3a2b;
  --green-deep: #1f2b21;
  --green-muted: #71815c;
  --gold: #ae9150;
  --gold-soft: #d1bb82;
  --red: #a54032;
  --line: rgba(40, 39, 32, 0.14);
  --line-strong: rgba(40, 39, 32, 0.22);
  --shadow: 0 22px 50px rgba(40, 39, 32, 0.11);
  --max: 1180px;
  --pad: clamp(20px, 5vw, 64px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--cream);
  color: var(--ink);
  font-family: "Jost", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.serif {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.eyebrow {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.page-shell {
  background:
    radial-gradient(circle at 12% 22%, rgba(174, 145, 80, 0.08), transparent 28%),
    linear-gradient(180deg, var(--cream-soft), var(--cream) 42%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 239, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 72px;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 180px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  color: var(--green);
}

.brand-word {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  padding-left: 0.34em;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 44px);
}

.nav-links a,
.nav-actions a,
.nav-toggle {
  color: var(--ink);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
}

.nav-links a {
  position: relative;
  padding: 24px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 18px;
  width: 0;
  height: 1px;
  background: var(--green);
  transition: width 180ms ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  min-width: 180px;
}

.icon-link {
  width: 22px;
  height: 22px;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--cream-soft);
  padding: 10px var(--pad) 18px;
}

.mobile-panel a {
  display: block;
  padding: 10px 0;
  color: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 585px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(var(--pad), 1fr) minmax(0, 560px) minmax(0, 620px) minmax(var(--pad), 1fr);
  align-items: stretch;
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48%;
  height: 46%;
  background:
    linear-gradient(135deg, transparent 42%, rgba(132, 125, 104, 0.13) 43%, transparent 44%),
    linear-gradient(25deg, rgba(132, 125, 104, 0.17), transparent 62%);
  clip-path: polygon(0 100%, 0 58%, 14% 35%, 28% 57%, 43% 28%, 62% 62%, 78% 43%, 100% 72%, 100% 100%);
  opacity: 0.62;
  pointer-events: none;
}

.hero-copy {
  grid-column: 2;
  position: relative;
  z-index: 2;
  padding: 86px 42px 82px 80px;
  align-self: center;
}

.hero-media {
  grid-column: 3 / 5;
  position: relative;
  min-height: 585px;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--cream) 0%, rgba(244, 240, 230, 0.58) 16%, rgba(244, 240, 230, 0) 42%);
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 585px;
  object-fit: cover;
}

.hero-title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4rem, 7vw, 6.8rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}

.hero-lead {
  max-width: 600px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.35;
}

.hero-body {
  max-width: 425px;
  margin: 22px 0 0;
  color: var(--ink-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}

.vertical-note {
  position: absolute;
  z-index: 3;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.vertical-note.left {
  left: clamp(18px, 4vw, 46px);
  top: 96px;
}

.vertical-note.right {
  right: clamp(18px, 4vw, 46px);
  top: 96px;
}

.seal {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 52px;
  border: 1px solid var(--red);
  color: var(--red);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 0.86rem;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-seal {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 62px;
  z-index: 3;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 13px 30px;
  background: var(--green);
  color: var(--cream-soft);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.13rem;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover {
  background: var(--green-deep);
}

.btn.secondary {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
}

.btn.secondary:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--cream-soft);
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  color: var(--ink);
  font-size: 0.88rem;
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
}

.section {
  border-bottom: 1px solid var(--line);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 74px var(--pad);
}

.section-head {
  max-width: 620px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-head.left {
  margin-left: 0;
  text-align: left;
}

.section-title {
  margin: 10px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.3rem, 4vw, 3.3rem);
  font-weight: 500;
  line-height: 1.04;
}

.section-copy {
  max-width: 640px;
  margin: 18px auto 0;
  color: var(--ink-soft);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 82px);
  align-items: center;
}

.image-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--cream-deep);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ratio-wide {
  aspect-ratio: 1.42;
}

.ratio-photo {
  aspect-ratio: 1.25;
}

.cards-3,
.cards-2,
.cards-4,
.product-grid,
.variety-grid,
.tool-grid,
.moment-grid {
  display: grid;
  gap: 28px;
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  background: rgba(250, 247, 239, 0.72);
  padding: 26px;
}

.card h3,
.product-card h3,
.variety-card h3,
.tool-card h3,
.moment-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.42rem;
  font-weight: 500;
  line-height: 1.1;
}

.card p,
.product-card p,
.variety-card p,
.tool-card p,
.moment-card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.product-grid {
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 2.72fr);
  align-items: start;
  overflow: hidden;
}

.product-intro {
  padding-right: 18px;
}

.product-carousel {
  min-width: 0;
  position: relative;
  padding: 0 54px;
}

.product-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 38%);
  gap: 0;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 0 22px;
  scroll-padding-left: 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.product-scroll::-webkit-scrollbar {
  height: 7px;
}

.product-scroll::-webkit-scrollbar-track {
  background: rgba(40, 39, 32, 0.08);
}

.product-scroll::-webkit-scrollbar-thumb {
  background: rgba(46, 58, 43, 0.46);
  border-radius: 999px;
}

.carousel-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 2;
}

.carousel-arrow {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(46, 58, 43, 0.34);
  border-radius: 50%;
  background: rgba(252, 249, 242, 0.9);
  box-shadow: 0 14px 32px rgba(46, 58, 43, 0.12);
  color: var(--pine);
  cursor: pointer;
  pointer-events: auto;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    opacity 180ms ease;
}

.carousel-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: translate(-62%, -50%) rotate(45deg);
}

.carousel-arrow--prev::before {
  transform: translate(-38%, -50%) rotate(-135deg);
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  background: var(--pine);
  border-color: var(--pine);
  color: var(--cream);
}

.carousel-arrow:focus-visible {
  outline: 2px solid rgba(177, 129, 65, 0.52);
  outline-offset: 3px;
}

.carousel-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.product-card {
  border-left: 1px solid var(--line);
  padding-left: 28px;
  padding-right: 28px;
  scroll-snap-align: start;
}

.product-img {
  height: 230px;
  width: 100%;
  object-fit: contain;
  margin-bottom: 22px;
  mix-blend-mode: multiply;
}

.product-kicker,
.variety-kicker,
.tool-kicker {
  display: block;
  margin: 0 0 10px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.steps {
  display: grid;
  grid-template-columns: 0.78fr repeat(5, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.step {
  position: relative;
  text-align: center;
}

.step:not(:last-child)::after {
  content: ">";
  position: absolute;
  right: -18px;
  top: 54px;
  color: var(--gold);
}

.step-num {
  color: var(--gold);
  font-size: 0.74rem;
  letter-spacing: 0.15em;
}

.step-icon {
  width: 74px;
  height: 74px;
  margin: 10px auto 14px;
  color: var(--green-muted);
}

.step h3 {
  margin: 0 0 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
  line-height: 1.55;
}

.moment-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.moment-card img,
.tool-card img {
  width: 100%;
  aspect-ratio: 1.58;
  object-fit: cover;
  border: 1px solid var(--line);
  margin-bottom: 16px;
}

.brew-grid {
  display: grid;
  grid-template-columns: 0.8fr repeat(3, minmax(0, 1fr));
  gap: 46px;
  align-items: start;
}

.variety-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0 32px;
}

.variety-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  min-height: 150px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.variety-pile {
  width: 92px;
  height: 74px;
  align-self: center;
  filter: drop-shadow(0 8px 7px rgba(40, 39, 32, 0.12));
}

.variety-pile.powder {
  background: radial-gradient(ellipse at center, #9cb75e 0 24%, #6f8d31 25% 52%, transparent 53%);
  clip-path: polygon(4% 84%, 50% 22%, 96% 84%, 50% 100%);
}

.variety-pile.green {
  background:
    repeating-linear-gradient(135deg, #314728 0 3px, #6f8142 3px 6px, transparent 6px 11px),
    radial-gradient(ellipse at center, #4a6034, #263720);
  clip-path: ellipse(45% 28% at 50% 64%);
}

.variety-pile.roasted {
  background:
    repeating-linear-gradient(150deg, #5b3f27 0 4px, #9c7044 4px 7px, transparent 7px 12px),
    radial-gradient(ellipse at center, #7b5331, #40291a);
  clip-path: ellipse(45% 28% at 50% 64%);
}

.variety-pile.genmai {
  background:
    radial-gradient(circle at 26% 52%, #dac47f 0 4px, transparent 5px),
    radial-gradient(circle at 62% 58%, #dac47f 0 4px, transparent 5px),
    radial-gradient(circle at 45% 38%, #efe2b8 0 4px, transparent 5px),
    repeating-linear-gradient(140deg, #435f32 0 3px, #789045 3px 6px, transparent 6px 10px),
    radial-gradient(ellipse at center, #425832, #263720);
  clip-path: ellipse(46% 30% at 50% 64%);
}

.note-card {
  border: 1px solid var(--line-strong);
  padding: 26px;
  background: rgba(232, 223, 206, 0.65);
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.category {
  padding: 0 28px;
  border-left: 1px solid var(--line);
}

.category:first-child {
  border-left: 0;
  padding-left: 0;
}

.category h3 {
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.category p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.tool-grid {
  grid-template-columns: 0.82fr repeat(5, minmax(0, 1fr));
}

.tool-card {
  border-left: 1px solid var(--line);
  padding-left: 24px;
}

.tool-card img {
  object-fit: contain;
  background: rgba(250, 247, 239, 0.75);
}

.guide-image {
  border: 1px solid var(--line);
  background: white;
  box-shadow: var(--shadow);
}

.guide-image img {
  width: 100%;
  height: auto;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 28px;
  position: relative;
  padding-top: 28px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line-strong);
}

.milestone {
  position: relative;
}

.milestone::before {
  content: "";
  position: absolute;
  top: -24px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.milestone strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  letter-spacing: 0.08em;
}

.milestone p {
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.55;
}

.cta {
  position: relative;
  overflow: hidden;
  background: var(--green-deep);
  color: var(--cream-soft);
  text-align: center;
}

.cta::before,
.cta::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 190px;
  height: 118px;
  transform: translateY(-50%);
  opacity: 0.32;
  background:
    radial-gradient(circle at 68% 56%, var(--gold) 0 18%, transparent 19%),
    radial-gradient(circle at 48% 62%, var(--gold) 0 15%, transparent 16%),
    linear-gradient(28deg, transparent 44%, var(--gold) 45% 47%, transparent 48%);
}

.cta::before {
  left: 74px;
}

.cta::after {
  right: 74px;
  transform: translateY(-50%) scaleX(-1);
}

.cta .section-inner {
  position: relative;
  z-index: 1;
  padding-top: 62px;
  padding-bottom: 62px;
}

.cta h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 500;
  line-height: 1;
}

.cta p {
  margin: 14px 0 30px;
  color: rgba(250, 247, 239, 0.82);
}

.cta .btn {
  background: var(--cream-soft);
  color: var(--green-deep);
}

.site-footer {
  background: var(--green);
  color: rgba(250, 247, 239, 0.76);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 26px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-copy {
  display: block;
  line-height: 1.65;
}

.footer-links a:hover {
  color: var(--gold-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: var(--pad) 1fr var(--pad);
  }

  .hero-copy {
    grid-column: 2;
    padding: 56px 0 62px;
  }

  .hero-media {
    grid-column: 1 / -1;
    grid-row: 1;
    min-height: 360px;
    opacity: 0.42;
  }

  .hero-media img {
    min-height: 360px;
  }

  .hero-media::after {
    background: rgba(244, 240, 230, 0.52);
  }

  .vertical-note,
  .hero-seal {
    display: none;
  }

  .product-grid,
  .brew-grid,
  .steps,
  .tool-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid {
    grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  }

  .product-carousel,
  .product-scroll {
    grid-column: 1 / -1;
  }

  .product-scroll {
    grid-auto-columns: minmax(300px, 78%);
  }

  .product-intro,
  .tool-grid > .section-head {
    grid-column: 1 / -1;
  }

  .variety-grid,
  .moment-grid,
  .cards-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 0;
  }

  .category:nth-child(odd) {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 760px) {
  .nav {
    min-height: 66px;
  }

  .brand {
    min-width: auto;
  }

  .brand-word {
    font-size: 1.1rem;
    letter-spacing: 0.24em;
    padding-left: 0.24em;
  }

  .nav-links,
  .nav-actions .icon-link {
    display: none;
  }

  .nav-actions {
    min-width: auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .mobile-panel.open {
    display: block;
  }

  .hero {
    min-height: 520px;
  }

  .hero-media,
  .hero-media img {
    min-height: 520px;
  }

  .hero-title {
    font-size: clamp(3.4rem, 17vw, 5rem);
  }

  .hero-actions {
    gap: 16px;
  }

  .split,
  .cards-2,
  .cards-3,
  .cards-4,
  .product-grid,
  .brew-grid,
  .steps,
  .variety-grid,
  .tool-grid,
  .moment-grid,
  .category-strip,
  .timeline {
    grid-template-columns: 1fr;
  }

  .product-scroll {
    margin-right: calc(var(--pad) * -1);
    padding-right: var(--pad);
    grid-auto-columns: minmax(270px, 82%);
  }

  .product-scroll .product-card {
    border-left: 1px solid var(--line);
    padding-left: 22px;
    padding-right: 22px;
  }

  .product-card,
  .tool-card,
  .category {
    border-left: 0;
    padding-left: 0;
  }

  .product-scroll .product-card {
    border-left: 1px solid var(--line);
    padding-left: 22px;
    padding-right: 22px;
  }

  .step::after,
  .timeline::before,
  .milestone::before {
    display: none;
  }

  .variety-card {
    grid-template-columns: 78px 1fr;
  }

  .cta::before,
  .cta::after {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}


.home-cta {
  position: relative;
  min-height: 300px;
  padding: 58px 360px 58px;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #f7f1e5;
  text-align: center;

  background-color: #193020;
  background-image:
    linear-gradient(
      rgba(18, 42, 28, 0.26),
      rgba(18, 42, 28, 0.26)
    ),
    url("images/dark-green-texture.jpg");
  background-size: cover;
  background-position: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.home-cta__content {
  position: relative;
  z-index: 3;
  width: min(100%, 640px);
}

.home-cta__eyebrow {
  margin: 0 0 10px;
  color: #c9ab65;
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
}

.home-cta h2 {
  margin: 0;

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.01em;
}

.home-cta__description {
  max-width: 550px;
  margin: 17px auto 26px;

  color: rgba(247, 241, 229, 0.82);
  font-family: "Jost", sans-serif;
  font-size: 15px;
  line-height: 1.7;
}

.home-cta__button {
  min-width: 260px;
  min-height: 58px;
  padding: 14px 27px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;

  background: #f5f0e6;
  color: #263226;
  border: 1px solid rgba(255, 255, 255, 0.3);

  font-family: "Jost", sans-serif;
  font-size: 15px;
  letter-spacing: 0.03em;
  text-decoration: none;

  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.home-cta__button:hover {
  background: #c9ab65;
  color: #17271b;
  transform: translateY(-2px);
}

.home-cta__arrow {
  font-size: 19px;
  transition: transform 0.3s ease;
}

.home-cta__button:hover .home-cta__arrow {
  transform: translateX(5px);
}

/* 左侧装饰 */
.home-cta__branch {
  position: absolute;
  z-index: 1;
  left: -20px;
  top: -30px;

  width: min(28vw, 430px);
  max-height: 115%;
  object-fit: contain;
  object-position: left top;

  pointer-events: none;
}

/* 右侧抹茶静物 */
.home-cta__matcha {
  position: absolute;
  z-index: 2;
  right: -25px;
  bottom: -75px;

  width: min(28vw, 430px);
  height: auto;

  object-fit: contain;
  pointer-events: none;
}

/* Brand story subpage */
.story-page .eyebrow {
  letter-spacing: 0;
}

.story-hero {
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(66px, 7vw) minmax(360px, 0.82fr) minmax(0, 1.18fr);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--cream-soft);
}

.story-rail {
  grid-column: 1;
  align-self: start;
  justify-self: center;
  margin-top: 68px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0;
  writing-mode: vertical-rl;
}

.story-hero-copy {
  grid-column: 2;
  align-self: center;
  padding: 72px clamp(32px, 5vw, 74px) 72px 18px;
}

.story-hero-copy h1 {
  max-width: 620px;
  margin: 18px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 5.4rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.96;
}

.story-hero-copy p {
  max-width: 520px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.story-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 34px;
}

.story-hero-media {
  position: relative;
  grid-column: 3;
  min-height: 640px;
  overflow: hidden;
}

.story-hero-media img,
.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-hero-media img {
  object-position: 58% center;
}

.story-image-seal {
  position: absolute;
  right: 34px;
  bottom: 34px;
  display: grid;
  width: 46px;
  height: 62px;
  place-items: center;
  border: 1px solid var(--red);
  color: var(--red);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1rem;
  writing-mode: vertical-rl;
}

.story-section {
  border-bottom: 1px solid var(--line);
  background: rgba(250, 247, 239, 0.72);
}

.story-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 540px;
}

.story-media {
  min-height: 540px;
  overflow: hidden;
  background: var(--cream-deep);
}

.story-media img {
  min-height: 540px;
}

.story-copy-block {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 78px clamp(70px, 8vw, 132px) 78px clamp(56px, 7vw, 108px);
  overflow: hidden;
}

.story-split-reverse .story-copy-block {
  grid-column: 1;
  grid-row: 1;
}

.story-split-reverse .story-media {
  grid-column: 2;
  grid-row: 1;
}

.story-number {
  position: absolute;
  top: 28px;
  left: clamp(34px, 5vw, 72px);
  color: rgba(40, 39, 32, 0.08);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 5.6rem;
  line-height: 1;
}

.story-copy-block h2 {
  max-width: 560px;
  margin: 16px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3.45rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
}

.story-copy-block p {
  max-width: 500px;
  margin: 0 0 14px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.story-accent {
  width: 44px;
  height: 1px;
  margin: 22px 0 26px;
  background: var(--gold);
}

.story-side-note {
  position: absolute;
  top: 50%;
  right: 38px;
  max-height: 260px;
  color: rgba(40, 39, 32, 0.7);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 0.9rem;
  line-height: 1.9;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
}

.story-side-note-left {
  right: auto;
  left: 28px;
}

.story-collage {
  align-self: center;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) minmax(128px, 0.72fr);
  grid-template-rows: repeat(2, 190px);
  gap: 8px;
  padding: clamp(34px, 5vw, 70px);
  overflow: hidden;
}

.story-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
}

.story-collage-wide {
  grid-column: 1 / 3;
}

.story-collage-tall {
  grid-column: 3;
  grid-row: 1 / 3;
}

.story-values {
  background: var(--green);
  color: var(--cream-soft);
}

.story-values-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 30px var(--pad);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.story-value {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  min-width: 0;
  padding: 0 24px;
  border-left: 1px solid rgba(250, 247, 239, 0.18);
}

.story-value:first-child {
  padding-left: 0;
  border-left: 0;
}

.story-value > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(209, 187, 130, 0.65);
  border-radius: 50%;
  color: var(--gold-soft);
  font-family: "Cormorant Garamond", Georgia, serif;
}

.story-value h3 {
  margin: 0 0 5px;
  color: var(--gold-soft);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.story-value p {
  margin: 0;
  color: rgba(250, 247, 239, 0.72);
  font-size: 0.76rem;
  line-height: 1.55;
}

@media (max-width: 1050px) {
  .story-hero {
    grid-template-columns: 46px minmax(300px, 0.9fr) minmax(0, 1.1fr);
  }

  .story-hero-copy {
    padding-right: 34px;
  }

  .story-hero-copy h1 {
    font-size: 4.25rem;
  }

  .story-copy-block {
    padding: 66px 74px 66px 58px;
  }

  .story-side-note {
    right: 22px;
  }

  .story-side-note-left {
    right: auto;
    left: 18px;
  }

  .story-values-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 0;
  }

  .story-value:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 760px) {
  .story-hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .story-rail {
    display: none;
  }

  .story-hero-copy {
    grid-column: 1;
    grid-row: 2;
    padding: 48px var(--pad) 58px;
  }

  .story-hero-copy h1 {
    font-size: 3.3rem;
  }

  .story-hero-media {
    grid-column: 1;
    grid-row: 1;
    min-height: 360px;
  }

  .story-actions {
    gap: 18px;
  }

  .story-split,
  .story-split-reverse {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .story-split-reverse .story-copy-block,
  .story-split-reverse .story-media,
  .story-copy-block,
  .story-media {
    grid-column: 1;
    grid-row: auto;
  }

  .story-media,
  .story-media img {
    min-height: 360px;
  }

  .story-copy-block {
    padding: 72px var(--pad) 58px;
  }

  .story-copy-block h2 {
    font-size: 2.75rem;
  }

  .story-side-note {
    display: none;
  }

  .story-number {
    top: 18px;
    left: var(--pad);
    font-size: 4.4rem;
  }

  .story-collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 170px 170px 220px;
    padding: 28px var(--pad);
  }

  .story-collage-wide {
    grid-column: 1 / 3;
  }

  .story-collage-tall {
    grid-column: 1 / 3;
    grid-row: 3;
  }

  .story-values-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .story-value,
  .story-value:first-child,
  .story-value:nth-child(3) {
    padding: 18px 0;
    border-top: 1px solid rgba(250, 247, 239, 0.16);
    border-left: 0;
  }

  .story-value:first-child {
    border-top: 0;
  }
}

/* Tea-house history subpage */
.history-page {
  background: var(--cream-soft);
}

.history-hero {
  display: grid;
  grid-template-columns: minmax(390px, 0.86fr) minmax(0, 1.14fr);
  min-height: 650px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--cream-soft);
}

.history-hero-copy {
  position: relative;
  align-self: center;
  padding: 80px 48px 78px max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad)));
}

.history-kicker {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.history-kicker i {
  display: block;
  width: 42px;
  height: 1px;
  background: var(--gold);
}

.history-hero h1 {
  max-width: 650px;
  margin: 24px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 5.2rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
}

.history-title-line {
  position: relative;
  display: block;
  width: 72px;
  height: 1px;
  margin: 32px 0 26px;
  background: var(--gold);
}

.history-title-line::after {
  content: "";
  position: absolute;
  top: -3px;
  right: -7px;
  width: 6px;
  height: 6px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.history-hero-copy p {
  max-width: 520px;
  margin: 0;
  color: var(--ink-soft);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.36rem;
  line-height: 1.45;
}

.history-seal {
  display: grid;
  width: 48px;
  height: 62px;
  margin-top: 38px;
  place-items: center;
  border: 2px solid var(--red);
  color: var(--red);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 0.86rem;
  writing-mode: vertical-rl;
}

.history-hero-photo {
  min-height: 650px;
  overflow: hidden;
}

.history-hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
  object-position: center;
}

.history-timeline {
  background: var(--cream-soft);
}

.history-timeline-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 58px var(--pad) 26px;
}

.history-timeline-inner::before {
  content: "";
  position: absolute;
  top: 66px;
  bottom: 84px;
  left: calc(var(--pad) + 158px);
  width: 1px;
  background: rgba(46, 58, 43, 0.55);
}

.history-era {
  position: relative;
  display: grid;
  grid-template-columns: 130px 56px 154px minmax(260px, 1fr) 286px;
  gap: 24px;
  align-items: center;
  min-height: 220px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.history-era:last-child {
  border-bottom: 0;
}

.history-date {
  align-self: start;
  padding-top: 18px;
}

.history-date strong,
.history-date span {
  display: block;
}

.history-date strong {
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.34rem;
  font-weight: 500;
  line-height: 1.2;
}

.history-date span {
  margin-top: 9px;
  color: var(--ink-soft);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.02rem;
  line-height: 1.35;
}

.history-dot {
  position: relative;
  z-index: 1;
  justify-self: center;
  width: 12px;
  height: 12px;
  border: 3px solid var(--cream-soft);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}

.history-medallion {
  display: grid;
  width: 126px;
  height: 126px;
  place-items: center;
  border: 1px solid rgba(174, 145, 80, 0.48);
  border-radius: 50%;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3.5rem;
  font-weight: 500;
}

.history-medallion-leaf {
  border-radius: 58% 42% 54% 46%;
}

.history-era-copy h2 {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.05;
}

.history-era-copy p {
  max-width: 500px;
  margin: 0;
  color: var(--ink-soft);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1rem;
  line-height: 1.55;
}

.history-era-photo {
  aspect-ratio: 1.55;
  overflow: hidden;
  background: var(--cream-deep);
  clip-path: polygon(1% 2%, 99% 0, 100% 97%, 98% 100%, 1% 98%, 0 3%);
}

.history-era-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.history-closing {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 66px var(--pad) 76px;
  text-align: center;
}

.history-closing-mark {
  display: grid;
  width: 48px;
  height: 48px;
  margin: 0 auto 18px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50% 45% 54% 48%;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
}

.history-closing h2 {
  margin: 0 0 26px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.65rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.05;
}

.history-closing-seal {
  position: absolute;
  right: 58px;
  bottom: 62px;
  display: grid;
  width: 42px;
  height: 56px;
  place-items: center;
  border: 2px solid var(--red);
  color: var(--red);
  font-family: "Cormorant Garamond", Georgia, serif;
  writing-mode: vertical-rl;
}

.history-entry-link {
  margin: 34px 0 0;
  text-align: center;
}

@media (max-width: 1050px) {
  .history-hero {
    grid-template-columns: minmax(330px, 0.9fr) minmax(0, 1.1fr);
  }

  .history-hero h1 {
    font-size: 4.2rem;
  }

  .history-era {
    grid-template-columns: 116px 40px 112px minmax(230px, 1fr) 220px;
    gap: 18px;
  }

  .history-timeline-inner::before {
    left: calc(var(--pad) + 135px);
  }

  .history-medallion {
    width: 104px;
    height: 104px;
    font-size: 2.8rem;
  }
}

@media (max-width: 760px) {
  .history-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .history-hero-photo {
    grid-row: 1;
    min-height: 390px;
  }

  .history-hero-photo img {
    min-height: 390px;
  }

  .history-hero-copy {
    grid-row: 2;
    padding: 50px var(--pad) 58px;
  }

  .history-hero h1 {
    font-size: 3.25rem;
  }

  .history-timeline-inner {
    padding-top: 32px;
  }

  .history-timeline-inner::before,
  .history-dot {
    display: none;
  }

  .history-era {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 22px;
    padding: 42px 0;
  }

  .history-date {
    grid-column: 1;
    grid-row: 1;
  }

  .history-medallion {
    grid-column: 1;
    grid-row: 2;
    width: 84px;
    height: 84px;
    font-size: 2.2rem;
  }

  .history-era-copy {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .history-era-copy h2 {
    font-size: 1.8rem;
  }

  .history-era-photo {
    grid-column: 1 / -1;
    grid-row: 3;
    margin-top: 8px;
  }

  .history-closing {
    padding-top: 54px;
  }

  .history-closing h2 {
    font-size: 2.15rem;
  }

  .history-closing-seal {
    position: static;
    margin: 30px auto 0;
  }
}

/* History page reference-match pass */
.history-page {
  background: #f6f1e7;
}

.history-site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  min-height: 68px;
  background: #143326;
  color: #f6f1e7;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.history-nav {
  width: min(100%, 1030px);
  min-height: 68px;
  margin: 0 auto;
  padding: 0 34px;
  display: grid;
  grid-template-columns: 238px minmax(0, 1fr) 112px;
  align-items: center;
  gap: 24px;
}

.history-brand,
.history-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}

.history-monogram {
  display: grid;
  width: 24px;
  min-width: 24px;
  height: 46px;
  place-items: center;
  border: 1px solid #c4a958;
  border-radius: 48% 48% 42% 42%;
  color: #dbc477;
  font-family: "Songti SC", "Noto Serif CJK SC", serif;
  font-size: 0.66rem;
  line-height: 1.05;
}

.history-brand-kanji {
  color: #f6f1e7;
  font-family: "Songti SC", "Noto Serif CJK SC", serif;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1;
}

.history-brand-word {
  color: #f6f1e7;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.history-nav-links {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 38px;
  height: 68px;
}

.history-nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: rgba(246, 241, 231, 0.9);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1rem;
  line-height: 1;
  white-space: nowrap;
}

.history-nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 15px;
  left: 0;
  height: 1px;
  background: transparent;
}

.history-nav-links a:hover,
.history-nav-links a.active {
  color: #d5bb68;
}

.history-nav-links a.active::after {
  background: #c5a954;
}

.history-nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.history-icon-link {
  display: block;
  width: 19px;
  height: 19px;
  color: rgba(246, 241, 231, 0.9);
}

.history-icon-link:hover {
  color: #d5bb68;
}

.history-nav-toggle {
  display: none;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: #f6f1e7;
  cursor: pointer;
}

.history-mobile-panel {
  display: none;
  padding: 8px 24px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #143326;
}

.history-mobile-panel a {
  display: block;
  padding: 9px 0;
  color: #f6f1e7;
  font-family: "Cormorant Garamond", Georgia, serif;
}

.history-mobile-panel.open {
  display: block;
}

.history-hero {
  position: relative;
  grid-template-columns: 47% 53%;
  min-height: 505px;
  max-width: 1180px;
  margin: 0 auto;
  border-bottom: 0;
  background: #f6f1e7;
}

.history-hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  right: 46%;
  bottom: 0;
  left: 0;
  height: 150px;
  background: rgba(76, 88, 74, 0.08);
  clip-path: polygon(0 100%, 0 68%, 11% 53%, 20% 64%, 28% 35%, 39% 57%, 50% 28%, 62% 63%, 71% 45%, 82% 72%, 91% 58%, 100% 76%, 100% 100%);
  pointer-events: none;
}

.history-hero-copy {
  z-index: 2;
  align-self: start;
  padding: 68px 28px 58px 66px;
}

.history-kicker {
  gap: 16px;
  font-size: 0.72rem;
}

.history-kicker i {
  width: 38px;
}

.history-hero h1 {
  max-width: 500px;
  margin-top: 20px;
  font-size: 3.45rem;
  line-height: 1;
  color: #17251d;
  text-wrap: balance;
}

.history-title-line {
  width: 62px;
  margin: 24px 0 22px;
}

.history-hero-copy p {
  max-width: 440px;
  font-size: 1.16rem;
  line-height: 1.48;
  color: #4f5148;
}

.history-seal {
  width: 44px;
  height: 56px;
  margin-top: 34px;
  border-width: 1px;
  font-size: 0.76rem;
}

.history-hero-photo {
  position: relative;
  z-index: 2;
  align-self: start;
  min-height: 0;
  height: 414px;
  margin: 48px 24px 0 0;
  overflow: hidden;
  clip-path: polygon(1% 1%, 98% 0, 100% 2%, 100% 96%, 98% 99%, 2% 98%, 0 96%, 0 3%);
}

.history-hero-photo img {
  min-height: 0;
  object-position: center;
}

.history-timeline {
  background: #f6f1e7;
}

.history-timeline-inner {
  --history-timeline-pad: clamp(26px, 4vw, 44px);
  max-width: 1050px;
  padding: 20px var(--history-timeline-pad) 8px;
}

.history-timeline-inner::before {
  top: 26px;
  bottom: 48px;
  left: calc(var(--history-timeline-pad) + 154px);
  background: rgba(46, 58, 43, 0.5);
}

.history-era {
  grid-template-columns: 120px 36px 130px minmax(280px, 1fr) 250px;
  gap: 16px;
  min-height: 178px;
  padding: 14px 0;
}

.history-date {
  padding-top: 8px;
}

.history-date strong {
  font-size: 1.17rem;
}

.history-date span {
  margin-top: 7px;
  font-size: 0.94rem;
}

.history-dot {
  width: 10px;
  height: 10px;
}

.history-medallion {
  width: 112px;
  height: 112px;
  font-size: 3rem;
  background: rgba(255, 255, 255, 0.14);
}

.history-era-copy h2 {
  margin-bottom: 10px;
  font-size: 1.78rem;
}

.history-era-copy p {
  font-size: 0.92rem;
  line-height: 1.52;
}

.history-era-photo {
  aspect-ratio: 1.65;
}

.history-closing {
  max-width: 700px;
  padding: 18px var(--pad) 20px;
}

.history-closing-mark {
  width: 32px;
  height: 32px;
  margin-bottom: 8px;
}

.history-closing h2 {
  margin-bottom: 12px;
  font-size: 1.8rem;
}

.history-closing-seal {
  right: 54px;
  bottom: 20px;
  width: 38px;
  height: 50px;
  border-width: 1px;
}

.history-footer {
  position: relative;
  min-height: 88px;
  padding: 14px 20px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #143326;
  color: #f6f1e7;
}

.history-footer::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 7px;
  background: #143326;
  clip-path: polygon(0 100%, 0 42%, 3% 18%, 7% 58%, 12% 26%, 18% 62%, 25% 34%, 32% 70%, 39% 27%, 47% 64%, 54% 35%, 62% 72%, 70% 30%, 78% 63%, 86% 24%, 93% 57%, 100% 32%, 100% 100%);
}

.history-footer .history-monogram {
  width: 20px;
  min-width: 20px;
  height: 38px;
  font-size: 0.56rem;
}

.history-footer .history-brand-kanji {
  font-size: 1.45rem;
}

.history-footer .history-brand-word {
  font-size: 0.78rem;
}

.history-footer p {
  margin: 7px 0 0;
  color: rgba(246, 241, 231, 0.82);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 0.68rem;
  letter-spacing: 0.32em;
}

@media (max-width: 1050px) {
  .history-nav {
    grid-template-columns: 205px minmax(0, 1fr) 104px;
    gap: 18px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .history-nav-links {
    gap: 24px;
  }

  .history-hero-copy {
    padding-left: 46px;
  }

  .history-hero h1 {
    font-size: 3.25rem;
  }

  .history-era {
    grid-template-columns: 104px 30px 104px minmax(230px, 1fr) 210px;
    gap: 14px;
  }

  .history-timeline-inner::before {
    left: calc(var(--history-timeline-pad) + 133px);
  }

  .history-medallion {
    width: 94px;
    height: 94px;
    font-size: 2.5rem;
  }
}

@media (max-width: 880px) {
  .history-nav {
    grid-template-columns: 1fr auto;
  }

  .history-nav-links,
  .history-nav-actions .history-icon-link {
    display: none;
  }

  .history-nav-actions {
    grid-column: 2;
  }

  .history-nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 760px) {
  .history-site-header,
  .history-nav {
    min-height: 62px;
  }

  .history-brand-kanji {
    font-size: 1.42rem;
  }

  .history-monogram {
    width: 20px;
    min-width: 20px;
    height: 38px;
  }

  .history-hero {
    grid-template-columns: 1fr;
  }

  .history-hero-photo {
    grid-row: 1;
    height: 310px;
    margin: 24px var(--pad) 0;
  }

  .history-hero-copy {
    grid-row: 2;
    padding: 42px var(--pad) 58px;
  }

  .history-hero h1 {
    font-size: 3.15rem;
  }

  .history-hero::before {
    right: 0;
    height: 110px;
  }

  .history-timeline-inner {
    padding-top: 14px;
  }

  .history-era {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 18px;
    padding: 34px 0;
  }

  .history-medallion {
    width: 76px;
    height: 76px;
    font-size: 2rem;
  }

  .history-era-copy h2 {
    font-size: 1.68rem;
  }

  .history-closing h2 {
    font-size: 2rem;
  }

  .history-footer p {
    font-size: 0.6rem;
    letter-spacing: 0.18em;
  }
}
