/* ==========================================================================
   GLOBAL KNIVES - MAIN STYLES
   Japanese precision. Forged steel. Cromova 18.
   ========================================================================== */

/* ==========================================================================
   LAYOUT
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container--narrow {
  max-width: var(--container-narrow);
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

h1 {
  font-size: var(--text-5xl);
  letter-spacing: var(--tracking-tight);
  text-transform: uppercase;
}

h2 {
  font-size: var(--text-4xl);
  letter-spacing: var(--tracking-tight);
  text-transform: uppercase;
}

h3 {
  font-size: var(--text-2xl);
  letter-spacing: var(--tracking-wide);
}

h4 {
  font-size: var(--text-xl);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-vermillion);
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--color-vermillion);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  height: var(--btn-height-md);
  padding: 0 var(--space-8);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--duration-normal) var(--ease-out);
  cursor: pointer;
}

.btn--primary {
  background: var(--color-ink);
  color: white;
  border: none;
}

.btn--primary:hover {
  background: var(--color-vermillion);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--accent {
  background: var(--color-vermillion);
  color: white;
  border: none;
}

.btn--accent:hover {
  background: var(--color-vermillion-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 16, 46, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--color-ink);
  border: 2px solid var(--color-ink);
}

.btn--outline:hover {
  background: var(--color-ink);
  color: white;
}

.btn--white {
  background: white;
  color: var(--color-ink);
  box-shadow: var(--shadow-md);
}

.btn--white:hover {
  background: var(--color-mist);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--ghost-light {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--lg {
  height: var(--btn-height-lg);
  padding: 0 var(--space-10);
  font-size: var(--text-base);
}

.btn--xl {
  height: var(--btn-height-xl);
  padding: 0 var(--space-12);
  font-size: var(--text-lg);
}

.btn--sm {
  height: var(--btn-height-sm);
  padding: 0 var(--space-5);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
}

.btn--block {
  width: 100%;
}

@media (max-width: 640px) {
  .btn--sm {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(229, 234, 237, 0.6);
  transition: all var(--duration-normal) var(--ease-out);
}

.header--dark {
  background: rgba(14, 17, 18, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.header--hidden {
  transform: translateY(-100%);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--font-medium);
  color: var(--color-ink);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  transition: color var(--duration-fast);
}

.header--dark .header__logo {
  color: white;
}

.header__logo:hover {
  color: var(--color-vermillion);
}

.header__dots {
  display: flex;
  gap: 3px;
  align-items: center;
}

.header__dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-vermillion);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.header__nav a {
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color var(--duration-fast);
  position: relative;
}

.header--dark .header__nav a {
  color: rgba(255, 255, 255, 0.75);
}

.header__nav a:hover {
  color: var(--color-vermillion);
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-vermillion);
  transition: width var(--duration-normal) var(--ease-out);
}

.header__nav a:hover::after {
  width: 100%;
}

.header__shop {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.header__menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.header__menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-ink);
  transition: all var(--duration-normal) var(--ease-out);
}

.header--dark .header__menu-toggle span {
  background: white;
}

.header__menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.header__menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 860px) {
  .header__nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
    padding: var(--space-6);
    background: white;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    transition: transform var(--duration-normal) var(--ease-out);
  }

  .header__nav.is-open {
    transform: translateY(0);
  }

  .header__nav a {
    width: 100%;
    padding: var(--space-3) 0;
    font-size: var(--text-base);
  }

  .header__menu-toggle {
    display: flex;
  }
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-ink);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(200, 16, 46, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(74, 82, 88, 0.3) 0%, transparent 55%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero__steel {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, #1A1F21 0%, #0E1112 45%, #1A1F21 100%);
}

.hero__blade-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 900px;
  aspect-ratio: 3 / 1;
  background: radial-gradient(ellipse at center, rgba(216, 224, 230, 0.18) 0%, transparent 65%);
  filter: blur(20px);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-12) var(--space-6);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

@media (max-width: 900px) {
  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-8);
  }
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
  padding: var(--space-2) var(--space-4);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 900px) {
  .hero__label {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero__label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-vermillion);
}

.hero__title {
  color: white;
  font-size: var(--text-6xl);
  line-height: 0.95;
  margin-bottom: var(--space-6);
}

.hero__title span {
  color: var(--color-vermillion);
}

@media (max-width: 768px) {
  .hero__title {
    font-size: var(--text-5xl);
  }
}

.hero__text {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin-bottom: var(--space-8);
  line-height: var(--leading-relaxed);
}

@media (max-width: 900px) {
  .hero__text {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero__actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .hero__actions {
    justify-content: center;
  }
}

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

.hero__knife {
  width: 100%;
  max-width: 560px;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
}

.hero__stats {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: var(--space-12);
  padding: var(--space-5) var(--space-10);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
}

@media (max-width: 768px) {
  .hero__stats {
    position: static;
    transform: none;
    margin-top: var(--space-8);
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-6);
    padding: var(--space-4) var(--space-6);
  }
}

.hero__stat-num {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: white;
  line-height: 1;
}

.hero__stat-num span {
  color: var(--color-vermillion);
}

.hero__stat-label {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  margin-top: var(--space-1);
}

/* Compact hero for interior pages */
.hero--compact {
  min-height: 460px;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
}

