@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  color-scheme: dark;
  --bg: #060606;
  --bg-2: #0c0c0c;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.07);
  --surface-3: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f4f4f1;
  --muted: rgba(244, 244, 241, 0.7);
  --muted-2: rgba(244, 244, 241, 0.52);
  --accent: #8f1c1c;
  --accent-2: #bf2c2c;
  --accent-soft: rgba(143, 28, 28, 0.2);
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1220px;
  --gutter: clamp(1rem, 2vw, 1.5rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(191, 44, 44, 0.14), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.06), transparent 25%),
    linear-gradient(180deg, #050505 0%, #090909 48%, #060606 100%);
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 88%);
  opacity: 0.6;
}

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

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

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

.page-shell {
  position: relative;
  z-index: 1;
}

.container {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

body[data-page="home"] .section {
  padding: clamp(2.6rem, 4.5vw, 4.4rem) 0;
}

.hero.section {
  padding-top: clamp(2.2rem, 4vw, 3.6rem);
}

.section--tight {
  padding-top: 0;
}

.section--dark {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section--split {
  padding-bottom: clamp(2rem, 5vw, 4rem);
}

.section--cta {
  padding-top: 0;
}

.section-label,
.card-label,
.product-card__category,
.filter-chip,
.reason-card__number,
.timeline-item span,
.collection-card__index {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--muted-2);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.section-heading--compact {
  margin-bottom: 1rem;
}

.section-heading h2,
.split-layout__text h2,
.about-band__copy h2,
.cta-card h2,
.page-hero h1,
.hero h1,
.product-hero h1,
.story-card h2 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 0.96;
  letter-spacing: -0.05em;
  margin: 0;
}

.hero h1,
.page-hero h1,
.product-hero h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  max-width: 11ch;
}

.section-heading h2,
.split-layout__text h2,
.about-band__copy h2,
.cta-card h2,
.story-card h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  max-width: 13ch;
}

.hero__lede,
.section-copy,
.split-layout__text p,
.about-band__copy p,
.story-card p,
.page-hero p,
.product-hero__copy p,
.contact-form label span,
.contact-list span {
  color: var(--muted);
  font-size: 1rem;
}

.hero__lede,
.page-hero .hero__lede,
.product-hero .hero__lede {
  max-width: 58ch;
  margin-top: 1.35rem;
  font-size: 1.03rem;
}

body[data-page="home"] .hero__lede {
  max-width: 34ch;
}

body[data-page="home"] .hero h1 {
  max-width: 8ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.hero__facts {
  display: grid;
  gap: 0.65rem;
  margin: 1.7rem 0 0;
  padding: 0;
  list-style: none;
  max-width: 42rem;
}

.hero__facts li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--muted);
}

.hero__facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  background: var(--accent-2);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  color: white;
  box-shadow: 0 16px 32px rgba(143, 28, 28, 0.24);
}

.btn--primary:hover {
  border-color: rgba(255, 255, 255, 0.08);
}

.btn--secondary,
.btn--ghost,
.btn--link {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.btn--ghost:hover,
.btn--secondary:hover,
.btn--link:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.05);
}

.btn--link {
  border-color: transparent;
  background: transparent;
  padding-inline: 0;
  min-height: auto;
  color: var(--muted);
}

.text-link {
  color: var(--text);
  opacity: 0.84;
  font-weight: 600;
}

