/* ============================================
   北纬27度酒业 - Premium Baijiu Brand
   Dark Luxury Aesthetic
   ============================================ */

/* ---------- BASE & TOKENS ---------- */
:root {
  --bg-primary: #0a0a08;
  --bg-secondary: #111110;
  --bg-tertiary: #1a1916;
  --bg-card: #151513;
  --accent: #c8a45c;
  --accent-light: #ddbf7a;
  --accent-dim: rgba(200, 164, 92, 0.07);
  --wine: #5a1f25;
  --jade: #637263;
  --text-primary: #e8e2d6;
  --text-secondary: #9a9488;
  --text-muted: #6a6458;
  --border: #2a2824;
  --radius: 4px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--bg-primary);
  background-color: var(--bg-primary);
  min-height: 100%;
  overscroll-behavior-y: none;
}

body {
  font-family: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", system-ui, sans-serif;
  background:
    radial-gradient(circle at 18% 8%, rgba(90, 31, 37, 0.24), transparent 30rem),
    radial-gradient(circle at 88% 20%, rgba(99, 114, 99, 0.14), transparent 28rem),
    linear-gradient(180deg, #0a0a08 0%, #11100d 46%, #090908 100%);
  background-color: var(--bg-primary);
  color: var(--text-secondary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
  overscroll-behavior-y: none;
  text-rendering: optimizeLegibility;
  font-variant-numeric: tabular-nums;
}

body::before {
  content: '';
  position: absolute;
  inset: 0;
  min-height: 100%;
  z-index: 80;
  pointer-events: none;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.74' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.18'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 70;
  width: 100%;
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), #f0d995);
  box-shadow: 0 0 18px rgba(200, 164, 92, 0.35);
  pointer-events: none;
  will-change: transform;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: var(--accent);
  color: var(--bg-primary);
  border-radius: 4px;
  font-size: 0.875rem;
  text-decoration: none;
  transition: transform 0.25s ease;
}

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

:focus-visible {
  outline: 2px solid rgba(221, 191, 122, 0.9);
  outline-offset: 4px;
}

::selection {
  background: rgba(200, 164, 92, 0.3);
  color: var(--text-primary);
}

.font-serif {
  font-family: "Songti SC", "STSong", "SimSun", "Noto Serif CJK SC", serif;
}

/* ---------- PAGE LOADER ---------- */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  text-align: center;
}

.loader-mark {
  font-family: "Songti SC", "STSong", "SimSun", serif;
  color: var(--accent);
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.15em;
  animation: loaderPulse 1.2s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ---------- NAVIGATION ---------- */
#navbar {
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

#navbar.scrolled {
  background: rgba(10, 10, 8, 0.78);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  box-shadow: 0 1px 0 rgba(200, 164, 92, 0.14), 0 18px 60px rgba(0, 0, 0, 0.28);
}

.nav-link {
  color: var(--text-secondary);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  transition: color 0.3s ease;
  text-decoration: none;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease, box-shadow 0.3s ease;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link:hover::after {
  width: 100%;
  box-shadow: 0 0 14px rgba(200, 164, 92, 0.55);
}

.nav-link-cta {
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  padding: 6px 18px;
  border: 1px solid rgba(200, 164, 92, 0.35);
  border-radius: var(--radius);
  transition: all 0.3s ease;
  text-decoration: none;
}

.nav-link-cta:hover {
  background: rgba(200, 164, 92, 0.1);
  border-color: var(--accent);
  color: var(--accent-light);
  transform: translateY(-1px);
}

/* Logo */
.logo-mark {
  position: relative;
}

.logo-mark::before {
  content: '';
  position: absolute;
  inset: -4px -6px;
  border: 1px solid rgba(200, 164, 92, 0.25);
  border-radius: 2px;
}

/* Hamburger */
.hamburger {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  position: relative;
  transition: background 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  transition: transform 0.3s ease;
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.hamburger.active { background: transparent; }
.hamburger.active::before { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active::after { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 16%, rgba(90, 31, 37, 0.32), transparent 18rem),
    radial-gradient(circle at 90% 8%, rgba(200, 164, 92, 0.12), transparent 16rem),
    linear-gradient(180deg, rgba(10, 10, 8, 0.98), rgba(16, 15, 12, 0.98));
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, z-index 0s linear 0.3s;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
  z-index: 40;
  transition: opacity 0.3s ease;
}

/* Mobile menu header (logo + close button) */
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(200, 164, 92, 0.1);
  flex-shrink: 0;
}

.mobile-menu-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.mobile-menu-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 164, 92, 0.2);
  border-radius: 50%;
  background: rgba(200, 164, 92, 0.06);
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.25s ease;
}

