:root {
  --red: #74121b;
  --red-deep: #4c0910;
  --red-bright: #a52628;
  --cream: #f4e8d3;
  --paper: #fffaf0;
  --amber: #d98a2b;
  --amber-light: #f2ba5e;
  --ink: #281512;
  --dark: #160907;
  --muted: #6f5149;
  --line: rgba(40, 21, 18, 0.18);
  --max: 1240px;
  --header: 78px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:where(a, button, input, select, textarea):focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
  box-shadow: 0 0 0 5px var(--red-deep);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header);
  color: #fff;
  background: linear-gradient(180deg, rgba(22, 9, 7, 0.96), rgba(22, 9, 7, 0.72));
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(22, 9, 7, 0.98);
  box-shadow: 0 12px 30px rgba(22, 9, 7, 0.2);
}

.header-inner {
  width: min(calc(100% - 48px), var(--max));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 44px;
  color: var(--red-deep);
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
  background: var(--amber-light);
  border-radius: 19px 19px 11px 11px;
  transform: rotate(5deg);
}

.brand-mark span {
  transform: rotate(-5deg);
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-name {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-note {
  color: #f3d9b1;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2.2vw, 32px);
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #fff7e9;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--amber-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.nav-cta {
  padding: 0 18px;
  color: var(--red-deep) !important;
  background: var(--amber-light);
  border-radius: 999px;
}

.nav-cta::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: #fff;
  background: var(--dark);
}

.hero-media,
.hero-media::after,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

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

.hero-media::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(22, 9, 7, 0.92) 0%, rgba(22, 9, 7, 0.73) 38%, rgba(22, 9, 7, 0.12) 73%),
    linear-gradient(0deg, rgba(22, 9, 7, 0.72), transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: calc(var(--header) + 100px) 0 90px;
}

.hero-copy {
  width: min(680px, 64vw);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: #ffd698;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 46px;
  height: 2px;
  content: "";
  background: currentColor;
}

.eyebrow.dark {
  color: var(--red);
}

.hero h1 {
  margin: 0;
  font-size: clamp(46px, 6.7vw, 98px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero h1 em {
  display: block;
  margin-top: 12px;
  color: var(--amber-light);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.hero-lead {
  max-width: 600px;
  margin: 28px 0 0;
  color: #fff3df;
  font-size: clamp(17px, 1.5vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--red-deep);
  background: var(--amber-light);
}

.button-secondary {
  color: #fff;
  background: rgba(22, 9, 7, 0.3);
  border-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
}

.hero-index {
  position: absolute;
  right: 0;
  bottom: 90px;
  display: flex;
  align-items: flex-end;
  gap: 14px;
  padding-left: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.45);
}

.hero-index strong {
  color: var(--amber-light);
  font-family: Georgia, serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 0.8;
}

.hero-index span {
  color: #f9e5c5;
  font-size: 12px;
  letter-spacing: 0.15em;
  writing-mode: vertical-rl;
}

.section-shell {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr);
  gap: 80px;
  align-items: end;
}

.section-head h2,
.statement-inner h2,
.timeline-intro h2,
.scene-copy h2,
.process-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(36px, 4.4vw, 68px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.section-head > p,
.timeline-intro > p,
.process-copy > p,
.contact-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.products {
  padding: 120px 0 0;
  background: var(--paper);
}

.product-stage {
  position: relative;
  min-height: 680px;
  margin-top: 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(290px, 0.6fr);
  background: var(--red-deep);
}

.product-visual {
  min-height: 680px;
}

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

.product-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 58px clamp(28px, 4vw, 64px);
  color: #fff;
}

.product-item {
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.product-item:last-child {
  border-bottom: 0;
}

.product-item span {
  display: block;
  margin-bottom: 7px;
  color: var(--amber-light);
  font-family: Georgia, serif;
  font-size: 15px;
}

.product-item h3 {
  margin: 0 0 5px;
  font-size: 22px;
}

.product-item p {
  margin: 0;
  color: #f6ddce;
  font-size: 14px;
}

.flavor-statement {
  position: relative;
  min-height: 650px;
  display: grid;
  align-items: center;
  color: #fff;
  background: var(--dark);
}

.statement-media,
.statement-media::after,
.statement-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.statement-media img {
  object-fit: cover;
}

.statement-media::after {
  content: "";
  background: linear-gradient(90deg, rgba(22, 9, 7, 0.9), rgba(22, 9, 7, 0.33) 68%, rgba(22, 9, 7, 0.18));
}

.statement-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.statement-inner > div {
  width: min(690px, 65vw);
}

.statement-inner h2 {
  font-size: clamp(43px, 5.5vw, 82px);
}

.statement-inner p:last-child {
  max-width: 610px;
  color: #fff0df;
  font-size: 18px;
}

.development {
  padding: 120px 0;
  background: var(--cream);
}

.development-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.35fr);
  gap: 100px;
}