.hero--compact .hero__content {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 800px;
}

.hero--compact .hero__title {
  font-size: var(--text-5xl);
}

.hero--compact .hero__text {
  margin-left: auto;
  margin-right: auto;
  font-size: var(--text-lg);
}

@media (max-width: 768px) {
  .hero--compact {
    min-height: 380px;
  }

  .hero--compact .hero__title {
    font-size: var(--text-4xl);
  }
}

/* ==========================================================================
   SECTION HEADER (shared)
   ========================================================================== */

.section {
  padding: var(--space-24) 0;
}

.section--alt {
  background: var(--color-paper);
}

.section--dark {
  background: var(--color-ink);
  color: white;
}

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-16);
}

.section__header--left {
  text-align: left;
  margin-left: 0;
}

.section__title {
  margin-top: var(--space-4);
  margin-bottom: var(--space-4);
}

.section__intro {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
}

.section--dark .section__intro {
  color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   VALUES SECTION
   ========================================================================== */

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

@media (max-width: 900px) {
  .values__grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}

.value-card {
  padding: var(--space-10) var(--space-8);
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-vermillion), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-slow) var(--ease-out);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-stone);
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--color-mist);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-6);
  color: var(--color-ink);
}

.value-card__title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
  letter-spacing: var(--tracking-wide);
}

.value-card__text {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
}

/* ==========================================================================
   FEATURED / PRODUCT CARDS
   ========================================================================== */

.featured__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

@media (max-width: 1024px) {
  .featured__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .featured__grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-out);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-stone);
}

.product-card__image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-mist) 0%, var(--color-fog) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-10);
}

.product-card__image svg {
  width: 100%;
  max-height: 100%;
  transition: transform var(--duration-slow) var(--ease-out);
}

.product-card:hover .product-card__image svg {
  transform: scale(1.06) rotate(-1deg);
}

.product-card__badge {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  padding: var(--space-1) var(--space-3);
  background: var(--color-ink);
  color: white;
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  border-radius: var(--radius-xs);
}

.product-card__badge--accent {
  background: var(--color-vermillion);
}

.product-card__body {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card__cat {
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-vermillion);
  margin-bottom: var(--space-2);
}

.product-card__title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
  letter-spacing: var(--tracking-wide);
}

.product-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-5);
  flex-grow: 1;
}

.product-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.product-card__spec {
  padding: var(--space-1) var(--space-3);
  background: var(--color-mist);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--font-medium);
  color: var(--color-text-muted);
}

