@font-face {
  font-family: "Manrope";
  src: url(../fonts/Manrope-VariableFont_wght.ttf);
  font-display: swap;
}
@font-face {
  font-family: "Instrument Serif";
  src: url(../fonts/InstrumentSerif-Italic.ttf);
  font-display: swap;
  font-style: italic;
}

:root {
  --color-bg: #f4f0e8;
  --color-surface: #ebe4d8;
  --color-surface-2: #d9d0c2;
  --color-text: #1d1d1a;
  --color-text-muted: #666057;
  --color-primary: #604f3d;
  --color-accent: #9a6d49;
  --color-dark: #25241f;
  --color-line: rgba(29, 29, 26, .14);
  --color-white: #fffdf8;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 80px;
  --space-8: 96px;
  --text-display: clamp(3.1rem, 7vw, 6.8rem);
  --text-h1: clamp(2.4rem, 5vw, 4.2rem);
  --text-h2: clamp(2rem, 4vw, 3.2rem);
  --text-h3: clamp(1.25rem, 2vw, 1.65rem);
  --text-body: 1rem;
  --text-small: .875rem;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 30px;
  --shadow: 0 24px 60px rgba(35, 30, 24, .10);
  --max: 1280px;
}
* {
  box-sizing: border-box
}
html {
  scroll-behavior: smooth
}
body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: 'Manrope', sans-serif;
  line-height: 1.65
}
img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}
a {
  color: inherit;
  text-decoration: none
}
button,
input,
select,
textarea {
  font: inherit
}
.wrap {
  width: min(calc(100% - 40px), var(--max));
  margin: auto
}
.section {
  padding: clamp(72px, 9vw, 144px) 0
}
.section.compact {
  padding: clamp(48px, 7vw, 96px) 0
}
.eyebrow {
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 700
}
.display,
.h1,
.h2,
.h3 {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  line-height: .96;
  margin: 0
}
.display {
  font-size: var(--text-display)
}
.h1 {
  font-size: var(--text-h1)
}
.h2 {
  font-size: var(--text-h2)
}
.h3 {
  font-size: var(--text-h3)
}
p {
  margin: 0;
  color: var(--color-text-muted)
}
.lead {
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  max-width: 760px
}
.headerbar {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  text-align: center;
  padding: 7px;
  background: var(--color-dark);
  color: #fff
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(244, 240, 232, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--color-line)
}
.nav {
  height: 82px;
  display: flex;
  align-items: center;
  gap: 28px
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
  font-family: 'Instrument Serif';
  font-size: 1.65rem
}
.brand-mark {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border: 1px solid var(--color-line);
  border-radius: 50%;
  position: relative;
  background-color: var(--color-surface);
  background-image: url('../images/fav.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  overflow: hidden
}
.brand-mark:after {
  content: none
}
.navlinks {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: .9rem
}
.navlinks a {
  padding: 10px 0;
  position: relative
}
.navlinks a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 1px;
  background: var(--color-accent);
  transition: .25s
}
.navlinks a:hover:after,
.navlinks a[aria-current="page"]:after {
  right: 0
}
.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--color-text);
  border-radius: 999px;
  background: transparent;
  transition: .25s;
  cursor: pointer
}
.nav-cta:hover,
.btn:hover {
  background: var(--color-text);
  color: var(--color-bg);
  transform: translateY(-1px)
}
.btn.fill {
  background: var(--color-text);
  color: var(--color-bg)
}
.btn.fill:hover {
  background: var(--color-primary)
}
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  font-size: 1.5rem
}
.hero {
  min-height: calc(100vh - 110px);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(32px, 6vw, 88px);
  padding: 44px 0 68px
}
.hero-copy {
  padding-left: max(0px, calc((100vw - var(--max))/2))
}
.hero-copy-inner {
  padding-left: 20px
}
.hero .display span {
  display: block;
  font-style: italic;
  color: var(--color-accent)
}
.hero p {
  margin: 28px 0 34px;
  max-width: 620px;
  font-size: 1.1rem
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}
.hero-media {
  height: min(72vh, 760px);
  min-height: 520px;
  overflow: hidden;
  background: var(--color-surface);
  border-radius: 0 0 0 var(--radius-lg);
  position: relative
}
.hero-media:after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 8%;
  height: 1px;
  background: rgba(255, 255, 255, .65);
  box-shadow: 0 18px 28px rgba(0, 0, 0, .3)
}
.hero-note {
  position: absolute;
  left: 28px;
  bottom: 28px;
  background: rgba(244, 240, 232, .9);
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  max-width: 230px;
  font-size: .82rem;
  backdrop-filter: blur(12px)
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 7vw, 100px);
  align-items: center
}
.split.reverse .media {
  order: 2
}
.media {
  background: var(--color-surface);
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 4/3
}
.media.tall {
  aspect-ratio: 4/5
}
.copy .h2 {
  margin: 12px 0 24px
}
.copy p+p {
  margin-top: 18px
}
.platform-line {
  height: 1px;
  background: var(--color-line);
  margin: 26px 0 18px;
  position: relative
}
.platform-line:before {
  content: "";
  position: absolute;
  width: 36%;
  height: 3px;
  left: 0;
  top: -1px;
  background: var(--color-accent)
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line)
}
.stat {
  padding: 32px 20px;
  border-right: 1px solid var(--color-line)
}
.stat:last-child {
  border: 0
}
.stat strong {
  font-family: 'Instrument Serif';
  font-size: 2.4rem;
  font-weight: 400;
  display: block
}
.stat span {
  font-size: .82rem;
  color: var(--color-text-muted)
}
.dark {
  background: var(--color-dark);
  color: var(--color-white)
}
.dark p,
.dark .eyebrow {
  color: #c9c3b9
}
.dark .platform-line {
  background: rgba(255, 255, 255, .16)
}
.dark .platform-line:before {
  background: #ba8a61
}
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: 48px
}
.section-head p {
  max-width: 600px
}
.cards {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px
}
.card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: .25s;
  position: relative
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow)
}
.card.large {
  grid-column: span 7
}
.card.small {
  grid-column: span 5
}
.card .img {
  aspect-ratio: 16/11;
  background: var(--color-surface-2);
  overflow: hidden
}
.card-body {
  padding: 26px
}
.card .h3 {
  margin: 5px 0 12px
}
.tag {
  display: inline-flex;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em
}
.specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px
}
.specs span {
  padding: 6px 9px;
  background: rgba(255, 255, 255, .5);
  border-radius: 999px;
  font-size: .78rem
}
.price-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--color-line)
}
.price {
  font-family: 'Instrument Serif';
  font-size: 2rem
}
.price small {
  display: block;
  font: 500 .72rem 'Manrope';
  color: var(--color-text-muted)
}
.price-note {
  font-size: .72rem;
  color: var(--color-text-muted);
  max-width: 320px
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}
.feature {
  padding: 30px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  min-height: 230px
}
.feature .num {
  font-family: 'Instrument Serif';
  font-size: 3rem;
  color: var(--color-accent)
}
.feature h3 {
  font-size: 1rem;
  margin: 26px 0 10px
}
.quote-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  background: var(--color-primary);
  color: white;
  border-radius: var(--radius-lg);
  padding: clamp(32px, 6vw, 72px)
}
.quote-band p {
  color: #e4ddd4
}
.finder {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 50px;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 58px)
}
.finder-form {
  display: grid;
  gap: 15px
}
.field {
  display: grid;
  gap: 7px
}
.field label {
  font-size: .82rem;
  font-weight: 600
}
.field select,
.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--color-line);
  background: var(--color-white);
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--color-text)
}
.result {
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--color-white);
  align-self: stretch
}
.result strong {
  font-family: 'Instrument Serif';
  font-size: 2rem;
  font-weight: 400
}
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}
.guide {
  padding: 28px;
  background: var(--color-surface);
  border-radius: var(--radius-md)
}
.guide .h3 {
  margin: 14px 0 14px
}
.guide a {
  display: inline-block;
  margin-top: 18px;
  border-bottom: 1px solid var(--color-text)
}
.faq {
  max-width: 920px;
  margin: auto
}
.faq-item {
  border-bottom: 1px solid var(--color-line)
}
.faq-q {
  width: 100%;
  border: 0;
  background: none;
  text-align: left;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  cursor: pointer
}
.faq-a {
  display: none;
  padding: 0 0 24px
}
.faq-item.open .faq-a {
  display: block
}
.faq-item.open .faq-q span {
  transform: rotate(45deg)
}
.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  background: var(--color-surface);
  padding: clamp(28px, 5vw, 62px);
  border-radius: var(--radius-lg)
}
.contact-lines {
  margin-top: 28px;
  display: grid;
  gap: 10px
}
.contact-lines div {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-line)
}
.legal {
  max-width: 880px
}
.legal .h1 {
  margin-bottom: 20px
}
.legal h2 {
  font-family: 'Instrument Serif';
  font-size: 2rem;
  font-weight: 400;
  margin: 48px 0 12px
}
.legal p+p {
  margin-top: 14px
}
.notice {
  padding: 20px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  margin: 26px 0
}
.footer {
  background: #171714;
  color: #f2eee7;
  padding: 68px 0 28px
}
.footer p {
  color: #aaa49b
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 60px
}
.footer .brand {
  margin-bottom: 18px
}
.footer a {
  display: block;
  margin: 7px 0;
  color: #cfc8bd
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin-top: 48px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: .75rem;
  color: #8f8a83
}
.disclaimer {
  max-width: 720px
}
.breadcrumbs {
  padding-top: 34px;
  font-size: .8rem;
  color: var(--color-text-muted)
}
.page-hero {
  padding: 80px 0 70px
}
.page-hero .h1 {
  max-width: 950px
}
.page-hero p {
  max-width: 760px;
  margin-top: 22px;
  font-size: 1.1rem
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px
}
.product {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden
}
.product .img {
  aspect-ratio: 16/10
}
.product-body {
  padding: 28px
}
.product-body .h3 {
  margin: 8px 0 12px
}
.product .price-row {
  align-items: start
}
.material-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px
}
.material {
  min-height: 240px;
  border-radius: var(--radius-md);
  padding: 24px;
  background: var(--color-surface);
  display: flex;
  flex-direction: column;
  justify-content: flex-end
}
.material:nth-child(2) {
  background: #d8c7b4
}
.material:nth-child(3) {
  background: #c9c2b5
}
.material:nth-child(4) {
  background: #b6b0a7
}
.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px
}
.table th,
.table td {
  text-align: left;
  border-bottom: 1px solid var(--color-line);
  padding: 16px 10px;
  vertical-align: top
}
.table th {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em
}
.callout {
  border-left: 3px solid var(--color-accent);
  padding: 6px 0 6px 20px;
  margin: 24px 0
}
.article-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 60px
}
.article-grid aside {
  position: sticky;
  top: 120px;
  align-self: start
}
.article-grid aside a {
  display: block;
  padding: 9px 0;
  border-bottom: 1px solid var(--color-line);
  font-size: .85rem
}
.article h2 {
  font-family: 'Instrument Serif';
  font-size: 2.35rem;
  font-weight: 400;
  margin: 56px 0 14px
}
.article h3 {
  margin: 30px 0 10px
}
.article p+p {
  margin-top: 16px
}
.thank-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px
}
.thank-card {
  padding: 34px;
  background: var(--color-surface);
  border-radius: var(--radius-md)
}
.thank-card .num {
  font-family: 'Instrument Serif';
  font-size: 2.4rem;
  color: var(--color-accent)
}
@media(max-width:1024px) {
  .navlinks {
    display: none
  }
  .menu-toggle {
    display: block
  }
  .nav.open .navlinks {
    display: flex;
    position: absolute;
    top: 110px;
    left: 20px;
    right: 20px;
    background: var(--color-bg);
    padding: 22px;
    border-radius: var(--radius-md);
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow)
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 0
  }
  .hero-copy {
    padding: 70px 20px 10px
  }
  .hero-copy-inner {
    padding: 0
  }
  .hero-media {
    border-radius: 0;
    height: 62vh;
    min-height: 460px
  }
  .split,
  .finder,
  .contact-panel,
  .article-grid {
    grid-template-columns: 1fr
  }
  .split.reverse .media {
    order: 0
  }
  .feature-grid,
  .guide-grid {
    grid-template-columns: 1fr 1fr
  }
  .stats {
    grid-template-columns: 1fr 1fr
  }
  .stat:nth-child(2) {
    border-right: 0
  }
  .product-grid {
    grid-template-columns: 1fr
  }
  .material-row {
    grid-template-columns: 1fr 1fr
  }
  .article-grid aside {
    position: static
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr
  }
  .footer-grid>div:first-child {
    grid-column: 1/-1
  }
}
@media(max-width:700px) {
  .wrap {
    width: min(calc(100% - 28px), var(--max))
  }
  .nav {
    height: 72px
  }
  .nav-cta {
    display: none
  }
  .section-head {
    display: block
  }
  .section-head p {
    margin-top: 18px
  }
  .cards {
    display: block
  }
  .card {
    margin-bottom: 16px
  }
  .feature-grid,
  .guide-grid,
  .material-row,
  .stats,
  .quote-band,
  .thank-grid {
    grid-template-columns: 1fr
  }
  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--color-line)
  }
  .stat:last-child {
    border-bottom: 0
  }
  .footer-grid {
    grid-template-columns: 1fr
  }
  .footer-grid>div:first-child {
    grid-column: auto
  }
  .footer-bottom {
    display: block
  }
  .footer-bottom>*+* {
    margin-top: 12px
  }
  .hero-media {
    min-height: 380px
  }
  .page-hero {
    padding: 58px 0
  }
  .price-row {
    display: block
  }
  .price-note {
    margin-top: 12px
  }
}

