@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500&display=swap');

/* ── Tokens ── */
:root {
  --ink:      #111111;
  --canvas:   #ffffff;
  --cloud:    #f5f5f5;
  --line:     #cacacb;
  --charcoal: #39393b;
  --mute:     #707072;
  --nav-h:    64px;
  --max:      1440px;
  --gutter:   48px;
  --gap:      96px;
}

/* ── Accessibility / SEO ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--canvas);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ── Placeholders ── */
.ph          { background: var(--cloud); width: 100%; }
.ph-dark     { background: #1c1c1c; }
.ph-4-5      { aspect-ratio: 4/5; }
.ph-1-1      { aspect-ratio: 1/1; }
.ph-4-3      { aspect-ratio: 4/3; }
.ph-16-9     { aspect-ratio: 16/9; }
.ph-21-9     { aspect-ratio: 21/9; }

/* ── Wrap ── */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── Eyebrow ── */
.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 12px;
}
.eyebrow.light { color: rgba(255,255,255,0.55); }

/* ── Nav ── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  z-index: 100;
  color: var(--canvas);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.nav.scrolled {
  background: var(--canvas);
  border-bottom-color: var(--line);
  color: var(--ink);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 32px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #595757;
  transition: opacity 0.15s;
}
.nav-links a:hover { opacity: 0.4; }

/* ── Hero ── */
.hero {
  position: relative;
}

.hero-bg {
  display: block;
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
}

.hero-text {
  position: absolute;
  bottom: 48px;
  left: var(--gutter);
}

.hero-text h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 14vw, 200px);
  line-height: 0.85;
  color: var(--canvas);
}

.hero-text p {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  margin-top: 16px;
}

/* ── About ── */
.about { padding: var(--gap) 0; }

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 72px;
  align-items: center;
  margin-bottom: var(--gap);
}

.about-img {
  width: 100%;
  height: auto;
  display: block;
}

.about-logo {
  height: 48px;
  width: auto;
  display: block;
  margin-bottom: 24px;
}

.about-copy h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.about-copy p {
  font-size: 13px;
  line-height: 1.85;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.about-banner {
  position: relative;
  margin-bottom: var(--gap);
}

.banner-img {
  display: block;
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
}

.banner-text {
  position: absolute;
  bottom: 40px;
  left: calc(var(--gutter) * 2);
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #595757;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 48px;
}

.material-section {
  padding-top: var(--gap);
}

.material-head {
  display: flex;
  align-items: baseline;
  gap: 32px;
  margin-bottom: 40px;
}

.material-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
}

.material-sub {
  font-size: 13px;
  color: var(--mute);
}

.material-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0 24px;
}

.material-img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.material-info {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: 16px;
}

.material-info h3 {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.material-info p {
  font-size: 11px;
  line-height: 1.7;
  color: var(--mute);
}

/* ── Products ── */
.products {
  border-top: 1px solid var(--line);
  padding-top: var(--gap);
}

.products-head { margin-bottom: 56px; }

.products-head h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  letter-spacing: 0.02em;
}

.product { margin-bottom: 0; }

.product-editorial { position: relative; }

.product-editorial-img {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.product-overlay {
  position: absolute;
  bottom: 32px;
  left: var(--gutter);
  display: flex;
  align-items: flex-end;
  gap: 24px;
}

.product--light .product-overlay h3 {
  color: var(--ink);
}

.product--light .btn-img {
  background: var(--ink);
  color: var(--canvas);
}

.product-overlay h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 10vw, 120px);
  line-height: 0.9;
  color: var(--canvas);
  letter-spacing: 0.02em;
}

.product-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 64px;
  border-top: 1px solid var(--line);
}

.product-story-text {
  padding: 48px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-story-text.right { padding: 48px 0; }

.product-story-text p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--charcoal);
}

/* ── Buttons ── */
.btn-img {
  display: inline-flex;
  align-items: center;
  background: var(--canvas);
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 30px;
  margin-bottom: 8px;
  transition: opacity 0.15s;
}
.btn-img:hover { opacity: 0.75; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--canvas);
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 16px 32px;
  border-radius: 30px;
  transition: opacity 0.15s;
}
.btn-primary:hover { opacity: 0.75; }

.arr {
  width: 14px;
  height: 14px;
  display: inline-block;
  border: 2px solid currentColor;
  border-left: none;
  border-bottom: none;
  transform: rotate(45deg);
}

/* ── Order ── */
.order {
  position: relative;
  border-top: 1px solid var(--line);
}

.order-bg {
  display: block;
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
}

.order-copy {
  position: absolute;
  top: 50%;
  left: var(--gutter);
  transform: translateY(-50%);
}

.order-copy h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 0.9;
  color: var(--canvas);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.order-copy p {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 32px;
}

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--line);
  padding: 24px var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer .logo img { height: 24px; width: auto; display: block; }

.footer-copy {
  font-size: 11px;
  color: var(--mute);
  letter-spacing: 0.04em;
}

/* ── Responsive ── */
@media (max-width: 1023px) {
  :root { --gap: 64px; --gutter: 32px; }

  .material-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .about-intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-values {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-story {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .product-story-text,
  .product-story-text.right { padding: 32px 0; }
}

@media (max-width: 599px) {
  :root { --gap: 48px; --gutter: 20px; }

  .material-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .material-head {
    flex-direction: column;
    gap: 8px;
  }

  .nav-links { gap: 20px; }
  .nav-links a { font-size: 11px; letter-spacing: 0.06em; }

  .hero-text { bottom: 20px; }

  .banner-text { left: 20px; bottom: 20px; }

  .product-overlay {
    left: 20px;
    bottom: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .order-bg { display: none; }
  .order-copy {
    position: static;
    transform: none;
    background: var(--ink);
    padding: 56px 20px;
  }
}