/* ==========================================================================
   STORY SECTION
   ========================================================================== */

.story {
  padding: var(--space-24) 0;
  background: linear-gradient(135deg, var(--color-ink) 0%, var(--color-ink-soft) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.story__pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(200, 16, 46, 0.1) 0%, transparent 40%);
}

.story__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .story__inner {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
}

.story__year {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  background: rgba(200, 16, 46, 0.15);
  border: 1px solid rgba(200, 16, 46, 0.4);
  color: var(--color-vermillion-light);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  letter-spacing: var(--tracking-wider);
  margin-bottom: var(--space-6);
}

.story__title {
  color: white;
  margin-bottom: var(--space-6);
}

.story__text {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: var(--space-5);
}

.story__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
  color: var(--color-vermillion-light);
  font-weight: var(--font-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  font-size: var(--text-sm);
  transition: gap var(--duration-fast);
}

.story__link:hover {
  gap: var(--space-3);
  color: white;
}

.story__visual {
  display: flex;
  justify-content: center;
}

.story__seal {
  width: 280px;
  height: 280px;
}

@media (max-width: 768px) {
  .story__seal {
    width: 220px;
    height: 220px;
  }
}

/* ==========================================================================
   PRODUCTS GRID
   ========================================================================== */

.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

@media (max-width: 1100px) {
  .products__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 800px) {
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }
}

@media (max-width: 480px) {
  .products__grid {
    grid-template-columns: 1fr;
  }
}

.product-card--compact .product-card__image {
  aspect-ratio: 1;
  padding: var(--space-6);
}

.product-card--compact .product-card__body {
  padding: var(--space-4) var(--space-5);
}

.product-card--compact .product-card__title {
  font-size: var(--text-base);
}

.product-card--compact .product-card__desc {
  font-size: var(--text-xs);
  margin-bottom: var(--space-4);
}

/* ==========================================================================
   PROOF / TRUST
   ========================================================================== */

.proof {
  padding: var(--space-20) 0;
  background: var(--color-ink);
  color: white;
}

.proof__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  text-align: center;
}

@media (max-width: 800px) {
  .proof__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-10);
  }
}

.proof__stat {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  color: white;
  line-height: 1;
  margin-bottom: var(--space-3);
}

.proof__stat span {
  color: var(--color-vermillion);
}

.proof__label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: var(--tracking-wide);
  line-height: var(--leading-relaxed);
}

/* ==========================================================================
   FEATURES STRIP (Cromova 18 / edge angle / handle)
   ========================================================================== */

.features-strip {
  padding: var(--space-20) 0;
  background: var(--color-mist);
}

.features-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2);
}

@media (max-width: 800px) {
  .features-strip__grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}

.feature-block {
  padding: var(--space-10) var(--space-8);
  text-align: center;
  background: white;
  border-radius: var(--radius-lg);
  transition: transform var(--duration-normal) var(--ease-out);
}

.feature-block:hover {
  transform: translateY(-4px);
}

.feature-block__num {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  color: var(--color-vermillion);
  line-height: 1;
  margin-bottom: var(--space-3);
}

.feature-block__title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
  letter-spacing: var(--tracking-wide);
}

.feature-block__text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
}

/* ==========================================================================
   COMPARISON TABLE
   ========================================================================== */

.compare {
  padding: var(--space-24) 0;
}

.compare__wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.compare__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  background: white;
}

.compare__table th,
.compare__table td {
  padding: var(--space-5) var(--space-6);
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.compare__table thead th {
  background: var(--color-ink);
  color: white;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--font-medium);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

.compare__table thead th:first-child {
  background: var(--color-ink-soft);
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-sm);
}

.compare__table tbody th {
  font-family: var(--font-sans);
  font-weight: var(--font-semibold);
  font-size: var(--text-sm);
  color: var(--color-text);
  background: var(--color-paper);
}

.compare__table tbody tr:hover {
  background: var(--color-mist);
}

