:root {
  --ink: #17201c;
  --muted: #68716d;
  --paper: #f5f3ed;
  --surface: #fffefa;
  --line: #dedfd8;
  --green: #1f4838;
  --green-light: #dce9e0;
  --sand: #e8d6b5;
  --wood: #b88044;
  --white: #ffffff;
  --danger: #9d3b32;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --shadow: 0 18px 50px rgba(22, 33, 28, 0.08);
  --container: 1200px;
  --font: Inter, "Segoe UI", Helvetica, Arial, sans-serif;
}

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

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.locked {
  overflow: hidden;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(184, 128, 68, 0.55);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 1px;
  background: currentColor;
  content: "";
}

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 6vw, 5.5rem);
  font-weight: 650;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4.3vw, 3.65rem);
  font-weight: 620;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.24rem;
  font-weight: 680;
  letter-spacing: -0.02em;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.55;
}

.section {
  padding: 104px 0;
}

.section--tight {
  padding: 72px 0;
}

.section--surface {
  background: var(--surface);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 42px;
}

.section-head > :first-child {
  max-width: 760px;
}

.section-head p:last-child {
  margin-bottom: 0;
}

.muted {
  color: var(--muted);
}

.topbar {
  position: relative;
  z-index: 102;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.78);
  background: #13251e;
  font-size: 0.79rem;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.topbar a {
  color: var(--white);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(222, 223, 216, 0.88);
  background: rgba(245, 243, 237, 0.92);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  font-size: 1.14rem;
  font-weight: 760;
  letter-spacing: -0.03em;
}

.brand__mark {
  position: relative;
  width: 35px;
  height: 35px;
  overflow: hidden;
  border-radius: 10px;
  background: var(--green);
}

.brand__mark::before,
.brand__mark::after {
  position: absolute;
  right: 6px;
  left: 6px;
  height: 5px;
  border-radius: 5px;
  background: var(--sand);
  content: "";
}

.brand__mark::before {
  top: 9px;
  box-shadow: 0 8px 0 rgba(232, 214, 181, 0.72);
}

.brand__mark::after {
  bottom: 5px;
  width: 13px;
}

.brand__descriptor {
  display: block;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 560;
  letter-spacing: 0.05em;
  line-height: 1.1;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 9px;
  color: #39423e;
  font-size: 0.9rem;
  font-weight: 560;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--green);
  background: rgba(31, 72, 56, 0.08);
}

.header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
}

.icon-button {
  position: relative;
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.icon-button:hover {
  border-color: #bec6c1;
  background: var(--white);
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  display: none;
  min-width: 19px;
  height: 19px;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  border: 2px solid var(--paper);
  border-radius: 999px;
  color: var(--white);
  background: var(--wood);
  font-size: 0.66rem;
  font-weight: 750;
}

.cart-count.is-visible {
  display: inline-flex;
}

.menu-button {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: var(--white);
  background: var(--green);
  font-weight: 670;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  background: #153a2c;
  transform: translateY(-1px);
}

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

.button--light:hover {
  background: #f0efe9;
}

.button--ghost {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}

.button--ghost:hover {
  border-color: #bdc6c0;
  background: var(--white);
}

.button--small {
  min-height: 42px;
  padding: 10px 15px;
  font-size: 0.9rem;
}

.button--wide {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green);
  font-weight: 680;
}

.text-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(760px, calc(100svh - 104px));
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: #16241f;
}

.hero__media,
.hero__veil {
  position: absolute;
  inset: 0;
}

.hero__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero__veil {
  background:
    linear-gradient(90deg, rgba(11, 24, 19, 0.92) 0%, rgba(11, 24, 19, 0.74) 36%, rgba(11, 24, 19, 0.12) 72%),
    linear-gradient(0deg, rgba(11, 24, 19, 0.58) 0%, rgba(11, 24, 19, 0) 50%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding-top: 120px;
  padding-bottom: 70px;
}

.hero .eyebrow {
  color: #d9e8df;
}

.hero h1 {
  max-width: 680px;
}

.hero .lead {
  max-width: 620px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.78);
}

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