.mobile-menu-close svg {
  width: 18px;
  height: 18px;
}

.mobile-menu-close:hover {
  background: rgba(200, 164, 92, 0.15);
  border-color: rgba(200, 164, 92, 0.5);
  color: var(--accent);
  transform: rotate(90deg);
}

/* Mobile menu links */
.mobile-menu-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
  padding: 24px 20px;
  transform: translateY(18px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.mobile-menu.active .mobile-menu-inner {
  transform: translateY(0);
  opacity: 1;
}

.mobile-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-primary);
  min-height: 52px;
  padding: 0 16px;
  border-radius: 6px;
  font-size: 1.05rem;
  font-family: "Songti SC", "STSong", "SimSun", serif;
  text-decoration: none;
  letter-spacing: 0.1em;
  transform: translateX(-20px);
  opacity: 0;
  transition: color 0.25s ease, background 0.25s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.mobile-link::after {
  content: '→';
  color: rgba(200, 164, 92, 0.5);
  font-family: ui-serif, Georgia, serif;
  font-size: 0.9rem;
  transform: translateX(-6px);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease, color 0.25s ease;
}

.mobile-menu.active .mobile-link {
  transform: translateX(0);
  opacity: 1;
}

.mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.06s; }
.mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.14s; }
.mobile-menu.active .mobile-link:nth-child(4) { transition-delay: 0.18s; }
.mobile-menu.active .mobile-link:nth-child(5) { transition-delay: 0.22s; }

.mobile-link.active {
  color: var(--accent) !important;
  background: rgba(200, 164, 92, 0.08);
}

.mobile-link:hover {
  color: var(--accent);
  background: rgba(200, 164, 92, 0.06);
}

.mobile-link:hover::after {
  color: var(--accent-light);
  transform: translateX(0);
  opacity: 1;
}

/* Mobile CTA button */
.mobile-link-cta-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 8px;
  padding: 0 16px;
  border: 1px solid rgba(200, 164, 92, 0.3);
  border-radius: 6px;
  color: var(--accent);
  font-size: 0.95rem;
  font-family: "Songti SC", "STSong", "SimSun", serif;
  letter-spacing: 0.1em;
  text-decoration: none;
  transform: translateY(12px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.active .mobile-link-cta-mobile {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.26s;
}

.mobile-link-cta-mobile:hover {
  background: rgba(200, 164, 92, 0.12);
  border-color: var(--accent);
}

/* Mobile menu footer */
.mobile-menu-footer {
  padding: 20px;
  flex-shrink: 0;
}

.mobile-menu-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(200, 164, 92, 0.2), transparent);
  margin-bottom: 16px;
}

.mobile-menu-brand {
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-align: center;
  margin-bottom: 4px;
}

.mobile-menu-copyright {
  color: rgba(106, 100, 88, 0.6);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-align: center;
}

body.menu-open {
  overflow: hidden;
  touch-action: none;
}

/* ---------- HERO ---------- */
.hero {
  background: var(--bg-primary);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.48) saturate(0.72) contrast(1.08);
  transition: transform 0.1s linear;
}

.hero-overlay {
  background:
  radial-gradient(circle at 66% 26%, rgba(200, 164, 92, 0.12), transparent 18rem),
  radial-gradient(circle at 20% 65%, rgba(90, 31, 37, 0.24), transparent 22rem),
  linear-gradient(
    to right,
    rgba(10, 10, 8, 0.88) 0%,
    rgba(10, 10, 8, 0.6) 50%,
    rgba(10, 10, 8, 0.35) 100%
  ),
  linear-gradient(
    to top,
    rgba(10, 10, 8, 0.7) 0%,
    transparent 40%
  );
}

