:root {
  --cream-start: #FDFBF7;
  --cream-mid: #F7F3EB;
  --cream-end: #F1EBE0;
  --paper: #FFFFFF;
  --coffee: #3C2415;
  --coffee-soft: #6B5344;
  --burg: #722F37;
  --burg-deep: #5C242C;
  --gold-line: #D4C4A8;
  --gold: #C9A66B;
  --cream-soft: #F5F0E8;
  --sh-warm: 0 8px 28px rgba(60, 36, 21, .08);
  --sh-card: 0 4px 16px rgba(60, 36, 21, .06);
  --r-min: 2px;
  --r-soft: 4px;
  --r-pill: 24px;
  --r-lg: 32px;
  --r-xl: 48px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  font-size: 16px
}

body {
  font-family: 'Libre Baskerville', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--coffee);
  background: linear-gradient(180deg, var(--cream-start), var(--cream-mid) 55%, var(--cream-end));
  background-attachment: fixed;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased
}

strong,
p,
span,
a,
li,
button,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: inherit
}

strong,
b {
  color: inherit;
  font-weight: 700
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Cormorant Garamond', 'Hiragino Mincho ProN', serif;
  color: var(--coffee);
  font-weight: 500;
  letter-spacing: -.01em
}

h1 {
  font-size: clamp(2.4rem, 6vw, 5.4rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.02em
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  font-weight: 500;
  line-height: 1.15
}

h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
  font-weight: 600;
  line-height: 1.3
}

a {
  color: var(--burg);
  text-decoration: none;
  transition: color .25s, background-color .25s
}

a:hover {
  color: var(--burg-deep)
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none
}

.pure-g {
  letter-spacing: normal
}

.site-pill-bar {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(94%, 1180px);
  background: rgba(253, 251, 247, .92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--gold-line);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-warm);
  z-index: 100;
  padding: 10px 14px 10px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px
}

.brand-cluster {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0
}

.brand-mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--burg);
  color: var(--paper);
  border-radius: 50%;
  font-size: 18px;
  position: relative
}

.brand-mark::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 8px;
  background: var(--paper);
  border-radius: 50% 50% 0 0;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%)
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0
}

.brand-domain {
  font-family: 'Source Code Pro', monospace;
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--coffee-soft);
  text-transform: lowercase;
  white-space: nowrap
}

.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--coffee);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.brand-name-en {
  font-family: 'Source Code Pro', monospace;
  font-size: 9px;
  letter-spacing: .14em;
  color: var(--coffee-soft);
  text-transform: uppercase;
  margin-top: 2px;
  white-space: nowrap
}

.site-pill-nav {
  display: flex;
  align-items: center;
  gap: 4px
}

.site-pill-nav a {
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  color: var(--coffee);
  white-space: nowrap;
  transition: background .25s, color .25s
}

.site-pill-nav a:hover,
.site-pill-nav a.is-current {
  background: var(--burg);
  color: var(--paper)
}

.pill-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--burg);
  color: var(--paper) !important;
  border-radius: var(--r-pill);
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  margin-left: 10px;
  transition: background .25s, transform .25s;
  box-shadow: 0 6px 18px rgba(114, 47, 55, .28)
}

.pill-cta:hover {
  background: var(--burg-deep);
  color: var(--paper);
  transform: translateY(-1px)
}

.burger-trigger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  background: var(--paper);
  cursor: pointer;
  position: relative;
  margin-left: 8px;
  flex-shrink: 0
}

.burger-trigger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--coffee);
  position: relative
}

.burger-trigger span::before,
.burger-trigger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--coffee)
}

.burger-trigger span::before {
  top: -6px
}

.burger-trigger span::after {
  top: 6px
}