.text-link:hover {
  opacity: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 25;
  backdrop-filter: blur(16px);
  background: rgba(6, 6, 6, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header__inner,
.site-footer__inner {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.brand__mark::before,
.brand__mark::after {
  content: none;
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand__text {
  display: grid;
  gap: 0.12rem;
}

.brand__text strong,
.brand__text span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.brand__text small {
  color: var(--muted-2);
  font-size: 0.74rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav__link {
  color: var(--muted);
  font-weight: 500;
}

.site-nav__link.is-active,
.site-nav__link:hover {
  color: var(--text);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.header-cta {
  display: inline-flex;
}

.mobile-panel {
  display: none;
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  padding: 0 0 1rem;
}

.mobile-panel__inner {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(15, 15, 15, 0.98);
  box-shadow: var(--shadow);
}

.mobile-panel__nav {
  display: grid;
  gap: 0.9rem;
}

.mobile-panel__nav a {
  padding: 0.8rem 0.95rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
}

.mobile-panel__nav a.is-active {
  border-color: rgba(191, 44, 44, 0.34);
  background: rgba(143, 28, 28, 0.18);
}

.hero__grid,
.page-hero__grid,
.product-hero__grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
}

.hero__grid {
  min-height: min(78vh, 840px);
}

.hero__visual--stacked {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.visual-card,
.detail-panel,
.cta-card,
.shop-banner,
.story-card,
.reason-card,
.timeline-item,
.material-card,
.collection-card,
.product-card,
.stat-card,
.contact-form,
.contact-sidebar .detail-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
}

.visual-card {
  position: relative;
  overflow: hidden;
}

.visual-card--hero {
  min-height: 330px;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 2.4vw, 1.5rem);
  background:
    radial-gradient(circle at 50% 18%, rgba(191, 44, 44, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
}

.visual-card--hero::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: calc(var(--radius-lg) - 8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.6;
  pointer-events: none;
}

.visual-card--hero img {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
}

.visual-card--brand {
  min-height: 180px;
  display: grid;
  place-items: center;
  padding: clamp(0.75rem, 1.5vw, 1rem);
  background: #ffffff;
}

.visual-card--brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.visual-card--compact {
  min-height: 250px;
}

.visual-card--note {
  margin-top: 1rem;
  padding: 1.1rem 1.2rem;
  background: rgba(255, 255, 255, 0.035);
}

.product-grid,
.collection-grid,
.reason-grid,
.timeline,
.material-grid,
.shop-grid,
.about-grid,
.contact-grid {
  display: grid;
  gap: 1.05rem;
}

.product-grid--featured,
.shop-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.collection-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.reason-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.timeline {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.material-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-grid,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-card,
.reason-card,
.timeline-item,
.story-card,
.material-card,
.contact-form,
.detail-panel,
.stat-card {
  padding: 1rem;
}

.product-card {
  overflow: hidden;
}

.product-card--compact {
  padding-bottom: 0.85rem;
}

.product-card__media {
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: calc(var(--radius-lg) - 8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
  overflow: hidden;
}

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

.product-card__body {
  display: grid;
  gap: 0.7rem;
  padding: 1rem 0.15rem 0.2rem;
}

.product-card--compact .product-card__body {
  gap: 0.45rem;
}

.product-card__body h3,
.reason-card h3,
.timeline-item h3,
.story-card h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.03em;
  font-size: 1.25rem;
}

.product-card__body p,
.reason-card p,
.timeline-item p,
.story-card p,
.detail-panel p,
.visual-card p {
  margin: 0;
  color: var(--muted);
}

.product-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.15rem;
}

.product-card--compact .product-card__actions {
  display: none;
}

.collection-card {
  position: relative;
  padding: 1.25rem;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.collection-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(191, 44, 44, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  opacity: 0;
  transition: opacity 180ms ease;
}

.collection-card:hover {
  transform: translateY(-3px);
  border-color: rgba(191, 44, 44, 0.28);
}

.collection-card:hover::before {
  opacity: 1;
}

.collection-card > * {
  position: relative;
  z-index: 1;
}

.collection-card h3 {
  margin: 0.7rem 0 0.45rem;
  font-size: 1.4rem;
  font-family: "Space Grotesk", sans-serif;
}

.collection-card p {
  margin: 0;
  color: var(--muted);
}

.collection-card__index {
  align-self: flex-start;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.65rem;
  background: rgba(255, 255, 255, 0.03);
}

.reason-card {
  position: relative;
  min-height: 220px;
}

.reason-card__number,
.timeline-item span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.9rem;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.15rem;
  align-items: start;
}

.split-layout__text {
  padding-right: clamp(0rem, 3vw, 2rem);
}

.detail-panel,
.visual-card,
.contact-form,
.contact-sidebar .detail-panel,
.cta-card,
.shop-banner,
.story-card,
.timeline-item,
.material-card,
.stat-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
}

.detail-panel--accent {
  background:
    radial-gradient(circle at top right, rgba(191, 44, 44, 0.22), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
}

.bullet-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  display: grid;
  gap: 0.6rem;
}

.about-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 1rem;
  align-items: center;
}

.about-band__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.stat-card strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
}

.cta-card,
.shop-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.2rem;
}

.page-hero__grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  min-height: clamp(320px, 42vw, 520px);
}

.page-hero__aside {
  padding: 1.2rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.2rem;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  cursor: pointer;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.filter-chip:hover,
.filter-chip.is-active {
  border-color: rgba(191, 44, 44, 0.34);
  background: rgba(143, 28, 28, 0.18);
  transform: translateY(-1px);
}

.shop-card.is-hidden {
  display: none;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.78fr);
  gap: 1rem;
}

.detail-layout__content {
  display: grid;
  gap: 1rem;
}

.content-block,
.detail-layout__sidebar {
  display: grid;
  gap: 1rem;
}

.spec-list {
  display: grid;
  gap: 0.95rem;
  margin: 0;
}

.spec-list div {
  display: grid;
  gap: 0.25rem;
}

.spec-list dt {
  color: var(--muted-2);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.spec-list dd {
  margin: 0;
  color: var(--text);
  font-weight: 500;
}

.timeline-item {
  min-height: 220px;
}

.timeline-item span {
  margin-bottom: 0.75rem;
}

.material-card {
  min-height: 118px;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  outline: none;
  transition:
    border-color 180ms ease,
    background-color 180ms ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(244, 244, 241, 0.36);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(191, 44, 44, 0.42);
  background: rgba(255, 255, 255, 0.045);
}

.contact-list {
  display: grid;
  gap: 1rem;
}

.contact-list div {
  display: grid;
  gap: 0.3rem;
}

.contact-list a {
  color: var(--text);
  font-weight: 600;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0 2rem;
}

.site-footer__inner {
  display: grid;
  gap: 1.3rem;
}

.footer__top,
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__nav a,
.footer__meta {
  color: var(--muted);
}

.footer__meta {
  font-size: 0.92rem;
}

body[data-page="home"] {
  --bg: #ffffff;
  --bg-2: #f6f6f4;
  --surface: rgba(10, 10, 10, 0.03);
  --surface-2: rgba(10, 10, 10, 0.05);
  --surface-3: rgba(10, 10, 10, 0.08);
  --line: rgba(0, 0, 0, 0.08);
  --line-strong: rgba(0, 0, 0, 0.12);
  --text: #111111;
  --muted: rgba(17, 17, 17, 0.68);
  --muted-2: rgba(17, 17, 17, 0.48);
  --shadow: 0 28px 60px rgba(18, 18, 18, 0.08);
}

body[data-page="home"] {
  background:
    radial-gradient(circle at top left, rgba(191, 44, 44, 0.08), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  color: var(--text);
}

body[data-page="home"] .page-shell--home {
  background: transparent;
}

body[data-page="home"] .home-header,
body[data-page="home"] .home-footer {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
}

body[data-page="home"] .home-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
}

body[data-page="home"] .home-header__inner,
body[data-page="home"] .home-footer__inner {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
}

body[data-page="home"] .home-header__inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

body[data-page="home"] .home-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

body[data-page="home"] .home-nav a {
  color: var(--muted);
  font-weight: 500;
}

body[data-page="home"] .home-nav a:hover,
body[data-page="home"] .home-nav a:focus-visible {
  color: var(--text);
}

body[data-page="home"] .brand--home .brand__mark {
  border-color: rgba(0, 0, 0, 0.08);
}

body[data-page="home"] .home-header__cta {
  min-height: 44px;
}

body[data-page="home"] .home-hero {
  padding: clamp(1.6rem, 3vw, 2.4rem) 0 clamp(1.6rem, 3vw, 2.4rem);
}

body[data-page="home"] .home-hero__grid {
  display: grid;
  gap: clamp(1.6rem, 4vw, 3rem);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  align-items: center;
  min-height: min(70vh, 720px);
}

body[data-page="home"] .home-hero__copy {
  max-width: 40rem;
}

body[data-page="home"] .home-brand {
  display: inline-flex;
  margin-bottom: 1.2rem;
}

body[data-page="home"] .home-brand img {
  width: min(100%, 340px);
  height: auto;
}

body[data-page="home"] .home-hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  margin: 0;
  max-width: 10ch;
}

body[data-page="home"] .home-hero p {
  max-width: 34ch;
  margin: 1.25rem 0 0;
  font-size: 1.06rem;
  color: var(--muted);
}

body[data-page="home"] .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.75rem;
}