.hero::after,
.page-hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, var(--bg-primary));
  z-index: 1;
}

.hero-eyebrow {
  font-family: "Songti SC", "STSong", "SimSun", serif;
}

/* Hero scroll hint */
.hero-scroll-hint {
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.4s both;
}

/* Hero animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-title     { animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both; }
.hero-eyebrow   { animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both; }
.hero-sub       { animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both; }
.hero-cta       { animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.9s both; }

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--accent);
  color: var(--bg-primary);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  border-radius: var(--radius);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--accent);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: translateX(-120%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover::before {
  transform: translateX(120%) skewX(-18deg);
}

.btn-primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(200, 164, 92, 0.2);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--text-secondary);
  color: var(--text-primary);
  transform: translateY(-1px);
  background: rgba(232, 226, 214, 0.035);
}

.btn-secondary:active {
  transform: translateY(0) scale(0.98);
}

/* ---------- SECTION GRAIN ---------- */
.section-grain {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* ---------- SECTION DIVIDER ---------- */
.section-divider {
  padding: 0 0;
  margin: -1px 0;
  position: relative;
  z-index: 1;
}

/* ---------- STAT CARDS ---------- */
.stat-card {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.stat-card:hover {
  border-color: rgba(200, 164, 92, 0.5);
  transform: translateY(-2px);
}

/* ---------- BENTO GRID ---------- */
.bento-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  min-height: 240px;
  cursor: pointer;
  background: rgba(21, 21, 19, 0.78);
  box-shadow: inset 0 0 0 1px rgba(232, 226, 214, 0.04);
  isolation: isolate;
}

.bento-card::before,
.product-card::before,
.product-detail-card::before,
.value-card::before,
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(221, 191, 122, 0.18), transparent 42%);
  transition: opacity 0.35s ease;
}

.bento-card:hover::before,
.product-card:hover::before,
.product-detail-card:hover::before,
.value-card:hover::before,
.cta-section:hover::before {
  opacity: 1;
}

.bento-card.bento-water { min-height: 420px; }
.bento-card.bento-soil  { min-height: 200px; }

.bento-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card:hover .bento-img {
  transform: scale(1.05);
}

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 8, 0.9) 0%,
    rgba(10, 10, 8, 0.4) 50%,
    rgba(10, 10, 8, 0.15) 100%
  );
  transition: background 0.4s ease;
}

.bento-card:hover .bento-overlay {
  background: linear-gradient(
    to top,
    rgba(10, 10, 8, 0.85) 0%,
    rgba(10, 10, 8, 0.3) 40%,
    rgba(10, 10, 8, 0.05) 100%
  );
}

.bento-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 3;
  transform: translateY(8px);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card:hover .bento-content {
  transform: translateY(0);
}

.bento-tag {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(200, 164, 92, 0.15);
  color: var(--accent);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  border-radius: 2px;
  margin-bottom: 10px;
  border: 1px solid rgba(200, 164, 92, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* ---------- CRAFT SECTION ---------- */
.craft-bg {
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(200, 164, 92, 0.04), transparent),
    var(--bg-secondary);
}

/* Craft step layout */
.craft-step {
  position: relative;
  padding: 24px 24px 24px 32px;
  border-left: 2px solid var(--border);
  transition: background 0.3s ease, transform 0.3s ease;
}

.craft-step:hover {
  background: linear-gradient(180deg, rgba(200, 164, 92, 0.045), transparent);
  transform: translateY(-4px);
}

.craft-step::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 28px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.craft-step:hover::before {
  background: var(--accent);
  box-shadow: 0 0 12px rgba(200, 164, 92, 0.4);
}

@media (min-width: 768px) {
  .craft-step {
    border-left: none;
    padding: 24px 16px;
    text-align: center;
  }
  .craft-step::before { display: none; }
}

/* Craft connecting line (desktop) */
.craft-line {
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--border) 10%,
    var(--border) 90%,
    transparent
  );
  z-index: 0;
}