.fullscreen-drawer {
  position: fixed;
  inset: 0;
  background: rgba(247, 243, 235, .97);
  background-image: linear-gradient(rgba(114, 47, 55, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(114, 47, 55, .06) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 22px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s
}

.fullscreen-drawer.is-open {
  opacity: 1;
  visibility: visible
}

.fullscreen-drawer a {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  color: var(--coffee);
  padding: 8px 18px;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity .4s, transform .4s, color .25s
}

.fullscreen-drawer.is-open a {
  opacity: 1;
  transform: translateY(0)
}

.fullscreen-drawer.is-open a:nth-child(1) {
  transition-delay: .06s
}

.fullscreen-drawer.is-open a:nth-child(2) {
  transition-delay: .12s
}

.fullscreen-drawer.is-open a:nth-child(3) {
  transition-delay: .18s
}

.fullscreen-drawer.is-open a:nth-child(4) {
  transition-delay: .24s
}

.fullscreen-drawer.is-open a:nth-child(5) {
  transition-delay: .3s
}

.fullscreen-drawer.is-open a:nth-child(6) {
  transition-delay: .36s
}

.fullscreen-drawer a:hover {
  color: var(--burg)
}

.drawer-close {
  position: absolute;
  top: 26px;
  right: 30px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  background: var(--paper);
  font-size: 22px;
  color: var(--coffee);
  display: flex;
  align-items: center;
  justify-content: center
}

.drawer-domain {
  position: absolute;
  top: 30px;
  left: 30px;
  font-family: 'Source Code Pro', monospace;
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--coffee-soft)
}

.hero-stage {
  position: relative;
  min-height: 100vh;
  padding: 140px 24px 80px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: radial-gradient(ellipse at top right, rgba(201, 166, 107, .12), transparent 55%), radial-gradient(ellipse at bottom left, rgba(114, 47, 55, .08), transparent 60%), linear-gradient(180deg, var(--cream-start), var(--cream-mid))
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(212, 196, 168, .12) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 196, 168, .12) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none
}

.kinetic-band {
  position: absolute;
  left: 0;
  width: 200%;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(80px, 12vw, 160px);
  font-weight: 500;
  color: var(--burg);
  opacity: .07;
  white-space: nowrap;
  letter-spacing: .15em;
  pointer-events: none;
  z-index: 0
}

.kb-1 {
  top: 12%;
  animation: drift-r 38s linear infinite
}

.kb-2 {
  top: 38%;
  animation: drift-l 46s linear infinite;
  font-size: clamp(60px, 9vw, 110px)
}

.kb-3 {
  top: 64%;
  animation: drift-r 52s linear infinite
}

.kb-4 {
  top: 84%;
  animation: drift-l 32s linear infinite;
  font-size: clamp(70px, 10vw, 130px)
}

@keyframes drift-r {
  from {
    transform: translateX(-25%)
  }

  to {
    transform: translateX(0%)
  }
}

@keyframes drift-l {
  from {
    transform: translateX(0%)
  }

  to {
    transform: translateX(-25%)
  }
}

.hero-grid {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Source Code Pro', monospace;
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--coffee-soft);
  text-transform: uppercase;
  margin-bottom: 22px;
  padding: 6px 14px;
  border: 1px solid var(--gold-line);
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .5)
}

.hero-eyebrow::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--burg);
  animation: pulse-dot 2s ease-in-out infinite
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .5;
    transform: scale(.8)
  }
}

.hero-title {
  font-size: clamp(2.6rem, 5.6vw, 5.2rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--coffee);
  margin-bottom: 28px;
  letter-spacing: -.02em
}

.hero-title em {
  font-style: italic;
  color: var(--burg);
  font-weight: 500
}

.hero-title .sep {
  display: inline-block;
  margin: 0 14px;
  color: var(--gold)
}

.hero-subline {
  font-family: 'Source Code Pro', monospace;
  font-size: 13px;
  letter-spacing: .08em;
  color: var(--coffee-soft);
  margin-bottom: 38px;
  padding-left: 14px;
  border-left: 3px solid var(--burg);
  line-height: 1.7
}

.hero-cta-cluster {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: var(--burg);
  color: var(--paper);
  border-radius: var(--r-lg);
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .04em;
  box-shadow: 0 10px 28px rgba(114, 47, 55, .32);
  transition: transform .3s, background .3s, box-shadow .3s;
  white-space: nowrap;
  border: 2px solid var(--burg)
}

.btn-primary:hover {
  background: var(--burg-deep);
  color: var(--paper);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(114, 47, 55, .4)
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: var(--paper);
  color: var(--burg);
  border: 2px solid var(--burg);
  border-radius: var(--r-lg);
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .04em;
  transition: background .3s, color .3s;
  white-space: nowrap
}

