/* Wakamoni — black & white landing */

:root {
  --bg: #f5f5f5;
  --bg-white: #ffffff;
  --ink: #000000;
  --muted: #666666;
  --muted-light: #888888;
  --border: #d0d0d0;
  --overlay: rgba(0, 0, 0, 0.78);
  --quote-bar: rgba(40, 40, 40, 0.72);
  --font: "Ubuntu", system-ui, sans-serif;
  --header-h: 72px;
  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100% - 3rem, var(--container));
  margin-inline: auto;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  padding: 0.85rem 1.5rem;
  border-radius: 4px;
  border: 1.5px solid var(--ink);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s var(--ease), color 0.2s var(--ease),
    transform 0.2s var(--ease);
}

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

.btn-solid {
  background: var(--ink);
  color: var(--bg-white);
}

.btn-solid:hover {
  background: #222;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
}

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

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  min-height: var(--header-h);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
}

.logo:hover {
  text-decoration: none;
}

.logo-mark {
  display: block;
  height: 36px;
  width: auto;
  flex-shrink: 0;
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 1.75rem;
}

.site-nav a {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  padding: 0.25rem 0;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--ink);
  text-decoration: none;
}

.site-nav a.is-active {
  font-weight: 500;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: none;
  background: transparent;
  cursor: pointer;
  justify-self: end;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  transition: transform 0.25s var(--ease), opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */

.hero {
  padding: 4rem 0 5rem;
  background: var(--bg-white);
}

.hero-content {
  max-width: 52rem;
}

.hero h1 {
  font-size: clamp(1.75rem, 4.2vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* Products showcase */

.products {
  padding: 0 0 5rem;
  background-color: #fbfbf2;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  width: min(100% - 2rem, 1280px);
  margin-inline: auto;
  padding-top: 2rem;
}

.product-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  min-height: 520px;
  background: #ddd;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

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

.product-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.25rem;
  color: var(--bg-white);
  pointer-events: none;
}

.product-overlay-inner {
  background: var(--overlay);
  padding: 1.25rem 1.35rem 1.4rem;
  pointer-events: auto;
}

.product-mark {
  margin-bottom: 0.75rem;
  color: var(--bg-white);
}

.product-overlay h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
}

.product-overlay p {
  font-size: 0.8125rem;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1rem;
}

.product-meta {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  font-size: 0.75rem;
}

.product-meta div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.product-meta dt {
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
}

.product-meta dd {
  margin: 0;
  font-weight: 400;
  text-align: right;
}

.product-meta a {
  color: var(--bg-white);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Mission */

.mission {
  padding: 0 0 5rem;
  background-color: #fbfbf2;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(100% - 2rem, 1280px);
  margin-inline: auto;
  min-height: 560px;
}

.mission-panel {
  background: var(--ink);
  color: var(--bg-white);
  padding: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3rem;
}

.mission-panel h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.015em;
  max-width: 22ch;
}

.mission-points {
  display: grid;
  gap: 1.5rem;
}

.mission-point h3 {
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.mission-point p {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  max-width: 42ch;
}

.mission-media {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: #ccc;
  min-height: 420px;
}

.mission-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.mission-quote {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 1.35rem 1.5rem;
  background: var(--quote-bar);
  color: var(--bg-white);
  font-size: 0.9rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
}

/* About page */

.about-hero {
  padding: 0;
  background: var(--bg-white);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  width: min(100% - 2rem, 1280px);
  margin-inline: auto;
  min-height: min(72vh, 640px);
  gap: 0;
  padding-top: 2rem;
}

.about-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 4vw, 3.5rem)
    clamp(2.5rem, 4vw, 3.5rem) 0;
  max-width: none;
}

.about-eyebrow {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}

.about-hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
  max-width: 16ch;
}

.about-lead {
  display: grid;
  gap: 1rem;
  max-width: 36rem;
}

.about-lead p {
  font-size: 1.0625rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
}

.about-hero-media {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: #ddd;
  min-height: 480px;
}

.about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.7s var(--ease);
}

.about-hero-media:hover img {
  transform: scale(1.04);
}

.about-mosaic {
  padding: 0.65rem 0 0;
  background-color: #fbfbf2;
}

.about-mosaic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  width: min(100% - 2rem, 1280px);
  margin-inline: auto;
}

.about-mosaic-item {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #ddd;
  min-height: 280px;
}

.about-mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.about-mosaic-item:hover img {
  transform: scale(1.04);
}

.about-section {
  padding: 4.5rem 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border);
}

.about-section--cream {
  background-color: #fbfbf2;
  border-top: none;
}

.about-split {
  display: grid;
  grid-template-columns: minmax(10rem, 0.35fr) 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.about-split-label h2,
.about-principles-intro h2,
.about-product-copy h2,
.about-why-copy h2,
.about-closing h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

.about-split-body {
  display: grid;
  gap: 1.1rem;
  max-width: 40rem;
}

.about-split-body p,
.about-product-copy p,
.about-why-copy p,
.about-closing-inner > p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
}

.about-why {
  padding: 0 0 5rem;
  background-color: #fbfbf2;
}