/* WPROMO-102215 refinement */
.hero-media {
  margin-right: 20px;
  border-radius: var(--radius-lg)
}
.home-materials {
  margin-top: clamp(28px, 3.5vw, 52px);
  padding-top: clamp(78px, 8vw, 118px);
  padding-bottom: clamp(62px, 6vw, 92px)
}
.home-models {
  padding-top: clamp(72px, 7vw, 96px);
  padding-bottom: clamp(40px, 4vw, 58px)
}
.model-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px
}
.model-cards .model-card {
  grid-column: auto;
  display: flex;
  flex-direction: column;
  height: 100%
}
.model-cards .model-card .img {
  aspect-ratio: 16/11
}
.model-cards .model-card .card-body {
  display: flex;
  flex-direction: column;
  flex: 1
}
.model-cards .model-card .price-row {
  margin-top: auto
}
.article-grid aside {
  padding-top: 56px
}
.product[id] {
  scroll-margin-top: 130px
}
.result {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 320px;
  padding: clamp(34px, 4vw, 54px);
  border: 1px solid var(--color-line);
  box-shadow: 0 18px 44px rgba(35, 30, 24, .06)
}
.result .eyebrow {
  margin-bottom: 14px
}
.finder-choice {
  width: 100%;
  padding: 24px 26px;
  border-radius: var(--radius-md);
  background: var(--color-surface-2);
  border: 1px solid rgba(96, 79, 61, .14)
}
.finder-choice strong {
  display: block;
  font-size: clamp(2.55rem, 4vw, 3.55rem);
  line-height: 1;
  margin-bottom: 14px;
  color: var(--color-text)
}
.finder-choice p {
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  max-width: 620px;
  color: var(--color-text)
}
.finder-product-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 24px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--color-text);
  color: var(--color-bg);
  font-weight: 700;
  align-self: flex-start;
  transition: .25s
}
.finder-product-link:hover {
  background: var(--color-primary);
  transform: translateY(-1px)
}
@media(max-width:1024px) {
  .hero-media {
    margin-right: 20px;
    margin-left: 20px;
    border-radius: var(--radius-lg)
  }
  .article-grid aside {
    padding-top: 0
  }
  .result {
    min-height: 280px
  }
}
@media(max-width:700px) {
  .hero-media {
    margin-right: 14px;
    margin-left: 14px
  }
  .model-cards {
    display: grid;
    grid-template-columns: 1fr
  }
  .home-materials {
    margin-top: 26px;
    padding-top: 64px;
    padding-bottom: 56px
  }
  .home-models {
    padding-top: 46px;
    padding-bottom: 40px
  }
  .result {
    min-height: auto;
    padding: 28px
  }
  .finder-choice {
    padding: 20px
  }
  .finder-product-link {
    width: 100%
  }
}