.btn-secondary:hover {
  background: var(--burg);
  color: var(--paper)
}

.hero-meta-strip {
  display: flex;
  gap: 28px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--gold-line);
  flex-wrap: wrap
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.hero-meta-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--burg);
  line-height: 1
}

.hero-meta-label {
  font-family: 'Source Code Pro', monospace;
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--coffee-soft);
  text-transform: uppercase
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center
}

.hero-plate {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .95), rgba(247, 243, 235, .4) 60%, transparent 80%);
  border: 1px solid var(--gold-line);
  box-shadow: 0 30px 80px rgba(60, 36, 21, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden
}

.hero-plate img {
  width: 92%;
  height: 92%;
  object-fit: cover;
  border-radius: 50%;
  filter: saturate(1.05)
}

.hero-tag {
  position: absolute;
  background: var(--paper);
  border: 1px solid var(--gold-line);
  border-radius: var(--r-pill);
  padding: 10px 18px;
  font-family: 'Source Code Pro', monospace;
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--coffee);
  box-shadow: var(--sh-card);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px
}

.hero-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--burg)
}

.hero-tag-1 {
  top: 8%;
  left: 0
}

.hero-tag-2 {
  bottom: 12%;
  right: 0
}

.hero-tag-3 {
  top: 50%;
  right: 0
}

.section-frame {
  padding: 110px 24px;
  position: relative
}

.section-frame.is-tight {
  padding: 80px 24px
}

.section-frame .inner {
  max-width: 1240px;
  margin: 0 auto;
  position: relative
}

.section-eyebrow {
  font-family: 'Source Code Pro', monospace;
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--burg);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px
}

.section-eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--burg)
}

.section-title {
  margin-bottom: 18px
}

.section-lede {
  font-family: 'Libre Baskerville', serif;
  font-size: 17px;
  line-height: 1.85;
  color: var(--coffee-soft);
  max-width: 720px;
  margin-bottom: 64px
}

.section-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 auto 56px;
  width: fit-content
}

.section-divider span {
  width: 80px;
  height: 1px;
  background: var(--gold-line)
}

.section-divider .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--burg)
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  gap: 14px
}

.bento-cell {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--gold-line);
  border-radius: var(--r-soft);
  overflow: hidden;
  transition: transform .3s, z-index 0s .3s, box-shadow .3s, border-color .3s;
  z-index: 1;
  color: var(--coffee)
}

.bento-cell:hover {
  transform: scale(1.02);
  border-color: var(--burg);
  box-shadow: 0 18px 40px rgba(114, 47, 55, .18);
  z-index: 10;
  transition: transform .3s, z-index 0s, box-shadow .3s, border-color .3s
}

.bento-cell.size-lg {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 380px
}

.bento-cell.size-md {
  grid-column: span 2;
  min-height: 200px
}

.bento-cell.size-tall {
  grid-column: span 1;
  grid-row: span 2;
  min-height: 380px
}

.bento-cell.size-sm {
  grid-column: span 1;
  min-height: 200px
}

.bento-cell .cell-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.bento-cell .cell-image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden
}

.bento-cell .cell-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(60, 36, 21, .55))
}

.bento-cell .cell-text-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px;
  color: var(--paper);
  z-index: 2
}

.bento-cell .cell-text-overlay h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--paper);
  margin-bottom: 4px
}

.bento-cell .cell-text-overlay span {
  font-family: 'Source Code Pro', monospace;
  font-size: 11px;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .85)
}

.bento-cell.is-text {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between
}

.bento-cell.is-text .meta-key {
  font-family: 'Source Code Pro', monospace;
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--burg);
  text-transform: uppercase
}

.bento-cell.is-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  margin: 14px 0 12px;
  color: var(--coffee)
}

.bento-cell.is-text p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--coffee-soft)
}

.bento-cell.is-stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 24px
}

.bento-cell.is-stat .stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 600;
  color: var(--burg);
  line-height: 1;
  margin-bottom: 6px
}