.hero__meta {
  display: grid;
  max-width: 760px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.hero__meta-item {
  padding: 18px 24px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
}

.hero__meta-item strong {
  display: block;
  margin-bottom: 2px;
  color: var(--white);
  font-size: 1.03rem;
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.category-card {
  min-height: 260px;
  padding: 34px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--surface);
  transition: background 0.25s ease;
}

.category-card:hover {
  background: #eeeee7;
}

.category-card__number {
  display: block;
  margin-bottom: 82px;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

.category-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.filter-chip {
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font-size: 0.88rem;
  font-weight: 620;
  cursor: pointer;
}

.filter-chip:hover,
.filter-chip.is-active {
  border-color: var(--green);
  color: var(--white);
  background: var(--green);
}

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

.product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.product-card.is-hidden {
  display: none;
}

.product-visual {
  position: relative;
  height: 220px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 22%, rgba(92, 58, 28, 0.18) 0 4px, transparent 5px),
    repeating-linear-gradient(3deg, transparent 0 19px, rgba(92, 58, 28, 0.09) 20px 21px),
    linear-gradient(135deg, #e8c48c, #be8247);
}

.product-visual::before,
.product-visual::after {
  position: absolute;
  height: 25px;
  border: 1px solid rgba(91, 54, 23, 0.22);
  border-radius: 3px;
  background:
    repeating-linear-gradient(0deg, transparent 0 7px, rgba(89, 53, 24, 0.1) 8px),
    #d9a76b;
  box-shadow: 0 7px 18px rgba(69, 42, 19, 0.2);
  content: "";
  transform: perspective(250px) rotateX(3deg) rotateZ(-4deg);
}

.product-visual::before {
  right: -20px;
  bottom: 55px;
  left: 28px;
}

.product-visual::after {
  right: 20px;
  bottom: 92px;
  left: -30px;
}

.product-visual--beam::before {
  height: 48px;
  bottom: 51px;
}

.product-visual--beam::after {
  height: 40px;
  bottom: 108px;
}

.product-visual--profile {
  background:
    radial-gradient(circle at 24% 74%, rgba(92, 58, 28, 0.16) 0 3px, transparent 4px),
    repeating-linear-gradient(2deg, transparent 0 22px, rgba(92, 58, 28, 0.08) 23px 24px),
    linear-gradient(135deg, #f0d3a7, #c88e54);
}

.product-visual--profile::before,
.product-visual--profile::after {
  height: 31px;
  border-radius: 12px 3px 3px 12px;
}

.product-visual--terrace {
  background:
    repeating-linear-gradient(90deg, rgba(75, 41, 17, 0.1) 0 2px, transparent 2px 11px),
    linear-gradient(135deg, #c69158, #835229);
}

.product-visual--terrace::before,
.product-visual--terrace::after {
  background:
    repeating-linear-gradient(90deg, rgba(69, 39, 17, 0.2) 0 2px, transparent 2px 8px),
    #b7773e;
}

.product-tag {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(24, 48, 39, 0.84);
  font-size: 0.72rem;
  font-weight: 700;
  backdrop-filter: blur(6px);
}

.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.product-card__category {
  margin-bottom: 9px;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 710;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card h3 {
  min-height: 2.5em;
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}

.product-specs span {
  padding: 4px 8px;
  border-radius: 6px;
  color: var(--muted);
  background: #efeee8;
  font-size: 0.75rem;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
}

.price {
  line-height: 1.15;
}

.price strong {
  display: block;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}

.price small {
  color: var(--muted);
  font-size: 0.73rem;
}

.note {
  padding: 16px 18px;
  border-left: 3px solid var(--wood);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: #4e5753;
  background: #eee9df;
  font-size: 0.88rem;
}

.note p:last-child {
  margin-bottom: 0;
}

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

.feature-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.feature-card__icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 46px;
  border-radius: 12px;
  color: var(--green);
  background: var(--green-light);
}

.feature-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  counter-reset: steps;
}

.process__item {
  position: relative;
  padding: 30px 30px 30px 0;
  border-top: 1px solid #aeb6b1;
  counter-increment: steps;
}

.process__item::before {
  display: block;
  margin-bottom: 60px;
  color: var(--muted);
  content: "0" counter(steps);
  font-size: 0.78rem;
  font-weight: 700;
}

.process__item::after {
  position: absolute;
  top: -4px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.process__item p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.cta {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  padding: 68px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--green);
}

.cta h2 {
  max-width: 740px;
}

.cta p {
  color: rgba(255, 255, 255, 0.72);
}

.cta__actions {
  display: flex;
  align-items: end;
  justify-content: flex-end;
  gap: 10px;
}

.page-hero {
  padding: 88px 0 64px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 42px;
  color: var(--muted);
  font-size: 0.83rem;
}

.breadcrumbs a:hover {
  color: var(--green);
}

.breadcrumbs span::before {
  margin-right: 8px;
  color: #a9afac;
  content: "/";
}

.page-hero h1 {
  max-width: 880px;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
}

.page-hero .lead {
  max-width: 720px;
}

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

.info-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--surface);
}

.info-card__value {
  display: block;
  margin-bottom: 34px;
  color: var(--green);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 630;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.info-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 70px;
  align-items: start;
}

.prose {
  max-width: 800px;
}

.prose h2 {
  margin-top: 70px;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin-top: 36px;
}

.prose p,
.prose li {
  color: #4f5a55;
}

.prose ul,
.prose ol {
  padding-left: 1.25rem;
}

.prose li + li {
  margin-top: 8px;
}

.prose a {
  color: var(--green);
  text-decoration: underline;
  text-decoration-color: rgba(31, 72, 56, 0.3);
  text-underline-offset: 3px;
}

.prose .legal-lead {
  padding: 26px;
  border-radius: var(--radius);
  background: var(--surface);
  font-size: 1.06rem;
}

.side-card {
  position: sticky;
  top: 106px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.side-card__label {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.side-card a:not(.button) {
  display: block;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  color: #3f4a45;
  font-size: 0.91rem;
}

.side-card a:not(.button):hover {
  color: var(--green);
}

.side-card .button {
  margin-top: 20px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 650px;
}

.data-table th,
.data-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.data-table th {
  color: var(--muted);
  background: #ecece5;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.data-table tr:last-child td {
  border-bottom: 0;
}

.data-table td strong {
  color: var(--ink);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
}

.contact-card {
  padding: 36px;
  border-radius: var(--radius);
  background: var(--surface);
}

.contact-card h2 {
  font-size: clamp(1.65rem, 3vw, 2.4rem);
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.contact-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.contact-item__label {
  color: var(--muted);
  font-size: 0.8rem;
}

.contact-item a {
  font-weight: 640;
}

.location-card {
  position: relative;
  display: grid;
  min-height: 500px;
  overflow: hidden;
  padding: 52px;
  align-content: center;
  place-items: center;
  border-radius: var(--radius);
  background:
    linear-gradient(33deg, transparent 49%, rgba(31, 72, 56, 0.09) 50%, transparent 52%),
    linear-gradient(-21deg, transparent 48%, rgba(31, 72, 56, 0.1) 49%, transparent 52%),
    #e1e4dd;
  background-size: 140px 110px, 220px 150px, auto;
}

.location-card__content {
  width: min(100%, 420px);
  margin-top: 32px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  text-align: center;
}

.location-card__content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.location-card__content p:not(.eyebrow) {
  margin: 12px 0 22px;
  color: var(--muted);
}

.map-pin {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 9px solid rgba(255, 255, 255, 0.78);
  border-radius: 50% 50% 50% 0;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 15px 30px rgba(30, 58, 46, 0.22);
  transform: rotate(-45deg);
}

.map-pin svg {
  transform: rotate(45deg);
}

.form-card {
  padding: 36px;
  border-radius: var(--radius);
  background: var(--surface);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  color: #3f4945;
  font-size: 0.82rem;
  font-weight: 650;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 51px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(31, 72, 56, 0.11);
}

.checkbox {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  margin: 18px 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.checkbox input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--green);
}

.checkbox a {
  color: var(--green);
  text-decoration: underline;
}

.form-status {
  display: none;
  margin: 16px 0 0;
  padding: 12px 14px;
  border-radius: 10px;
  color: var(--green);
  background: var(--green-light);
  font-size: 0.87rem;
}

.form-status.is-visible {
  display: block;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 32px;
  align-items: start;
}

.order-summary {
  position: sticky;
  top: 106px;
  padding: 28px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--green);
}

.order-summary h2 {
  font-size: 1.6rem;
}

.order-summary__items {
  display: grid;
  gap: 14px;
  margin: 22px 0;
}

.order-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.9rem;
}

.order-line small {
  display: block;
  color: rgba(255, 255, 255, 0.62);
}

.order-summary__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  font-size: 1.08rem;
}

