@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --ink: #12100d;
  --navy: #152133;
  --walnut: #6b4428;
  --walnut-dark: #3b271b;
  --ivory: #f7f1e7;
  --paper: #fffaf1;
  --gold: #b68a45;
  --gold-soft: #dcc18a;
  --grey: #776f67;
  --line: rgba(18, 16, 13, 0.12);
  --shadow: 0 24px 70px rgba(21, 33, 51, 0.14);
  --radius: 8px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
}

body.locked {
  overflow: hidden;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 250, 241, 0.16);
  background: rgba(18, 16, 13, 0.82);
  color: var(--paper);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--gold-soft);
  border: 1px solid rgba(220, 193, 138, 0.45);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 25%, rgba(220, 193, 138, 0.36), rgba(18, 16, 13, 0.08) 55%);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav a {
  opacity: 0.82;
  transition: opacity 180ms ease, color 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  opacity: 1;
  color: var(--gold-soft);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 250, 241, 0.2);
  border-radius: 50%;
  color: var(--paper);
  background: transparent;
  cursor: pointer;
}

.cart-link {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 250, 241, 0.2);
  border-radius: 50%;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 20px;
  min-height: 20px;
  display: grid;
  place-items: center;
  padding: 0 5px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 16px 32px rgba(182, 138, 69, 0.26);
}

.btn-secondary {
  color: var(--paper);
  border-color: rgba(255, 250, 241, 0.32);
  background: rgba(255, 250, 241, 0.08);
}

.btn-dark {
  color: var(--paper);
  background: var(--ink);
}

.btn-line {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 250, 241, 0.72);
}

.btn-small {
  min-height: 40px;
  padding: 9px 14px;
  font-size: 0.88rem;
}

.hero {
  min-height: calc(100vh - 76px);
  position: relative;
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(18, 16, 13, 0.92) 0%, rgba(18, 16, 13, 0.62) 43%, rgba(18, 16, 13, 0.18) 100%),
    radial-gradient(circle at 76% 22%, rgba(220, 193, 138, 0.34), transparent 28%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  z-index: -1;
  background: linear-gradient(0deg, var(--ivory), transparent);
}

.hero-content {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 132px) 0;
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-kicker::before,
.section-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--serif);
  line-height: 0.98;
}

h1 {
  max-width: 820px;
  font-size: clamp(3.3rem, 8vw, 7.6rem);
  letter-spacing: 0.01em;
}

h2 {
  font-size: clamp(2.45rem, 5vw, 4.9rem);
}

h3 {
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
}

.hero-sub {
  max-width: 660px;
  margin: 26px 0 0;
  color: rgba(255, 250, 241, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.trust-row span,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid rgba(220, 193, 138, 0.28);
  border-radius: 999px;
  background: rgba(18, 16, 13, 0.42);
  color: rgba(255, 250, 241, 0.86);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-dial {
  position: absolute;
  right: clamp(22px, 6vw, 84px);
  bottom: clamp(36px, 8vw, 96px);
  width: min(250px, 34vw);
  aspect-ratio: 1;
  border: 1px solid rgba(220, 193, 138, 0.34);
  border-radius: 50%;
  opacity: 0.78;
  animation: rotateDial 26s linear infinite;
}

.hero-dial::before,
.hero-dial::after {
  content: "";
  position: absolute;
  inset: 20%;
  border: 1px solid rgba(255, 250, 241, 0.24);
  border-radius: 50%;
}

.hero-dial::after {
  inset: 47% 8%;
  height: 1px;
  border: 0;
  background: rgba(220, 193, 138, 0.56);
}

.section {
  padding: clamp(68px, 9vw, 126px) 0;
}

.section.tight {
  padding: clamp(48px, 6vw, 86px) 0;
}

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  gap: clamp(24px, 5vw, 76px);
  align-items: end;
  margin-bottom: clamp(30px, 5vw, 58px);
}

.section-head p {
  margin: 0;
  color: var(--grey);
  font-size: 1.04rem;
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.7fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}

.lead-copy {
  padding-left: clamp(16px, 3vw, 42px);
  border-left: 1px solid var(--gold);
}

.lead-copy p {
  margin: 0 0 20px;
  font-size: clamp(1.08rem, 2vw, 1.24rem);
}

.image-stack {
  display: grid;
  gap: 14px;
}

.image-stack img,
.feature-image,
.card img,
.product-card img,
.article-card img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 16px 45px rgba(18, 16, 13, 0.08);
}