.about-why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  width: min(100% - 2rem, 1280px);
  margin-inline: auto;
}

.about-why-copy {
  background: var(--ink);
  color: var(--bg-white);
  padding: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.15rem;
}

.about-why-copy h2 {
  color: var(--bg-white);
  margin-bottom: 0.5rem;
}

.about-why-copy p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 38ch;
}

.about-why-media {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: #ccc;
  min-height: 420px;
}

.about-why-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.7s var(--ease);
}

.about-why-media:hover img {
  transform: scale(1.04);
}

.about-why-statement {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 1.35rem 1.5rem;
  background: var(--quote-bar);
  color: var(--bg-white);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.55;
}

.about-product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  width: min(100% - 2rem, 1280px);
  margin-inline: auto;
  align-items: stretch;
}

.about-product-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.1rem;
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1rem, 3vw, 2rem)
    clamp(1.5rem, 3vw, 2.5rem) 0;
  max-width: 38rem;
}

.about-product-copy h2 {
  margin-bottom: 0.35rem;
}

.about-product-copy strong {
  font-weight: 500;
  color: var(--ink);
}

.about-product-cta {
  justify-self: start;
  align-self: start;
  margin-top: 0.75rem;
}

.about-product-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  min-height: 520px;
  background: #ddd;
}

.about-product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.about-product-card:hover img {
  transform: scale(1.04);
}

.about-product-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.25rem;
  color: var(--bg-white);
}

.about-product-overlay-inner {
  background: var(--overlay);
  padding: 1.25rem 1.35rem 1.4rem;
}

.about-product-panel-label {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about-product-overlay h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.15rem;
}

.about-product-meta {
  display: grid;
  gap: 0.85rem;
  margin: 0;
}

.about-product-meta div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.about-product-meta dt {
  font-size: 0.8125rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
}

.about-product-meta dd {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 400;
  text-align: right;
}

.about-principles-intro {
  margin-bottom: 2.5rem;
}

.about-principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.about-principle {
  padding: clamp(1.75rem, 3vw, 2.25rem);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-principle h3 {
  font-size: 1.0625rem;
  font-weight: 500;
  margin-bottom: 0.65rem;
}

.about-principle p {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
  max-width: 36ch;
}

.about-closing {
  padding: 0;
  background: var(--ink);
  color: var(--bg-white);
}

.about-closing-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  width: min(100% - 2rem, 1280px);
  margin-inline: auto;
  min-height: 520px;
}

.about-closing-inner {
  max-width: 36rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.15rem;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem)
    clamp(3rem, 6vw, 5rem) 0;
}

.about-closing h2 {
  color: var(--bg-white);
  margin-bottom: 0.5rem;
}

.about-closing-inner > p {
  color: rgba(255, 255, 255, 0.72);
}

.about-closing-tagline {
  margin-top: 1.25rem;
  font-size: clamp(1.25rem, 2.6vw, 1.75rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--bg-white) !important;
}

.about-closing-media {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: #333;
  min-height: 420px;
}

.about-closing-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  filter: saturate(0.85);
  transition: transform 0.7s var(--ease);
}

.about-closing-media:hover img {
  transform: scale(1.04);
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 3rem;
  background: var(--bg-white);
}

.footer-inner {
  display: grid;
  gap: 0.5rem;
}

.footer-logo {
  display: inline-block;
  text-decoration: none;
  width: fit-content;
}

.footer-logo:hover {
  text-decoration: none;
}

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

.footer-note {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--muted);
}

.footer-brand {
  font-weight: 500;
  font-size: 1rem;
}

.footer-meta,
.footer-copy {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--muted);
}

.footer-meta a,
.footer-copy a {
  color: var(--ink);
}

/* Reveal motion */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* Responsive */

@media (max-width: 960px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .product-card {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .product-card--featured {
    aspect-ratio: auto;
  }

  .product-card--featured img {
    height: auto;
    object-fit: contain;
  }

  .mission-grid {
    grid-template-columns: 1fr;
  }

  .mission-media {
    min-height: 480px;
  }

  .about-split {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .about-hero-grid,
  .about-why-inner,
  .about-product-showcase,
  .about-closing-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-content,
  .about-product-copy,
  .about-closing-inner {
    padding-right: 0;
    padding-left: 0;
  }

  .about-hero-media,
  .about-why-media,
  .about-closing-media {
    min-height: 420px;
  }

  .about-mosaic-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .about-mosaic-item {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

  .about-product-card {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .about-principles-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-inner {
    grid-template-columns: 1fr auto auto;
    gap: 0.75rem;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    padding-bottom: 1rem;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .header-cta {
    padding: 0.65rem 1rem;
    font-size: 0.8125rem;
  }

  .hero {
    padding: 2.5rem 0 3.5rem;
  }

  .about-hero-grid {
    padding-top: 1.25rem;
    min-height: 0;
  }

  .about-hero-content {
    padding-top: 1.5rem;
    padding-bottom: 2rem;
  }

  .about-section {
    padding: 3.25rem 0;
  }

  .container {
    width: min(100% - 2rem, var(--container));
  }
}

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

  .product-meta dd {
    text-align: left;
  }
}