/* Craft icons */
.craft-icon-wrap {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: border-color 0.3s ease, background 0.3s ease;
  box-shadow: inset 0 0 0 1px rgba(232, 226, 214, 0.02);
}

.craft-step:hover .craft-icon-wrap {
  border-color: rgba(200, 164, 92, 0.4);
  background: rgba(200, 164, 92, 0.06);
}

@media (min-width: 768px) {
  .craft-icon-wrap {
    margin-left: auto;
    margin-right: auto;
  }
}

.craft-icon {
  width: 24px;
  height: 24px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.craft-step:hover .craft-icon {
  opacity: 1;
}

/* ---------- AGING SECTION ---------- */
.aging-section {
  position: relative;
}

.aging-bg img {
  filter: brightness(0.3) saturate(0.6);
}

.aging-overlay {
  background:
    linear-gradient(
      to right,
      rgba(10, 10, 8, 0.92) 0%,
      rgba(10, 10, 8, 0.7) 60%,
      rgba(10, 10, 8, 0.5) 100%
    ),
    linear-gradient(
      to top,
      rgba(10, 10, 8, 0.6) 0%,
      transparent 40%
    );
}

/* ---------- PRODUCT CARDS ---------- */
.product-card {
  background: var(--bg-card);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  box-shadow: inset 0 0 0 1px rgba(232, 226, 214, 0.04);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(200, 164, 92, 0.16);
}

/* Featured card: fill grid row height, layout as column */
.product-featured {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-featured .product-img-wrap {
  flex: 1;
  min-height: 300px;
}

/* Side column cards: stretch equally */
.md\:col-span-5 > .product-card {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.md\:col-span-5 > .product-card .product-img-wrap {
  flex-shrink: 0;
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  height: 260px;
  z-index: 1;
}

.product-featured .product-img-wrap > .absolute,
.product-card .product-info,
.product-detail-body,
.value-card > *,
.cta-section > * {
  position: relative;
  z-index: 3;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0.7) saturate(0.7);
}

.product-card:hover .product-img {
  transform: scale(1.05);
  filter: brightness(0.8) saturate(0.8);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(21, 21, 19, 0.8), transparent 60%);
}

/* Featured card has stronger overlay for text readability */
.product-featured .product-overlay {
  background: linear-gradient(
    to top,
    rgba(10, 10, 8, 0.92) 0%,
    rgba(10, 10, 8, 0.6) 40%,
    rgba(10, 10, 8, 0.2) 70%,
    transparent 100%
  );
}

.product-info {
  padding: 20px 24px 24px;
  position: relative;
  z-index: 3;
}

.product-tag {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(200, 164, 92, 0.15);
  color: var(--accent);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  border-radius: 2px;
}

/* ---------- QUOTE SECTION ---------- */
.quote-section {
  position: relative;
}

.quote-bg img {
  filter: brightness(0.25) saturate(0.4) blur(2px);
}

/* ---------- FOOTER ---------- */
.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--accent);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.social-link:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(200, 164, 92, 0.08);
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(200, 164, 92, 0.15);
  border: 1px solid rgba(200, 164, 92, 0.3);
  color: var(--accent);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s ease;
  z-index: 40;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: rgba(200, 164, 92, 0.25);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
  .back-to-top { opacity: 0; visibility: hidden; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 767px) {
  body::before,
  .section-grain {
    display: none;
  }

  #navbar.scrolled {
    background: rgba(10, 10, 8, 0.94);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hero-bg img {
    transition: none;
    transform: none !important;
    animation: none;
  }

  .bento-card::before,
  .product-card::before,
  .product-detail-card::before,
  .value-card::before,
  .cta-section::before {
    display: none;
  }

  .bento-card:hover .bento-img,
  .product-card:hover .product-img,
  .product-detail-card:hover .product-detail-img {
    transform: none;
  }

  .hero-title span { font-size: 2.2rem; }
  .latitude-number { font-size: 6rem; }
  .hero {
    min-height: 82dvh;
  }
  .hero-bg img {
    object-position: 58% center;
  }
  .hero-overlay {
    background:
      linear-gradient(to top, rgba(10, 10, 8, 0.92) 0%, rgba(10, 10, 8, 0.48) 46%, rgba(10, 10, 8, 0.28) 100%),
      radial-gradient(circle at 28% 66%, rgba(90, 31, 37, 0.24), transparent 18rem);
  }
  .hero-latitude {
    display: none;
  }
  .hero-sub {
    max-width: 20rem;
    font-size: 0.95rem;
    line-height: 1.8;
  }
  section.py-20,
  section.py-16,
  section.py-24 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .page-hero {
    min-height: 260px;
  }
  .page-hero-img img {
    object-position: center;
    filter: brightness(0.5) saturate(0.78) contrast(1.04);
    transform: none;
  }
  .page-hero .page-hero-img img[src*="products-hero"] {
    object-position: 54% center;
  }
  .page-hero .page-hero-img img[src*="about-hero"] {
    object-position: 48% center;
  }
  .page-hero .page-hero-img img[src*="culture-hero"] {
    object-position: 56% center;
  }
  .page-hero .page-hero-img img[src*="news-hero"] {
    object-position: 50% center;
  }
  .page-hero-content {
    padding: 96px 20px 34px;
  }
  .page-hero-content h1 {
    font-size: 2rem;
  }
  .page-hero-content p {
    max-width: 18rem;
    font-size: 0.92rem;
    line-height: 1.7;
  }
  .bento-card.bento-water { min-height: 260px; }
  .bento-card,
  .bento-card.bento-soil {
    min-height: 220px;
    border-radius: 8px;
  }
  .bento-content {
    padding: 18px;
    transform: none;
  }
  .bento-content p,
  .craft-step p,
  .value-card p,
  .team-card p {
    font-size: 0.82rem;
    line-height: 1.75;
  }
  .craft-step {
    padding: 20px 0 20px 24px;
    background: transparent;
  }
  .craft-icon-wrap {
    width: 42px;
    height: 42px;
    margin-bottom: 12px;
  }
  .product-card {
    border-radius: 8px;
  }
  .product-img-wrap { height: 190px; }
  .product-featured .product-img-wrap {
    min-height: 360px;
  }
  .product-featured .product-img-wrap > .absolute {
    padding: 20px !important;
  }
  .product-card:hover,
  .product-detail-card:hover,
  .value-card:hover,
  .craft-step:hover {
    transform: none;
  }
  .product-detail-body,
  .value-card,
  .team-card,
  .tasting-step {
    padding: 20px;
  }
  .product-detail-img {
    height: 220px !important;
    min-height: 220px !important;
  }
  .aging-section .max-w-xl { max-width: 100%; }
  .aging-bg img {
    object-position: 58% center;
  }
  .quote-section .text-xl {
    font-size: 1.05rem;
  }
  .team-avatar {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    font-size: 1.2rem;
  }
  .news-card {
    background: transparent;
    padding: 0;
  }
  .contact-cta-card {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 24px 20px;
  }
  .reservation-form input,
  .reservation-form select,
  .reservation-form button {
    min-height: 44px;
  }
  .footer-link {
    font-size: 0.8rem;
  }

  footer {
    padding-top: 2.25rem !important;
    padding-bottom: 1.4rem !important;
  }

  footer .grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 1.15rem 1.35rem !important;
    margin-bottom: 1.5rem !important;
  }

  footer .grid > div:first-child {
    grid-column: 1 / -1;
  }

  footer .grid > div:first-child p {
    max-width: none;
    margin-bottom: 0.85rem !important;
    font-size: 0.8rem;
    line-height: 1.65;
  }

  footer .grid > div:first-child .flex:first-child {
    margin-bottom: 0.55rem !important;
  }

  footer .grid > div:last-child {
    grid-column: 1 / -1;
  }

  footer h4 {
    margin-bottom: 0.45rem !important;
    font-size: 0.78rem !important;
  }

  footer ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.9rem;
  }

  footer li {
    line-height: 1.45;
  }

  footer .space-y-2 > :not([hidden]) ~ :not([hidden]) {
    margin-top: 0 !important;
  }

  footer .social-link {
    width: 32px;
    height: 32px;
  }

  footer .border-t {
    padding-top: 1rem !important;
    gap: 0.35rem !important;
  }

  footer .border-t p {
    letter-spacing: 0.04em;
  }

  .back-to-top { bottom: 20px; right: 20px; width: 40px; height: 40px; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero-title span { font-size: 3.5rem; }
}