.compare__table .yes {
  color: var(--color-success);
  font-weight: var(--font-semibold);
}

.compare__table .no {
  color: var(--color-text-light);
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

@media (max-width: 900px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
}

.testimonial {
  padding: var(--space-8);
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  position: relative;
}

.testimonial::before {
  content: '\201C';
  position: absolute;
  top: var(--space-4);
  right: var(--space-6);
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--color-fog);
}

.testimonial__stars {
  color: var(--color-vermillion);
  font-size: var(--text-base);
  letter-spacing: var(--tracking-wide);
  margin-bottom: var(--space-4);
}

.testimonial__text {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  font-style: italic;
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
  flex-grow: 1;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-vermillion), var(--color-ink));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-semibold);
  font-size: var(--text-sm);
  flex-shrink: 0;
}

.testimonial__name {
  display: block;
  font-weight: var(--font-semibold);
  color: var(--color-text);
  font-size: var(--text-sm);
}

.testimonial__location {
  font-size: var(--text-xs);
  color: var(--color-text-light);
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq__list {
  max-width: 820px;
  margin: 0 auto;
}

.faq__item {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-3);
  overflow: hidden;
  transition: border-color var(--duration-fast);
}

.faq__item[open] {
  border-color: var(--color-vermillion);
}

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-5) var(--space-6);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  text-align: left;
  color: var(--color-text);
  transition: background var(--duration-fast);
  gap: var(--space-4);
}

.faq__q:hover {
  background: var(--color-mist);
}

.faq__q-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-vermillion);
  transition: transform var(--duration-normal) var(--ease-out);
}

.faq__item[open] .faq__q-icon {
  transform: rotate(45deg);
}

.faq__a {
  padding: 0 var(--space-6) var(--space-5);
}

.faq__a p {
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
}

.faq__a p + p {
  margin-top: var(--space-3);
}

/* ==========================================================================
   NEWSLETTER / CTA
   ========================================================================== */

.newsletter {
  padding: var(--space-20) 0;
  background: var(--color-ink);
  color: white;
  position: relative;
  overflow: hidden;
}

.newsletter__pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 85% 20%, rgba(200, 16, 46, 0.18) 0%, transparent 45%);
}

.newsletter__inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.newsletter__title {
  color: white;
  margin-bottom: var(--space-3);
}

.newsletter__text {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-8);
  font-size: var(--text-lg);
}

.newsletter__form {
  display: flex;
  gap: var(--space-3);
}

.newsletter__input {
  flex: 1;
  height: var(--input-height);
  padding: 0 var(--space-5);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  font-size: var(--text-base);
  color: white;
  transition: all var(--duration-fast);
}

.newsletter__input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter__input:focus {
  outline: none;
  border-color: var(--color-vermillion);
  background: rgba(255, 255, 255, 0.12);
}

.newsletter__disclaimer {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.45);
  margin-top: var(--space-4);
}

@media (max-width: 480px) {
  .newsletter__form {
    flex-direction: column;
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  padding: var(--space-20) 0 var(--space-8);
  background: var(--color-ink-soft);
  color: rgba(255, 255, 255, 0.65);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

@media (max-width: 800px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
}

@media (max-width: 480px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

.footer__brand-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.footer__logo {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--font-medium);
  color: white;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
}

.footer__dots {
  display: flex;
  gap: 3px;
}

.footer__dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-vermillion);
}

.footer__tagline {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.55);
  line-height: var(--leading-relaxed);
  max-width: 380px;
}

.footer__heading {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  color: white;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__links a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--duration-fast);
}

.footer__links a:hover {
  color: var(--color-vermillion-light);
}

.footer__contact address {
  font-style: normal;
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

.footer__contact p {
  margin-bottom: var(--space-3);
}

.footer__contact a {
  color: rgba(255, 255, 255, 0.6);
}

.footer__contact a:hover {
  color: var(--color-vermillion-light);
}

.footer__social {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-5);
}