.bento-cell.is-stat .stat-label {
  font-family: 'Source Code Pro', monospace;
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--coffee-soft)
}

.bento-cell.is-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 36px;
  background: linear-gradient(135deg, var(--burg), var(--burg-deep));
  color: var(--paper);
  border-color: var(--burg)
}

.bento-cell.is-banner h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  color: var(--paper);
  font-weight: 500
}

.bento-cell.is-banner p {
  color: rgba(255, 255, 255, .85);
  font-family: 'Source Code Pro', monospace;
  font-size: 12px;
  letter-spacing: .06em
}

.bento-cell.is-banner .banner-arrow {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--burg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px
}

.recipes-stage {
  background: linear-gradient(rgba(212, 196, 168, .18) 1px, transparent 1px) 0 0/100% 60px, var(--cream-soft);
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line)
}

.recipes-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(260px, 1fr));
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px
}

.recipe-card {
  background: var(--paper);
  border: 1px solid var(--gold-line);
  border-radius: var(--r-soft);
  overflow: hidden;
  scroll-snap-align: start;
  transition: transform .3s, box-shadow .3s;
  color: var(--coffee)
}

.recipe-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 24px 48px rgba(114, 47, 55, .18)
}

.recipe-card .recipe-photo {
  aspect-ratio: 1/1;
  width: 100%;
  object-fit: cover;
  border-bottom: 1px solid var(--gold-line)
}

.recipe-card .recipe-body {
  padding: 22px
}

.recipe-card .recipe-meta {
  display: flex;
  justify-content: space-between;
  font-family: 'Source Code Pro', monospace;
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--coffee-soft);
  margin-bottom: 12px
}

.recipe-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--coffee)
}

.recipe-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--coffee-soft)
}

.recipe-card .stars {
  display: inline-flex;
  gap: 2px;
  color: var(--gold);
  margin-top: 12px;
  font-size: 12px
}

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

.timeline-rail::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--gold-line)
}

.timeline-node {
  position: relative;
  margin-bottom: 40px;
  padding: 28px 30px;
  background: var(--paper);
  border: 1px solid var(--gold-line);
  border-radius: var(--r-soft);
  transition: transform .3s, border-color .3s, box-shadow .3s
}

.timeline-node:hover {
  transform: translateX(6px);
  border-color: var(--burg);
  box-shadow: var(--sh-card)
}

.timeline-node::before {
  content: "";
  position: absolute;
  left: -44px;
  top: 36px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--burg);
  z-index: 2
}

.timeline-node::after {
  content: "";
  position: absolute;
  left: -28px;
  top: 44px;
  width: 30px;
  height: 1px;
  background: var(--gold-line);
  z-index: 1
}

.timeline-node .step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  letter-spacing: .1em;
  color: var(--burg);
  text-transform: uppercase;
  margin-bottom: 6px
}

.timeline-node h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  margin-bottom: 10px
}

.timeline-node p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--coffee-soft)
}

.split-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start
}

.split-about .sticky-pane {
  position: sticky;
  top: 120px;
  border-radius: var(--r-soft);
  overflow: hidden;
  border: 1px solid var(--gold-line)
}

.split-about .sticky-pane img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover
}

.split-about .scroll-pane h2 {
  margin-bottom: 24px
}

.split-about .scroll-pane p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--coffee-soft);
  margin-bottom: 22px
}

.fact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
  border-top: 1px solid var(--gold-line);
  padding-top: 30px
}

.fact-cell .fact-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 600;
  color: var(--burg);
  line-height: 1
}

.fact-cell .fact-label {
  font-family: 'Source Code Pro', monospace;
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--coffee-soft);
  margin-top: 8px;
  text-transform: uppercase
}

.flexgrow-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  grid-auto-rows: auto
}

.advantage-tile {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--gold-line);
  border-radius: var(--r-soft);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  color: var(--coffee)
}

.advantage-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(114, 47, 55, .03) 0, rgba(114, 47, 55, .03) 1px, transparent 1px, transparent 14px);
  pointer-events: none
}

.advantage-tile:hover {
  transform: translateY(-8px);
  border-color: var(--burg);
  box-shadow: 0 22px 44px rgba(114, 47, 55, .16)
}

