@charset "UTF-8";

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #1a1a1a;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ============= ANNOUNCEMENT BAR ============= */
.ann-bar{
  background:#F4C58A;
  color:#111;
  text-align:center;
  font-size:12px;
  letter-spacing:0.04em;
  padding: 9px 0 8px;
  width:100%;
}
.ann-bar p{ margin:0; font-weight:500; }
.ann-bar strong{ font-weight:600; }

/* ============= HEADER ============= */
.topHdr {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  z-index: 100;
  padding: 14px 1.5rem;
}
.topHdr .header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 22px;
  max-width: 1440px;
  margin: 0 auto;
}

.logo {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 400;
  color:#111111;
  letter-spacing: 0.3px;
  white-space:nowrap;
}
.logo-tech{
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight:400;
  color:#6b6b6b;
  letter-spacing: 0;
}

.main-nav { display:flex; gap: 1.4em; flex: 1; justify-content: center; }
.main-nav a {
  font-size: 13px;
  color:#1a1a1a;
  padding: 10px 4px;
  position: relative;
  transition: color .2s ease;
}
.main-nav a:hover{ color:#6b6b6b; }

.header-icons { display: none; }
.hdr-ic { display: none; }
.cart-dot { display: none; }

/* ============= MOBILE HEADER ============= */
.mobHdr { display: none; }
.mob-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px 18px;
  background:#fff;
  border-bottom: 1px solid #e5e5e5;
  position: sticky; top: 0;
  z-index: 999;
}
.mob-burger{ cursor:pointer; display:flex; flex-direction:column; gap:4px; width: 28px; }
.mob-burger span{ display:block; width:24px; height:2px; background:#111; }
.mob-logo{ font-family:'DM Serif Display', Georgia, serif; font-size:20px; }
.mob-spacer { width: 28px; }

.mobNav {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 9999;
  display: none;
}
.mobNav.open { display: block; }
.mobNav-panel{
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 280px;
  background: #fff;
  padding: 22px 26px 26px;
  display: flex;
  flex-direction: column;
}
.mobNav-panel a {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 13px 0;
  border-bottom: 1px solid #f0f0f0;
  color: #1a1a1a;
}
.mobNav-close {
  text-align: right;
  font-size: 28px;
  cursor: pointer;
  margin-bottom: 18px;
}

/* ============= SUB NAV ============= */
.subRail {
  display: flex;
  gap: 22px;
  padding: 11px 24px 10px;
  border-bottom: 1px solid #eee;
  font-size: 13px;
  overflow-x: auto;
  max-width: 1440px;
  margin: 0 auto;
}
.subRail a { white-space: nowrap; color: #1a1a1a; }
.subRail a:hover { text-decoration: underline; }

/* ============= HERO ============= */
.heroBlock {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 24px;
  background:#F4C58A;
  padding: 48px 32px 56px;
  align-items: center;
}
.hero-img-left,
.hero-img-right {
  background:#fff;
  padding: 12px 12px 30px;
  box-shadow: 0 3px 8px rgba(0,0,0,.1);
  position:relative;
}
.hero-img-left img,
.hero-img-right img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}
.polaroid-cap {
  position:absolute;
  bottom: 7px;
  left:0; right:0;
  text-align:center;
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 13px;
  color: #444;
}

.hero-copy { text-align: center; padding: 0 12px; }
.hero-copy h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: 3.75rem;
  line-height: 1.05;
  color: #1a1a1a;
  margin: 0 0 8px;
}
.hero-copy h1 em { font-style: italic; }

.styled-by {
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 17px;
  color: #5a4a30;
  font-weight: 500;
}
.hero-copy p {
  font-size: 15px;
  line-height: 1.65;
  margin: 0 auto 22px;
  max-width: 380px;
  color: #2a2a2a;
}
.hero-mini-meta{
  display:flex;
  gap: 1.4rem;
  justify-content:center;
  margin-top: 20px;
  font-size: 12px;
  color: #4a3a20;
  flex-wrap: wrap;
}

/* ============= BUTTONS ============= */
.btn,
.btn-primary{
  display:inline-block;
  background:#111;
  color:#fff !important;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  transition: background .2s ease;
  font-family: inherit;
  font-weight: 500;
  text-align: center;
}
.btn:hover { background:#333; }

.btn-secondary{
  background: transparent;
  color: #111;
  border: 1px solid #111;
}
.btn-white {
  background:#fff;
  color: #111 !important;
  padding: 11px 22px;
  font-size: 11px;
}

/* ============= FOAM CIRCLES ============= */
.foam-circles {
  padding: 2.75rem 24px 28px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.foam-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 22px;
  flex-wrap: wrap;
  gap: 10px;
}
.foam-head h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  font-weight: 400;
  margin: 0;
  letter-spacing: .2px;
}
.foam-sub{
  font-size: 12px;
  color: #666;
  font-style: italic;
}
.foam-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 18px;
}
.foam-row .cat { text-align:center; }
.foam-row .cat .thumb {
  width: 96px; height: 96px;
  border-radius: 50%;
  margin: 0 auto 9px;
  background-size: cover;
  background-position: center;
  background-color: #f4e6d0;
  transition: transform .25s ease;
}
.foam-row .cat:hover .thumb{ transform: scale(1.04); }
.foam-row .cat span{
  font-size: 12px;
  color: #1a1a1a;
  font-weight: 500;
  display: block;
}