/* Favicon placement slots */
.fav-slot {
  display: inline-block;
  flex: 0 0 auto;
  background-image: url('../images/fav.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain
}

.footer-fav-slot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .16)
}
.footer .brand {
  align-items: center
}
@media(max-width:700px) {
  .footer-fav-slot {
    width: 34px;
    height: 34px
  }
  body {
    word-break: break-word;
  }
}

/* Materials section emphasis */
.home-materials.dark .section-head {
  margin-bottom: 42px
}
.home-materials.dark .section-head p {
  color: #c9c3b9
}
.home-materials.dark .material {
  color: var(--color-text);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .12);
  border: 1px solid rgba(255, 255, 255, .08)
}
.home-materials.dark .material p {
  color: var(--color-text-muted)
}
.home-materials.dark .material:first-child {
  background: #e6ddcf
}
.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 9999;
  width: min(430px, calc(100% - 48px));
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  pointer-events: none;
  transition:
    opacity .28s ease,
    visibility .28s ease,
    transform .28s ease;
}

.cookie-banner.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-insert {
  position: relative;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  background: var(--color-surface);
  color: var(--color-text);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.cookie-insert::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 28px;
  height: 1px;
  background: var(--color-accent);
}

.cookie-insert__mark {
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 22px 10px;
  background: var(--color-primary);
  color: var(--color-white);
}