.advantage-tile .adv-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 600;
  color: var(--burg);
  line-height: 1
}

.advantage-tile .adv-icon {
  font-size: 26px;
  color: var(--gold);
  margin-bottom: 14px
}

.advantage-tile h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--coffee)
}

.advantage-tile p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--coffee-soft)
}

.team-reveal-list {
  border-top: 1px solid var(--gold-line)
}

.team-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 8px;
  border-bottom: 1px solid var(--gold-line);
  position: relative;
  cursor: pointer;
  transition: padding .3s, color .3s
}

.team-row:hover {
  padding-left: 28px;
  color: var(--burg)
}

.team-row .team-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  font-weight: 500
}

.team-row .team-role {
  font-family: 'Source Code Pro', monospace;
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--coffee-soft);
  text-transform: uppercase
}

.team-row .team-years {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--burg);
  font-weight: 500
}

.team-reveal-card {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.9);
  background: var(--paper);
  border: 1px solid var(--gold-line);
  border-radius: var(--r-soft);
  padding: 22px;
  display: flex;
  gap: 18px;
  align-items: center;
  width: min(90%, 380px);
  box-shadow: 0 30px 60px rgba(60, 36, 21, .18);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, transform .3s, visibility .3s;
  z-index: 50
}

.team-reveal-card.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1)
}

.team-reveal-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--r-soft);
  border: 1px solid var(--gold-line)
}

.team-reveal-card .trc-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600
}

.team-reveal-card .trc-role {
  font-family: 'Source Code Pro', monospace;
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--coffee-soft);
  margin: 2px 0 6px;
  text-transform: uppercase
}

.team-reveal-card .trc-years {
  font-size: 12px;
  color: var(--burg)
}

.coverflow-stage {
  position: relative;
  padding: 80px 0
}

.coverflow-rail {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 30px 40px;
  perspective: 1200px
}

.testimonial-card {
  flex: 0 0 min(380px, 80%);
  scroll-snap-align: center;
  background: var(--paper);
  border: 1px solid var(--gold-line);
  border-radius: var(--r-soft);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: var(--coffee);
  transition: transform .4s, box-shadow .4s;
  position: relative
}

.testimonial-card.is-active {
  transform: scale(1.04);
  border-color: var(--burg);
  box-shadow: 0 30px 60px rgba(114, 47, 55, .18);
  z-index: 4
}

.testimonial-card .quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  color: var(--burg);
  line-height: .6
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--coffee)
}

.testimonial-card .author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--gold-line);
  padding-top: 18px
}

.testimonial-card .author-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600
}

.testimonial-card .author-role {
  font-family: 'Source Code Pro', monospace;
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--coffee-soft)
}

.testimonial-card .stars {
  color: var(--gold);
  letter-spacing: .18em;
  font-size: 13px
}

.coverflow-arrows {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 30px
}

.coverflow-arrows button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--gold-line);
  background: var(--paper);
  font-size: 18px;
  color: var(--coffee);
  transition: background .3s, color .3s, border-color .3s
}

.coverflow-arrows button:hover {
  background: var(--burg);
  color: var(--paper);
  border-color: var(--burg)
}

.faq-list {
  border-top: 1px solid var(--gold-line)
}

.faq-item {
  border-bottom: 1px solid var(--gold-line);
  background: var(--paper)
}

.faq-question {
  width: 100%;
  padding: 26px 24px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: 'Libre Baskerville', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--coffee);
  text-align: left;
  cursor: pointer;
  border: none
}

.faq-question:hover {
  color: var(--burg)
}

.faq-question .faq-toggle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--gold-line);
  background: var(--cream-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--burg);
  transition: transform .3s, background .3s;
  flex-shrink: 0
}

.faq-item.is-open .faq-toggle {
  transform: rotate(45deg);
  background: var(--burg);
  color: var(--paper)
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s, padding .4s
}

.faq-item.is-open .faq-answer {
  max-height: 600px;
  padding: 0 24px 28px
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--coffee-soft)
}

.contact-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: start
}

.contact-card {
  background: var(--paper);
  border: 1px solid var(--gold-line);
  border-radius: var(--r-soft);
  padding: 40px;
  color: var(--coffee)
}

