:root {
  --cacao: #2c1810;
  --flour: #f3e6d4;
  --steam: #fff8f0;
  --crust: #c4793a;
  --butter: #f2c14e;
  --jam: #8b2e3e;
  --ash: #5c4a3a;
  --line: rgba(44, 24, 16, 0.14);
  --shadow: 0 18px 50px rgba(44, 24, 16, 0.18);
  --font-display: "Syne", sans-serif;
  --font-brand: "Instrument Serif", Georgia, serif;
  --font-body: "Figtree", sans-serif;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--cacao);
  background:
    radial-gradient(900px 480px at 100% -10%, rgba(196, 121, 58, 0.22), transparent 55%),
    radial-gradient(700px 420px at 0% 20%, rgba(139, 46, 62, 0.1), transparent 50%),
    linear-gradient(180deg, var(--steam) 0%, var(--flour) 55%, #efe0cc 100%);
  line-height: 1.55;
  min-height: 100vh;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.wrap {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(255, 248, 240, 0.82);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.site-header--hero {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  color: var(--steam);
}

.site-header--hero .logo {
  color: var(--steam);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.site-header--hero .logo span {
  color: var(--butter);
}

.site-header--hero .nav a:not(.btn) {
  color: rgba(255, 248, 240, 0.92);
}

.site-header--hero .nav a:not(.btn)::after {
  background: var(--butter);
}

.site-header--hero .nav-toggle {
  color: var(--steam);
  border-color: rgba(255, 248, 240, 0.35);
}

.site-header--hero.is-solid {
  position: fixed;
  background: rgba(255, 248, 240, 0.92);
  border-bottom-color: var(--line);
  backdrop-filter: blur(12px);
  color: var(--cacao);
}

.site-header--hero.is-solid .logo {
  color: var(--cacao);
  text-shadow: none;
}

.site-header--hero.is-solid .logo span {
  color: var(--jam);
}

.site-header--hero.is-solid .nav a:not(.btn) {
  color: var(--cacao);
}

.site-header--hero.is-solid .nav a:not(.btn)::after {
  background: var(--jam);
}

.site-header--hero.is-solid .nav-toggle {
  color: var(--cacao);
  border-color: var(--line);
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 0;
}

.logo {
  font-family: var(--font-brand);
  font-weight: 400;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--cacao);
}

.logo span {
  font-style: italic;
  color: var(--jam);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav a {
  text-decoration: none;
  font-weight: 560;
  font-size: 0.95rem;
  position: relative;
}

.nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 2px;
  background: var(--jam);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav a:not(.btn):hover::after,
.nav a:not(.btn).active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  padding: 0.45rem 0.7rem;
  font: inherit;
  cursor: pointer;
  color: var(--cacao);
}

.site-header--hero .btn-header {
  background: var(--butter);
  border-color: var(--butter);
  color: var(--cacao);
  padding: 0.65rem 1rem;
}

.site-header--hero .btn-header:hover {
  background: #ffd76a;
  border-color: #ffd76a;
  color: var(--cacao);
}

.site-header--hero.is-solid .btn-header {
  background: var(--cacao);
  border-color: var(--cacao);
  color: var(--steam);
}

.site-header--hero.is-solid .btn-header:hover {
  background: var(--jam);
  border-color: var(--jam);
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.2rem;
  border-radius: 0.35rem;
  background: var(--cacao);
  color: var(--steam);
  text-decoration: none;
  font-weight: 650;
  font-size: 0.95rem;
  border: 1px solid var(--cacao);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--jam);
  border-color: var(--jam);
}

.btn-ghost {
  background: transparent;
  color: var(--cacao);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.55);
  color: var(--cacao);
}

.btn-jam {
  background: var(--jam);
  border-color: var(--jam);
}

.btn-jam:hover {
  background: #6f2432;
}

.btn-warm {
  background: var(--butter);
  border-color: var(--butter);
  color: var(--cacao);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.btn-warm:hover {
  background: #ffd76a;
  border-color: #ffd76a;
  color: var(--cacao);
}

.btn-glass {
  background: rgba(255, 248, 240, 0.12);
  border-color: rgba(255, 248, 240, 0.55);
  color: var(--steam);
  backdrop-filter: blur(8px);
}

.btn-glass:hover {
  background: rgba(255, 248, 240, 0.22);
  color: var(--steam);
  border-color: rgba(255, 248, 240, 0.8);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--steam);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 35%;
  transform: scale(1.05);
  filter: saturate(1.2) contrast(1.05) brightness(1.18);
  animation: kenburns 22s ease-in-out infinite alternate;
}