body[data-page="home"] .home-hero__visual {
  display: flex;
  justify-content: flex-end;
}

body[data-page="home"] .home-placeholder {
  position: relative;
  width: min(100%, 560px);
  border-radius: 32px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 247, 245, 0.92));
  box-shadow: var(--shadow);
  overflow: hidden;
}

body[data-page="home"] .home-placeholder--hero {
  min-height: 380px;
  display: grid;
  place-items: center;
}

body[data-page="home"] .home-placeholder__plate {
  width: min(72%, 360px);
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 245, 244, 0.96));
  box-shadow:
    0 22px 40px rgba(10, 10, 10, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

body[data-page="home"] .home-placeholder__shadow {
  position: absolute;
  width: 46%;
  height: 24%;
  bottom: 18%;
  left: 27%;
  filter: blur(24px);
  background: rgba(0, 0, 0, 0.12);
  border-radius: 999px;
}

body[data-page="home"] .home-placeholder span {
  position: absolute;
  right: 1.25rem;
  bottom: 1.1rem;
  color: var(--muted-2);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body[data-page="home"] .home-section {
  padding: 0 0 clamp(1.3rem, 2.8vw, 2rem);
}

body[data-page="home"] .home-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

body[data-page="home"] .home-section__head--tight {
  margin-bottom: 0.9rem;
}

body[data-page="home"] .home-section__head p,
body[data-page="home"] .home-order p {
  margin: 0 0 0.45rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-size: 0.72rem;
}

body[data-page="home"] .home-section__head h2,
body[data-page="home"] .home-order h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  max-width: 12ch;
}

body[data-page="home"] .home-products {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body[data-page="home"] .home-product {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  padding: 0.9rem;
  display: grid;
  gap: 0.65rem;
}

body[data-page="home"] .home-product__art {
  position: relative;
  min-height: 132px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background:
    radial-gradient(circle at 75% 20%, rgba(191, 44, 44, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(250, 250, 249, 1), rgba(243, 243, 241, 1));
  overflow: hidden;
}

body[data-page="home"] .home-product__art::before {
  content: "";
  position: absolute;
  inset: 24% 20% 24% 20%;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(242, 242, 240, 0.9));
}

body[data-page="home"] .home-product__art span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  color: var(--muted-2);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

body[data-page="home"] .home-product h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

body[data-page="home"] .home-product p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 28ch;
}

body[data-page="home"] .home-gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body[data-page="home"] .home-gallery__tile {
  min-height: 112px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 247, 245, 0.95));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