.quote-panel p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.65rem;
  line-height: 1.1;
}

.quote-panel small {
  display: block;
  margin-top: 14px;
  color: var(--grey);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.benefit-grid,
.scenario-grid,
.trust-grid,
.policy-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.benefit,
.scenario,
.trust-card,
.policy-card {
  min-height: 148px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.72);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.benefit:hover,
.scenario:hover,
.trust-card:hover,
.policy-card:hover,
.product-card:hover,
.article-card:hover {
  transform: translateY(-4px);
  border-color: rgba(182, 138, 69, 0.46);
  box-shadow: 0 18px 45px rgba(21, 33, 51, 0.12);
}

.benefit i,
.scenario i,
.trust-card i,
.policy-card i {
  color: var(--gold);
  font-size: 1.2rem;
}

.benefit h3,
.scenario h3,
.trust-card h3,
.policy-card h3 {
  margin-top: 18px;
  font-size: 1.45rem;
}

.benefit p,
.scenario p,
.trust-card p,
.policy-card p {
  margin: 10px 0 0;
  color: var(--grey);
}

.dark-band {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(18, 16, 13, 0.98), rgba(21, 33, 51, 0.96)),
    var(--ink);
}

.dark-band .section-head p,
.dark-band .card p,
.dark-band .craft-list p {
  color: rgba(255, 250, 241, 0.72);
}

.dark-band::before {
  content: "";
  position: absolute;
  width: 44vw;
  height: 44vw;
  left: -20vw;
  top: -22vw;
  border: 1px solid rgba(220, 193, 138, 0.12);
  border-radius: 50%;
}

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

.card,
.product-card,
.article-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.dark-band .card {
  border-color: rgba(255, 250, 241, 0.14);
  background: rgba(255, 250, 241, 0.06);
}

.card-content,
.product-content,
.article-content {
  padding: 22px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.card p,
.product-content p,
.article-content p {
  margin: 12px 0 0;
  color: var(--grey);
}

.card-actions,
.product-actions,
.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.craft-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 66px);
  align-items: center;
}

.craft-list {
  display: grid;
  gap: 16px;
}

.craft-list article {
  padding: 20px 0 20px 24px;
  border-left: 1px solid rgba(220, 193, 138, 0.44);
}

.craft-list h3 {
  font-size: 1.55rem;
}

.seller-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.68fr);
  gap: 24px;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.seller-panel p {
  margin: 14px 0 0;
  color: var(--grey);
}

.seller-data {
  display: grid;
  gap: 10px;
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(21, 33, 51, 0.06);
}

.seller-data div {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 10px;
}

.seller-data dt {
  color: var(--grey);
  font-weight: 800;
}

.seller-data dd {
  margin: 0;
  font-weight: 700;
}

.magazine-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 6vw, 74px);
  border-radius: var(--radius);
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(18, 16, 13, 0.92), rgba(21, 33, 51, 0.88)),
    url("../img/journaling.webp") center/cover;
  box-shadow: var(--shadow);
}

.magazine-cta h2 {
  max-width: 760px;
}

.magazine-cta p {
  max-width: 620px;
  margin: 22px 0 28px;
  color: rgba(255, 250, 241, 0.78);
}

.page-hero {
  padding: clamp(78px, 10vw, 132px) 0 clamp(54px, 7vw, 90px);
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(18, 16, 13, 0.96), rgba(21, 33, 51, 0.88)),
    url("../img/handwerk.webp") center/cover;
}

.page-hero.light {
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(247, 241, 231, 0.94), rgba(255, 250, 241, 0.82)),
    url("../img/journaling.webp") center/cover;
}

.page-hero p {
  max-width: 760px;
  margin: 22px 0 0;
  font-size: 1.12rem;
}