.footer__social a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--duration-fast);
}

.footer__social a:hover {
  color: var(--color-vermillion-light);
}

.footer__bottom {
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer__copy {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.35);
}

.footer__legal {
  display: flex;
  gap: var(--space-6);
}

.footer__legal a {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--duration-fast);
}

.footer__legal a:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   COOKIE BAR
   ========================================================================== */

.cookie-bar {
  position: fixed;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-toast);
  display: flex;
  align-items: center;
  gap: var(--space-5);
  padding: var(--space-5) var(--space-6);
  background: white;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  max-width: 92vw;
}

.cookie-bar[hidden] {
  display: none;
}

.cookie-bar__text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.cookie-bar__text a {
  color: var(--color-vermillion);
  text-decoration: underline;
}

.cookie-bar__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.cookie-bar__accept {
  background: var(--color-ink);
  color: white;
  height: 40px;
  padding: 0 var(--space-6);
  font-size: var(--text-sm);
}

.cookie-bar__accept:hover {
  background: var(--color-vermillion);
}

.cookie-bar__dismiss {
  width: 34px;
  height: 34px;
  font-size: var(--text-xl);
  color: var(--color-text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-fast);
}

.cookie-bar__dismiss:hover {
  background: var(--color-mist);
  color: var(--color-text);
}

/* ==========================================================================
   PROSE (about / privacy content)
   ========================================================================== */

.prose {
  max-width: 780px;
  margin: 0 auto;
}

.prose h2 {
  font-size: var(--text-2xl);
  margin-top: var(--space-12);
  margin-bottom: var(--space-4);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  font-size: var(--text-xl);
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
}

.prose p {
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-4);
}

.prose ul {
  list-style: disc;
  margin-left: var(--space-6);
  margin-bottom: var(--space-4);
}

.prose li {
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
  line-height: var(--leading-relaxed);
}

.prose strong {
  color: var(--color-text);
}

.prose a {
  color: var(--color-vermillion);
}

.prose a:hover {
  text-decoration: underline;
}

.prose__updated {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  margin-bottom: var(--space-4);
}

.prose__contact {
  background: var(--color-mist);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  margin-top: var(--space-4);
  border-left: 3px solid var(--color-vermillion);
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-12);
  align-items: start;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.form-group {
  margin-bottom: var(--space-5);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  margin-bottom: var(--space-2);
  color: var(--color-text);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  height: var(--input-height);
  padding: 0 var(--space-4);
  background: white;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: var(--text-base);
  color: var(--color-text);
  transition: border-color var(--duration-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-ink);
  outline: none;
}

.form-textarea {
  height: auto;
  min-height: 140px;
  padding: var(--space-4);
  resize: vertical;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%235A6166' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-4) center;
  padding-right: var(--space-12);
}

.contact-info {
  padding: var(--space-8);
  background: var(--color-mist);
  border-radius: var(--radius-lg);
}

.contact-info h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-5);
}

.contact-info__row {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
  align-items: flex-start;
}

.contact-info__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: white;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-vermillion);
}

.contact-info__label {
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: var(--space-1);
}

.contact-info__value {
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: var(--leading-relaxed);
}

.contact-info__value a {
  color: var(--color-vermillion);
}

/* ==========================================================================
   404 PAGE
   ========================================================================== */

.error-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: var(--space-8);
  text-align: center;
  background: var(--color-ink);
  color: white;
}

.error-page__code {
  font-family: var(--font-display);
  font-size: clamp(6rem, 18vw, 12rem);
  color: var(--color-vermillion);
  line-height: 1;
  margin-bottom: var(--space-4);
}

.error-page__title {
  color: white;
  margin-bottom: var(--space-4);
}

.error-page__text {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: var(--space-8);
  max-width: 460px;
}

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--duration-slow) var(--ease-out),
    transform var(--duration-slow) var(--ease-out);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"] {
  transition-delay: 80ms;
}