.contact-card h2 {
  margin-bottom: 18px
}

.contact-card .contact-lede {
  color: var(--coffee-soft);
  font-size: 15px;
  margin-bottom: 28px;
  line-height: 1.75
}

.field-block {
  position: relative;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--gold-line);
  padding-bottom: 8px
}

.field-block label {
  display: block;
  font-family: 'Source Code Pro', monospace;
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--coffee-soft);
  text-transform: uppercase;
  margin-bottom: 6px
}

.field-block input,
.field-block textarea,
.field-block select {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--coffee);
  padding: 6px 0
}

.field-block textarea {
  resize: vertical;
  min-height: 80px;
  line-height: 1.5
}

.field-block input:focus,
.field-block textarea:focus,
.field-block select:focus {
  border-bottom-color: var(--burg)
}

.field-block:focus-within {
  border-bottom: 2px solid var(--burg)
}

.contact-form-submit {
  margin-top: 12px;
  width: 100%
}

.contact-info-card {
  background: var(--burg);
  color: var(--paper);
  border-radius: var(--r-soft);
  padding: 44px;
  position: relative;
  overflow: hidden
}

.contact-info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, .04) 0 1px, transparent 1px 18px);
  pointer-events: none
}

.contact-info-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: var(--paper);
  font-weight: 600;
  margin-bottom: 22px;
  position: relative
}

.contact-info-card .info-row {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  position: relative
}

.contact-info-card .info-row:last-of-type {
  border-bottom: none
}

.contact-info-card .info-row .info-key {
  font-family: 'Source Code Pro', monospace;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  width: 90px;
  flex-shrink: 0
}

.contact-info-card .info-row .info-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--paper)
}

.contact-info-card a.info-val:hover {
  color: var(--gold)
}

.site-footer {
  background: var(--burg);
  color: var(--paper);
  border-radius: 8px 8px 0 0;
  padding: 70px 24px 30px;
  position: relative;
  overflow: hidden
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none
}

.footer-grid {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px
}

.footer-col h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--paper);
  margin-bottom: 18px;
  font-weight: 600
}

.footer-col p {
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 14px
}

.footer-col ul {
  list-style: none
}

.footer-col li {
  padding: 6px 0
}

.footer-col a {
  color: rgba(255, 255, 255, .85);
  font-family: 'Libre Baskerville', serif;
  font-size: 14px;
  letter-spacing: .02em;
  transition: color .25s
}

.footer-col a:hover {
  color: var(--gold)
}

.footer-brand-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px
}

.footer-brand-line .mark {
  width: 42px;
  height: 42px;
  background: var(--paper);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--burg);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 22px
}

.footer-domain {
  font-family: 'Source Code Pro', monospace;
  font-size: 11px;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .7)
}

.footer-bottom-bar {
  max-width: 1240px;
  margin: 50px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  font-family: 'Source Code Pro', monospace;
  font-size: 11px;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .7)
}

.footer-bottom-bar a {
  color: rgba(255, 255, 255, .85);
  margin-left: 18px;
  font-size: 11px
}

.cookie-consent-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  width: min(380px, calc(100vw - 36px));
  background: var(--paper);
  border: 1px solid var(--gold-line);
  border-radius: var(--r-soft);
  padding: 22px 24px;
  box-shadow: 0 24px 60px rgba(60, 36, 21, .22);
  z-index: 90;
  color: var(--coffee)
}

.cookie-consent-banner .cookie-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px
}

.cookie-consent-banner .cookie-eyebrow .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--burg)
}

.cookie-consent-banner .cookie-eyebrow h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--coffee)
}

.cookie-consent-banner p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--coffee-soft);
  margin-bottom: 8px
}

.cookie-consent-banner .cookie-links {
  margin-top: 8px;
  margin-bottom: 14px
}

.cookie-consent-banner .cookie-links a {
  font-size: 12px;
  color: var(--burg);
  text-decoration: underline;
  margin-right: 10px
}

.cookie-consent-banner .cookie-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px
}

.cookie-consent-banner .cookie-btn {
  flex: 1;
  padding: 10px 12px;
  border-radius: var(--r-pill);
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  border: none;
  transition: background .25s, color .25s;
  white-space: nowrap
}

