:root {
  --bg: #f8f8f6;
  --paper: #ffffff;
  --ink: #111318;
  --muted: #5f6671;
  --line: #d9dde2;
  --steel: #727b86;
  --dark: #171a1f;
  --accent: #123d68;
  --accent-strong: #0d2f52;
  --shadow: 0 24px 70px rgba(17, 19, 24, 0.12);
  --radius: 22px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.is-locked {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 248, 246, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand__mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav__links a {
  text-decoration: none;
}

.nav__links a:hover,
.nav__links a:focus-visible {
  color: var(--ink);
}

.nav__toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  padding: 9px 14px;
}

.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0;
}

.section--muted {
  width: 100%;
  max-width: none;
  padding-inline: max(16px, calc((100% - var(--max)) / 2));
  background: #eeefed;
}

.section--dark {
  width: 100%;
  max-width: none;
  padding-inline: max(16px, calc((100% - var(--max)) / 2));
  background: var(--dark);
  color: var(--paper);
}

.section__heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 52px;
  min-height: calc(100vh - 76px);
}

.hero__content {
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section--dark .eyebrow {
  color: #8fb5dc;
}

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

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: -0.05em;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 7vw, 6rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.7rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.hero__lead,
.section__heading p,
.split p,
.contact__intro p {
  color: var(--muted);
  font-size: 1.1rem;
}

.section--dark p {
  color: #d8dce2;
}

.hero__actions,
.age-gate__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--ink);
  color: var(--paper);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
}

.button--secondary {
  background: transparent;
  color: var(--ink);
}

.button--small {
  min-height: 42px;
  padding: 9px 15px;
  background: var(--accent);
  border-color: var(--accent);
  color: var(--paper);
  font-size: 0.92rem;
}

.compliance-note,
.fine-print,
.form-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero__image-wrap {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 12px);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.hero__image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  background: #f1f2f1;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 34px rgba(17, 19, 24, 0.07);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #f4f4f2;
}

.product-card__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.product-card__gallery img {
  aspect-ratio: 1;
}

.product-card__body {
  padding: 20px;
}

dl {
  margin: 0 0 18px;
}

dl div {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

dd {
  margin: 2px 0 0;
}

.status {
  color: var(--accent);
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1fr);
  gap: 52px;
  align-items: start;
}

.feature-list,
.service-area,
.policy-grid {
  display: grid;
  gap: 12px;
}

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

.feature-list div,
.service-area div,
.policy-grid article {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  padding: 18px;
}

.feature-list div {
  min-height: 92px;
  display: flex;
  align-items: end;
  color: var(--ink);
  font-weight: 800;
}

.service-area {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 18px;
}

.service-area div {
  text-align: center;
  font-weight: 800;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
  gap: 46px;
}

address {
  margin-top: 24px;
  color: var(--muted);
  font-style: normal;
}

.inquiry-form {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 24px;
  box-shadow: var(--shadow);
}

.inquiry-form label:not(.checkbox) {
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c9ced5;
  border-radius: 14px;
  background: #fbfbfa;
  color: var(--ink);
  padding: 13px 14px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(18, 61, 104, 0.18);
  border-color: var(--accent);
}

.checkbox {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--ink);
  font-weight: 700;
}

.checkbox input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
}

.form-status {
  min-height: 24px;
  margin-bottom: 0;
  color: var(--accent);
  font-weight: 800;
}

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

.policy-grid article p {
  margin-bottom: 0;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: var(--paper);
  padding: 28px 16px;
  text-align: center;
}

.site-footer p {
  max-width: 960px;
  margin: 0 auto;
  color: #e8eaed;
  font-size: 0.92rem;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(17, 19, 24, 0.72);
  backdrop-filter: blur(10px);
}

.age-gate[hidden] {
  display: none;
}

.age-gate__panel {
  width: min(520px, 100%);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 30px;
  box-shadow: var(--shadow);
}

.age-gate__panel p:not(.eyebrow) {
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero,
  .split,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .service-area {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .nav {
    min-height: 66px;
  }

  .nav__toggle {
    display: inline-flex;
  }

  .nav__links {
    position: absolute;
    top: 66px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--paper);
    padding: 12px;
    box-shadow: var(--shadow);
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__links a {
    padding: 10px 8px;
  }

  .section {
    padding: 62px 0;
  }

  .section--muted,
  .section--dark {
    padding-inline: 16px;
  }

  .product-grid,
  .feature-list,
  .service-area,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .hero__actions,
  .age-gate__actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