[data-reveal-delay="2"] {
  transition-delay: 160ms;
}

[data-reveal-delay="3"] {
  transition-delay: 240ms;
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-4 { margin-top: var(--space-4); }
.mb-4 { margin-bottom: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }
.mb-8 { margin-bottom: var(--space-8); }

/* ==========================================================================
   2026 VISUAL REFINEMENT
   Authentic product imagery, quieter surfaces, and responsive polish.
   ========================================================================== */

html {
  scroll-padding-top: calc(var(--header-height) + var(--space-6));
}

body {
  overflow-x: hidden;
}

.container {
  padding-inline: clamp(var(--space-5), 4vw, var(--space-8));
}

.section {
  padding-block: clamp(5rem, 8vw, 8rem);
}

.section__header {
  max-width: 760px;
  margin-bottom: clamp(var(--space-10), 5vw, var(--space-16));
}

.section__title {
  font-size: clamp(2.25rem, 4.2vw, 4.15rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.section__intro {
  max-width: 68ch;
  margin-inline: auto;
}

.btn {
  border-radius: 6px;
  transition-property: color, background-color, border-color, box-shadow, transform;
}

.header {
  top: 12px;
  left: 12px;
  right: 12px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.18);
}

.header--dark {
  background: rgba(12, 15, 16, 0.84);
  backdrop-filter: blur(22px) saturate(130%);
}

.header__inner {
  padding-inline: clamp(var(--space-4), 3vw, var(--space-6));
}

.header__logo {
  flex: 0 0 auto;
  width: 132px;
  height: 36px;
}

.header__brand-logo {
  width: 132px;
  height: 36px;
  object-fit: contain;
  object-position: left center;
}

.header--dark .header__brand-logo {
  filter: invert(1);
}

.header__nav {
  gap: clamp(var(--space-5), 2.5vw, var(--space-8));
}

.header__nav a {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

.hero {
  min-height: max(760px, 100svh);
  isolation: isolate;
}

.hero__steel {
  background:
    radial-gradient(circle at 10% 30%, rgba(200, 16, 46, 0.13), transparent 32%),
    linear-gradient(135deg, #121617 0%, #090b0c 56%, #151a1c 100%);
}

.hero__pattern {
  opacity: 0.75;
}

.hero__content {
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: clamp(var(--space-6), 4vw, var(--space-12));
  padding-top: calc(var(--header-height) + var(--space-20));
  padding-bottom: calc(var(--space-24) + var(--space-12));
}

.hero__title {
  max-width: 750px;
  font-size: clamp(4.25rem, 7.4vw, 7rem);
  letter-spacing: -0.055em;
}

.hero__text {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.72);
}

.hero__visual {
  min-width: 0;
  min-height: 440px;
  margin-right: -7vw;
}

.hero__image {
  width: min(820px, 116%);
  max-width: none;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-xl);
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.48);
  mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 100%);
}

.hero__blade-glow {
  opacity: 0.35;
}