.cookie-consent-banner .cookie-btn.accept {
  background: var(--burg);
  color: var(--paper)
}

.cookie-consent-banner .cookie-btn.accept:hover {
  background: var(--burg-deep)
}

.cookie-consent-banner .cookie-btn.decline {
  background: var(--cream-soft);
  color: var(--coffee);
  border: 1px solid var(--gold-line)
}

.cookie-consent-banner .cookie-btn.decline:hover {
  background: var(--cream-mid)
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s, transform .6s
}

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

.inner-hero {
  position: relative;
  padding: 150px 24px 70px;
  background: radial-gradient(ellipse at top right, rgba(201, 166, 107, .1), transparent 55%), linear-gradient(180deg, var(--cream-start), var(--cream-mid));
  border-bottom: 1px solid var(--gold-line);
  overflow: hidden
}

.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(212, 196, 168, .12) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 196, 168, .12) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none
}

.inner-hero .inner {
  max-width: 1080px;
  margin: 0 auto;
  position: relative
}

.inner-hero .breadcrumb-line {
  font-family: 'Source Code Pro', monospace;
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--coffee-soft);
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap
}

.inner-hero .breadcrumb-line a {
  color: var(--coffee-soft)
}

.inner-hero .breadcrumb-line a:hover {
  color: var(--burg)
}

.inner-hero .breadcrumb-line span.divider {
  color: var(--gold)
}

.inner-hero h1 {
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  max-width: 800px
}

.inner-hero p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--coffee-soft);
  max-width: 720px
}

.inner-hero .hero-visual-mini {
  margin-top: 36px;
  border-radius: var(--r-soft);
  overflow: hidden;
  border: 1px solid var(--gold-line)
}

.inner-hero .hero-visual-mini img {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 50px;
  align-items: start
}

.service-detail-grid .detail-body h2 {
  margin: 30px 0 14px
}

.service-detail-grid .detail-body p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--coffee-soft);
  margin-bottom: 16px
}

.service-detail-grid .detail-body ul {
  list-style: none;
  margin: 14px 0 22px;
  padding: 0
}

.service-detail-grid .detail-body ul li {
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid var(--gold-line);
  position: relative;
  font-size: 15px;
  color: var(--coffee)
}

.service-detail-grid .detail-body ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--burg)
}

.detail-side {
  position: sticky;
  top: 120px;
  background: var(--paper);
  border: 1px solid var(--gold-line);
  border-radius: var(--r-soft);
  padding: 30px;
  color: var(--coffee)
}

.detail-side .price-tag {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 600;
  color: var(--burg);
  margin-bottom: 6px
}

.detail-side .price-from {
  font-family: 'Source Code Pro', monospace;
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--coffee-soft);
  text-transform: uppercase
}

.detail-side .spec-list {
  margin: 24px 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--gold-line)
}

.detail-side .spec-list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--gold-line);
  font-size: 14px
}

.detail-side .spec-list .spec-key {
  color: var(--coffee-soft);
  font-family: 'Source Code Pro', monospace;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase
}

.detail-side .spec-list .spec-val {
  color: var(--coffee);
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  grid-auto-rows: auto;
}

.gallery-cell {
  position: relative;
  border: 1px solid var(--gold-line);
  border-radius: var(--r-soft);
  overflow: hidden;
  background: var(--paper);
  transition: transform .3s, box-shadow .3s
}

.gallery-cell:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 40px rgba(114, 47, 55, .18);
  z-index: 5
}

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

.gallery-cell .gallery-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 16px;
  background: linear-gradient(180deg, transparent, rgba(60, 36, 21, .78));
  color: var(--paper)
}

.gallery-cell .gallery-meta h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--paper);
  font-weight: 500
}

.gallery-cell .gallery-meta span {
  font-family: 'Source Code Pro', monospace;
  font-size: 10px;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .85)
}

.gallery-cell.size-tall {
  grid-row: span 2
}

.gallery-cell.size-wide {
  grid-column: span 2
}

.career-card {
  background: var(--paper);
  border: 1px solid var(--gold-line);
  border-radius: var(--r-soft);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
  color: var(--coffee)
}