.cookie-insert__mark span {
  font-family: "Instrument Serif", serif;
  font-size: 2rem;
  line-height: 1;
}

.cookie-insert__mark small {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
}

.cookie-insert__content {
  padding: 22px 24px 20px;
}

.cookie-insert__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 18px;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-line);
}

.cookie-insert__head span {
  color: var(--color-text-muted);
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.cookie-insert__head span:first-child {
  color: var(--color-accent);
}

.cookie-insert__content h3 {
  margin: 0 0 10px;
  color: var(--color-text);
  font-family: "Instrument Serif", serif;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.02em;
}

.cookie-insert__content p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: .72rem;
  line-height: 1.65;
}

.cookie-insert__links {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 14px;
}

.cookie-insert__links a {
  position: relative;
  color: var(--color-primary);
  font-size: .6rem;
  font-weight: 700;
}

.cookie-insert__links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 1px;
  background: currentColor;
  opacity: .28;
}

.cookie-insert__links a:hover {
  color: var(--color-accent);
}

.cookie-insert__actions {
  grid-column: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--color-line);
}

.cookie-insert__action {
  min-height: 60px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 9px;
  padding: 10px 15px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
  transition:
    background .2s ease,
    color .2s ease;
}

.cookie-insert__action span {
  color: var(--color-accent);
  font-family: "Instrument Serif", serif;
  font-size: .75rem;
}