/* ---------- UTILITY ---------- */
.tracking-tighter { letter-spacing: -0.02em; }
.tracking-wider { letter-spacing: 0.06em; }

/* ============================================
   SUB-PAGE SHARED STYLES
   ============================================ */

/* ---------- NAV ACTIVE STATE ---------- */
.nav-link.active {
  color: var(--accent);
}

/* ---------- SUB-PAGE HERO BANNER ---------- */
.page-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--bg-primary);
}

@media (min-width: 768px) {
  .page-hero { min-height: 400px; }
}

.page-hero-img {
  position: absolute;
  inset: 0;
}

.page-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.42) saturate(0.72) contrast(1.08);
  transform: scale(1.02);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
  radial-gradient(circle at 20% 35%, rgba(90, 31, 37, 0.24), transparent 24rem),
  radial-gradient(circle at 78% 20%, rgba(200, 164, 92, 0.12), transparent 20rem),
  linear-gradient(
    to top,
    rgba(10, 10, 8, 0.9) 0%,
    rgba(10, 10, 8, 0.4) 60%,
    rgba(10, 10, 8, 0.3) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 20px 48px;
  width: 100%;
  z-index: 2;
}

@media (min-width: 768px) {
  .page-hero-content { padding: 100px 32px 56px; }
}