.career-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(114, 47, 55, .16)
}

.career-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover
}

.career-card .career-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1
}

.career-card .career-tag {
  font-family: 'Source Code Pro', monospace;
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--burg);
  text-transform: uppercase
}

.career-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--coffee)
}

.career-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--coffee-soft);
  flex-grow: 1
}

.career-card .career-meta {
  display: flex;
  justify-content: space-between;
  font-family: 'Source Code Pro', monospace;
  font-size: 11px;
  color: var(--coffee-soft);
  border-top: 1px solid var(--gold-line);
  padding-top: 14px;
  margin-top: auto
}

.pure-form input[type=text],
.pure-form input[type=email],
.pure-form input[type=tel],
.pure-form textarea,
.pure-form select {
  border: none;
  box-shadow: none;
  background: transparent
}

.pure-button {
  background: var(--burg);
  color: var(--paper);
  border-radius: var(--r-pill);
  padding: 14px 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px
}

.pure-button:hover {
  background: var(--burg-deep)
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px
}

::-webkit-scrollbar-track {
  background: var(--cream-mid)
}

::-webkit-scrollbar-thumb {
  background: var(--burg);
  border-radius: 4px
}

@media(max-width:1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .hero-visual {
    order: -1
  }

  .hero-plate {
    max-width: 320px
  }

  .bento-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .bento-cell.size-lg {
    grid-column: span 2;
    grid-row: span 2
  }

  .bento-cell.size-tall {
    grid-column: span 1;
    grid-row: span 2
  }

  .split-about {
    grid-template-columns: 1fr
  }

  .split-about .sticky-pane {
    position: relative;
    top: 0
  }

  .flexgrow-row {
    grid-template-columns: repeat(2, 1fr)
  }

  .recipes-track {
    grid-template-columns: repeat(2, minmax(260px, 1fr))
  }

  .gallery-mosaic {
    grid-template-columns: repeat(3, 1fr)
  }

  .contact-split {
    grid-template-columns: 1fr
  }

  .service-detail-grid {
    grid-template-columns: 1fr
  }

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

@media(max-width:720px) {
  .site-pill-bar {
    padding: 8px 12px 8px 16px
  }

  .site-pill-nav,
  .pill-cta {
    display: none
  }

  .burger-trigger {
    display: inline-flex
  }

  .brand-name {
    font-size: 15px
  }

  .brand-name-en {
    font-size: 8px
  }

  .hero-stage {
    padding: 130px 18px 70px
  }

  .hero-title {
    font-size: 2.4rem
  }

  .section-frame {
    padding: 80px 18px
  }

  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
  }

  .bento-cell.size-lg,
  .bento-cell.size-md,
  .bento-cell.size-tall {
    grid-column: span 2;
    grid-row: auto;
    min-height: 220px
  }

  .bento-cell.is-banner {
    flex-direction: column;
    gap: 14px;
    text-align: center
  }

  .recipes-track {
    grid-template-columns: 1fr
  }

  .timeline-rail {
    padding-left: 44px
  }

  .timeline-rail::before {
    left: 14px
  }

  .timeline-node::before {
    left: -36px
  }

  .timeline-node::after {
    left: -22px
  }

  .flexgrow-row {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
  }

  .gallery-cell.size-tall,
  .gallery-cell.size-wide {
    grid-column: span 2;
    grid-row: auto
  }

  .fact-strip {
    grid-template-columns: 1fr;
    gap: 18px
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px
  }

  .hero-meta-strip {
    gap: 20px
  }

  .hero-tag {
    display: none
  }

  .testimonial-card {
    flex: 0 0 84%;
    padding: 26px
  }

  .career-card img {
    aspect-ratio: 16/10
  }

  .drawer-domain {
    top: 22px;
    left: 18px
  }

  .drawer-close {
    top: 18px;
    right: 18px
  }

  .fullscreen-drawer {
    gap: 14px
  }
}

@media(max-width:380px) {
  .hero-cta-cluster {
    flex-direction: column;
    align-items: stretch
  }

  .btn-primary,
  .btn-secondary {
    justify-content: center;
    width: 100%
  }
}