.order-summary__total strong {
  font-size: 1.6rem;
}

.order-summary__empty {
  color: rgba(255, 255, 255, 0.72);
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  font-weight: 650;
  list-style: none;
  cursor: pointer;
}

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

.accordion summary::after {
  color: var(--green);
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
}

.accordion details[open] summary::after {
  content: "−";
}

.accordion__body {
  max-width: 760px;
  padding: 0 0 24px;
  color: var(--muted);
}

.site-footer {
  padding: 70px 0 24px;
  color: rgba(255, 255, 255, 0.72);
  background: #13251e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.8fr 1.1fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-brand .brand {
  margin-bottom: 20px;
  color: var(--white);
}

.footer-brand .brand__descriptor {
  color: rgba(255, 255, 255, 0.52);
}

.footer-brand p {
  max-width: 320px;
  font-size: 0.9rem;
}

.footer-title {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact {
  color: var(--white);
  font-size: 1.06rem;
  font-weight: 650;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
}

.cart-overlay {
  position: fixed;
  z-index: 140;
  inset: 0;
  visibility: hidden;
  background: rgba(8, 18, 14, 0.52);
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s;
}

.cart-overlay.is-open {
  visibility: visible;
  opacity: 1;
}

.cart-drawer {
  position: fixed;
  z-index: 141;
  top: 0;
  right: 0;
  display: flex;
  width: min(440px, 100%);
  height: 100%;
  flex-direction: column;
  padding: 24px;
  background: var(--surface);
  box-shadow: -20px 0 60px rgba(10, 20, 16, 0.16);
  transform: translateX(105%);
  transition: transform 0.3s ease;
}

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

.cart-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.cart-drawer__head h2 {
  margin: 0;
  font-size: 1.75rem;
}

.cart-items {
  display: grid;
  flex: 1;
  align-content: start;
  gap: 12px;
  overflow-y: auto;
  padding: 20px 2px;
}

.cart-empty {
  display: grid;
  min-height: 300px;
  place-items: center;
  color: var(--muted);
  text-align: center;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.cart-item strong {
  font-size: 0.92rem;
}

.cart-item__meta {
  color: var(--muted);
  font-size: 0.76rem;
}

.cart-item__controls {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
}

.quantity-button {
  display: inline-grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: transparent;
  cursor: pointer;
}

.remove-button {
  margin-left: 6px;
  border: 0;
  color: var(--danger);
  background: transparent;
  font-size: 0.75rem;
  cursor: pointer;
}

.cart-drawer__footer {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.cart-total strong {
  font-size: 1.35rem;
}

.toast {
  position: fixed;
  z-index: 160;
  right: 20px;
  bottom: 20px;
  max-width: 340px;
  padding: 14px 17px;
  border-radius: 12px;
  color: var(--white);
  background: var(--green);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

@media (max-width: 1060px) {
  .site-nav {
    position: fixed;
    z-index: 130;
    top: 0;
    right: 0;
    display: flex;
    width: min(390px, 100%);
    height: 100svh;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 100px 24px 30px;
    background: var(--surface);
    box-shadow: -20px 0 50px rgba(10, 20, 16, 0.14);
    transform: translateX(105%);
    transition: transform 0.3s ease;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav a {
    padding: 14px;
    font-size: 1.05rem;
  }

  .menu-button {
    z-index: 131;
    display: inline-flex;
  }

  .hero__content {
    max-width: 680px;
  }

  .category-strip {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

  .cta__actions {
    justify-content: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 76px 0;
  }

  .section--tight {
    padding: 54px 0;
  }

  .section-head {
    display: block;
  }

  .section-head .text-link {
    margin-top: 12px;
  }

  .topbar__inner > :last-child {
    display: none;
  }

  .header-actions .button {
    display: none;
  }

  .hero {
    min-height: 700px;
  }

  .hero__veil {
    background:
      linear-gradient(90deg, rgba(11, 24, 19, 0.9) 0%, rgba(11, 24, 19, 0.56) 70%, rgba(11, 24, 19, 0.3) 100%),
      linear-gradient(0deg, rgba(11, 24, 19, 0.68), rgba(11, 24, 19, 0.05));
  }

  .hero__meta {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .hero__meta-item {
    padding-top: 11px;
  }

  .info-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card__icon {
    margin-bottom: 28px;
  }

  .content-layout,
  .contact-grid,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .side-card,
  .order-summary {
    position: static;
  }

  .page-hero {
    padding-top: 64px;
  }

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

@media (max-width: 580px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  h1 {
    font-size: clamp(2.45rem, 14vw, 4rem);
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 2.8rem);
  }

  .brand__descriptor {
    display: none;
  }

  .hero__content {
    padding-top: 86px;
    padding-bottom: 40px;
  }

  .hero__actions,
  .cta__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button,
  .cta__actions .button {
    width: 100%;
  }

  .category-strip,
  .product-grid,
  .process,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 220px;
  }

  .category-card__number {
    margin-bottom: 62px;
  }

  .process__item::before {
    margin-bottom: 34px;
  }

  .cta,
  .contact-card,
  .form-card {
    padding: 30px 22px;
  }

  .location-card {
    min-height: 540px;
    padding: 30px 18px;
  }

  .location-card__content {
    padding: 24px 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .contact-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
