:root {
  --bg: #f2f0ea;
  --card: #ffffff;
  --ink: #141412;
  --ink-soft: #5c5b52;
  --line: rgba(20, 20, 18, 0.12);
  --green: #304814;
  --green-soft: #46621f;
  --green-tint: #e4e6d5;
  --dark: #191913;
  --dark-2: #23231b;
  --on-dark: #f2f0ea;
  --on-dark-soft: rgba(242, 240, 234, 0.66);
  --sand: #e9e4d6;
  --r-lg: 24px;
  --r-md: 20px;
  --pad: clamp(16px, 4vw, 48px);
  --maxw: 1280px;
  --display: "Inter Tight", "Inter", system-ui, sans-serif;
  --text: "Inter", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 108px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--text);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

main { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }

h1, h2, h3, h4 { font-family: var(--display); }

.h2 {
  font-size: clamp(30px, 4.6vw, 58px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.03em;
  max-width: 21ch;
  margin: 18px 0 clamp(28px, 4vw, 48px);
}

.h2--light { color: var(--on-dark); }

.h3 {
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hchip {
  display: inline-block;
  vertical-align: baseline;
  width: 1.55em;
  height: 0.92em;
  border-radius: 999px;
  overflow: hidden;
  margin: 0 0.18em;
  transform: translateY(0.1em);
}

.hchip img { width: 100%; height: 100%; object-fit: cover; }

.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}

.label i { font-style: normal; color: var(--green-soft); font-size: 13px; }

.label--light { color: var(--on-dark); }
.label--light i { color: #b6c98a; }
.label--soft { color: var(--ink-soft); letter-spacing: 0.1em; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.pill__arr { font-size: 15px; transition: transform 0.18s ease; }
a.pill:hover .pill__arr { transform: translateX(4px); }

.pill--green { background: var(--green); color: var(--on-dark); }
.pill--green:hover { background: var(--green-soft); }

.pill--dark { background: var(--ink); color: var(--on-dark); }
.pill--dark:hover { background: #32322a; }

.pill--light { background: var(--card); color: var(--ink); }
.pill--light:hover { transform: translateY(-2px); }

.pill--ghost { border: 1px solid var(--line); color: var(--ink); background: transparent; }
.pill--ghost:hover { border-color: var(--ink); }

.pill--outline { border: 1px solid rgba(242, 240, 234, 0.45); color: var(--on-dark); }
.pill--outline:hover { border-color: var(--on-dark); }

.pill--glass {
  background: rgba(242, 240, 234, 0.16);
  border: 1px solid rgba(242, 240, 234, 0.4);
  color: #fff;
  backdrop-filter: blur(6px);
}
.pill--glass:hover { background: rgba(242, 240, 234, 0.28); }

.pill--stat { background: var(--card); border: 1px solid var(--line); color: var(--ink); }

.pill--tag {
  background: rgba(242, 240, 234, 0.1);
  border: 1px solid rgba(242, 240, 234, 0.22);
  color: var(--on-dark);
  padding: 7px 14px;
  font-size: 13px;
}
a.pill--tag:hover { border-color: var(--on-dark); }

.pill--mini {
  padding: 3px 10px;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--green-tint);
  color: var(--green);
}

.pill--mini-light { background: rgba(242, 240, 234, 0.2); color: var(--on-dark); }

.pill--big { padding: 15px 28px; font-size: 15px; }

.pill--float {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(20, 20, 18, 0.55);
  color: #fff;
  backdrop-filter: blur(6px);
  font-size: 13px;
  white-space: normal;
}

.pill-row { display: flex; flex-wrap: wrap; gap: 8px; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px var(--pad);
  background: rgba(242, 240, 234, 0.86);
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.topbar:has(.topnav.is-open) {
  background: var(--bg);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.logo { display: inline-flex; flex: 0 0 auto; }

.logo__box {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  width: 74px;
  height: 74px;
  padding: 9px 10px;
  border: 1.5px solid var(--ink);
  color: var(--ink);
}

.logo__name {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.08em;
  text-align: right;
  align-self: flex-end;
}

.logo__dm {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.topnav { display: flex; align-items: center; gap: clamp(14px, 2vw, 28px); }

.topnav > a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.15s ease;
}

.topnav > a:hover { color: var(--ink); }

.topnav__extra { display: none; }

.topbar__right { display: flex; align-items: center; gap: 12px; }

.topbar__phone { font-size: 14px; font-weight: 600; white-space: nowrap; }
.topbar__phone:hover { color: var(--green); }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  cursor: pointer;
  align-items: center;
}

.burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s ease;
}

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

.hero {
  position: relative;
  margin-top: 6px;
  border-radius: 28px;
  overflow: hidden;
  min-height: min(86vh, 820px);
  display: flex;
}

.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 18, 8, 0.42) 0%, rgba(15, 18, 8, 0.08) 38%, rgba(15, 18, 8, 0.62) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  padding: clamp(20px, 3.4vw, 44px) clamp(20px, 3.4vw, 48px) 0;
}

.hero__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(242, 240, 234, 0.28);
}