.cookie-insert__action strong {
  font-size: .67rem;
  font-weight: 700;
  line-height: 1.3;
}

.cookie-insert__action--necessary {
  border-right: 1px solid var(--color-line);
}

.cookie-insert__action--necessary:hover {
  background: var(--color-surface-2);
}

.cookie-insert__action--accept {
  background: var(--color-dark);
  color: var(--color-white);
}

.cookie-insert__action--accept span {
  color: #c9b19c;
}

.cookie-insert__action--accept:hover {
  background: var(--color-primary);
}

.cookie-settings-link {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9000;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-primary);
  font-family: "Manrope", sans-serif;
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .05em;
  cursor: pointer;
}

.cookie-settings-link i {
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid var(--color-line);
  border-radius: 50%;
  background: var(--color-surface);
  transition:
    background .2s ease,
    border-color .2s ease;
}

.cookie-settings-link i::before,
.cookie-settings-link i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--color-accent);
  transform: translate(-50%, -50%);
}

.cookie-settings-link i::before {
  width: 10px;
  height: 1px;
}

.cookie-settings-link i::after {
  width: 1px;
  height: 10px;
}

.cookie-settings-link:hover i {
  background: var(--color-surface-2);
  border-color: var(--color-accent);
}

body:has(.cookie-banner.show) .cookie-settings-link {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.cookie-insert__action:focus-visible,
.cookie-insert__links a:focus-visible,
.cookie-settings-link:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

@media (max-width: 520px) {
  .cookie-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: auto;
  }

  .cookie-insert {
    grid-template-columns: 54px minmax(0, 1fr);
    border-radius: 14px;
  }

  .cookie-insert__mark {
    padding: 17px 7px;
  }

  .cookie-insert__mark span {
    font-size: 1.5rem;
  }

  .cookie-insert__content {
    padding: 17px 16px 15px;
  }

  .cookie-insert__head {
    display: grid;
    gap: 3px;
    margin-bottom: 12px;
  }

  .cookie-insert__content h3 {
    font-size: 1.5rem;
  }

  .cookie-insert__content p {
    font-size: .68rem;
  }

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

  .cookie-insert__action {
    min-height: 54px;
    padding: 9px 10px;
  }

  .cookie-settings-link {
    right: 10px;
    bottom: 10px;
  }
}

@media (max-width: 370px) {
  .cookie-insert__actions {
    grid-template-columns: 1fr;
  }

  .cookie-insert__action--necessary {
    border-right: 0;
    border-bottom: 1px solid var(--color-line);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-banner,
  .cookie-insert__action,
  .cookie-settings-link i {
    transition: none;
  }
}