/* ---------- PRODUCT DETAIL CARD ---------- */
.product-detail-card {
  background: var(--bg-card);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  box-shadow: inset 0 0 0 1px rgba(232, 226, 214, 0.04);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.product-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(200, 164, 92, 0.14);
}

.product-detail-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.7);
  transition: filter 0.4s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-detail-card:hover .product-detail-img {
  filter: brightness(0.8) saturate(0.8);
  transform: scale(1.03);
}

@media (min-width: 768px) {
  .product-detail-img { height: 320px; }
}

.product-detail-body {
  padding: 24px;
}

/* ---------- TASTING STEPS ---------- */
.tasting-step {
  text-align: center;
  padding: 24px;
  position: relative;
}

.tasting-step-num {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-family: "Songti SC", "STSong", "SimSun", serif;
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 16px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.tasting-step:hover .tasting-step-num {
  border-color: var(--accent);
  background: rgba(200, 164, 92, 0.08);
}

/* ---------- TIMELINE ---------- */
.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  padding-bottom: 40px;
  padding-left: 24px;
}

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

.timeline-item::before {
  content: '';
  position: absolute;
  left: -37px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 2px solid var(--accent);
  z-index: 1;
}

.timeline-year {
  color: var(--accent);
  font-family: "Songti SC", "STSong", "SimSun", serif;
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 8px;
}

/* ---------- VALUE CARD ---------- */
.value-card {
  padding: 32px 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, rgba(232, 226, 214, 0.025), rgba(232, 226, 214, 0.008));
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.value-card:hover {
  border-color: rgba(200, 164, 92, 0.3);
  background: rgba(200, 164, 92, 0.03);
  transform: translateY(-4px);
}

.value-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(200, 164, 92, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}

/* ---------- HONOR CARD ---------- */
.honor-card {
  padding: 20px 24px;
  border-left: 2px solid var(--accent);
  background: linear-gradient(90deg, rgba(200, 164, 92, 0.08), rgba(21, 21, 19, 0.9));
  border-radius: 0 6px 6px 0;
}

/* ---------- TEAM CARD ---------- */
.team-card {
  text-align: center;
  padding: 24px;
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  background: var(--bg-tertiary);
  border: 2px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
  font-family: "Songti SC", "STSong", "SimSun", serif;
  font-size: 1.5rem;
  font-weight: bold;
}