.hero__geo {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242, 240, 234, 0.85);
}

.hero__mid { margin: auto 0; padding: 28px 0; max-width: 560px; }

.hero__mid h1 {
  color: #fff;
  font-size: clamp(26px, 3.4vw, 42px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}

.hero__wordmark {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(44px, 11.4vw, 152px);
  line-height: 0.88;
  letter-spacing: -0.045em;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  transform: translateY(4%);
}

.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.section { padding-top: clamp(72px, 10vw, 130px); }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

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

.cat-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 4.6;
  background: var(--sand);
  display: block;
}

.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.cat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 15, 10, 0) 55%, rgba(15, 15, 10, 0.55) 100%);
}

.cat-card__arr {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(242, 240, 234, 0.9);
  color: var(--ink);
  font-size: 18px;
  transition: background 0.18s ease, transform 0.18s ease;
}

.cat-card:hover .cat-card__arr { background: var(--green); color: #fff; transform: rotate(45deg); }

.cat-card__name {
  position: absolute;
  left: 14px;
  bottom: 14px;
  right: 66px;
  z-index: 2;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.cat-card__name em {
  display: block;
  font-family: var(--text);
  font-style: normal;
  font-size: 13px;
  font-weight: 500;
  color: rgba(242, 240, 234, 0.8);
  margin-top: 4px;
}

.cat-card--accent {
  background: var(--green);
  color: var(--on-dark);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  padding: 26px;
}

.cat-card--accent::after { display: none; }

.cat-card__accent-label {
  position: absolute;
  top: 22px;
  left: 26px;
  display: inline-flex;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cat-card__accent-label i { font-style: normal; color: #c4d894; }

.cat-card--accent strong {
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.cat-card--accent p { font-size: 14px; color: rgba(242, 240, 234, 0.8); }

.cat-card--accent .pill { align-self: flex-start; margin-top: 6px; }

.cat-card--accent:hover .pill--light { transform: translateY(-2px); }

.feat-rows { list-style: none; border-top: 1px solid var(--line); }

.feat-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: clamp(16px, 4vw, 64px);
  padding: clamp(22px, 3vw, 34px) 0;
  border-bottom: 1px solid var(--line);
}

.feat-row__num {
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--green);
}

.feat-row__body { max-width: 640px; }

.feat-row__body h3 {
  font-size: clamp(19px, 2vw, 26px);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}

.feat-row__body p { color: var(--ink-soft); font-size: 15px; }

.feat-duo {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.feat-duo__dark {
  background: var(--dark);
  color: var(--on-dark);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
}

.feat-duo__text {
  font-family: var(--display);
  font-size: clamp(19px, 2vw, 26px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.feat-duo__photo, .dark__photo, .trust-card--photo {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin: 0;
}

.feat-duo__photo img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

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

.pf-card {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  cursor: zoom-in;
}

.pf-card img {
  width: 100%;
  aspect-ratio: 4 / 4.3;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.pf-card:hover img { transform: scale(1.03); }

.pf-card figcaption { padding: 16px 18px 18px; }

.pf-card strong {
  display: block;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.pf-card span { font-size: 13.5px; color: var(--ink-soft); }

.kitchens { margin-top: clamp(48px, 6vw, 80px); }

.kitchens__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.krows { list-style: none; border-top: 1px solid var(--line); }

.krow {
  display: grid;
  grid-template-columns: 1.1fr 1fr 44px;
  align-items: center;
  gap: 16px;
  padding: 18px 10px;
  border-bottom: 1px solid var(--line);
  transition: background 0.15s ease;
}

.krow:hover { background: rgba(255, 255, 255, 0.7); }

.krow__name {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-family: var(--display);
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 700;
  letter-spacing: -0.015em;
}

.krow__meta { font-size: 13.5px; color: var(--ink-soft); }

.krow__arr {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 16px;
  justify-self: end;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.krow:hover .krow__arr { background: var(--green); border-color: var(--green); color: #fff; transform: rotate(45deg); }

.krow--hot { background: var(--green); border-radius: 18px; border-bottom-color: transparent; padding-left: 18px; padding-right: 18px; margin: 6px 0; }
.krow--hot .krow__name { color: var(--on-dark); }
.krow--hot .krow__meta { color: rgba(242, 240, 234, 0.75); }
.krow--hot .krow__arr { border-color: rgba(242, 240, 234, 0.4); color: var(--on-dark); }
.krow--hot:hover { background: var(--green-soft); }
.krow--hot:hover .krow__arr { background: var(--on-dark); color: var(--green); border-color: var(--on-dark); }

.dark-wrap { padding-top: clamp(72px, 10vw, 130px); }

.dark {
  background: var(--dark);
  border-radius: 28px;
  padding: clamp(28px, 4vw, 56px);
}

.dark .h2 { max-width: 18ch; }

.dark__body { position: relative; }

.steps {
  list-style: none;
  max-width: 820px;
}

.step {
  display: grid;
  grid-template-columns: 52px 1fr 34px;
  align-items: center;
  gap: 14px;
  padding: 18px 6px;
  border-bottom: 1px solid rgba(242, 240, 234, 0.14);
  color: var(--on-dark);
}

.step:first-child { border-top: 1px solid rgba(242, 240, 234, 0.14); }

.step__num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  color: var(--on-dark-soft);
}

.step__text strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: -0.015em;
}

.step__text > span { font-size: 13.5px; color: var(--on-dark-soft); }

.step__text .pill-row { margin-top: 8px; }

.step__arr { font-size: 17px; color: var(--on-dark-soft); justify-self: end; }

.step--hot {
  background: var(--green);
  border-radius: 18px;
  border-bottom-color: transparent;
  padding: 18px 16px;
  margin: 8px 0;
}

.step--hot .step__num, .step--hot .step__arr { color: rgba(242, 240, 234, 0.8); }

.dark__photo {
  position: absolute;
  right: 0;
  top: 50%;
  width: min(300px, 26vw);
  transform: translateY(-50%) rotate(3deg);
  border-radius: var(--r-md);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

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

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(210px, auto);
  gap: 18px;
}

.trust-card {
  border-radius: var(--r-lg);
  overflow: hidden;
}

.trust-card--stat {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

.trust-stat strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--green);
}

.trust-stat span { font-size: 13.5px; color: var(--ink-soft); }

.trust-card--photo { position: relative; min-height: 260px; }

.trust-card--photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trust-card--green {
  background: var(--green);
  color: var(--on-dark);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: space-between;
  align-items: flex-start;
}

.trust-card--green p {
  font-family: var(--display);
  font-size: clamp(18px, 1.9vw, 24px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.trust-card--showroom {
  background: var(--sand);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: space-between;
  align-items: flex-start;
}

.trust-card--showroom h3 {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  letter-spacing: -0.015em;
}

.trust-card--showroom p { font-size: 14.5px; color: var(--ink-soft); }

.cta-wrap { padding-top: clamp(72px, 10vw, 130px); }

.cta {
  position: relative;
  background: var(--green);
  border-radius: 28px;
  padding: clamp(32px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  align-items: center;
  overflow: hidden;
}

.cta__text { color: var(--on-dark); }

.cta .h2 { margin-bottom: 16px; }

.cta__text > p { max-width: 46ch; color: rgba(242, 240, 234, 0.82); margin-bottom: 26px; }

.cta__text .label { margin-bottom: 16px; }

.cta__btns { display: flex; flex-wrap: wrap; gap: 12px; }

.cta__photos {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}

.cta__photos img {
  width: 58%;
  aspect-ratio: 3 / 3.7;
  object-fit: cover;
  border-radius: var(--r-md);
  box-shadow: 0 24px 50px rgba(10, 14, 4, 0.4);
}

.cta__photos img:first-child { transform: rotate(-5deg) translate(12%, -4%); }
.cta__photos img:last-child { transform: rotate(4deg) translate(-12%, 6%); z-index: 1; }

.faq { max-width: 860px; }

.faq__item { border-bottom: 1px solid var(--line); }
.faq__item:first-child { border-top: 1px solid var(--line); }

.faq__item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 20px 4px;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(17px, 1.9vw, 22px);
  font-weight: 700;
  letter-spacing: -0.015em;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__ic {
  position: relative;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--line);
  transition: background 0.18s ease, border-color 0.18s ease;
}

.faq__ic::before, .faq__ic::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, background 0.18s ease;
}

.faq__ic::after { transform: translate(-50%, -50%) rotate(90deg); }

.faq__item[open] .faq__ic { background: var(--green); border-color: var(--green); }
.faq__item[open] .faq__ic::before, .faq__item[open] .faq__ic::after { background: #fff; }
.faq__item[open] .faq__ic::after { transform: translate(-50%, -50%) rotate(0deg); }

.faq__body { padding: 0 60px 22px 4px; }

.faq__body p { color: var(--ink-soft); font-size: 15px; max-width: 68ch; }

.footer {
  margin-top: clamp(80px, 11vw, 150px);
  background: var(--dark);
  color: var(--on-dark);
  border-radius: 28px 28px 0 0;
  padding: clamp(40px, 6vw, 72px) var(--pad) 0;
  overflow: hidden;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
  max-width: var(--maxw);
  margin: 0 auto;
}

.footer__brand { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }

.footer__brand p { font-size: 14px; color: var(--on-dark-soft); max-width: 34ch; }

.logo__box--big { width: 92px; height: 92px; border-color: var(--on-dark); color: var(--on-dark); }

.footer__col { display: flex; flex-direction: column; gap: 10px; }

.footer__col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
  margin-bottom: 6px;
}

.footer__col a { font-size: 15px; transition: color 0.15s ease; }
.footer__col a:hover { color: #b6c98a; }

.footer__col p { font-size: 14.5px; color: var(--on-dark-soft); }

.footer__legal {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  max-width: var(--maxw);
  margin: clamp(36px, 5vw, 56px) auto 0;
  padding: 18px 0;
  border-top: 1px solid rgba(242, 240, 234, 0.14);
  font-size: 13px;
  color: var(--on-dark-soft);
}

.footer__wordmark {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(52px, 12.4vw, 176px);
  line-height: 0.82;
  letter-spacing: -0.045em;
  text-align: center;
  white-space: nowrap;
  color: var(--on-dark);
  transform: translateY(12%);
  margin-top: 8px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(15, 15, 10, 0.92);
  padding: 24px;
}

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

.lightbox img {
  max-width: min(92vw, 1100px);
  max-height: 88vh;
  border-radius: 16px;
  object-fit: contain;
}

.lightbox__close, .lightbox__nav {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(242, 240, 234, 0.35);
  background: rgba(242, 240, 234, 0.08);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.15s ease;
}

.lightbox__close:hover, .lightbox__nav:hover { background: rgba(242, 240, 234, 0.22); }

.lightbox__close { top: 20px; right: 20px; }

.lightbox__nav--prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 20px; top: 50%; transform: translateY(-50%); }

@media (max-width: 1024px) {
  .burger { display: flex; position: relative; z-index: 70; }

  .topnav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 60;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: var(--bg);
    padding: 80px var(--pad) 40px;
  }

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

  .topnav > a {
    font-family: var(--display);
    font-size: clamp(24px, 6vw, 34px);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink);
    padding: 6px 0;
  }

  .topnav__extra {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 26px;
  }

  .topbar__right .pill--green { display: none; }
  .topbar__phone { display: none; }

  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .pf-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }

  .feat-duo { grid-template-columns: 1fr; }

  .dark__photo {
    position: static;
    transform: rotate(2deg);
    width: min(360px, 80%);
    margin: 28px auto 0;
  }

  .steps { max-width: none; }

  .cta { grid-template-columns: 1fr; }
  .cta__photos { min-height: 260px; }
  .cta__photos img { width: 44%; }

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

@media (max-width: 768px) {
  .hero { min-height: 78vh; border-radius: 22px; }

  .hero__top { flex-direction: column; align-items: flex-start; gap: 8px; }

  .hero__wordmark { font-size: 13.2vw; }

  .stats { justify-content: flex-start; }
  .pill--stat { font-size: 13px; padding: 8px 14px; }

  .cat-grid { grid-template-columns: 1fr; }
  .cat-card { aspect-ratio: 4 / 3.4; }
  .cat-card--accent { aspect-ratio: auto; min-height: 260px; }

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

  .feat-row { grid-template-columns: 64px 1fr; }

  .krow { grid-template-columns: 1fr 44px; }
  .krow__meta { grid-column: 1 / -1; margin-top: -6px; }
  .krow__arr { grid-row: 1; grid-column: 2; }

  .trust-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .trust-card--photo { min-height: 300px; }

  .cta__btns { flex-direction: column; align-items: stretch; }
  .cta__btns .pill { justify-content: center; }

  .faq__body { padding-right: 12px; }

  .footer { border-radius: 20px 20px 0 0; }
  .footer__grid { grid-template-columns: 1fr; gap: 26px; }
  .footer__legal { flex-direction: column; gap: 4px; }
  .footer__wordmark { font-size: 14vw; }
}

@media (max-width: 480px) {
  .logo__box { width: 62px; height: 62px; padding: 7px 8px; }
  .logo__name { font-size: 11px; }
  .logo__dm { font-size: 12px; }

  .hero__mid h1 { font-size: 24px; }

  .cta__photos img { width: 52%; }
}