/* ============= PRODUCT GRID BAND ============= */
.prodBand {
  padding: 40px 24px 60px;
  max-width: 1440px;
  margin: 0 auto;
}
.band-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.5rem;
  gap: 18px;
  flex-wrap: wrap;
}
.band-head h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 30px;
  font-weight: 400;
  margin: 0 0 4px;
}
.band-sub {
  font-size: 12px;
  color: #6b6b6b;
  margin: 0;
}
.shop-now-btn {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid #1a1a1a;
  border-radius: 24px;
  background: #fff;
  color: #1a1a1a;
  white-space: nowrap;
}
.shop-now-btn:hover { background: #1a1a1a; color: #fff; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.product-card{
  position: relative;
  display: block;
  cursor: pointer;
}
.product-card .card-img {
  background: #f8f8f8;
  aspect-ratio: 4 / 5;
  margin-bottom: 11px;
  overflow: hidden;
  position: relative;
}
.product-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .card-img img{ transform: scale(1.03); }

.prod-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #fff;
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 500;
  z-index: 2;
}

.wishlist {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,.85);
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  z-index: 2;
}
.wishlist.on { color: #c00; }
.wishlist:hover { background: #fff; }

.product-card h3,
.product-card .name{
  font-size: 14px;
  font-weight: 500;
  color: #1A1A1A;
  margin: 4px 0 4px;
  line-height: 1.4;
}
.product-card .meta-row {
  font-size: 12px;
  color: #6b6b6b;
  margin-bottom: 6px;
  line-height: 1.4;
}
.product-card .price {
  font-size: 14px;
  color: #1a1a1a;
  font-weight: 500;
  margin-top: 3px;
}
.product-card .prod-old {
  text-decoration: line-through;
  color: #6b6b6b;
  margin-right: 6px;
  font-size: 12px;
}
.product-card .stock-line {
  font-size: 11px;
  color: #4a7c59;
  margin-top: 5px;
  margin-bottom: 11px;
}
.product-card .stock-line.oos { color: #c00; }

.cart-add-btn {
  width: 100%;
  background: transparent;
  color: #111;
  border: 1px solid #111;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 10px 14px;
  cursor: pointer;
  font-family: inherit;
  transition: all .2s ease;
}
.cart-add-btn:hover { background: #111; color: #fff; }

/* ============= ALTERNATING STRIP ============= */
.alt-strip {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 22px;
  padding: 1.5rem 24px 48px;
  max-width: 1440px;
  margin: 0 auto;
}
.alt-strip-rtl { direction: rtl; }
.alt-strip-rtl > * { direction: ltr; }

.alt-strip .alt-img {
  position: relative;
  min-height: 460px;
  background-size: cover;
  background-position: center;
  background-color: #d9c7a8;
}
.alt-strip .alt-img .overlay {
  position: absolute;
  left: 30px;
  bottom: 30px;
  color: #fff;
  max-width: 380px;
}
.alt-strip .alt-img .overlay h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.85rem;
  font-weight: 400;
  margin: 0 0 9px;
  line-height: 1.15;
}
.alt-strip .alt-img .overlay p {
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 15px;
}

.alt-strip .mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.mini-fact {
  background: #faf6ee;
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 220px;
  justify-content: center;
}
.mini-num {
  font-family: 'DM Serif Display', serif;
  font-size: 38px;
  color: #1a1a1a;
  line-height: 1;
}
.mini-txt {
  font-size: 13px;
  color: #4a4a4a;
  line-height: 1.55;
}

.cold-card {
  background: #f6f1e8;
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 0.4em;
  min-height: 220px;
}
.cold-num {
  font-family: 'DM Serif Display', serif;
  font-size: 30px;
  color: #D9A56A;
  line-height: 1;
  margin-bottom: 0.3em;
  font-style: italic;
}
.cold-card h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  color: #1a1a1a;
}
.cold-card p {
  font-size: 13px;
  color: #4a4a4a;
  line-height: 1.6;
  margin: 0;
}

/* ============= SPECS DEEP ============= */
.specsDeep {
  background: #faf6ee;
  padding: 3.5rem 24px 4rem;
}
.spec-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.spec-head {
  text-align: center;
  margin-bottom: 30px;
}
.spec-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #8a6d3a;
  font-weight: 600;
  margin-bottom: 9px;
}
.spec-head h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 34px;
  font-weight: 400;
  margin: 0 0 11px;
  line-height: 1.15;
}
.spec-lead {
  font-size: 14px;
  color: #4a4a4a;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

.spec-table {
  background: #fff;
  border: 1px solid #e8ddc6;
  display: flex;
  flex-direction: column;
}
.spec-row {
  display: grid;
  grid-template-columns: 1.3fr .9fr 1fr 1fr 1.3fr;
  padding: 15px 22px;
  border-bottom: 1px solid #f0e8d6;
  font-size: 13px;
  color: #2a2a2a;
  gap: 14px;
  align-items: center;
}
.spec-row:last-child { border-bottom: 0; }
.spec-row-head {
  background: #1a1a1a;
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
  padding: 14px 22px;
}
.spec-row-head > div { color: #fff; }
.spec-mod { font-weight: 600; color: #1a1a1a; }
.spec-row em {
  font-style: italic;
  color: #D9A56A;
  font-weight: 500;
}

.spec-aside {
  margin-top: 22px;
  padding: 22px 26px;
  background: #fff;
  border-left: 3px solid #D9A56A;
}
.spec-aside p {
  font-size: 13px;
  color: #4a4a4a;
  line-height: 1.7;
  margin: 0;
  font-style: italic;
}

/* ============= USE CASES ============= */
.useCaseTri {
  padding: 56px 24px 50px;
  max-width: 1440px;
  margin: 0 auto;
}
.use-head { text-align: left; margin-bottom: 25px; }
.use-head h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 30px;
  font-weight: 400;
  margin: 0 0 4px;
}
.use-head span {
  font-size: 12px;
  color: #6b6b6b;
  letter-spacing: .04em;
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.use-tile {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  display: block;
  background: #d9c7a8;
}
.use-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.use-tile:hover img { transform: scale(1.04); }
.use-tile .tile-copy {
  position: absolute;
  inset: 0;
  padding: 26px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, rgba(0,0,0,.1) 60%, transparent 100%);
}
.tile-eye {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.85);
  margin-bottom: 7px;
}
.use-tile .tile-copy h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.45rem;
  font-weight: 400;
  margin: 0 0 8px;
  line-height: 1.2;
}
.use-tile .tile-copy p {
  font-size: 13px;
  margin: 0 0 16px;
  line-height: 1.5;
  max-width: 260px;
}