.hero-glow {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 58% 52% at 78% 38%, rgba(255, 236, 190, 0.45), transparent 72%),
    radial-gradient(ellipse 42% 38% at 22% 78%, rgba(242, 193, 78, 0.18), transparent 70%);
  pointer-events: none;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(18, 8, 4, 0.62) 0%, rgba(18, 8, 4, 0.18) 28%, rgba(18, 8, 4, 0.12) 55%, rgba(18, 8, 4, 0.5) 100%),
    linear-gradient(90deg, rgba(14, 6, 3, 0.92) 0%, rgba(14, 6, 3, 0.78) 32%, rgba(14, 6, 3, 0.35) 54%, rgba(14, 6, 3, 0.08) 72%, transparent 86%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.1;
  pointer-events: none;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 6.5rem 0 4.5rem;
  max-width: 44rem;
}

.hero-brand {
  font-family: var(--font-brand);
  font-size: clamp(4.4rem, 13vw, 8.6rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.88;
  margin-bottom: 1.15rem;
  color: #fff8f0;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.55), 0 1px 0 rgba(0, 0, 0, 0.35);
  animation: brandIn 1s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-brand em {
  font-style: italic;
  color: var(--butter);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  max-width: 18ch;
  margin-bottom: 0.85rem;
  line-height: 1.2;
  color: #fff8f0;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
  animation: rise 0.85s 0.12s ease both;
}

.hero-lead {
  max-width: 32ch;
  font-size: 1.12rem;
  line-height: 1.45;
  color: rgba(255, 248, 240, 0.95);
  margin-bottom: 1.65rem;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
  animation: rise 0.85s 0.2s ease both;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  animation: rise 0.85s 0.28s ease both;
}

.hero-scroll {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 1.35rem;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 248, 240, 0.78);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 650;
  animation: rise 0.9s 0.45s ease both;
}

.hero-scroll::after {
  content: "";
  width: 1px;
  height: 2.2rem;
  background: linear-gradient(180deg, rgba(255, 248, 240, 0.75), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

/* —— Sections —— */
.section {
  padding: 4.75rem 0;
}

.section-head {
  margin-bottom: 2rem;
  max-width: 40rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--jam);
  margin-bottom: 0.55rem;
}

.section h2,
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.85rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 0.65rem;
}

.lead {
  color: var(--ash);
  max-width: 48ch;
}

/* —— Products —— */
.product-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
  align-items: start;
}

.product {
  position: relative;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  min-width: 0;
}

.product-visual {
  aspect-ratio: 4 / 3;
  width: 100%;
  height: 160px;
  max-height: 160px;
  overflow: hidden;
  margin-bottom: 0.65rem;
  background: #e8d7c0;
  border-radius: 0.2rem;
}

.product-visual img {
  width: 100%;
  height: 100%;
  max-height: 160px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s ease;
}

.product:hover .product-visual img {
  transform: scale(1.06);
}

.product h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.product p {
  font-size: 0.92rem;
  color: var(--ash);
  margin-bottom: 0.55rem;
}

.price {
  font-weight: 750;
  font-variant-numeric: tabular-nums;
  color: var(--jam);
}

.catalog {
  display: grid;
  gap: 2.5rem;
}

.catalog-group h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.5rem;
}

.catalog-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem 0.9rem;
  align-items: start;
}

.product-rail .product-visual,
.product-rail .product-visual img {
  height: 140px;
  max-height: 140px;
}

/* —— Story band —— */
.story {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.story-visual {
  position: relative;
  min-height: 380px;
  overflow: hidden;
}

.story-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.story-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 35%;
  background: linear-gradient(transparent, rgba(44, 24, 16, 0.45));
}

.story-copy p + p {
  margin-top: 0.9rem;
  color: var(--ash);
}

/* —— Page hero —— */
.page-hero {
  padding: 3.5rem 0 1.5rem;
}

.page-hero p {
  color: var(--ash);
  max-width: 46ch;
}

/* —— Contact —— */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 1rem;
}

.info-line {
  border-top: 1px solid var(--line);
  padding-top: 0.85rem;
}

.info-line strong {
  display: block;
  font-family: var(--font-display);
  margin-bottom: 0.2rem;
}

.info-line a {
  color: var(--jam);
  font-weight: 600;
}

.form {
  display: grid;
  gap: 0.85rem;
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid var(--line);
}

.form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.92rem;
}

.form input,
.form textarea,
.form select {
  font: inherit;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  background: var(--steam);
  color: var(--cacao);
  border-radius: 0.25rem;
}

.form textarea {
  min-height: 130px;
  resize: vertical;
}

.map-wrap {
  margin-top: 2.5rem;
  border: 1px solid var(--line);
  overflow: hidden;
  min-height: 320px;
  background: #ddd0bf;
}

.map-wrap iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

/* —— Legal —— */
.legal {
  padding-bottom: 4rem;
}

.legal h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 1.75rem 0 0.6rem;
}

.legal p,
.legal li {
  color: var(--ash);
  margin-bottom: 0.7rem;
}

.legal ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

/* —— Footer —— */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.25rem 0 2.75rem;
  margin-top: 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.site-footer h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.55rem;
}

.site-footer a {
  display: block;
  text-decoration: none;
  color: var(--ash);
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

.site-footer a:hover {
  color: var(--jam);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--ash);
}