.timeline-intro {
  position: sticky;
  top: calc(var(--header) + 48px);
  align-self: start;
}

.timeline-intro > p {
  margin-top: 25px;
}

.timeline {
  position: relative;
  padding-left: 50px;
}

.timeline::before {
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 9px;
  width: 2px;
  content: "";
  background: rgba(116, 18, 27, 0.25);
}

.timeline-entry {
  position: relative;
  padding: 0 0 62px;
}

.timeline-entry:last-child {
  padding-bottom: 0;
}

.timeline-entry::before {
  position: absolute;
  top: 8px;
  left: -50px;
  width: 18px;
  height: 18px;
  content: "";
  background: var(--amber);
  border: 5px solid var(--cream);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--red);
}

.timeline-entry time {
  color: var(--red);
  font-family: Georgia, serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
}

.timeline-entry h3 {
  margin: 15px 0 8px;
  font-size: 23px;
}

.timeline-entry p {
  margin: 0;
  color: #62453e;
}

.occasions {
  background: var(--red-deep);
  color: #fff;
}

.occasion {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
}

.occasion:nth-child(even) {
  grid-template-columns: 0.88fr 1.12fr;
}

.occasion:nth-child(even) .scene-media {
  order: 2;
}

.scene-media {
  min-height: 680px;
}

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

.scene-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(52px, 8vw, 120px);
}

.scene-copy .scene-number {
  color: var(--amber-light);
  font-family: Georgia, serif;
  font-size: 17px;
  letter-spacing: 0.14em;
}

.scene-copy h2 {
  margin-top: 20px;
}

.scene-copy p {
  max-width: 540px;
  margin: 25px 0 0;
  color: #f6ddd3;
  font-size: 17px;
}

.research {
  padding: 120px 0;
  background: var(--paper);
}

.research-split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: stretch;
}

.process-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px clamp(34px, 6vw, 90px);
  background: var(--cream);
}

.process-copy > p {
  margin-top: 24px;
}

.process-points {
  margin-top: 40px;
}

.process-point {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.process-point span {
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 17px;
}

.process-point strong {
  display: block;
  margin-bottom: 4px;
}

.process-point p {
  margin: 0;
  color: #65483f;
  font-size: 14px;
}

.process-media {
  min-height: 680px;
}

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

.manufacturing-band {
  position: relative;
  min-height: 600px;
  display: grid;
  align-items: end;
  color: #fff;
  background: var(--dark);
}

.manufacturing-band > img,
.manufacturing-band::after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.manufacturing-band > img {
  object-fit: cover;
}

.manufacturing-band::after {
  content: "";
  background: linear-gradient(0deg, rgba(22, 9, 7, 0.94), rgba(22, 9, 7, 0.08) 75%);
}

.manufacturing-copy {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 70px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}

.manufacturing-copy h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 62px);
  line-height: 1.08;
}

.manufacturing-copy p {
  margin: 0;
  color: #fff0df;
  font-size: 17px;
}

.contact {
  padding: 120px 0;
  color: #fff;
  background: var(--red-deep);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 80px;
  align-items: start;
}

.contact-visual {
  position: relative;
  min-height: 510px;
  overflow: hidden;
}

.contact-visual img {
  width: 100%;
  height: 100%;
  min-height: 510px;
  object-fit: cover;
}