.filters {
  display: grid;
  grid-template-columns: 1fr 230px 190px;
  gap: 14px;
  margin-bottom: 28px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

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

.field label {
  color: var(--grey);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}

.product-media,
.article-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.product-media img,
.article-media img {
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.price {
  display: inline-flex;
  margin-top: 12px;
  color: var(--navy);
  font-weight: 900;
}

.source-note,
.fine-note {
  color: var(--grey);
  font-size: 0.88rem;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(18, 16, 13, 0.72);
}

.modal.open {
  display: flex;
}

.modal-dialog {
  position: relative;
  width: min(980px, 100%);
  max-height: min(88vh, 900px);
  overflow: auto;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 32px 90px rgba(18, 16, 13, 0.38);
}

.modal-close {
  position: sticky;
  top: 12px;
  left: calc(100% - 58px);
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  cursor: pointer;
}

.modal-body {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
  gap: 26px;
  padding: 0 28px 28px;
}

.modal-body img {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
}

.modal-copy {
  align-self: center;
}

.modal-copy ul,
.content-list {
  padding-left: 20px;
}

.modal-copy li,
.content-list li {
  margin: 8px 0;
}

.cart-layout,
.checkout-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.45fr);
  gap: 24px;
  align-items: start;
}

.cart-list {
  display: grid;
  gap: 14px;
}

.cart-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.cart-item img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.qty-control button,
.remove-item {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.summary-card,
.info-card,
.checkout-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 16px 45px rgba(18, 16, 13, 0.08);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.summary-row strong {
  font-size: 1.1rem;
}

.payment-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.payment-option {
  min-height: 70px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
}

.payment-option.active {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(182, 138, 69, 0.16);
}

.payment-option i {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 1.45rem;
}

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

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

.legal-copy {
  display: grid;
  gap: 24px;
}

.legal-copy article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.legal-copy h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.legal-copy p {
  color: var(--grey);
}

.site-footer {
  color: rgba(255, 250, 241, 0.82);
  background: #0d0c0a;
}

.footer-main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(44px, 7vw, 74px) 0;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 32px;
  align-items: start;
}

.footer-top p {
  margin: 16px 0 0;
}

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

.footer-links h3,
.footer-company h3 {
  margin: 0 0 12px;
  font-family: var(--sans);
  color: var(--gold-soft);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 250, 241, 0.76);
}

.footer-company {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 250, 241, 0.14);
}

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

.footer-company-grid p {
  margin: 0;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 250, 241, 0.14);
  color: rgba(255, 250, 241, 0.58);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  display: none;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.cookie-banner.show {
  display: grid;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.empty-state {
  padding: 32px;
  border: 1px dashed rgba(18, 16, 13, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.72);
}

.announce-toast {
  position: fixed;
  left: 16px;
  bottom: 98px;
  z-index: 120;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--paper);
  box-shadow: 0 14px 34px rgba(18, 16, 13, 0.18);
}

@keyframes heroDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-1.4%, -1%, 0);
  }
}

@keyframes rotateDial {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 980px) {
  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .main-nav {
    position: fixed;
    inset: 76px 16px auto;
    display: none;
    flex-direction: column;
    padding: 20px;
    border: 1px solid rgba(255, 250, 241, 0.14);
    border-radius: var(--radius);
    background: rgba(18, 16, 13, 0.96);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .header-cta {
    display: none;
  }

  .section-head,
  .editorial-grid,
  .craft-layout,
  .seller-panel,
  .cart-layout,
  .checkout-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .benefit-grid,
  .scenario-grid,
  .trust-grid,
  .policy-grid,
  .card-grid,
  .catalog-grid,
  .article-grid,
  .footer-company-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .filters .field:first-child {
    grid-column: 1 / -1;
  }

  .modal-body {
    grid-template-columns: 1fr;
  }

  .modal-body img {
    min-height: 260px;
  }
}

@media (max-width: 680px) {
  .nav-shell {
    width: min(100% - 22px, 1180px);
  }

  .brand {
    font-size: 1.42rem;
  }

  .brand-mark,
  .cart-link,
  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 760px;
  }

  h1 {
    font-size: clamp(3rem, 17vw, 4.6rem);
  }

  .hero-dial {
    width: 160px;
    opacity: 0.42;
  }

  .benefit-grid,
  .scenario-grid,
  .trust-grid,
  .policy-grid,
  .card-grid,
  .catalog-grid,
  .article-grid,
  .footer-top,
  .footer-links,
  .footer-company-grid,
  .filters,
  .form-grid,
  .payment-options {
    grid-template-columns: 1fr;
  }

  .filters .field:first-child {
    grid-column: auto;
  }

  .cart-item {
    grid-template-columns: 88px 1fr;
  }

  .cart-item .remove-item {
    grid-column: 2;
    justify-self: start;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }
}