/* ---------- CTA SECTION ---------- */
.cta-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 20%, rgba(90, 31, 37, 0.24), transparent 22rem),
    linear-gradient(135deg, rgba(200, 164, 92, 0.1) 0%, rgba(99, 114, 99, 0.06) 46%, transparent 72%);
  border: 1px solid rgba(200, 164, 92, 0.15);
  border-radius: 8px;
  padding: 48px 32px;
  text-align: center;
}

/* ---------- PREMIUM INTERACTION LAYER ---------- */
h1, h2, h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.hero-title span,
.page-hero-content h1 {
  text-shadow: 0 20px 70px rgba(0, 0, 0, 0.55);
}

.page-hero-content::before {
  content: '';
  display: block;
  width: 56px;
  height: 1px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.bento-card,
.product-card,
.product-detail-card,
.value-card,
.social-link,
.back-to-top {
  will-change: transform;
}

.magnetic-hover {
  transform: translate3d(var(--tx, 0), var(--ty, 0), 0);
}

.news-card {
  position: relative;
  border-radius: 8px;
  padding: 1px;
  background: linear-gradient(145deg, rgba(200, 164, 92, 0.2), rgba(232, 226, 214, 0.03), transparent);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.35s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(145deg, rgba(200, 164, 92, 0.36), rgba(90, 31, 37, 0.18), transparent);
}

.news-card > * {
  border-radius: 7px;
}

  .hero-bg img {
    animation: heroBreath 14s ease-in-out infinite alternate;
  }

  .hero-mist {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.34;
    background:
      radial-gradient(ellipse at 20% 70%, rgba(232, 226, 214, 0.12), transparent 34rem),
      radial-gradient(ellipse at 72% 42%, rgba(200, 164, 92, 0.1), transparent 28rem);
    mix-blend-mode: screen;
    animation: mistDrift 18s ease-in-out infinite alternate;
  }

  .hero-title span {
    position: relative;
  }

  .hero-title span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.14em;
    width: min(220px, 48vw);
    height: 1px;
    background: linear-gradient(90deg, rgba(200, 164, 92, 0.9), transparent);
    transform-origin: left;
    animation: titleLineReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.95s both;
  }

  .section-anchor {
    position: absolute;
    top: -80px;
  }

  @keyframes heroBreath {
    from { transform: scale(1); }
    to { transform: scale(1.055); }
  }

  @keyframes mistDrift {
    from { transform: translate3d(-2%, 1%, 0) scale(1); }
    to { transform: translate3d(3%, -2%, 0) scale(1.08); }
  }

  @keyframes titleLineReveal {
    from { transform: scaleX(0); opacity: 0; }
    to { transform: scaleX(1); opacity: 1; }
  }

  .product-card::after,
  .product-detail-card::after {
    content: '';
    position: absolute;
    inset: 1px;
    z-index: 2;
    pointer-events: none;
    border-radius: inherit;
    border: 1px solid rgba(200, 164, 92, 0);
    box-shadow: inset 0 0 40px rgba(200, 164, 92, 0);
    transition: border-color 0.35s ease, box-shadow 0.35s ease;
  }

  .product-card:hover::after,
  .product-detail-card:hover::after {
    border-color: rgba(200, 164, 92, 0.18);
    box-shadow: inset 0 0 44px rgba(200, 164, 92, 0.07);
  }

  .product-tag {
    box-shadow: 0 0 0 rgba(200, 164, 92, 0);
    transition: box-shadow 0.35s ease, background 0.35s ease;
  }

  .product-card:hover .product-tag,
  .product-detail-card:hover .product-tag {
    background: rgba(200, 164, 92, 0.22);
    box-shadow: 0 0 22px rgba(200, 164, 92, 0.16);
  }

  .contact-cta-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 32px;
    align-items: center;
    padding: 36px;
    border: 1px solid rgba(200, 164, 92, 0.16);
    border-radius: 10px;
    background:
      radial-gradient(circle at 12% 0%, rgba(200, 164, 92, 0.11), transparent 24rem),
      radial-gradient(circle at 86% 80%, rgba(90, 31, 37, 0.2), transparent 20rem),
      rgba(21, 21, 19, 0.72);
    box-shadow: inset 0 0 0 1px rgba(232, 226, 214, 0.03);
  }

  .reservation-card {
    padding: 22px;
    border: 1px solid rgba(200, 164, 92, 0.16);
    border-radius: 8px;
    background:
      radial-gradient(circle at 12% 0%, rgba(200, 164, 92, 0.11), transparent 15rem),
      rgba(21, 21, 19, 0.72);
    box-shadow: inset 0 0 0 1px rgba(232, 226, 214, 0.03);
  }

  .reservation-kicker {
    color: var(--accent);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
  }

  .reservation-form {
    display: grid;
    gap: 10px;
  }

  .reservation-form input,
  .reservation-form select {
    width: 100%;
    min-height: 40px;
    padding: 0 12px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: rgba(10, 10, 8, 0.58);
    color: var(--text-primary);
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease;
  }

  .reservation-form input::placeholder {
    color: var(--text-muted);
  }

  .reservation-form input:focus,
  .reservation-form select:focus {
    border-color: rgba(200, 164, 92, 0.62);
    background: rgba(10, 10, 8, 0.82);
  }

  .reservation-form button {
    min-height: 42px;
    border: 1px solid var(--accent);
    border-radius: 4px;
    background: var(--accent);
    color: var(--bg-primary);
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  }

  .reservation-form button:hover {
    background: var(--accent-light);
    box-shadow: 0 12px 28px rgba(200, 164, 92, 0.18);
    transform: translateY(-1px);
  }

  .reservation-form select {
    color-scheme: dark;
  }

  .news-card:hover {
    transform: none;
    background: linear-gradient(145deg, rgba(200, 164, 92, 0.2), rgba(232, 226, 214, 0.03), transparent);
  }

  .news-card img {
    transition: transform 0.5s ease, filter 0.5s ease;
  }

  .news-card:hover img {
    transform: scale(1.025);
    filter: brightness(0.9) saturate(0.85);
  }

  @media (prefers-reduced-motion: reduce) {
    .hero-bg img,
    .hero-mist,
    .hero-title span::after {
      animation: none !important;
    }
  }