.contact-label {
  position: absolute;
  right: 24px;
  bottom: 24px;
  padding: 10px 14px;
  color: var(--red-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: var(--amber-light);
}

.contact-copy .eyebrow {
  margin-top: 0;
}

.contact-copy > p {
  margin-top: 22px;
  color: #f4dcd0;
}

.contact-details {
  margin: 34px 0 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
}

.contact-details div {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.contact-details dt {
  color: var(--amber-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.contact-details dd {
  margin: 5px 0 0;
  color: #fff;
  font-size: 15px;
}

.contact-details a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.inquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: grid;
  gap: 7px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  color: #f7dfce;
  font-size: 13px;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fffaf0;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 0;
}

.field textarea {
  min-height: 118px;
  resize: vertical;
}

.form-submit {
  justify-self: start;
  color: var(--red-deep);
  background: var(--amber-light);
  border: 0;
}

.form-status {
  min-height: 28px;
  margin: 0;
  color: #fff;
  font-weight: 700;
}

.site-footer {
  color: #f7dfd1;
  background: var(--dark);
}

.footer-inner {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-size: 13px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: var(--amber-light);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.html-ready .reveal,
html.has-reveal .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms ease, transform 600ms ease;
}

html.has-reveal .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1050px) {
  .site-nav {
    gap: 14px;
  }

  .site-nav a {
    font-size: 13px;
  }

  .product-stage {
    grid-template-columns: 1.35fr 0.65fr;
  }

  .contact-layout {
    gap: 54px;
  }
}

@media (max-width: 900px) {
  :root {
    --header: 70px;
  }

  .header-inner,
  .section-shell,
  .hero-content,
  .statement-inner,
  .manufacturing-copy,
  .footer-inner {
    width: min(calc(100% - 36px), var(--max));
  }

  .brand-note {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 49;
    top: var(--header);
    right: 0;
    left: 0;
    max-height: calc(100svh - var(--header));
    overflow-y: auto;
    padding: 20px 18px 28px;
    display: grid;
    gap: 2px;
    background: rgba(22, 9, 7, 0.99);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    transform: translateY(-115%);
    visibility: hidden;
    transition: transform 220ms ease, visibility 220ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav a {
    min-height: 50px;
    padding: 0 14px;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-nav a::after {
    display: none;
  }

  .nav-cta {
    margin-top: 10px;
    justify-content: center;
    border: 0 !important;
  }

  .hero-copy,
  .statement-inner > div {
    width: min(720px, 86vw);
  }

  .hero-index {
    display: none;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .products,
  .development,
  .research,
  .contact {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .products {
    padding-bottom: 0;
  }

  .product-stage {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .product-visual {
    min-height: 500px;
  }

  .product-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 28px;
    padding: 42px 36px;
  }

  .flavor-statement {
    min-height: 590px;
  }

  .development-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .timeline-intro {
    position: static;
  }

  .occasion,
  .occasion:nth-child(even) {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .occasion:nth-child(even) .scene-media {
    order: 0;
  }

  .scene-media {
    min-height: 520px;
  }

  .scene-copy {
    min-height: 410px;
  }

  .research-split {
    grid-template-columns: 1fr;
  }

  .process-media {
    min-height: 560px;
  }

  .manufacturing-copy {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-visual,
  .contact-visual img {
    min-height: 520px;
  }
}

@media (max-width: 620px) {
  .header-inner,
  .section-shell,
  .hero-content,
  .statement-inner,
  .manufacturing-copy,
  .footer-inner {
    width: min(calc(100% - 28px), var(--max));
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 33px;
    height: 39px;
    font-size: 22px;
  }

  .brand-name {
    font-size: 14px;
    letter-spacing: 0.03em;
  }

  .hero {
    min-height: 800px;
  }

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

  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(22, 9, 7, 0.85), rgba(22, 9, 7, 0.3)),
      linear-gradient(0deg, rgba(22, 9, 7, 0.95) 0%, rgba(22, 9, 7, 0.2) 72%);
  }

  .hero-content {
    padding-top: 140px;
    padding-bottom: 55px;
  }

  .hero-copy,
  .statement-inner > div {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(43px, 15vw, 62px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
    min-height: 52px;
  }

  .section-head h2,
  .statement-inner h2,
  .timeline-intro h2,
  .scene-copy h2,
  .process-copy h2,
  .contact-copy h2 {
    font-size: clamp(34px, 11vw, 50px);
  }

  .section-head > p,
  .timeline-intro > p,
  .process-copy > p,
  .contact-copy > p {
    font-size: 16px;
  }

  .products,
  .development,
  .research,
  .contact {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .products {
    padding-bottom: 0;
  }

  .product-stage {
    margin-top: 44px;
  }

  .product-visual,
  .scene-media,
  .process-media,
  .contact-visual,
  .contact-visual img {
    min-height: 360px;
  }

  .product-list {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }

  .flavor-statement {
    min-height: 600px;
  }

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

  .statement-media::after {
    background: linear-gradient(0deg, rgba(22, 9, 7, 0.91), rgba(22, 9, 7, 0.28));
  }

  .timeline {
    padding-left: 40px;
  }

  .timeline-entry::before {
    left: -40px;
  }

  .scene-copy {
    min-height: 360px;
    padding: 54px 28px;
  }

  .process-copy {
    padding: 58px 28px;
  }

  .manufacturing-band {
    min-height: 570px;
  }

  .manufacturing-copy {
    padding: 50px 0;
  }

  .contact-layout {
    gap: 48px;
  }

  .contact-details,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .field-full {
    grid-column: auto;
  }

  .form-submit {
    width: 100%;
  }

  .footer-inner {
    min-height: 126px;
    padding: 26px 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
  }
}

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

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

  html.has-reveal .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Page composition */
.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--red-deep);
  transform: translateY(-150%);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand-mark {
  position: relative;
  display: block;
  background: transparent;
  border: 2px solid var(--amber-light);
  border-radius: 18px 18px 18px 4px;
  transform: rotate(0);
}

.brand-mark::before {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 11px;
  width: 5px;
  content: "";
  background: var(--amber-light);
  border-radius: 4px;
}

.brand-mark i {
  position: absolute;
  right: 7px;
  bottom: 8px;
  width: 11px;
  height: 15px;
  border: 2px solid var(--amber-light);
  border-top-color: transparent;
  border-radius: 50% 50% 60% 60%;
  transform: rotate(-24deg);
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.brand-copy small {
  color: #f2d7ad;
  font-size: 9px;
  letter-spacing: 0.17em;
}

.menu-toggle i {
  display: block;
  width: 100%;
  height: 2px;
  margin: 6px 0;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] i:first-of-type {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] i:last-of-type {
  transform: translateY(-4px) rotate(-45deg);
}

.hero > img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero > img {
  object-fit: cover;
  object-position: 59% center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(22, 9, 7, 0.94) 0%, rgba(22, 9, 7, 0.72) 40%, rgba(22, 9, 7, 0.09) 76%),
    linear-gradient(0deg, rgba(22, 9, 7, 0.8), transparent 52%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: calc(var(--header) + 100px) 0 165px;
}

.hero-copy > * {
  max-width: 660px;
}

.hero-actions .text-link {
  color: #fff;
}

.button-light {
  color: var(--red-deep);
  background: var(--amber-light);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  gap: 10px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.hero-meta {
  position: absolute;
  z-index: 2;
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 48px;
  display: flex;
  gap: 40px;
}

.hero-meta span {
  display: grid;
  gap: 3px;
}

.hero-meta small {
  color: #e9ceb0;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.hero-meta strong {
  color: #fff;
  font-size: 16px;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 42px;
  left: max(24px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.16em;
}

.scroll-cue i {
  width: 42px;
  height: 1px;
  background: var(--amber-light);
}

.product-intro,
.story,
.craft {
  position: relative;
  padding: 120px max(24px, calc((100vw - var(--max)) / 2));
}

.section-kicker {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 56px;
  color: var(--red);
}

.section-kicker span {
  font-family: Georgia, serif;
  font-size: 18px;
}

.section-kicker p {
  margin: 0;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.product-heading,
.story-heading,
.craft-heading {
  display: grid;
  grid-template-columns: 0.38fr 1.2fr 0.75fr;
  gap: 48px;
  align-items: end;
}

.story-heading,
.craft-heading {
  grid-template-columns: 0.38fr 1.5fr;
}

.product-heading > p:first-child,
.story-heading > p,
.craft-heading > p {
  margin: 0;
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.product-heading h2,
.story-heading h2,
.craft-heading h2,
.flavor-copy h2,
.occasion-heading h2,
.contact-heading h2 {
  margin: 0;
  font-size: clamp(38px, 4.6vw, 69px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.product-heading > p:last-child {
  margin: 0;
  color: var(--muted);
}

.product-spectrum {
  margin: 68px 0 0;
}

.product-spectrum img {
  width: 100%;
  aspect-ratio: 16 / 7.5;
  object-fit: cover;
}

.product-spectrum figcaption {
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  overflow: hidden;
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.11em;
  border-bottom: 1px solid var(--line);
}

.product-lines {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 36px;
}

.product-lines article {
  min-height: 240px;
  padding: 34px 32px;
  border-right: 1px solid var(--line);
}

.product-lines article:last-child {
  border-right: 0;
}

.product-lines span {
  color: var(--red);
  font-family: Georgia, serif;
}

.product-lines h3 {
  margin: 35px 0 12px;
  font-size: 22px;
}

.product-lines p {
  margin: 0;
  color: var(--muted);
}

.flavor-band {
  min-height: 700px;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  background: var(--cream);
}

.flavor-image,
.flavor-image img {
  width: 100%;
  height: 100%;
  min-height: 700px;
}

.flavor-image img {
  object-fit: cover;
}

.flavor-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(46px, 7vw, 110px);
}

.flavor-copy > p:not(.eyebrow) {
  margin: 28px 0 18px;
  color: var(--muted);
  font-size: 17px;
}

.dark-link {
  align-self: flex-start;
  color: var(--red);
}

.story {
  color: #fff;
  background: var(--red-deep);
}

.section-kicker.light,
.story-heading > p {
  color: var(--amber-light);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 85px 0 0;
  margin: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  padding: 0 34px 0 0;
}

.timeline li + li {
  padding-left: 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.timeline time {
  color: var(--amber-light);
  font-family: Georgia, serif;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1;
}

.timeline h3 {
  margin: 30px 0 10px;
  font-size: 22px;
}

.timeline p {
  margin: 0;
  color: #f6dcd0;
}

.occasions {
  padding: 120px 0 0;
  color: #fff;
  background: var(--dark);
}

.occasion-heading {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto 64px;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr 0.75fr;
  gap: 50px;
  align-items: end;
}

.occasion-heading .eyebrow {
  display: block;
  margin: 0;
}

.occasion-heading .eyebrow::before {
  display: none;
}

.occasion-heading .eyebrow span,
.occasion-heading .eyebrow b {
  display: block;
}

.occasion-heading > p:last-child {
  margin: 0;
  color: #ead5c9;
}

.occasion-strip {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
}

.occasion {
  position: relative;
  min-height: 680px;
  overflow: hidden;
}

.occasion img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.occasion:hover img {
  transform: scale(1.025);
}

.occasion::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(22, 9, 7, 0.75), transparent 48%);
}

.occasion figcaption {
  position: absolute;
  z-index: 2;
  right: 38px;
  bottom: 34px;
  left: 38px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.occasion figcaption span {
  font-size: 28px;
  font-weight: 900;
}

.occasion figcaption small {
  color: var(--amber-light);
  letter-spacing: 0.14em;
}

.craft-heading {
  margin-bottom: 70px;
}

.craft-row {
  min-height: 600px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
}

.manufacturing-row {
  grid-template-columns: 1.2fr 0.8fr;
}

.craft-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px clamp(34px, 5vw, 80px);
  background: var(--cream);
}

.manufacturing-row .craft-copy {
  color: #fff;
  background: var(--red-deep);
}

.craft-copy > span {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.17em;
}

.manufacturing-row .craft-copy > span {
  color: var(--amber-light);
}

.craft-copy h3 {
  margin: 28px 0 18px;
  font-size: clamp(30px, 3.3vw, 50px);
  line-height: 1.12;
}

.craft-copy p {
  margin: 0;
  color: var(--muted);
}

.manufacturing-row .craft-copy p {
  color: #f4d9ce;
}

.craft-copy i {
  position: absolute;
  right: 26px;
  bottom: 12px;
  color: rgba(116, 18, 27, 0.12);
  font-family: Georgia, serif;
  font-size: 100px;
  font-style: normal;
}

.manufacturing-row .craft-copy i {
  color: rgba(255, 255, 255, 0.08);
}

.craft-image,
.craft-image img {
  width: 100%;
  height: 100%;
  min-height: 600px;
}

.craft-image img {
  object-fit: cover;
}

.channel {
  min-height: 880px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  color: #fff;
  background: var(--red-deep);
}

.channel-visual {
  position: relative;
  min-height: 880px;
}

.channel-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.channel-caption {
  position: absolute;
  right: 34px;
  bottom: 34px;
  left: 34px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px 18px;
  color: var(--red-deep);
  background: var(--amber-light);
}

.channel-caption span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.channel-caption i {
  flex: 1;
  height: 1px;
  background: rgba(76, 9, 16, 0.4);
}

.contact-panel {
  padding: 90px clamp(34px, 6vw, 90px);
}

.contact-heading > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: #f2d8cc;
}

.contact-details {
  margin: 42px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
  font-style: normal;
}

.contact-details > * {
  min-width: 0;
  padding: 17px 0;
  display: grid;
  gap: 5px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.contact-details small {
  color: var(--amber-light);
}

.contact-details strong {
  overflow-wrap: anywhere;
}

.inquiry-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.inquiry-form label {
  display: grid;
  gap: 7px;
  color: #f6e2d4;
  font-size: 13px;
  font-weight: 800;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fffaf0;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 0;
}

.inquiry-form textarea {
  min-height: 112px;
  resize: vertical;
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 18px;
}

.button-red {
  flex: 0 0 auto;
  color: var(--red-deep);
  background: var(--amber-light);
  border: 0;
}

.form-status {
  margin: 0;
  color: #fff;
}

.site-footer {
  padding: 46px max(24px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 44px;
  align-items: end;
}

.site-footer > div:first-child > p {
  margin: 16px 0 0;
  color: #dec6bb;
  font-size: 12px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 22px;
  font-size: 13px;
}

.footer-nav a,
.footer-meta p:last-child {
  color: var(--amber-light);
}

.footer-meta {
  text-align: right;
  font-size: 12px;
}

.footer-meta p {
  margin: 5px 0;
}

@media (max-width: 900px) {
  .site-header {
    padding: 0 18px;
  }

  .hero-copy {
    width: calc(100% - 36px);
  }

  .hero-meta {
    right: 18px;
    gap: 22px;
  }

  .scroll-cue {
    left: 18px;
  }

  .product-heading,
  .story-heading,
  .craft-heading,
  .occasion-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-heading > p:first-child,
  .story-heading > p,
  .craft-heading > p {
    display: none;
  }

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

  .product-lines article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .flavor-band,
  .channel {
    grid-template-columns: 1fr;
  }

  .flavor-image,
  .flavor-image img {
    min-height: 520px;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .timeline li,
  .timeline li + li {
    padding: 0;
    border-left: 0;
  }

  .occasion-strip {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .occasion {
    min-height: 570px;
  }

  .craft-row,
  .manufacturing-row {
    grid-template-columns: 1fr;
  }

  .manufacturing-row .craft-image {
    order: 2;
  }

  .craft-copy {
    min-height: 440px;
  }

  .channel,
  .channel-visual {
    min-height: auto;
  }

  .channel-visual {
    height: 640px;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-meta {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 620px) {
  .site-header .brand-copy strong {
    font-size: 14px;
  }

  .site-header .brand-copy small {
    display: none;
  }

  .hero {
    min-height: 790px;
  }

  .hero-copy {
    padding-bottom: 210px;
  }

  .hero-meta {
    right: 14px;
    bottom: 46px;
    left: 14px;
    justify-content: space-between;
    gap: 10px;
  }

  .hero-meta strong {
    font-size: 14px;
  }

  .scroll-cue {
    display: none;
  }

  .product-intro,
  .story,
  .craft {
    padding: 78px 14px;
  }

  .section-kicker {
    margin-bottom: 36px;
  }

  .product-spectrum {
    margin-top: 44px;
  }

  .product-spectrum img {
    aspect-ratio: 1 / 1.05;
  }

  .product-spectrum figcaption span:nth-child(even) {
    display: none;
  }

  .product-lines article {
    padding: 28px 10px;
  }

  .flavor-image,
  .flavor-image img {
    min-height: 370px;
  }

  .flavor-copy {
    padding: 64px 22px;
  }

  .occasion-heading {
    width: calc(100% - 28px);
  }

  .occasion {
    min-height: 430px;
  }

  .occasion figcaption {
    right: 22px;
    bottom: 24px;
    left: 22px;
  }

  .occasion figcaption small {
    display: none;
  }

  .craft-copy {
    min-height: 400px;
    padding: 58px 26px;
  }

  .craft-image,
  .craft-image img {
    min-height: 390px;
  }

  .channel-visual {
    height: 420px;
  }

  .channel-caption {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .channel-caption span,
  .channel-caption i {
    display: none;
  }

  .contact-panel {
    padding: 68px 20px;
  }

  .contact-details,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-submit {
    align-items: stretch;
    flex-direction: column;
  }

  .site-footer {
    padding: 38px 18px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .footer-meta {
    grid-column: auto;
  }
}