/* The process section uses mini-fact in 2x2 grid via .mini-grid */
.useCaseTri .mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.useCaseTri .mini-fact { min-height: 200px; }
.useCaseTri .mini-num {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: #D9A56A;
  font-style: italic;
}
.useCaseTri .mini-txt strong {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
  color: #1a1a1a;
}

/* ============= REVIEWS ============= */
.reviewsRow {
  padding: 56px 24px 52px;
  max-width: 1440px;
  margin: 0 auto;
}
.rev-head { margin-bottom: 24px; }
.rev-head h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 30px;
  font-weight: 400;
  margin: 0 0 4px;
}
.rev-sub {
  font-size: 12px;
  color: #6b6b6b;
  letter-spacing: 0;
  display: block;
  max-width: 480px;
}
.rev-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.review-card {
  font-size: 13px;
  color: #1a1a1a;
}
.review-card .img {
  background: #f4e6d0;
  background-size: cover;
  background-position: center;
  aspect-ratio: 1 / 1;
  margin-bottom: 13px;
}
.review-card .stars {
  color: #FFB800;
  font-size: 13px;
  margin-bottom: 7px;
  letter-spacing: 1px;
}
.review-card .quote {
  font-weight: 500;
  margin: 0 0 9px;
  line-height: 1.5;
  font-size: 13px;
}
.review-card .name {
  color: #6b6b6b;
  font-size: 12px;
}

/* ============= CHECKOUT ============= */
.checkout-area {
  padding: 3.5rem 24px 4rem;
  background: #faf6ee;
}
.ck-inner { max-width: 1200px; margin: 0 auto; }
.ck-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 34px;
}
.ck-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #8a6d3a;
  font-weight: 600;
  margin-bottom: 9px;
}
.ck-head h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  font-weight: 400;
  margin: 0 0 11px;
  line-height: 1.2;
}
.ck-head p {
  font-size: 14px;
  color: #4a4a4a;
  line-height: 1.65;
  margin: 0;
}

