
:root {
  --bg: #ffffff;
  --surface: #f7f7f7;
  --text: #090909;
  --muted: #5e5e5e;
  --line: rgba(0, 0, 0, 0.08);
  --line-strong: rgba(0, 0, 0, 0.16);
  --black: #000000;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.07);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(1220px, calc(100% - 28px));
  margin: 0 auto;
}
.narrow { max-width: 760px; }
.section-space { padding: 72px 0; }
.section-space-small { padding: 0 0 72px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 12px 14px 14px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.header-top {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 88px;
}

.brand-centered {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-logo.large-logo {
  width: min(132px, 34vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.08));
}

.menu-toggle {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 58px;
  height: 58px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.96);
  color: var(--black);
  border-radius: 999px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--black);
  border-radius: 999px;
  transition: 0.25s ease;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  margin: 0 auto;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.98);
  box-shadow: var(--shadow);
}

.site-nav a {
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
  transition: 0.25s ease;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.active {
  background: var(--black);
  color: var(--white);
}

.full-screen-image {
  position: relative;
  min-height: calc(100svh - 138px);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}
.hero-media-1 {
  background-image: url('https://images.unsplash.com/photo-1515886657613-9f3515b0c78f?auto=format&fit=crop&w=1800&q=80');
}

.hero-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.74) 36%, rgba(255,255,255,0.16) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: calc(100svh - 138px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

h1, h2, p { margin-top: 0; }
h1 {
  margin-bottom: 20px;
  font-size: clamp(3.2rem, 9vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
}
h2 {
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}
p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
}

.hero-actions,
.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-light { background: rgba(255,255,255,0.9); border-color: var(--line); }

.page-hero {
  padding: 46px 0 12px;
}
.clean-hero h1 {
  max-width: 720px;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 20px;
}

.editorial-card,
.product-card,
.about-image-wrap,
.mini-values article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.editorial-card {
  position: relative;
  min-height: 540px;
}
.editorial-card img,
.about-image,
.product-image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-big .editorial-copy {
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 22px;
  background: rgba(255,255,255,0.9);
  border-radius: 24px;
  max-width: 360px;
}

.editorial-small {
  min-height: 540px;
  background: var(--surface);
}

.about-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: stretch;
}

.about-image-wrap {
  min-height: 620px;
  background: var(--surface);
}
.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 8px;
}
.about-copy p { max-width: 36ch; }

.mini-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.mini-values article {
  padding: 24px;
}
.mini-values span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 16px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.product-card {
  background: var(--surface);
}
.product-image-img {
  aspect-ratio: 1 / 1.15;
}
.product-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px 18px;
  background: var(--white);
}
.product-info h2 {
  font-size: 1.1rem;
  margin: 0;
  letter-spacing: -0.03em;
}
.product-info strong {
  font-size: 0.98rem;
}

.site-footer {
  padding: 30px 0 40px;
}
.footer-grid {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.site-footer strong {
  letter-spacing: 0.14em;
  font-size: 0.84rem;
}
.site-footer a {
  color: var(--muted);
  margin-left: 18px;
  font-weight: 600;
}

@media (max-width: 900px) {
  .editorial-grid,
  .about-layout,
  .mini-values,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .editorial-card,
  .editorial-small,
  .about-image-wrap {
    min-height: auto;
  }

  .editorial-card img,
  .about-image,
  .product-image-img {
    aspect-ratio: 1 / 1.12;
  }

  .full-screen-image {
    min-height: calc(92svh - 138px);
  }
  .hero-content {
    min-height: calc(92svh - 138px);
    justify-content: flex-end;
    padding-bottom: 42px;
  }
  .hero-fade {
    background: linear-gradient(0deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.55) 32%, rgba(255,255,255,0.12) 100%);
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 20px, 100%);
  }

  .site-header {
    padding: 10px 10px 12px;
  }

  .header-top {
    min-height: 82px;
  }

  .brand-logo.large-logo {
    width: min(140px, 42vw);
  }

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

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    left: 10px;
    right: 10px;
    top: 98px;
    display: grid;
    gap: 10px;
    padding: 12px;
    border-radius: 28px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
  }

  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    width: 100%;
    text-align: center;
    padding: 15px 18px;
    font-size: 1rem;
  }

  .hero-content {
    align-items: stretch;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    flex: 1 1 100%;
  }

  h1 {
    font-size: clamp(2.7rem, 16vw, 4.8rem);
  }

  .editorial-big .editorial-copy {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }

  .about-copy {
    padding: 6px 4px;
  }

  .site-footer a {
    margin-left: 0;
    margin-right: 14px;
  }
}