.nav-link.active::after {
  width: 100%;
  background: linear-gradient(90deg, var(--accent), rgba(200, 164, 92, 0.2));
}

@media (max-width: 767px) {
  .contact-cta {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .contact-cta-card {
    display: block;
    padding: 22px 18px;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(200, 164, 92, 0.08), rgba(21, 21, 19, 0.78));
  }

  .contact-cta-card h2 {
    font-size: 1.55rem;
    line-height: 1.25;
    margin-top: 0.55rem;
    margin-bottom: 0.65rem;
  }

  .contact-cta-card p {
    font-size: 0.86rem;
    line-height: 1.7;
    margin-bottom: 1.1rem;
  }

  .reservation-kicker {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .reservation-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    width: 100%;
  }

  .reservation-form input,
  .reservation-form select,
  .reservation-form button {
    width: 100%;
    min-width: 0;
    height: 42px;
    min-height: 42px;
    font-size: 0.84rem;
  }

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

  .craft-step {
    min-width: 0;
    padding: 14px 12px;
    border-left: 0;
    border: 1px solid rgba(200, 164, 92, 0.12);
    border-radius: 8px;
    background: rgba(21, 21, 19, 0.52);
  }

  .craft-step::before {
    display: none;
  }

  .craft-icon-wrap {
    width: 34px;
    height: 34px;
    margin-bottom: 8px;
  }

  .craft-icon {
    width: 18px;
    height: 18px;
  }

  .step-num {
    font-size: 1.5rem !important;
  }

  .craft-step h3 {
    font-size: 0.95rem !important;
    margin-top: 0.35rem !important;
    margin-bottom: 0.35rem !important;
  }

  .craft-step p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.74rem;
    line-height: 1.55;
  }

  .craft-step:last-child {
    grid-column: 1 / -1;
  }
}