.ck-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 30px;
  align-items: flex-start;
}
.ck-form-side { background: #fff; padding: 30px 32px; }
.ck-sum-side { position: sticky; top: 90px; }

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.f-wrap { margin-bottom: 13px; }
.f-wrap label {
  display: block;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 5px;
  font-weight: 600;
}
.f-wrap .opt { color: #999; font-weight: 400; }
.f-wrap input, .f-wrap textarea {
  width: 100%;
  border: 1px solid #d9c7a8;
  padding: 11px 13px;
  font-size: 14px;
  color: #1a1a1a;
  background: #fff;
  outline: none;
  font-family: inherit;
  border-radius: 2px;
  transition: border-color .15s;
}
.f-wrap input:focus, .f-wrap textarea:focus { border-color: #D9A56A; }
.f-wrap input.f-invalid, .f-wrap textarea.f-invalid { border-color: #c00; }
.f-err {
  display: block;
  font-size: 11px;
  color: #c00;
  margin-top: 4px;
  min-height: 14px;
}

.pay-block {
  margin: 18px 0 22px;
  padding: 20px 22px;
  background: #faf6ee;
  border: 1px solid #ecdfc6;
}
.pay-head {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 13px;
}
.pay-opt {
  display: flex;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid #ecdfc6;
  cursor: pointer;
  align-items: flex-start;
}
.pay-opt:last-child { border-bottom: 0; }
.pay-opt input[type="radio"] {
  margin-top: 4px;
  accent-color: #D9A56A;
}
.pay-opt span { display: block; flex: 1; }
.pay-opt strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 2px;
}
.pay-opt em {
  font-style: normal;
  font-size: 12px;
  color: #6b6b6b;
  display: block;
}

.ck-submit {
  width: 100%;
  padding: 16px;
  font-size: 13px;
}
.ck-priv {
  font-size: 11px;
  color: #888;
  text-align: center;
  margin: 11px 0 0;
}
.ck-priv a { text-decoration: underline; }

.thanks-inline {
  text-align: center;
  padding: 50px 20px;
}
.thanks-inline i { font-size: 48px; color: #4a7c59; }
.thanks-inline h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  font-weight: 400;
  margin: 14px 0 8px;
}

.sum-box {
  background: #fff;
  padding: 24px 26px 26px;
  border: 1px solid #ecdfc6;
}
.sum-title {
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 13px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ecdfc6;
}
.sum-empty {
  font-size: 12px;
  color: #aaa;
  padding: 8px 0;
}
.sum-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid #f4ecd9;
  gap: 12px;
}
.sum-total-row {
  display: flex;
  justify-content: space-between;
  padding: 13px 0 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.sum-total-val { font-size: 17px; }
.sum-note {
  font-size: 11px;
  color: #aaa;
  margin-top: 5px;
  line-height: 1.55;
}

/* ============= FOOTER ============= */
.ftrZone {
  background: #1a1a1a;
  color: #fff;
  padding: 56px 24px 22px;
  font-size: 13px;
}
.ftr-inner {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: 30px;
  max-width: 1440px;
  margin: 0 auto;
}
.ftr-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 0 0 13px;
  color: #fff;
}
.ftr-col ul { list-style: none; margin: 0; padding: 0; }
.ftr-col li {
  margin-bottom: 7px;
  color: rgba(255,255,255,.78);
}
.ftr-col a { color: rgba(255,255,255,.78); }
.ftr-col a:hover { color: #fff; text-decoration: underline; }

.ftr-signup p {
  color: rgba(255,255,255,.7);
  font-size: 12px;
  line-height: 1.65;
  margin: 0 0 15px;
}
.signup-form {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #fff;
}
.signup-form input {
  flex: 1;
  background: transparent;
  border: 0;
  color: #fff;
  padding: 10px 0;
  font-size: 13px;
  outline: none;
  font-family: inherit;
}
.signup-form input::placeholder { color: rgba(255,255,255,.5); }
.signup-form button {
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  padding: 6px 4px;
}

.ftr-legal {
  border-top: 1px solid #333;
  margin-top: 38px;
  padding-top: 17px;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255,255,255,.6);
  flex-wrap: wrap;
  gap: 10px;
}

/* ============= CART MODAL (NEW DESIGN) ============= */
.cart-modal {
  position: fixed;
  inset: 0;
  background: rgba(20, 16, 10, 0.55);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.cart-modal.open {
  display: flex;
  animation: cartFadeIn .22s ease;
}
@keyframes cartFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.cart-card {
  background: #fff;
  width: 100%;
  max-width: 640px;
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
  overflow: hidden;
  animation: cartSlideUp .3s cubic-bezier(.2,.7,.3,1);
}
@keyframes cartSlideUp {
  from { transform: translateY(22px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cart-card-hd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 30px 18px;
  border-bottom: 1px solid #eee;
  flex-shrink: 0;
}
.cart-card-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
}
.cart-card-title span {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #888;
  font-weight: 400;
  margin-left: 6px;
}
.cart-card-close {
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  color: #444;
  padding: 0 4px;
  transition: color .15s;
}
.cart-card-close:hover { color: #000; }

.cart-list {
  flex: 1;
  overflow-y: auto;
  padding: 4px 30px 8px;
  min-height: 80px;
}
.cart-list .cart-row {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid #f3edde;
  align-items: center;
}
.cart-list .cart-row:last-child { border-bottom: 0; }

.cart-row-thumb {
  width: 76px;
  height: 76px;
  background: #f6f1e8;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
}
.cart-row-info { min-width: 0; }
.cart-row-name {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 7px;
  color: #1a1a1a;
  line-height: 1.35;
}
.cart-row-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.cart-row-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid #d9c7a8;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}
.cart-row-stepper button {
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  color: #1a1a1a;
  line-height: 1;
}
.cart-row-stepper button:hover { background: #faf6ee; }
.cart-row-stepper span {
  font-size: 13px;
  font-weight: 500;
  min-width: 22px;
  text-align: center;
  padding: 0 4px;
}
.cart-row-rmlink {
  background: transparent;
  border: 0;
  padding: 0;
  color: #999;
  font-size: 11px;
  text-decoration: underline;
  cursor: pointer;
  font-family: inherit;
}
.cart-row-rmlink:hover { color: #c00; }

.cart-row-price {
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  white-space: nowrap;
  font-family: 'DM Serif Display', serif;
}

.cart-list-empty {
  text-align: center;
  padding: 60px 20px 50px;
  color: #888;
  font-size: 14px;
}
.cart-list-empty .empty-mark {
  font-family: 'DM Serif Display', serif;
  font-size: 56px;
  color: #d9c7a8;
  font-style: italic;
  margin-bottom: 8px;
  line-height: 1;
}

.cart-card-foot {
  padding: 18px 30px 24px;
  border-top: 1px solid #eee;
  background: #faf6ee;
  flex-shrink: 0;
}
.cart-card-meta {
  font-size: 11px;
  color: #6b6b6b;
  margin-bottom: 11px;
  text-align: center;
  letter-spacing: .02em;
}
.cart-card-totalrow {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 14px;
  margin-bottom: 13px;
  border-bottom: 1px solid #ecdfc6;
}
.cart-card-tot-lbl {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
}
.cart-card-tot-val {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
}
.cart-card-cta {
  display: block;
  width: 100%;
  padding: 14px;
  text-align: center;
}
.cart-card-keepshop {
  display: block;
  width: 100%;
  margin-top: 10px;
  background: transparent;
  border: 0;
  font-family: inherit;
  font-size: 12px;
  color: #6b6b6b;
  text-decoration: underline;
  cursor: pointer;
  padding: 6px 0;
}
.cart-card-keepshop:hover { color: #1a1a1a; }

/* ============= PRODUCT MODAL ============= */
.prod-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.prod-modal.open { display: flex; }
.modal-box {
  background: #fff;
  max-width: 880px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}
.modal-x {
  position: absolute;
  top: 13px;
  right: 18px;
  font-size: 28px;
  cursor: pointer;
  z-index: 2;
}
.modal-grid { display: flex; }
.modal-img-wrap {
  flex: 1;
  background: #f8f8f8;
  min-height: 320px;
  position: relative;
}
.modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-info {
  flex: 1;
  padding: 34px 30px 28px;
  display: flex;
  flex-direction: column;
}
.modal-name {
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  margin-bottom: 7px;
}
.modal-spec {
  font-size: 12px;
  color: #888;
  margin-bottom: 13px;
}
.modal-desc {
  font-size: 14px;
  color: #4a4a4a;
  line-height: 1.7;
  margin-bottom: 15px;
}
.modal-stock {
  font-size: 12px;
  color: #4a7c59;
  margin-bottom: 15px;
}
.modal-stock.oos { color: #c00; }
.modal-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 18px;
}
.modal-price-row .prod-old {
  text-decoration: line-through;
  color: #6b6b6b;
  font-size: 14px;
}
.modal-price-row .prod-price {
  font-size: 20px;
  font-weight: 600;
}
.modal-qty-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.modal-qty-row label {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
}
.modal-qty-row select {
  padding: 8px 12px;
  border: 1px solid #d9c7a8;
  font-family: inherit;
  font-size: 14px;
  background: #fff;
  outline: none;
}
.modal-add { margin-top: auto; width: 100%; }

/* ============= TOAST ============= */
.toast-bar {
  position: fixed;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  background: #1a1a1a;
  color: #fff;
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10002;
  transition: bottom .3s;
}
.toast-mark {
  color: #6db97e;
  font-size: 16px;
  font-weight: 700;
}
.toast-bar.show { bottom: 30px; }

/* ============= FLOATING CART WIDGET ============= */
.cart-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #1a1a1a;
  color: #fff;
  border: 0;
  padding: 13px 20px 13px 18px;
  border-radius: 100px;
  font-family: 'DM Serif Display', serif;
  font-size: 15px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  box-shadow: 0 10px 28px rgba(0,0,0,.24);
  z-index: 9500;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.cart-fab:hover {
  transform: translateY(-2px);
  background: #2a2a2a;
  box-shadow: 0 14px 34px rgba(0,0,0,.3);
}
.cart-fab:active {
  transform: translateY(0);
}
.cart-fab-mark {
  font-size: 18px;
  color: #D9A56A;
  line-height: 1;
}
.cart-fab-label {
  font-weight: 400;
  letter-spacing: .3px;
  line-height: 1;
}
.cart-fab-count {
  background: #D9A56A;
  color: #1a1a1a;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  min-width: 22px;
  height: 22px;
  border-radius: 11px;
  padding: 0 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.cart-fab.cart-fab-empty .cart-fab-count {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.5);
}

/* ============= COOKIE BANNER (REWORK) ============= */
.ck-banner {
  position: fixed;
  bottom: 22px;
  left: 22px;
  right: 22px;
  z-index: 99998;
  display: none;
  pointer-events: none;
}
.ck-banner-inner {
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  color: #1a1a1a;
  padding: 26px 28px;
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 28px;
  align-items: center;
  border-radius: 6px;
  box-shadow: 0 18px 50px rgba(0,0,0,.22), 0 2px 6px rgba(0,0,0,.06);
  border-top: 3px solid #D9A56A;
  pointer-events: auto;
}
.ck-banner-text strong {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 21px;
  font-weight: 400;
  margin-bottom: 6px;
  letter-spacing: .2px;
  color: #1a1a1a;
}
.ck-banner-text p {
  font-size: 13px;
  margin: 0;
  color: #4a4a4a;
  line-height: 1.65;
}
.ck-btns {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.ck-btn {
  width: 100%;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 12px 18px;
  border-radius: 100px;
  cursor: pointer;
  text-align: center;
  transition: all .18s ease;
}
.ck-btn-primary {
  background: #1a1a1a;
  color: #fff;
  border: 1px solid #1a1a1a;
}
.ck-btn-primary:hover {
  background: #D9A56A;
  border-color: #D9A56A;
  color: #1a1a1a;
}
.ck-btn-ghost {
  background: #fff;
  color: #1a1a1a;
  border: 1px solid #d9c7a8;
}
.ck-btn-ghost:hover {
  background: #faf6ee;
  border-color: #1a1a1a;
}
.ck-btn-text {
  background: transparent;
  color: #6b6b6b;
  border: 0;
  padding: 8px 18px;
  font-size: 11px;
  text-decoration: underline;
  text-underline-offset: 3px;
  letter-spacing: .04em;
  text-transform: none;
  font-weight: 500;
}
.ck-btn-text:hover {
  color: #1a1a1a;
}

/* ============= COOKIE SETTINGS MODAL (EXPANDED) ============= */
.ck-settings {
  position: fixed;
  inset: 0;
  background: rgba(20, 16, 10, .58);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.ck-settings.open {
  display: flex;
  animation: cartFadeIn .22s ease;
}
.ck-settings-card {
  background: #fff;
  max-width: 620px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  border-radius: 6px;
  box-shadow: 0 28px 70px rgba(0,0,0,.35);
  animation: cartSlideUp .28s cubic-bezier(.2,.7,.3,1);
  display: flex;
  flex-direction: column;
}
.ck-settings-hd {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 26px 30px 18px;
  border-bottom: 1px solid #eee;
}
.ck-settings-eye {
  display: block;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #8a6d3a;
  font-weight: 600;
  margin-bottom: 5px;
}
.ck-settings-title {
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.1;
}
.ck-settings-close {
  font-size: 30px;
  cursor: pointer;
  line-height: 1;
  color: #888;
  margin-top: 4px;
}
.ck-settings-close:hover { color: #1a1a1a; }
.ck-settings-intro {
  padding: 16px 30px 10px;
  font-size: 13px;
  color: #4a4a4a;
  line-height: 1.7;
  margin: 0;
}
.ck-cat-list {
  padding: 6px 0 8px;
}
.ck-cat {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 22px;
  padding: 20px 30px;
  border-bottom: 1px solid #f0ecdf;
}
.ck-cat:last-child { border-bottom: 0; }
.ck-cat-info { flex: 1; min-width: 0; }
.ck-cat-name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #1a1a1a;
}
.ck-cat-desc {
  font-size: 12px;
  color: #4a4a4a;
  line-height: 1.65;
  margin-bottom: 7px;
}
.ck-cat-list-tiny {
  font-size: 11px;
  color: #888;
  line-height: 1.6;
}
.ck-cat-list-tiny code {
  background: #f6f1e8;
  padding: 1px 6px;
  border-radius: 3px;
  font-size: 10.5px;
  font-family: 'Inter', monospace;
  color: #5a4a30;
}
.ck-cat-switch {
  flex-shrink: 0;
  padding-top: 2px;
}

.ck-switch-wrap {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  cursor: pointer;
}
.ck-switch-wrap input {
  opacity: 0;
  width: 0;
  height: 0;
}
.ck-switch-vis {
  position: absolute;
  inset: 0;
  background: #d9c7a8;
  transition: background .25s;
  border-radius: 24px;
}
.ck-switch-vis::before {
  content: '';
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform .25s;
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
}
.ck-switch-wrap input:checked + .ck-switch-vis {
  background: #1a1a1a;
}
.ck-switch-wrap input:checked + .ck-switch-vis::before {
  transform: translateX(20px);
}

.ck-switch-locked {
  display: inline-block;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
  color: #4a7c59;
  background: rgba(74,124,89,.12);
  padding: 6px 12px;
  border-radius: 100px;
  white-space: nowrap;
}

.ck-settings-actions {
  display: flex;
  gap: 10px;
  padding: 18px 30px 22px;
  border-top: 1px solid #eee;
  background: #faf6ee;
  flex-wrap: wrap;
}
.ck-settings-actions .btn {
  flex: 1;
  padding: 12px 14px;
  font-size: 11px;
  min-width: 130px;
}
.btn-ghost {
  flex: 1;
  background: transparent;
  border: 1px solid #d9c7a8;
  color: #6b6b6b;
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 12px 14px;
  border-radius: 2px;
  cursor: pointer;
  min-width: 130px;
  transition: all .18s ease;
}
.btn-ghost:hover {
  border-color: #1a1a1a;
  color: #1a1a1a;
  background: #fff;
}

/* ============= RESPONSIVE ============= */
@media (max-width: 1200px) {
  .ftr-inner { grid-template-columns: 1fr 1fr 1fr; gap: 26px; }
  .rev-grid { grid-template-columns: repeat(3, 1fr); }
  .foam-row { grid-template-columns: repeat(5, 1fr); }
  .ck-layout { grid-template-columns: 1.4fr 1fr; }
  .useCaseTri .mini-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .heroBlock {
    grid-template-columns: 1fr;
    padding: 32px 20px 36px;
  }
  .hero-img-left, .hero-img-right { display: none; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .alt-strip { grid-template-columns: 1fr; }
  .alt-strip-rtl { direction: ltr; }
  .alt-strip .alt-img { min-height: 360px; }
  .use-grid { grid-template-columns: 1fr; gap: 14px; }
  .ck-layout { grid-template-columns: 1fr; }
  .ck-sum-side { position: static; }
  .spec-row, .spec-row-head {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    font-size: 12px;
  }
  .spec-row-head { display: none; }
  .spec-row { padding: 14px 18px; border-bottom: 2px solid #f0e8d6; }
  .spec-mod { grid-column: 1 / -1; font-size: 14px; }
}

@media (max-width: 768px) {
  body { font-size: 14px; }
  .topHdr { display: none; }
  .mobHdr { display: block; }
  .subRail { padding: 8px 16px; gap: 14px; }
  .hero-copy h1 { font-size: 2.3rem; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 13px; }
  .rev-grid { grid-template-columns: 1fr; gap: 18px; }
  .foam-row { grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .foam-row .cat .thumb { width: 72px; height: 72px; }
  .ftr-inner { grid-template-columns: 1fr; gap: 26px; }
  .prodBand { padding: 28px 16px 40px; }
  .reviewsRow { padding: 38px 16px 40px; }
  .checkout-area { padding: 38px 16px 46px; }
  .ck-form-side { padding: 22px; }
  .form-grid-2 { grid-template-columns: 1fr; gap: 0; }
  .ftrZone { padding: 38px 18px 22px; }
  .specsDeep { padding: 38px 16px 46px; }
  .spec-head h2 { font-size: 26px; }
  .useCaseTri { padding: 38px 16px 42px; }
  .useCaseTri .mini-grid { grid-template-columns: 1fr; gap: 12px; }
  .use-tile { aspect-ratio: 16 / 11; }
  .mini-fact, .cold-card { min-height: auto; padding: 18px 18px 20px; }
  .mini-num { font-size: 30px; }
  .alt-strip { padding: 18px 16px 34px; }

  .cart-modal { padding: 14px; align-items: flex-end; }
  .cart-card { max-width: 100%; max-height: 90vh; }
  .cart-card-hd { padding: 18px 22px 14px; }
  .cart-list { padding: 4px 22px 6px; }
  .cart-card-foot { padding: 16px 22px 20px; }
  .cart-list .cart-row { grid-template-columns: 60px 1fr auto; gap: 12px; padding: 14px 0; }
  .cart-row-thumb { width: 60px; height: 60px; }

  .cart-fab {
    right: 14px;
    bottom: 14px;
    padding: 11px 16px 11px 15px;
    font-size: 13px;
    gap: 9px;
  }
  .cart-fab-mark { font-size: 16px; }
  .cart-fab-count { min-width: 20px; height: 20px; font-size: 11px; }

  .ck-banner { left: 12px; right: 12px; bottom: 12px; }
  .ck-banner-inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px 22px 20px;
  }
  .ck-btns { flex-direction: column; }
  .ck-btn { padding: 11px 16px; font-size: 11px; }
  .ck-btn-text { padding: 8px 14px; }

  .ck-settings { padding: 12px; align-items: flex-end; }
  .ck-settings-card { max-height: 92vh; }
  .ck-settings-hd, .ck-cat, .ck-settings-intro { padding-left: 22px; padding-right: 22px; }
  .ck-settings-actions { padding: 16px 22px 20px; flex-direction: column; }
  .ck-settings-actions .btn, .btn-ghost { flex: none; width: 100%; }
}

@media (max-width: 480px) {
  .hero-copy h1 { font-size: 2rem; }
  .btn, .btn-primary { padding: 12px 20px; font-size: 11px; }
  .use-tile .tile-copy h3 { font-size: 19px; }
  .modal-grid { flex-direction: column; }
  .modal-img-wrap { min-height: 220px; max-height: 280px; }
  .modal-info { padding: 22px; }
  .foam-row { grid-template-columns: repeat(3, 1fr); }
  .ann-bar { font-size: 11px; padding: 7px 10px; }
  .cart-card-title { font-size: 1.35rem; }
  .cart-row-price { font-size: 14px; }
}
.legal-page {
  max-width: 780px;
  margin: 0 auto;
  padding: 56px 28px 72px;
  font-size: 14.5px;
  line-height: 1.75;
  color: #2a2a2a;
}
.legal-eye {
  display: block;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #8a6d3a;
  font-weight: 600;
  margin-bottom: 10px;
}
.legal-page h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  font-weight: 400;
  margin: 0 0 18px;
  line-height: 1.08;
  color: #1a1a1a;
}
.legal-intro {
  font-size: 15.5px;
  color: #4a4a4a;
  margin: 0 0 38px;
  line-height: 1.7;
  border-bottom: 1px solid #ecdfc6;
  padding-bottom: 28px;
  font-style: italic;
}
.legal-page h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  font-weight: 400;
  margin: 36px 0 12px;
  scroll-margin-top: 90px;
  color: #1a1a1a;
}
.legal-page h3 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #1a1a1a;
  margin: 26px 0 8px;
}
.legal-page p {
  margin: 0 0 14px;
  color: #2a2a2a;
}
.legal-page ul,
.legal-page ol {
  margin: 6px 0 18px 22px;
  padding: 0;
}
.legal-page li {
  margin-bottom: 7px;
  line-height: 1.65;
}
.legal-page code {
  background: #f6f1e8;
  padding: 1px 6px;
  border-radius: 3px;
  font-size: 12.5px;
  font-family: 'Inter', monospace;
  color: #5a4a30;
}
.legal-page .legal-cta {
  margin: 40px 0 8px;
  padding: 22px 26px;
  background: #faf6ee;
  border-left: 3px solid #D9A56A;
  font-size: 13.5px;
}
.legal-page .legal-cta strong {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 6px;
}
.legal-page .legal-cta p {
  margin: 0 0 12px;
  color: #4a4a4a;
}
.legal-page .legal-cta button {
  margin-top: 4px;
}
.legal-cta-phone {
  display: inline-block;
  font-family: 'DM Serif Display', serif;
  font-size: 19px;
  color: #1a1a1a;
  letter-spacing: .3px;
}

.legal-toc {
  list-style: none;
  counter-reset: toc;
  padding: 22px 26px;
  margin: 0 0 30px;
  background: #faf6ee;
  border: 1px solid #ecdfc6;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 22px;
  font-size: 13px;
}
.legal-toc li {
  margin: 0;
  padding: 4px 0;
}
.legal-toc a {
  color: #5a4a30;
  border-bottom: 1px dashed transparent;
  transition: border-color .15s;
}
.legal-toc a:hover {
  border-bottom-color: #D9A56A;
  color: #1a1a1a;
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 14px 0 20px;
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  background: #fff;
  border: 1px solid #ecdfc6;
}
.legal-table th,
.legal-table td {
  text-align: left;
  padding: 11px 14px;
  border-bottom: 1px solid #f0e8d6;
  vertical-align: top;
}
.legal-table tr:last-child td {
  border-bottom: 0;
}
.legal-table th {
  background: #1a1a1a;
  color: #fff;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 10.5px;
}
.legal-table tbody tr:hover {
  background: #faf6ee;
}

.foam-article {
  max-width: 880px;
  margin: 0 auto;
  padding: 56px 28px 72px;
}
.foam-article-hero {
  text-align: center;
  margin-bottom: 56px;
  padding-bottom: 36px;
  border-bottom: 1px solid #ecdfc6;
}
.foam-article-eye {
  display: block;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #8a6d3a;
  font-weight: 600;
  margin-bottom: 11px;
}
.foam-article-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 2.7rem;
  font-weight: 400;
  margin: 0 0 14px;
  line-height: 1.08;
  color: #1a1a1a;
}
.foam-article-hero p {
  font-size: 15.5px;
  color: #4a4a4a;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}
.foam-section {
  margin-bottom: 56px;
}
.foam-section-num {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 19px;
  color: #D9A56A;
  margin-bottom: 4px;
  letter-spacing: 1px;
}
.foam-section h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.9rem;
  font-weight: 400;
  margin: 0 0 14px;
  line-height: 1.15;
  color: #1a1a1a;
}
.foam-section p {
  font-size: 14.5px;
  line-height: 1.8;
  color: #2a2a2a;
  margin: 0 0 14px;
}
.foam-section-image {
  margin: 20px 0 12px;
}
.foam-section-image img {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  border-radius: 2px;
}
.foam-section-image-cap {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 13px;
  color: #6b6b6b;
  margin-top: 10px;
  text-align: center;
}
.foam-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  font-size: 12.5px;
  color: #2a2a2a;
  margin: 18px 0 4px;
  padding: 14px 0 4px;
  border-top: 1px dashed #ecdfc6;
}
.foam-meta span {
  display: block;
}
.foam-meta span strong {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #8a6d3a;
  font-weight: 600;
  margin-bottom: 3px;
}

@media (max-width: 768px) {
  .legal-page {
    padding: 38px 18px 56px;
    font-size: 14px;
  }
  .legal-page h1 {
    font-size: 2rem;
  }
  .legal-intro {
    font-size: 14.5px;
  }
  .legal-toc {
    grid-template-columns: 1fr;
    padding: 18px 20px;
  }
  .legal-table th,
  .legal-table td {
    padding: 9px 10px;
    font-size: 12px;
  }

  .foam-article {
    padding: 38px 18px 56px;
  }
  .foam-article-hero h1 {
    font-size: 2rem;
  }
  .foam-section h2 {
    font-size: 1.5rem;
  }
  .foam-meta {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .foam-meta {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