body[data-page="home"] .home-gallery__tile::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background:
    radial-gradient(circle at 75% 20%, rgba(191, 44, 44, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(250, 250, 249, 1), rgba(242, 242, 240, 1));
}

body[data-page="home"] .home-gallery__tile span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  color: var(--muted-2);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

body[data-page="home"] .home-order {
  padding: 0 0 clamp(1.2rem, 3vw, 1.8rem);
}

body[data-page="home"] .home-order__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.1rem, 2.4vw, 1.5rem);
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(191, 44, 44, 0.08), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(249, 249, 248, 0.96));
  box-shadow: var(--shadow);
}

body[data-page="home"] .home-order__card h2 {
  max-width: 12ch;
}

body[data-page="home"] .home-order__card .btn {
  flex-shrink: 0;
}

body[data-page="home"] .home-footer {
  border-top: 1px solid var(--line);
}

body[data-page="home"] .home-footer__inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

body[data-page="home"] .home-footer__meta {
  margin: 0;
  color: var(--muted);
}

.reveal {
  opacity: 1;
  transform: none;
}

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

@media (max-width: 1080px) {
  body[data-page="home"] .home-hero__grid,
  body[data-page="home"] .home-order__card {
    grid-template-columns: 1fr;
    display: grid;
  }

  body[data-page="home"] .home-hero__grid {
    min-height: auto;
  }

  body[data-page="home"] .home-hero__visual {
    justify-content: flex-start;
  }

  body[data-page="home"] .home-placeholder--hero {
    min-height: 460px;
  }

  body[data-page="home"] .home-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="home"] .home-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid--featured,
  .shop-grid,
  .collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-band,
  .detail-layout,
  .split-layout,
  .hero__grid,
  .page-hero__grid,
  .product-hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    min-height: auto;
  }

  .hero__visual--stacked {
    gap: 0.85rem;
  }

  .hero__visual {
    order: -1;
  }

  .visual-card--brand {
    min-height: 170px;
  }

  .visual-card--hero {
    min-height: 320px;
  }

  .cta-card,
  .shop-banner,
  .footer__top,
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .home-header__inner {
    min-height: 74px;
  }

  body[data-page="home"] .home-nav,
  body[data-page="home"] .home-header__cta {
    display: none;
  }

  body[data-page="home"] .home-brand img {
    width: min(100%, 250px);
  }

  body[data-page="home"] .home-hero h1 {
    font-size: clamp(2.8rem, 12vw, 4rem);
    text-wrap: balance;
  }

  body[data-page="home"] .home-placeholder--hero {
    min-height: 340px;
  }

  body[data-page="home"] .home-products,
  body[data-page="home"] .home-gallery {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .home-order__card,
  body[data-page="home"] .home-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-panel.is-open {
    display: block;
  }

  .product-grid--featured,
  .shop-grid,
  .collection-grid,
  .reason-grid,
  .timeline,
  .material-grid,
  .about-grid,
  .contact-grid,
  .about-band__stats {
    grid-template-columns: 1fr;
  }

  .section-heading {
    flex-direction: column;
    align-items: start;
  }

  .hero h1,
  .page-hero h1,
  .product-hero h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 11vw, 3.4rem);
    text-wrap: balance;
  }

  .section-heading h2,
  .split-layout__text h2,
  .about-band__copy h2,
  .cta-card h2,
  .story-card h2 {
    font-size: clamp(1.8rem, 11vw, 2.8rem);
  }

  .visual-card--hero {
    min-height: 300px;
  }

  .visual-card--brand {
    min-height: 160px;
  }

  .hero__facts {
    padding-left: 1.1rem;
  }

  .cta-card,
  .shop-banner {
    padding: 1rem;
  }
}

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

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