:root {
  --ink: #111111;
  --muted: #666966;
  --line: #deded9;
  --paper: #f7f7f3;
  --white: #ffffff;
  --ice: #dfe9ed;
  --silver: #c8cdca;
  --shadow: 0 24px 80px rgba(17, 17, 17, 0.08);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(248, 248, 244, 0.66)),
    repeating-linear-gradient(90deg, rgba(17, 17, 17, 0.025) 0 1px, transparent 1px 130px);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(20px);
  background: rgba(247, 247, 243, 0.72);
}

.brand {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  letter-spacing: 0;
  font-weight: 600;
}

.nav {
  display: flex;
  gap: clamp(18px, 4vw, 52px);
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
}

.nav a,
.cart-button {
  transition: opacity 180ms ease;
}

.nav a:hover,
.cart-button:hover {
  opacity: 0.58;
}

.cart-button {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.cart-button strong {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.section {
  padding: clamp(76px, 10vw, 150px) clamp(18px, 5vw, 80px);
}

.hero {
  min-height: 68vh;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: center;
  padding-top: 72px;
  padding-bottom: 0;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 35vh;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(222, 233, 237, 0.38), transparent);
}

.eyebrow {
  margin: 0 0 22px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.96;
}

h1 {
  font-size: clamp(3.6rem, 7.6vw, 8.4rem);
}

h2 {
  font-size: clamp(2.6rem, 5.5vw, 6.6rem);
}

h3 {
  margin: 0;
  letter-spacing: 0;
}

.hero-copy p:not(.eyebrow),
.statement p,
.copy-panel > p,
.product-heading p,
.shop-header p,
.contact p {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 0;
  border: 1px solid var(--ink);
  cursor: pointer;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

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

.button.text {
  border-color: transparent;
  background: transparent;
}

.button.text::after {
  content: "->";
  margin-left: 12px;
}

.hero-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(48vh, 500px);
}

.hero-art::before {
  content: "";
  position: absolute;
  width: min(78vw, 680px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 35%, rgba(255, 255, 255, 0.98), rgba(223, 233, 237, 0.35) 48%, transparent 72%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(207, 215, 218, 0.38));
  filter: blur(0.5px);
}

.hero-art img {
  position: relative;
  width: min(80%, 560px);
  filter: drop-shadow(0 60px 70px rgba(17, 17, 17, 0.18));
}

.statement {
  min-height: 52vh;
  display: grid;
  place-items: center;
  padding-block: clamp(38px, 6vw, 76px);
  text-align: center;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.56);
}

.statement h2,
.statement p {
  max-width: 920px;
}

.statement p {
  margin-inline: auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr);
}

.split.reverse .copy-panel {
  order: -1;
}

.visual-panel {
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.visual-panel img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.visual-panel.certificate {
  display: grid;
  place-items: center;
  min-height: auto;
  padding: clamp(12px, 2vw, 22px);
}

.certificate img {
  height: auto;
  min-height: 0;
  object-fit: contain;
  object-position: center;
}

.copy-panel {
  padding: clamp(18px, 3vw, 36px);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 38px;
  background: var(--line);
  border: 1px solid var(--line);
}

.value-grid div,
.benefit-row article,
.commerce-grid article {
  background: rgba(255, 255, 255, 0.72);
  padding: 24px;
}

.value-grid span,
.benefit-row span {
  display: block;
  margin-bottom: 14px;
  color: var(--silver);
  font-size: 2.7rem;
  font-family: "Cormorant Garamond", serif;
  line-height: 1;
}

.value-grid strong,
.commerce-grid strong {
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.value-grid p,
.benefit-row p,
.commerce-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.product {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.product-heading,
.shop-header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.5fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 42px;
}

.product-heading p,
.shop-header p {
  margin: 0;
}

.product-stage {
  border: 1px solid var(--line);
  overflow: hidden;
  background: #f2f2ef;
}

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

.benefit-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1px;
  background: var(--line);
}

.benefit-row h3 {
  margin-bottom: 12px;
  text-transform: uppercase;
}

.shop {
  background:
    linear-gradient(180deg, rgba(223, 233, 237, 0.38), transparent 40%),
    var(--paper);
}

.product-list {
  display: grid;
  gap: 18px;
}

.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.category-filter button {
  min-height: 38px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  padding: 0 14px;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
}

.category-filter button.is-active {
  border-color: var(--ink);
  color: var(--white);
  background: var(--ink);
}

.product-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.72fr);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.product-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: contain;
  padding: clamp(28px, 5vw, 68px);
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.95), rgba(223, 233, 237, 0.34) 55%, transparent 72%),
    #f2f4f1;
}

.product-card > div {
  padding: clamp(28px, 5vw, 64px);
  align-self: center;
}

.product-card h3 {
  margin-bottom: 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4vw, 4.8rem);
  line-height: 1;
}

.product-card p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 18px;
}

.product-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.product-benefits li {
  padding: 8px 10px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-buy-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.product-buy-row strong {
  font-size: 0.9rem;
  text-transform: uppercase;
}

.commerce-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-top: 0;
}

.commerce-admin {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.admin-grid article {
  min-height: 260px;
  padding: clamp(24px, 4vw, 42px);
  background: rgba(247, 247, 243, 0.78);
}

.admin-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 62px;
  height: 34px;
  margin-bottom: 34px;
  border: 1px solid var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
}

.admin-grid h3 {
  margin-bottom: 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1;
}

.admin-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 0.72fr);
  gap: clamp(30px, 6vw, 96px);
  background: #111;
  color: var(--white);
}

.contact p {
  color: #c9c9c5;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 14px 16px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--white);
}

.contact .button.dark {
  border-color: var(--white);
  color: var(--ink);
  background: var(--white);
}

.form-note {
  min-height: 1.4em;
  font-size: 0.92rem;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  justify-items: end;
  background: rgba(17, 17, 17, 0);
  pointer-events: none;
  transition: background 220ms ease;
}

.cart-drawer.is-open {
  background: rgba(17, 17, 17, 0.35);
  pointer-events: auto;
}

.cart-drawer__panel {
  width: min(100%, 430px);
  min-height: 100%;
  padding: 34px;
  background: var(--paper);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

.cart-drawer.is-open .cart-drawer__panel {
  transform: translateX(0);
}

.cart-close {
  float: right;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  font-size: 1.5rem;
}

.cart-items {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
}

.cart-total {
  border-color: var(--ink);
}

.cart-note {
  margin-top: 28px;
  color: var(--muted);
  line-height: 1.7;
}

.cart-checkout {
  width: 100%;
  margin-top: 16px;
}

.payment-box {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--white);
}

.payment-box strong {
  text-transform: uppercase;
  font-size: 0.78rem;
}

.payment-box span {
  color: var(--muted);
  line-height: 1.55;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 80px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer strong {
  color: var(--ink);
}

.reveal {
  animation: rise 740ms ease both;
}

.delay-1 {
  animation-delay: 120ms;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .nav {
    display: none;
  }

  .hero,
  .split,
  .split.reverse,
  .product-heading,
  .shop-header,
  .product-card,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-art {
    min-height: 420px;
  }

  .split.reverse .copy-panel {
    order: 0;
  }

  .benefit-row,
  .commerce-grid,
  .admin-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .visual-panel,
  .visual-panel img,
  .product-card img {
    min-height: 320px;
  }

  .visual-panel.certificate,
  .visual-panel.certificate img {
    min-height: 0;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .section {
    padding-inline: 16px;
  }

  h1 {
    font-size: 3.6rem;
  }

  .hero-art {
    min-height: 260px;
  }

  .hero-art img {
    width: min(74%, 300px);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