.hero__stats {
  bottom: var(--space-6);
  gap: 0;
  padding: var(--space-5) var(--space-6);
  background: rgba(15, 18, 19, 0.62);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.hero__stats > div {
  min-width: 170px;
  padding-inline: var(--space-6);
}

.hero__stats > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.hero__stat-label {
  margin-top: var(--space-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero--compact {
  min-height: 520px;
}

.value-card,
.product-card,
.testimonial,
.faq__item {
  border-color: rgba(14, 17, 18, 0.09);
}

.value-card {
  border-radius: var(--radius-xl);
  box-shadow: 0 1px 0 rgba(14, 17, 18, 0.03);
}

.value-card:hover {
  transform: translateY(-4px);
}

.product-card {
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 28px rgba(14, 17, 18, 0.055);
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(14, 17, 18, 0.18);
}

.product-card__image {
  padding: 0;
  background: #f4f4f2;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.product-card:hover .product-card__image img {
  transform: scale(1.025);
}

.product-card__badge {
  z-index: 1;
  top: var(--space-5);
  left: var(--space-5);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

.product-card__body {
  padding: clamp(var(--space-5), 3vw, var(--space-8));
}

.product-card__title {
  letter-spacing: 0.02em;
}

.about-product-image {
  width: min(100%, 520px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-xl);
  filter: drop-shadow(0 24px 46px rgba(14, 17, 18, 0.14));
}

.footer__brand-logo {
  width: 150px;
  height: auto;
  filter: invert(1);
}

.cookie-bar {
  left: var(--space-5);
  bottom: var(--space-5);
  transform: none;
  width: min(520px, calc(100vw - 2.5rem));
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
}

@media (max-width: 1080px) {
  .hero__content {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  }

  .hero__stats > div {
    min-width: 145px;
    padding-inline: var(--space-4);
  }
}

@media (max-width: 900px) {
  .header__nav {
    top: 84px;
    left: 12px;
    right: 12px;
    padding: var(--space-4);
    background: rgba(14, 17, 18, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
  }

  .header__nav a,
  .header--dark .header__nav a {
    color: rgba(255, 255, 255, 0.88);
    padding: var(--space-3) var(--space-2);
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    grid-template-columns: 1fr;
    padding-top: calc(var(--header-height) + var(--space-20));
    padding-bottom: var(--space-10);
  }

  .hero__title {
    margin-inline: auto;
  }

  .hero__visual {
    min-height: 0;
    margin: 0;
  }

  .hero__image {
    width: min(760px, 100%);
    mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  }

  .hero__stats {
    margin: 0 auto var(--space-8);
  }
}

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

  .hero__content {
    width: 100%;
  }

  .hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: calc(100% - 2.5rem);
    padding: var(--space-4) 0;
  }

  .hero__stats > div {
    min-width: 0;
    padding-inline: var(--space-3);
  }

  .hero__stat-num {
    font-size: clamp(1.35rem, 5vw, 2rem);
  }
}

@media (max-width: 640px) {
  .header {
    top: 8px;
    left: 8px;
    right: 8px;
  }

  .header__shop {
    display: none;
  }

  .header__logo,
  .header__brand-logo {
    width: 116px;
  }

  .hero__content {
    text-align: left;
    padding-inline: var(--space-5);
  }

  .hero__label {
    margin-left: 0;
  }

  .hero__title {
    margin-inline: 0;
    font-size: clamp(3.45rem, 17vw, 5rem);
  }

  .hero__text {
    margin-left: 0;
    font-size: var(--text-base);
  }

  .hero__actions {
    justify-content: flex-start;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__image {
    width: calc(100% + 2.5rem);
    margin-inline: -1.25rem;
    border-radius: 0;
  }

  .hero__stats {
    width: calc(100% - 1rem);
  }

  .hero__stat-label {
    font-size: 0.62rem;
  }

  .cookie-bar {
    left: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
    gap: var(--space-3);
    align-items: center;
    padding: var(--space-3);
  }

  .cookie-bar__text {
    font-size: 0.75rem;
    line-height: 1.4;
  }

  .cookie-bar__actions {
    flex: 0 0 auto;
    gap: var(--space-1);
  }

  .cookie-bar__accept {
    min-height: 40px;
    padding-inline: var(--space-4);
  }
}

@media (max-width: 420px) {
  .cookie-bar__text {
    max-width: 170px;
  }
}

/* ==========================================================================
   EDITORIAL IMAGE PASS — INTERIOR HEROES, HERITAGE, REVIEWS
   ========================================================================== */

.hero--compact {
  min-height: 560px;
  overflow: hidden;
}

.hero--compact .hero__content {
  width: 100%;
  max-width: var(--container-max);
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1.18fr);
  gap: clamp(var(--space-8), 5vw, var(--space-16));
  padding-top: calc(var(--header-height) + var(--space-16));
  padding-bottom: var(--space-12);
  text-align: left;
}

.hero--compact .hero__title {
  font-size: clamp(3.35rem, 5.8vw, 5.8rem);
}

.hero--compact .hero__text {
  margin-left: 0;
  margin-right: 0;
}

.hero__visual--compact {
  min-height: 340px;
  margin-right: -6vw;
}

.hero__image--compact {
  width: min(760px, 118%);
  height: 350px;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-xl);
  mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 100%);
}

.hero--about .hero__image--compact {
  object-position: 68% center;
}

.hero--contact .hero__image--compact,
.hero--privacy .hero__image--compact {
  object-position: center;
}

.story__media {
  position: relative;
  width: min(100%, 500px);
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.story__image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.story__media::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: inherit;
  pointer-events: none;
}

.about-craft-media {
  box-shadow: 0 26px 60px rgba(14, 17, 18, 0.18);
}

.testimonial__avatar {
  object-fit: cover;
  object-position: center;
  border: 2px solid white;
  box-shadow: 0 0 0 1px rgba(14, 17, 18, 0.12), 0 6px 18px rgba(14, 17, 18, 0.14);
}

@media (max-width: 900px) {
  .hero--compact .hero__content {
    grid-template-columns: 1fr;
    max-width: 760px;
    text-align: center;
  }

  .hero--compact .hero__text {
    margin-inline: auto;
  }

  .hero__visual--compact {
    min-height: 0;
    margin: 0;
  }

  .hero__image--compact {
    width: 100%;
    height: clamp(240px, 42vw, 340px);
    mask-image: linear-gradient(90deg, transparent 0%, black 7%, black 93%, transparent 100%);
  }
}

/* ==========================================================================
   HOMEPAGE HERO COMPOSITION — COPY, ACTIONS, PROOF
   ========================================================================== */

.hero:not(.hero--compact) .hero__content {
  padding-bottom: var(--space-16);
}

.hero__copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__copy .hero__actions {
  margin-top: 0;
}

.hero__copy .hero__stats {
  position: static;
  inset: auto;
  transform: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  max-width: 620px;
  margin: var(--space-8) 0 0;
  padding: var(--space-4) 0;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.hero__copy .hero__stats > div {
  min-width: 0;
  padding-inline: clamp(var(--space-3), 2vw, var(--space-5));
}

.hero__copy .hero__stats > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.hero__copy .hero__stat-num {
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  white-space: nowrap;
}

.hero__copy .hero__stat-label {
  font-size: 0.65rem;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .hero__copy {
    align-items: center;
    text-align: center;
  }

  .hero__copy .hero__stats {
    width: min(100%, 620px);
    margin: var(--space-8) auto 0;
  }
}

@media (max-width: 640px) {
  .hero__copy {
    align-items: stretch;
    text-align: left;
  }

  .hero__copy .hero__stats {
    width: 100%;
    margin-top: var(--space-6);
    padding-block: var(--space-3);
  }

  .hero__copy .hero__stats > div {
    padding-inline: var(--space-2);
  }

  .hero__copy .hero__stat-num {
    font-size: clamp(1.3rem, 6vw, 1.7rem);
  }

  .hero__copy .hero__stat-label {
    font-size: 0.56rem;
  }

  .hero__copy .hero__stats > div:last-child .hero__stat-num {
    font-size: clamp(1.15rem, 5.25vw, 1.45rem);
  }
}

@media (max-width: 640px) {
  .hero--compact .hero__content {
    padding-top: calc(var(--header-height) + var(--space-12));
    padding-bottom: var(--space-8);
    text-align: left;
  }

  .hero--compact .hero__title {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .hero--compact .hero__text {
    margin-left: 0;
  }

  .hero__image--compact {
    width: calc(100% + 2.5rem);
    height: 230px;
    margin-inline: -1.25rem;
    border-radius: 0;
    mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
  }
}