/* —— WhatsApp + cookies —— */
.wa-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 50;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background: #1fa855;
  color: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

.wa-float:hover {
  transform: scale(1.06);
}

.wa-float svg {
  width: 1.55rem;
  height: 1.55rem;
  fill: currentColor;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  max-width: 520px;
  margin-inline: auto;
  background: var(--cacao);
  color: var(--steam);
  padding: 1rem 1.1rem;
  display: none;
  gap: 0.85rem;
  align-items: center;
  box-shadow: var(--shadow);
}

.cookie-banner.show {
  display: flex;
  flex-wrap: wrap;
  animation: rise 0.4s ease both;
}

.cookie-banner p {
  flex: 1 1 220px;
  font-size: 0.9rem;
  opacity: 0.92;
}

.cookie-banner a {
  color: #f0c9a0;
}

.cookie-banner .btn {
  background: var(--steam);
  color: var(--cacao);
  border-color: var(--steam);
}

/* —— About extras —— */
.hours {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.hours article {
  border-top: 1px solid var(--line);
  padding-top: 0.9rem;
}

.hours h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.hours p {
  color: var(--ash);
  font-size: 0.95rem;
}

.plain-list {
  padding-left: 1.2rem;
  color: var(--ash);
  display: grid;
  gap: 0.45rem;
}

.pay-block {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.pay-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.pay-grid article {
  border-top: 1px solid var(--line);
  padding-top: 0.85rem;
}

.pay-grid h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.pay-grid p {
  color: var(--ash);
  font-size: 0.95rem;
}

@media (max-width: 720px) {
  .pay-grid {
    grid-template-columns: 1fr;
  }
}

/* —— Media / video —— */
.media-band {
  position: relative;
  overflow: hidden;
  min-height: min(62vh, 560px);
  background: #1a0f0a;
}

.media-band video,
.media-band img {
  width: 100%;
  height: min(62vh, 560px);
  object-fit: cover;
  display: block;
  filter: saturate(1.08) brightness(1.05);
}

.media-band-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem 0;
  background: linear-gradient(transparent, rgba(14, 6, 3, 0.82));
  color: var(--steam);
}

.media-band-caption h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.35rem;
}

.media-band-caption p {
  opacity: 0.9;
  max-width: 40ch;
}

/* —— Ads page —— */
.ads-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.ads-block {
  margin-bottom: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.ads-block h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 1.9rem);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.ads-block h2 span {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ash);
}

.ads-list {
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.ads-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}

.ads-list code {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--cacao);
  font-weight: 600;
}

.ads-list--desc code {
  font-weight: 500;
  max-width: 62ch;
  line-height: 1.4;
}

.ads-list em {
  font-style: normal;
  font-variant-numeric: tabular-nums;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--jam);
}

.keyword-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.keyword-cloud span {
  display: inline-block;
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.4);
  font-size: 0.92rem;
  font-weight: 600;
}

.ad-preview {
  max-width: 36rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
}

.ad-preview-url {
  color: #0d652d;
  font-size: 0.85rem;
  margin-bottom: 0.2rem;
}

.ad-preview-title {
  color: #1a0dab;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.ad-preview-desc {
  color: var(--ash);
  font-size: 0.95rem;
}

.ads-note {
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--line);
  color: var(--ash);
  max-width: 62ch;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .ads-meta {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .ads-meta {
    grid-template-columns: 1fr;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes brandIn {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.97);
    letter-spacing: 0.04em;
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    letter-spacing: -0.045em;
  }
}

@keyframes kenburns {
  from {
    transform: scale(1.06) translate(0, 0);
  }
  to {
    transform: scale(1.14) translate(-2.5%, 1.5%);
  }
}

@keyframes scrollPulse {
  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.8;
  }
  50% {
    transform: scaleY(0.65);
    opacity: 0.35;
  }
}

@media (max-width: 900px) {
  .product-rail,
  .catalog-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-visual,
  .product-visual img {
    height: 150px;
    max-height: 150px;
  }

  .story,
  .contact-grid,
  .footer-grid,
  .hours {
    grid-template-columns: 1fr;
  }

  .story-visual {
    min-height: 260px;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255, 248, 240, 0.97);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 1.25rem 1rem;
  }

  .site-header--hero:not(.is-solid) .nav {
    background: rgba(20, 10, 6, 0.94);
    border-bottom-color: rgba(255, 248, 240, 0.12);
  }

  .site-header--hero:not(.is-solid) .nav a {
    color: var(--steam);
    border-bottom-color: rgba(255, 248, 240, 0.12);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--line);
  }

  .product-rail,
  .catalog-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-visual,
  .product-visual img {
    height: 130px;
    max-height: 130px;
  }

  .hero-copy {
    padding: 6.5rem 0 4.5rem;
  }

  .hero-brand {
    font-size: clamp(3.8rem, 18vw, 5.5rem);
  }

  .hero-media img {
    object-position: 70% center;
  }
}
