
:root {
  --ink: #15120f;
  --cream: #fff8e9;
  --red: #ef3f36;
  --yellow: #ffd94a;
  --pink: #f7a9c4;
  --blue: #71b8e7;
  --orange: #f4a03b;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-sans), Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.announcement {
  background: var(--ink);
  color: white;
  padding: 10px 24px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-header {
  height: 86px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 0 4.5vw;
  background: var(--cream);
  border-bottom: 1px solid rgba(21,18,15,.14);
}
.brand { display: flex; width: max-content; flex-direction: column; line-height: 1; }
.brand span { font-family: var(--font-display), serif; font-weight: 800; font-size: 29px; letter-spacing: -.05em; }
.brand small { margin-top: 5px; font-size: 8px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.site-header nav { display: flex; gap: 34px; font-size: 14px; font-weight: 650; }
.site-header nav a, .text-link { position: relative; }
.site-header nav a::after, .text-link::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 2px; background: currentColor; transition: right .2s ease;
}
.site-header nav a:hover::after, .text-link:hover::after { right: 0; }
.site-header nav a.active-nav::after { right: 0; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 22px; font-size: 13px; font-weight: 700; }
.menu-link { display: none; }
.bag span { display: inline-grid; place-items: center; width: 22px; height: 22px; margin-left: 4px; background: var(--red); color: white; border-radius: 50%; font-size: 11px; }

.hero {
  min-height: calc(100vh - 122px);
  display: grid;
  grid-template-columns: 47% 53%;
  background: var(--red);
  overflow: hidden;
}
.hero-copy { padding: clamp(72px, 9vw, 140px) 5vw 80px; color: white; z-index: 2; }
.eyebrow { margin: 0 0 22px; font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow.dark { color: var(--red); }
h1, h2 { font-family: var(--font-display), Georgia, serif; letter-spacing: -.055em; }
h1 { max-width: 680px; margin: 0; font-size: clamp(58px, 6.8vw, 105px); font-weight: 660; line-height: .91; }
h1 em { font-weight: 350; }
.hero-text { max-width: 575px; margin: 30px 0 0; font-size: clamp(17px, 1.35vw, 21px); line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 28px; padding: 17px 22px; border: 2px solid var(--ink); font-size: 13px; font-weight: 800; transition: transform .18s ease, box-shadow .18s ease; }
.button-dark { background: var(--ink); color: white; }
.button:hover { transform: translate(-3px,-3px); box-shadow: 6px 6px 0 white; }
.text-link { font-size: 14px; font-weight: 800; }
.hero-notes { display: flex; flex-wrap: wrap; gap: 28px; margin: 48px 0 0; padding: 0; list-style: none; font-size: 12px; font-weight: 700; }
.hero-notes li::before { content: "✓"; margin-right: 8px; }

.hero-art { position: relative; min-height: 720px; background: var(--yellow); }
.sunburst { position: absolute; inset: -20%; background: repeating-conic-gradient(from 12deg at 50% 50%, transparent 0 10deg, rgba(255,255,255,.28) 10deg 20deg); }
.hero-card { position: absolute; width: 35%; aspect-ratio: 1; background: white; border: 3px solid var(--ink); box-shadow: 12px 12px 0 var(--ink); overflow: hidden; }
.hero-card img, .product-image img { object-fit: cover; }
.hero-card-cow { top: 12%; left: 9%; transform: rotate(-10deg); }
.hero-card-fondue { top: 24%; right: 8%; transform: rotate(8deg); }
.hero-card-chocolate { bottom: 8%; left: 25%; transform: rotate(-3deg); }
.roundel { position: absolute; display: grid; place-items: center; width: 106px; height: 106px; padding: 15px; border-radius: 50%; border: 2px solid var(--ink); background: var(--cream); text-align: center; font-family: var(--font-display), serif; font-size: 18px; font-weight: 700; line-height: 1.05; transform: rotate(7deg); }
.roundel-top { top: 7%; right: 7%; }
.roundel-bottom { bottom: 7%; right: 7%; background: var(--blue); transform: rotate(-7deg); }

.shop-section { padding: 110px 4.5vw 130px; background: var(--cream); }
.section-heading { display: grid; grid-template-columns: 1.1fr .75fr; align-items: end; gap: 9vw; margin-bottom: 55px; }
.section-heading h2 { margin: 0; font-size: clamp(48px, 5vw, 78px); line-height: .95; }
.section-heading > p { margin: 0 0 8px; max-width: 520px; font-size: 17px; line-height: 1.65; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card { padding: 18px 18px 22px; border: 2px solid var(--ink); box-shadow: 8px 8px 0 var(--ink); }
.product-card.pink { background: var(--pink); }
.product-card.blue { background: var(--blue); }
.product-card.orange { background: var(--orange); }
.product-image { position: relative; display: block; aspect-ratio: 1; overflow: hidden; border: 2px solid var(--ink); background: white; }
.product-image img { transition: transform .35s ease; }
.product-image:hover img { transform: scale(1.035); }
.quick-view { position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%) translateY(20px); padding: 11px 16px; background: var(--ink); color: white; white-space: nowrap; font-size: 12px; font-weight: 800; opacity: 0; transition: all .2s ease; }
.product-image:hover .quick-view { transform: translateX(-50%) translateY(0); opacity: 1; }
.product-info { display: flex; justify-content: space-between; gap: 20px; align-items: start; margin-top: 19px; }
.product-info h3 { margin: 0; font-family: var(--font-display), serif; font-size: 25px; letter-spacing: -.03em; }
.product-info p { margin: 5px 0 0; font-size: 12px; }
.product-info strong { font-size: 14px; white-space: nowrap; }

.trio-section { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 780px; border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); background: white; }
.trio-art { position: relative; min-height: 780px; overflow: hidden; background: var(--blue); border-right: 2px solid var(--ink); }
.trio-art::before { content: ""; position: absolute; inset: 8%; border: 2px dashed rgba(21,18,15,.35); border-radius: 50%; transform: rotate(-12deg); }
.trio-image { position: absolute; width: 42%; aspect-ratio: 1; overflow: hidden; background: white; border: 3px solid var(--ink); box-shadow: 9px 9px 0 var(--ink); }
.trio-image img { object-fit: cover; }
.trio-one { top: 9%; left: 12%; transform: rotate(-10deg); }
.trio-two { top: 27%; right: 8%; transform: rotate(8deg); }
.trio-three { bottom: 8%; left: 20%; transform: rotate(-2deg); }
.bundle-sticker { position: absolute; z-index: 3; left: 8%; bottom: 8%; display: grid; place-items: center; width: 118px; height: 118px; padding: 18px; border: 2px solid var(--ink); border-radius: 50%; background: var(--yellow); text-align: center; font-family: var(--font-display), serif; font-size: 19px; font-weight: 750; line-height: 1.05; transform: rotate(8deg); }
.trio-copy { display: flex; flex-direction: column; justify-content: center; padding: 80px clamp(45px, 7vw, 120px); }
.trio-copy h2, .story-copy h2, .gift-heading h2, .stockist-section h2, .newsletter h2 { margin: 0; font-size: clamp(50px, 5vw, 82px); line-height: .96; }
.trio-intro { margin: 30px 0; font-size: 18px; line-height: 1.65; }
.bundle-list { margin: 0; padding: 0; border-top: 1px solid rgba(21,18,15,.25); list-style: none; }
.bundle-list li { display: flex; justify-content: space-between; padding: 13px 0; border-bottom: 1px solid rgba(21,18,15,.25); font-size: 13px; font-weight: 700; }
.bundle-buy { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-top: 34px; }
.bundle-buy div { display: flex; flex-direction: column; }
.bundle-buy s { margin-bottom: 2px; font-size: 13px; color: #777; }
.bundle-buy strong { font-family: var(--font-display), serif; font-size: 31px; }
.button-red { background: var(--red); color: white; border-color: var(--ink); }
.button-red:hover { box-shadow: 6px 6px 0 var(--yellow); }
.shipping-note { margin: 18px 0 0; font-size: 12px; font-weight: 700; }

.promise-strip { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--ink); color: white; }
.promise-strip article { min-height: 230px; padding: 34px 30px; border-right: 1px solid rgba(255,255,255,.2); }
.promise-strip article:last-child { border-right: 0; }
.promise-strip span { font-size: 11px; color: var(--yellow); font-weight: 800; }
.promise-strip h3 { margin: 35px 0 10px; font-family: var(--font-display), serif; font-size: 23px; line-height: 1.05; }
.promise-strip p { margin: 0; color: rgba(255,255,255,.7); font-size: 13px; line-height: 1.55; }

.story-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 740px; background: var(--cream); }
.story-copy { display: flex; flex-direction: column; justify-content: center; padding: 95px 8vw 95px 5vw; }
.story-copy p:not(.eyebrow) { max-width: 610px; margin: 24px 0 0; font-size: 17px; line-height: 1.7; }
.dark-link { align-self: flex-start; margin-top: 35px; color: var(--red); }
.story-art { position: relative; display: flex; align-items: center; justify-content: center; min-height: 740px; overflow: hidden; background: var(--pink); border-left: 2px solid var(--ink); }
.story-art::before, .story-art::after { content: ""; position: absolute; width: 170px; height: 170px; border: 3px solid var(--ink); background: var(--yellow); transform: rotate(12deg); }
.story-art::before { left: 7%; top: 8%; }
.story-art::after { right: 5%; bottom: 7%; background: var(--blue); transform: rotate(-9deg); }
.story-word { z-index: 1; font-family: var(--font-display), serif; font-size: clamp(90px, 14vw, 220px); font-weight: 800; letter-spacing: -.09em; transform: rotate(-7deg); }
.cross-mark { position: absolute; z-index: 2; top: 8%; right: 12%; color: var(--red); font-family: Arial, sans-serif; font-size: 140px; font-weight: 900; line-height: 1; transform: rotate(9deg); }
.story-caption { position: absolute; z-index: 3; right: 8%; bottom: 8%; padding: 17px 20px; background: white; border: 2px solid var(--ink); box-shadow: 6px 6px 0 var(--ink); font-family: var(--font-display), serif; font-size: 22px; font-weight: 700; line-height: 1.05; transform: rotate(3deg); }

.gift-section { padding: 110px 4.5vw 120px; background: var(--red); color: white; }
.gift-heading { display: grid; grid-template-columns: .4fr 1fr; align-items: start; gap: 6vw; }
.gift-heading .eyebrow { margin-top: 14px; }
.gift-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 75px; }
.gift-grid article { min-height: 270px; padding: 28px; border: 2px solid white; }
.gift-grid strong { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: white; color: var(--red); font-size: 12px; }
.gift-grid h3 { margin: 68px 0 12px; font-family: var(--font-display), serif; font-size: 28px; line-height: 1; }
.gift-grid p { max-width: 390px; margin: 0; color: rgba(255,255,255,.78); font-size: 14px; line-height: 1.55; }

.stockist-section { display: grid; grid-template-columns: .38fr 1fr auto; align-items: end; gap: 5vw; padding: 95px 4.5vw; background: var(--yellow); border-bottom: 2px solid var(--ink); }
.stockist-section .eyebrow { align-self: start; margin-top: 12px; }
.stockist-section h2 { max-width: 780px; font-size: clamp(47px, 5vw, 78px); }
.stockist-section p:not(.eyebrow) { max-width: 720px; margin: 24px 0 0; font-size: 16px; line-height: 1.6; }
.button-outline { background: transparent; white-space: nowrap; }
.button-outline:hover { background: white; box-shadow: 6px 6px 0 var(--red); }

.newsletter { display: grid; grid-template-columns: 1fr .8fr; align-items: end; gap: 8vw; padding: 90px 4.5vw; background: var(--blue); }
.newsletter h2 { max-width: 850px; font-size: clamp(45px, 4.4vw, 70px); }
.signup-form { display: flex; border-bottom: 2px solid var(--ink); }
.signup-form input { width: 100%; padding: 17px 0; border: 0; outline: 0; background: transparent; color: var(--ink); font-size: 16px; }
.signup-form input::placeholder { color: rgba(21,18,15,.68); }
.signup-form button { flex: none; padding: 17px 0 17px 22px; border: 0; background: transparent; font-weight: 800; cursor: pointer; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.footer { padding: 80px 4.5vw 26px; background: var(--ink); color: white; }
.footer { display: grid; grid-template-columns: 1fr 1.3fr; column-gap: 8vw; }
.footer-logo { color: white; }
.footer-brand > p { max-width: 420px; margin: 24px 0; color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.6; }
.footer-brand > a:last-child { font-size: 13px; font-weight: 800; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer-links > div { display: flex; flex-direction: column; gap: 12px; }
.footer-links strong { margin-bottom: 8px; color: var(--yellow); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
.footer-links a { color: rgba(255,255,255,.72); font-size: 14px; }
.footer-links a:hover { color: white; }
.footer-bottom { grid-column: 1 / -1; display: flex; justify-content: space-between; gap: 20px; margin-top: 75px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.45); font-size: 11px; }

/* Wholesale */
.wholesale-announcement { background: var(--red); }
.wholesale-hero { min-height: calc(100vh - 122px); display: grid; grid-template-columns: 52% 48%; overflow: hidden; background: var(--cream); border-bottom: 2px solid var(--ink); }
.wholesale-hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 90px 5vw; }
.wholesale-hero-copy .eyebrow { color: var(--red); }
.wholesale-hero-copy h1 { max-width: 780px; font-size: clamp(62px, 6.5vw, 104px); }
.wholesale-lead { max-width: 650px; margin: 30px 0 0; font-size: clamp(17px, 1.35vw, 21px); line-height: 1.6; }
.wholesale-hero-copy .button:hover { box-shadow: 6px 6px 0 var(--red); }
.wholesale-hero-art { position: relative; min-height: 720px; overflow: hidden; background: var(--yellow); border-left: 2px solid var(--ink); }
.wholesale-gridlines { position: absolute; inset: 0; opacity: .19; background-image: linear-gradient(var(--ink) 1px, transparent 1px), linear-gradient(90deg, var(--ink) 1px, transparent 1px); background-size: 52px 52px; }
.wholesale-hero-product { position: absolute; width: 35%; aspect-ratio: 1 / 1.16; padding-bottom: 34px; overflow: hidden; background: white; border: 3px solid var(--ink); box-shadow: 10px 10px 0 var(--ink); }
.wholesale-hero-product img { object-fit: cover; }
.wholesale-hero-product > span { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; height: 34px; display: grid; place-items: center; background: white; border-top: 2px solid var(--ink); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.wholesale-hero-product-1 { top: 10%; left: 8%; transform: rotate(-7deg); }
.wholesale-hero-product-2 { top: 22%; right: 7%; transform: rotate(7deg); }
.wholesale-hero-product-3 { bottom: 7%; left: 29%; transform: rotate(-2deg); }
.carton-label { position: absolute; z-index: 4; right: 7%; bottom: 7%; display: flex; align-items: center; gap: 10px; padding: 15px 18px; background: var(--orange); border: 2px solid var(--ink); box-shadow: 5px 5px 0 var(--ink); transform: rotate(4deg); }
.carton-label strong { font-family: var(--font-display), serif; font-size: 46px; line-height: .8; }
.carton-label span { font-size: 11px; font-weight: 800; line-height: 1.15; text-transform: uppercase; }
.local-stamp { position: absolute; z-index: 3; top: 6%; right: 6%; display: grid; place-items: center; width: 105px; height: 105px; padding: 16px; background: var(--blue); border: 2px solid var(--ink); border-radius: 50%; font-family: var(--font-display), serif; font-size: 17px; font-weight: 700; line-height: 1.05; text-align: center; transform: rotate(9deg); }
.wholesale-facts { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--ink); color: white; }
.wholesale-facts article { min-height: 160px; display: flex; align-items: center; justify-content: center; gap: 18px; padding: 28px; border-right: 1px solid rgba(255,255,255,.18); }
.wholesale-facts article:last-child { border-right: 0; }
.wholesale-facts strong { color: var(--yellow); font-family: var(--font-display), serif; font-size: 58px; line-height: 1; }
.wholesale-facts span { font-size: 12px; font-weight: 700; line-height: 1.35; }
.wholesale-collection { padding: 110px 4.5vw 125px; background: var(--cream); }
.wholesale-section-heading { display: grid; grid-template-columns: 1.05fr .62fr; align-items: end; gap: 9vw; margin-bottom: 58px; }
.wholesale-section-heading h2 { max-width: 900px; margin: 0; font-size: clamp(50px, 5.2vw, 82px); line-height: .95; }
.wholesale-section-heading > p { margin: 0 0 8px; font-size: 17px; line-height: 1.65; }
.wholesale-product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.wholesale-product-card { padding: 17px; border: 2px solid var(--ink); box-shadow: 8px 8px 0 var(--ink); }
.wholesale-product-card.pink { background: var(--pink); }
.wholesale-product-card.blue { background: var(--blue); }
.wholesale-product-card.orange { background: var(--orange); }
.wholesale-product-image { position: relative; aspect-ratio: 1; overflow: hidden; background: white; border: 2px solid var(--ink); }
.wholesale-product-image img { object-fit: cover; }
.wholesale-product-copy { display: grid; grid-template-columns: 1fr auto; gap: 18px; padding: 18px 2px 4px; }
.wholesale-product-copy span { font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.wholesale-product-copy h3 { margin: 5px 0 0; font-family: var(--font-display), serif; font-size: 26px; letter-spacing: -.04em; }
.wholesale-product-copy ul { margin: 0; padding: 0; list-style: none; font-size: 11px; font-weight: 650; line-height: 1.7; white-space: nowrap; }
.price-note { margin: 35px 0 0; text-align: center; font-size: 12px; font-weight: 800; }
.retailer-fit { padding: 110px 4.5vw 120px; background: var(--red); color: white; }
.retailer-fit-heading { display: grid; grid-template-columns: .38fr 1fr; gap: 7vw; }
.retailer-fit-heading .eyebrow { margin-top: 15px; }
.retailer-fit-heading h2 { margin: 0; font-size: clamp(52px, 5.6vw, 88px); line-height: .93; }
.retailer-fit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 72px; }
.retailer-fit-grid article { min-height: 300px; padding: 28px; border: 2px solid white; }
.retailer-fit-grid article > span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: white; color: var(--red); font-size: 11px; font-weight: 800; }
.retailer-fit-grid h3 { margin: 72px 0 12px; font-family: var(--font-display), serif; font-size: 30px; line-height: 1; }
.retailer-fit-grid p { margin: 0; max-width: 420px; color: rgba(255,255,255,.76); font-size: 14px; line-height: 1.6; }
.display-section { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 760px; background: var(--cream); border-bottom: 2px solid var(--ink); }
.display-visual { position: relative; min-height: 760px; overflow: hidden; background: var(--blue); border-right: 2px solid var(--ink); }
.pegboard { position: absolute; inset: 0; opacity: .3; background-image: radial-gradient(var(--ink) 2px, transparent 2px); background-size: 34px 34px; }
.display-hook { position: absolute; width: 28%; aspect-ratio: 1 / 1.25; background: white; border: 3px solid var(--ink); box-shadow: 8px 8px 0 var(--ink); overflow: visible; }
.display-hook img { object-fit: cover; }
.display-hook > span { position: absolute; z-index: 3; left: 50%; top: -44px; width: 4px; height: 50px; background: var(--ink); transform: translateX(-50%); }
.display-hook > span::before { content: ""; position: absolute; left: -10px; top: -7px; width: 24px; height: 8px; border: 3px solid var(--ink); border-bottom: 0; border-radius: 12px 12px 0 0; }
.display-hook-one { top: 21%; left: 8%; transform: rotate(-4deg); }
.display-hook-two { top: 15%; left: 36%; transform: rotate(3deg); }
.display-hook-three { top: 24%; right: 7%; transform: rotate(-2deg); }
.display-tag { position: absolute; z-index: 4; left: 8%; bottom: 8%; padding: 17px 21px; background: var(--yellow); border: 2px solid var(--ink); box-shadow: 6px 6px 0 var(--ink); font-family: var(--font-display), serif; font-size: 24px; font-weight: 750; line-height: .95; transform: rotate(-4deg); }
.display-copy { display: flex; flex-direction: column; justify-content: center; padding: 90px clamp(45px, 7vw, 120px); }
.display-copy h2 { margin: 0; font-size: clamp(52px, 5vw, 80px); line-height: .95; }
.display-copy > p:not(.eyebrow) { margin: 28px 0 36px; max-width: 620px; font-size: 17px; line-height: 1.7; }
.display-copy ul { margin: 0; padding: 0; border-top: 1px solid rgba(21,18,15,.25); list-style: none; }
.display-copy li { display: flex; align-items: center; gap: 20px; padding: 15px 0; border-bottom: 1px solid rgba(21,18,15,.25); font-size: 13px; font-weight: 750; }
.display-copy li span { color: var(--red); font-size: 10px; }
.small-batch-section { display: grid; grid-template-columns: 1fr .72fr; gap: 10vw; padding: 105px 4.5vw 115px; background: var(--yellow); }
.small-batch-section h2 { margin: 0; font-size: clamp(55px, 5.8vw, 90px); line-height: .93; }
.small-batch-copy { align-self: end; }
.small-batch-copy p { margin: 0 0 20px; font-size: 16px; line-height: 1.7; }
.small-batch-copy strong { display: inline-block; margin-top: 10px; padding-bottom: 5px; border-bottom: 3px solid var(--red); font-size: 13px; }
.wholesale-process { padding: 105px 4.5vw 120px; background: var(--ink); color: white; }
.process-heading { display: grid; grid-template-columns: .38fr 1fr; gap: 7vw; }
.process-heading .eyebrow { margin-top: 15px; color: var(--yellow); }
.process-heading h2 { max-width: 980px; margin: 0; font-size: clamp(52px, 5.2vw, 82px); line-height: .95; }
.wholesale-process ol { display: grid; grid-template-columns: repeat(4, 1fr); margin: 70px 0 0; padding: 0; border-top: 1px solid rgba(255,255,255,.22); list-style: none; }
.wholesale-process li { min-height: 270px; padding: 26px 24px; border-right: 1px solid rgba(255,255,255,.22); }
.wholesale-process li:last-child { border-right: 0; }
.wholesale-process li > span { color: var(--yellow); font-size: 10px; font-weight: 800; }
.wholesale-process h3 { margin: 72px 0 12px; font-family: var(--font-display), serif; font-size: 25px; line-height: 1.05; }
.wholesale-process li p { margin: 0; color: rgba(255,255,255,.67); font-size: 13px; line-height: 1.55; }
.wholesale-enquiry { display: grid; grid-template-columns: .8fr 1.2fr; min-height: 860px; background: var(--red); color: white; }
.enquiry-intro { padding: 100px 5vw; border-right: 2px solid var(--ink); }
.enquiry-intro h2 { max-width: 720px; margin: 0; font-size: clamp(55px, 5.5vw, 86px); line-height: .93; }
.enquiry-intro > p:not(.eyebrow) { max-width: 590px; margin: 28px 0; font-size: 17px; line-height: 1.65; }
.enquiry-note { display: flex; flex-direction: column; gap: 4px; margin-top: 45px; padding: 20px; border: 2px solid white; max-width: 360px; }
.enquiry-note strong { color: var(--yellow); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.enquiry-note span { font-family: var(--font-display), serif; font-size: 22px; font-weight: 700; }
.wholesale-form { padding: 95px 5vw; background: var(--cream); color: var(--ink); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.wholesale-form label { display: flex; flex-direction: column; gap: 9px; margin-bottom: 23px; }
.wholesale-form label > span { font-size: 11px; font-weight: 800; }
.wholesale-form input:not([type="checkbox"]), .wholesale-form select, .wholesale-form textarea { width: 100%; padding: 15px 0; border: 0; border-bottom: 2px solid var(--ink); border-radius: 0; outline: 0; background: transparent; color: var(--ink); font: inherit; font-size: 15px; }
.wholesale-form input::placeholder, .wholesale-form textarea::placeholder { color: rgba(21,18,15,.48); }
.wholesale-form textarea { resize: vertical; }
.wholesale-form .privacy-check { flex-direction: row; align-items: flex-start; gap: 10px; margin: 8px 0 28px; }
.privacy-check input { margin-top: 2px; accent-color: var(--red); }
.privacy-check span { max-width: 620px; color: rgba(21,18,15,.66); font-weight: 500 !important; line-height: 1.45; }
.enquiry-button { background: var(--ink); color: white; cursor: pointer; }
.enquiry-button:hover { box-shadow: 6px 6px 0 var(--yellow); }
.form-caption { margin: 16px 0 0; color: rgba(21,18,15,.55); font-size: 10px; }

/* Design with us */
.custom-announcement { background: var(--blue); }
.custom-hero { min-height: calc(100vh - 122px); display: grid; grid-template-columns: 52% 48%; overflow: hidden; background: var(--cream); border-bottom: 2px solid var(--ink); }
.custom-hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 90px 5vw; }
.custom-hero-copy .eyebrow { color: var(--red); }
.custom-hero-copy h1 { max-width: 780px; font-size: clamp(62px, 6.5vw, 104px); }
.custom-lead { max-width: 680px; margin: 30px 0 0; font-size: clamp(17px, 1.35vw, 21px); line-height: 1.6; }
.custom-hero-copy .button:hover { box-shadow: 6px 6px 0 var(--blue); }
.custom-hero-art { position: relative; min-height: 720px; overflow: hidden; background: var(--pink); border-left: 2px solid var(--ink); }
.custom-gridlines { position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(var(--ink) 1px, transparent 1px), linear-gradient(90deg, var(--ink) 1px, transparent 1px); background-size: 52px 52px; }
.concept-card { position: absolute; z-index: 2; display: flex; flex-direction: column; justify-content: space-between; width: 31%; aspect-ratio: 1 / 1.18; padding: 20px; border: 3px solid var(--ink); box-shadow: 8px 8px 0 var(--ink); }
.concept-card > span { font-size: 10px; font-weight: 850; letter-spacing: .14em; }
.concept-card strong { font-family: var(--font-display), serif; font-size: clamp(28px, 2.6vw, 43px); line-height: .88; }
.concept-card small { font-size: 10px; font-weight: 800; text-transform: uppercase; }
.concept-idea { top: 13%; left: 7%; background: var(--yellow); transform: rotate(-5deg); }
.concept-design { top: 27%; left: 35%; background: var(--blue); transform: rotate(3deg); }
.concept-pair { right: 6%; bottom: 9%; width: 35%; padding: 0 0 35px; overflow: hidden; background: white; transform: rotate(-3deg); }
.concept-pair img { object-fit: cover; }
.pair-label { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; height: 35px; display: grid; place-items: center; background: white; border-top: 2px solid var(--ink); }
.concept-arrow { position: absolute; z-index: 5; display: grid; place-items: center; width: 54px; height: 54px; background: var(--red); color: white; border: 2px solid var(--ink); border-radius: 50%; font-size: 28px; font-weight: 850; box-shadow: 4px 4px 0 var(--ink); }
.concept-arrow-one { top: 22%; left: 31%; transform: rotate(-9deg); }
.concept-arrow-two { top: 48%; right: 28%; transform: rotate(7deg); }
.custom-stamp { position: absolute; z-index: 5; right: 6%; top: 7%; display: grid; place-items: center; width: 105px; height: 105px; padding: 16px; background: var(--orange); border: 2px solid var(--ink); border-radius: 50%; font-family: var(--font-display), serif; font-size: 17px; font-weight: 750; line-height: 1.05; text-align: center; transform: rotate(8deg); }
.custom-facts { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--ink); color: white; }
.custom-facts article { min-height: 160px; display: flex; flex-direction: column; justify-content: center; padding: 28px 4.5vw; border-right: 1px solid rgba(255,255,255,.18); }
.custom-facts article:last-child { border-right: 0; }
.custom-facts article > span { margin-bottom: 20px; color: var(--yellow); font-size: 10px; font-weight: 850; }
.custom-facts strong { font-family: var(--font-display), serif; font-size: 25px; line-height: 1; }
.custom-facts small { margin-top: 8px; color: rgba(255,255,255,.65); font-size: 11px; }
.custom-audience { padding: 110px 4.5vw 125px; background: var(--cream); }
.custom-section-heading { display: grid; grid-template-columns: 1.05fr .62fr; align-items: end; gap: 9vw; margin-bottom: 58px; }
.custom-section-heading h2 { max-width: 940px; margin: 0; font-size: clamp(50px, 5.2vw, 82px); line-height: .95; }
.custom-section-heading > p { margin: 0 0 8px; font-size: 17px; line-height: 1.65; }
.audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 2px solid var(--ink); }
.audience-grid article { min-height: 340px; display: flex; flex-direction: column; padding: 26px; border-right: 2px solid var(--ink); }
.audience-grid article:last-child { border-right: 0; }
.audience-grid article:nth-child(1) { background: var(--yellow); }
.audience-grid article:nth-child(2) { background: var(--pink); }
.audience-grid article:nth-child(3) { background: var(--blue); }
.audience-grid article:nth-child(4) { background: var(--orange); }
.audience-grid article > span { font-size: 10px; font-weight: 850; }
.audience-grid h3 { margin: auto 0 14px; font-family: var(--font-display), serif; font-size: 28px; line-height: 1; }
.audience-grid p { margin: 0; font-size: 13px; line-height: 1.55; }
.custom-scope { display: grid; grid-template-columns: .9fr 1.1fr; gap: 9vw; padding: 110px 4.5vw 120px; background: var(--yellow); border-bottom: 2px solid var(--ink); }
.scope-copy h2 { max-width: 760px; margin: 0; font-size: clamp(52px, 5vw, 80px); line-height: .95; }
.scope-copy > p:not(.eyebrow) { max-width: 640px; margin: 28px 0 0; font-size: 16px; line-height: 1.7; }
.scope-copy .scope-note { padding-left: 18px; border-left: 3px solid var(--red); font-size: 12px !important; font-weight: 750; }
.scope-list { border-top: 2px solid var(--ink); }
.scope-list article { display: grid; grid-template-columns: 46px 1fr; gap: 22px; padding: 25px 0; border-bottom: 2px solid var(--ink); }
.scope-list article > span { padding-top: 5px; color: var(--red); font-size: 10px; font-weight: 850; }
.scope-list h3 { margin: 0 0 8px; font-family: var(--font-display), serif; font-size: 26px; line-height: 1; }
.scope-list p { max-width: 630px; margin: 0; font-size: 13px; line-height: 1.55; }
.custom-process { padding: 105px 4.5vw 120px; background: var(--red); color: white; }
.custom-process .process-heading .eyebrow { color: var(--yellow); }
.custom-process ol { display: grid; grid-template-columns: repeat(4, 1fr); margin: 70px 0 0; padding: 0; border-top: 1px solid rgba(255,255,255,.3); list-style: none; }
.custom-process li { min-height: 285px; padding: 26px 24px; border-right: 1px solid rgba(255,255,255,.3); }
.custom-process li:last-child { border-right: 0; }
.custom-process li > span { color: var(--yellow); font-size: 10px; font-weight: 850; }
.custom-process h3 { margin: 76px 0 12px; font-family: var(--font-display), serif; font-size: 26px; line-height: 1.05; }
.custom-process li p { max-width: 370px; margin: 0; color: rgba(255,255,255,.75); font-size: 13px; line-height: 1.55; }
.custom-example { padding: 110px 4.5vw 125px; background: var(--cream); }
.example-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.example-grid article { padding: 17px; border: 2px solid var(--ink); box-shadow: 8px 8px 0 var(--ink); }
.example-grid article.pink { background: var(--pink); }
.example-grid article.blue { background: var(--blue); }
.example-grid article.orange { background: var(--orange); }
.example-image { position: relative; aspect-ratio: 1 / .92; overflow: hidden; background: white; border: 2px solid var(--ink); }
.example-image img { object-fit: cover; }
.example-grid article > div:last-child { min-height: 125px; padding: 19px 2px 4px; }
.example-grid h3 { margin: 0 0 8px; font-family: var(--font-display), serif; font-size: 29px; line-height: 1; }
.example-grid p { max-width: 390px; margin: 0; font-size: 13px; line-height: 1.5; }
.custom-realities { display: grid; grid-template-columns: .9fr 1.1fr; gap: 8vw; padding: 105px 4.5vw 115px; background: var(--blue); border-top: 2px solid var(--ink); }
.custom-realities h2 { max-width: 720px; margin: 0; font-size: clamp(52px, 5vw, 80px); line-height: .95; }
.realities-grid { display: grid; grid-template-columns: 1fr 1fr; border: 2px solid var(--ink); }
.realities-grid article { min-height: 190px; padding: 24px; }
.realities-grid article:nth-child(odd) { border-right: 2px solid var(--ink); }
.realities-grid article:nth-child(-n+2) { border-bottom: 2px solid var(--ink); }
.realities-grid span { display: inline-block; margin-bottom: 44px; padding: 6px 9px; background: var(--ink); color: white; font-size: 9px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.realities-grid p { margin: 0; font-size: 13px; line-height: 1.55; }
.custom-enquiry { display: grid; grid-template-columns: .8fr 1.2fr; min-height: 1040px; background: var(--pink); }
.custom-enquiry-intro { padding: 100px 5vw; border-right: 2px solid var(--ink); }
.custom-enquiry-intro h2 { max-width: 720px; margin: 0; font-size: clamp(55px, 5.5vw, 86px); line-height: .93; }
.custom-enquiry-intro > p:not(.eyebrow) { max-width: 590px; margin: 28px 0; font-size: 17px; line-height: 1.65; }
.custom-form { padding-block: 82px; }
.reference-field { padding: 15px; border: 2px dashed rgba(21,18,15,.45); }
.reference-field input { font-size: 12px; }
.reference-field small { color: rgba(21,18,15,.55); font-size: 10px; }

/* Products */
.products-announcement { background: var(--yellow); color: var(--ink); }
.products-hero { min-height: calc(100vh - 122px); display: grid; grid-template-columns: 50% 50%; overflow: hidden; background: var(--cream); border-bottom: 2px solid var(--ink); }
.products-hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 90px 5vw; }
.products-hero-copy .eyebrow { color: var(--red); }
.products-hero-copy h1 { max-width: 820px; font-size: clamp(62px, 6.4vw, 102px); }
.products-lead { max-width: 650px; margin: 30px 0 0; font-size: clamp(17px, 1.35vw, 21px); line-height: 1.6; }
.products-hero-copy .button:hover { box-shadow: 6px 6px 0 var(--yellow); }
.products-hero-art { position: relative; min-height: 720px; overflow: hidden; background: var(--red); border-left: 2px solid var(--ink); }
.products-sun { position: absolute; inset: -16%; opacity: .22; background: repeating-conic-gradient(from 0deg, var(--yellow) 0deg 12deg, transparent 12deg 24deg); border-radius: 50%; }
.products-hero-card { position: absolute; z-index: 2; width: 34%; aspect-ratio: 1 / 1.18; padding-bottom: 35px; overflow: hidden; background: white; border: 3px solid var(--ink); box-shadow: 9px 9px 0 var(--ink); }
.products-hero-card img { object-fit: cover; }
.products-hero-card > span { position: absolute; z-index: 3; left: 0; right: 0; bottom: 0; height: 35px; display: grid; place-items: center; background: white; border-top: 2px solid var(--ink); font-size: 10px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.products-hero-card-1 { top: 10%; left: 8%; transform: rotate(-7deg); }
.products-hero-card-2 { top: 24%; right: 7%; transform: rotate(7deg); }
.products-hero-card-3 { bottom: 7%; left: 28%; transform: rotate(-2deg); }
.products-stamp { position: absolute; z-index: 5; right: 6%; top: 5%; display: grid; place-items: center; width: 112px; height: 112px; padding: 16px; background: var(--blue); border: 2px solid var(--ink); border-radius: 50%; font-family: var(--font-display), serif; font-size: 16px; font-weight: 750; line-height: 1; text-align: center; transform: rotate(8deg); }
.products-facts { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--ink); color: white; }
.products-facts article { min-height: 160px; display: flex; align-items: center; justify-content: center; gap: 18px; padding: 28px; border-right: 1px solid rgba(255,255,255,.18); }
.products-facts article:last-child { border-right: 0; }
.products-facts strong { color: var(--yellow); font-family: var(--font-display), serif; font-size: 56px; line-height: 1; }
.products-facts span { font-size: 12px; font-weight: 700; line-height: 1.35; }
.products-collection { padding: 110px 4.5vw 125px; background: var(--cream); }
.products-section-heading { display: grid; grid-template-columns: 1.05fr .62fr; align-items: end; gap: 9vw; margin-bottom: 58px; }
.products-section-heading h2 { max-width: 920px; margin: 0; font-size: clamp(50px, 5.2vw, 82px); line-height: .95; }
.products-section-heading > p { margin: 0 0 8px; font-size: 17px; line-height: 1.65; }
.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.catalog-card { padding: 17px; border: 2px solid var(--ink); box-shadow: 8px 8px 0 var(--ink); }
.catalog-card.pink { background: var(--pink); }
.catalog-card.blue { background: var(--blue); }
.catalog-card.orange { background: var(--orange); }
.catalog-image { position: relative; display: block; aspect-ratio: 1 / .96; overflow: hidden; background: white; border: 2px solid var(--ink); }
.catalog-image img { object-fit: cover; transition: transform .35s ease; }
.catalog-image:hover img { transform: scale(1.025); }
.catalog-image > span { position: absolute; right: 12px; bottom: 12px; padding: 8px 10px; background: white; border: 2px solid var(--ink); font-size: 9px; font-weight: 850; text-transform: uppercase; }
.catalog-copy { padding: 20px 2px 3px; }
.catalog-title { display: grid; grid-template-columns: 28px 1fr; gap: 10px; }
.catalog-title > span { padding-top: 6px; font-size: 9px; font-weight: 850; }
.catalog-title h3 { margin: 0 0 8px; font-family: var(--font-display), serif; font-size: 29px; line-height: 1; }
.catalog-title p { min-height: 60px; margin: 0; font-size: 12px; line-height: 1.5; }
.catalog-sizes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin: 18px 0; }
.catalog-sizes span { padding: 8px 4px; background: rgba(255,255,255,.58); border: 1px solid var(--ink); font-size: 10px; font-weight: 800; text-align: center; }
.catalog-buy { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding-top: 15px; border-top: 2px solid var(--ink); }
.catalog-buy strong { font-family: var(--font-display), serif; font-size: 23px; }
.catalog-buy a { padding: 9px 11px; background: var(--ink); color: white; font-size: 10px; font-weight: 850; text-transform: uppercase; }
.size-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: 9vw; padding: 105px 4.5vw 115px; background: var(--yellow); border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.size-intro h2 { max-width: 680px; margin: 0; font-size: clamp(52px, 5vw, 80px); line-height: .95; }
.size-intro > p:not(.eyebrow) { max-width: 600px; margin: 28px 0 24px; font-size: 16px; line-height: 1.7; }
.size-grid { display: grid; grid-template-columns: repeat(3, 1fr); align-self: center; border: 2px solid var(--ink); background: var(--cream); }
.size-grid article { min-height: 250px; display: flex; flex-direction: column; justify-content: space-between; padding: 22px; border-right: 2px solid var(--ink); }
.size-grid article:last-child { border-right: 0; }
.size-grid span { font-size: 10px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.size-grid strong { font-family: var(--font-display), serif; font-size: clamp(38px, 3.4vw, 54px); letter-spacing: -.06em; line-height: 1; }
.size-grid small { font-size: 10px; font-weight: 750; }
.retail-packaging { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 760px; background: var(--cream); border-bottom: 2px solid var(--ink); }
.packaging-art { position: relative; min-height: 760px; overflow: hidden; background: var(--blue); border-right: 2px solid var(--ink); }
.packaging-gridlines { position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(var(--ink) 1px, transparent 1px), linear-gradient(90deg, var(--ink) 1px, transparent 1px); background-size: 48px 48px; }
.bag-shape { position: absolute; z-index: 2; width: 36%; padding: 35px 13px 14px; background: rgba(255,255,255,.5); border: 3px solid var(--ink); border-radius: 10px 10px 4px 4px; box-shadow: 9px 9px 0 var(--ink); }
.bag-shape::before { content: ""; position: absolute; top: 15px; left: 13px; right: 13px; border-top: 2px solid var(--ink); }
.bag-shape > div { position: relative; aspect-ratio: 1 / 1.18; overflow: hidden; background: white; border: 2px solid var(--ink); }
.bag-shape img { object-fit: cover; }
.bag-shape > span { display: block; padding-top: 12px; font-size: 9px; font-weight: 850; letter-spacing: .12em; text-align: center; text-transform: uppercase; }
.bag-shape-one { top: 14%; left: 13%; transform: rotate(-5deg); }
.bag-shape-two { right: 12%; bottom: 12%; transform: rotate(6deg); }
.package-sticker { position: absolute; z-index: 5; right: 9%; top: 9%; display: grid; place-items: center; width: 112px; height: 112px; padding: 15px; background: var(--yellow); border: 2px solid var(--ink); border-radius: 50%; box-shadow: 5px 5px 0 var(--ink); font-family: var(--font-display), serif; font-size: 19px; font-weight: 750; line-height: .9; text-align: center; transform: rotate(8deg); }
.packaging-copy { display: flex; flex-direction: column; justify-content: center; padding: 90px clamp(45px, 7vw, 120px); }
.packaging-copy h2 { max-width: 720px; margin: 0; font-size: clamp(52px, 5vw, 80px); line-height: .95; }
.packaging-copy > p:not(.eyebrow) { max-width: 620px; margin: 28px 0 36px; font-size: 17px; line-height: 1.7; }
.packaging-copy ul { margin: 0; padding: 0; border-top: 1px solid rgba(21,18,15,.25); list-style: none; }
.packaging-copy li { display: flex; align-items: center; gap: 20px; padding: 15px 0; border-bottom: 1px solid rgba(21,18,15,.25); font-size: 13px; font-weight: 750; }
.packaging-copy li span { color: var(--red); font-size: 10px; }
.products-trio { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 760px; background: var(--pink); border-bottom: 2px solid var(--ink); }
.products-trio-copy { display: flex; flex-direction: column; justify-content: center; padding: 95px 5vw; border-right: 2px solid var(--ink); }
.products-trio-copy h2 { max-width: 720px; margin: 0; font-size: clamp(55px, 5.4vw, 86px); line-height: .93; }
.products-trio-copy > p:not(.eyebrow) { max-width: 600px; margin: 28px 0; font-size: 17px; line-height: 1.65; }
.trio-price { display: flex; align-items: baseline; gap: 18px; margin: 5px 0 28px; }
.trio-price span { font-size: 10px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.trio-price strong { font-family: var(--font-display), serif; font-size: 32px; }
.products-trio-copy .button { align-self: flex-start; }
.products-trio-art { position: relative; min-height: 760px; overflow: hidden; background: var(--orange); }
.products-trio-art::before { content: ""; position: absolute; inset: 0; opacity: .22; background-image: radial-gradient(var(--ink) 2px, transparent 2px); background-size: 34px 34px; }
.trio-catalog-card { position: absolute; width: 31%; aspect-ratio: 1 / 1.17; overflow: hidden; background: white; border: 3px solid var(--ink); box-shadow: 8px 8px 0 var(--ink); }
.trio-catalog-card img { object-fit: cover; }
.trio-catalog-card-1 { top: 13%; left: 5%; transform: rotate(-7deg); }
.trio-catalog-card-2 { top: 28%; left: 35%; transform: rotate(3deg); }
.trio-catalog-card-3 { right: 5%; bottom: 10%; transform: rotate(-3deg); }
.trio-plus { position: absolute; z-index: 4; display: grid; place-items: center; width: 48px; height: 48px; background: var(--red); color: white; border: 2px solid var(--ink); border-radius: 50%; box-shadow: 4px 4px 0 var(--ink); font-size: 27px; font-weight: 850; }
.trio-plus-one { top: 25%; left: 31%; }
.trio-plus-two { top: 52%; right: 28%; }
.products-origin { display: grid; grid-template-columns: repeat(3, 1fr); padding: 105px 4.5vw 115px; background: var(--ink); color: white; }
.products-origin article { min-height: 285px; padding: 28px; border: 1px solid rgba(255,255,255,.45); }
.products-origin article + article { border-left: 0; }
.products-origin span { color: var(--yellow); font-size: 10px; font-weight: 850; }
.products-origin h3 { margin: 74px 0 14px; font-family: var(--font-display), serif; font-size: 30px; line-height: 1; }
.products-origin p { max-width: 420px; margin: 0; color: rgba(255,255,255,.7); font-size: 13px; line-height: 1.6; }
.products-faq { display: grid; grid-template-columns: .72fr 1.28fr; gap: 9vw; padding: 105px 4.5vw 115px; background: var(--cream); }
.faq-heading h2 { max-width: 650px; margin: 0; font-size: clamp(52px, 5vw, 80px); line-height: .95; }
.faq-list { border-top: 2px solid var(--ink); }
.faq-list details { border-bottom: 2px solid var(--ink); }
.faq-list summary { display: flex; justify-content: space-between; gap: 30px; padding: 24px 0; cursor: pointer; font-family: var(--font-display), serif; font-size: 23px; font-weight: 700; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--red); font-family: var(--font-body), sans-serif; font-size: 22px; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 760px; margin: -5px 0 24px; color: rgba(21,18,15,.72); font-size: 14px; line-height: 1.65; }
.products-business { display: grid; grid-template-columns: 1fr 1fr; border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.products-business article { min-height: 520px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 75px 5vw; }
.business-wholesale { background: var(--yellow); border-right: 2px solid var(--ink); }
.business-custom { background: var(--blue); }
.products-business h2 { max-width: 680px; margin: 0; font-size: clamp(48px, 4.7vw, 74px); line-height: .95; }
.products-business p:not(.eyebrow) { max-width: 560px; margin: 24px 0 30px; font-size: 15px; line-height: 1.6; }

/* About */
.about-announcement { background: var(--pink); color: var(--ink); }
.about-hero { min-height: calc(100vh - 122px); display: grid; grid-template-columns: 50% 50%; overflow: hidden; background: var(--cream); border-bottom: 2px solid var(--ink); }
.about-hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 90px 5vw; }
.about-hero-copy .eyebrow { color: var(--red); }
.about-hero-copy h1 { max-width: 820px; font-size: clamp(66px, 6.7vw, 108px); }
.about-lead { max-width: 650px; margin: 30px 0 0; font-size: clamp(17px, 1.35vw, 21px); line-height: 1.6; }
.about-hero-copy .button:hover { box-shadow: 6px 6px 0 var(--pink); }
.about-hero-art { position: relative; min-height: 720px; overflow: hidden; background: var(--yellow); border-left: 2px solid var(--ink); }
.about-word { position: absolute; left: -2%; top: 7%; color: var(--red); font-family: var(--font-display), serif; font-size: clamp(110px, 13vw, 210px); font-weight: 800; letter-spacing: -.09em; line-height: .72; transform: rotate(-5deg); }
.about-cross { position: absolute; right: 3%; bottom: -16%; color: var(--cream); font-family: Arial, sans-serif; font-size: 360px; font-weight: 900; line-height: 1; transform: rotate(7deg); }
.about-icon-card { position: absolute; z-index: 2; width: 30%; aspect-ratio: 1 / 1.18; overflow: hidden; background: white; border: 3px solid var(--ink); box-shadow: 8px 8px 0 var(--ink); }
.about-icon-card img { object-fit: cover; }
.about-icon-cow { top: 28%; left: 6%; transform: rotate(-7deg); }
.about-icon-fondue { top: 34%; right: 7%; transform: rotate(7deg); }
.about-icon-chocolate { left: 34%; bottom: 6%; transform: rotate(-2deg); }
.about-stamp { position: absolute; z-index: 5; right: 6%; top: 6%; display: grid; place-items: center; width: 112px; height: 112px; padding: 17px; background: var(--blue); border: 2px solid var(--ink); border-radius: 50%; box-shadow: 5px 5px 0 var(--ink); font-family: var(--font-display), serif; font-size: 16px; font-weight: 750; line-height: 1; text-align: center; transform: rotate(8deg); }
.about-facts { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--ink); color: white; }
.about-facts article { min-height: 160px; display: flex; align-items: center; justify-content: center; gap: 18px; padding: 28px; border-right: 1px solid rgba(255,255,255,.18); }
.about-facts article:last-child { border-right: 0; }
.about-facts strong { color: var(--yellow); font-family: var(--font-display), serif; font-size: 54px; line-height: 1; }
.about-facts span { font-size: 12px; font-weight: 700; line-height: 1.35; }
.about-story { display: grid; grid-template-columns: .9fr 1.1fr; gap: 9vw; padding: 115px 4.5vw 125px; background: var(--cream); }
.about-story-heading h2 { max-width: 760px; margin: 0; font-size: clamp(55px, 5.5vw, 86px); line-height: .93; }
.about-story-copy { align-self: end; border-top: 2px solid var(--ink); }
.about-story-copy p { max-width: 760px; margin: 0; padding: 22px 0; border-bottom: 1px solid rgba(21,18,15,.25); font-size: 16px; line-height: 1.7; }
.about-story-copy .story-large { font-family: var(--font-display), serif; font-size: clamp(25px, 2.2vw, 35px); font-weight: 700; letter-spacing: -.03em; line-height: 1.18; }
.about-making { padding: 105px 4.5vw 120px; background: var(--red); color: white; }
.about-making-heading { display: grid; grid-template-columns: .35fr 1fr .55fr; align-items: end; gap: 6vw; }
.about-making-heading .eyebrow { align-self: start; margin-top: 14px; color: var(--yellow); }
.about-making-heading h2 { max-width: 900px; margin: 0; font-size: clamp(52px, 5.4vw, 84px); line-height: .93; }
.about-making-heading > p { margin: 0 0 7px; color: rgba(255,255,255,.74); font-size: 15px; line-height: 1.65; }
.making-panels { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 70px; }
.making-panels article { min-height: 430px; display: flex; flex-direction: column; padding: 29px; border: 2px solid white; }
.making-swiss { background: var(--yellow); color: var(--ink); }
.making-portugal { background: var(--blue); color: var(--ink); }
.making-panels article > span { font-size: 9px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.making-symbol { margin: auto 0 25px; font-family: var(--font-display), serif; font-size: clamp(74px, 7vw, 112px); font-weight: 800; letter-spacing: -.08em; line-height: .7; }
.making-panels h3 { margin: 0 0 12px; font-family: var(--font-display), serif; font-size: 31px; line-height: 1; }
.making-panels p { max-width: 620px; margin: 0; font-size: 13px; line-height: 1.6; }
.making-link { position: absolute; z-index: 4; left: 50%; top: 50%; display: grid; place-items: center; width: 64px; height: 64px; background: white; color: var(--red); border: 2px solid var(--ink); border-radius: 50%; box-shadow: 5px 5px 0 var(--ink); font-size: 26px; font-weight: 850; transform: translate(-50%,-50%) rotate(-5deg); }
.about-icons { padding: 110px 4.5vw 125px; background: var(--cream); }
.about-section-heading { display: grid; grid-template-columns: 1.05fr .62fr; align-items: end; gap: 9vw; margin-bottom: 58px; }
.about-section-heading h2 { max-width: 900px; margin: 0; font-size: clamp(50px, 5.2vw, 82px); line-height: .95; }
.about-section-heading > p { margin: 0 0 8px; font-size: 17px; line-height: 1.65; }
.icon-story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.icon-story-grid article { padding: 17px; border: 2px solid var(--ink); box-shadow: 8px 8px 0 var(--ink); }
.icon-story-grid article.pink { background: var(--pink); }
.icon-story-grid article.blue { background: var(--blue); }
.icon-story-grid article.orange { background: var(--orange); }
.icon-story-image { position: relative; aspect-ratio: 1 / .93; overflow: hidden; background: white; border: 2px solid var(--ink); }
.icon-story-image img { object-fit: cover; }
.icon-story-grid article > div:last-child { min-height: 155px; padding: 18px 2px 4px; }
.icon-story-grid article span { font-size: 9px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.icon-story-grid h3 { margin: 6px 0 9px; font-family: var(--font-display), serif; font-size: 29px; line-height: 1; }
.icon-story-grid p { max-width: 400px; margin: 0; font-size: 13px; line-height: 1.55; }
.about-values { padding: 105px 4.5vw 120px; background: var(--ink); color: white; }
.about-values-heading { display: grid; grid-template-columns: .36fr 1fr; gap: 7vw; }
.about-values-heading .eyebrow { margin-top: 14px; color: var(--yellow); }
.about-values-heading h2 { max-width: 980px; margin: 0; font-size: clamp(52px, 5.3vw, 84px); line-height: .95; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 70px; border-top: 1px solid rgba(255,255,255,.28); }
.values-grid article { min-height: 295px; padding: 26px 24px; border-right: 1px solid rgba(255,255,255,.28); }
.values-grid article:last-child { border-right: 0; }
.values-grid span { color: var(--yellow); font-size: 10px; font-weight: 850; }
.values-grid h3 { margin: 76px 0 12px; font-family: var(--font-display), serif; font-size: 26px; line-height: 1.05; }
.values-grid p { max-width: 360px; margin: 0; color: rgba(255,255,255,.68); font-size: 13px; line-height: 1.55; }
.about-growth { display: grid; grid-template-columns: .88fr 1.12fr; gap: 9vw; padding: 110px 4.5vw 120px; background: var(--yellow); border-bottom: 2px solid var(--ink); }
.growth-copy h2 { max-width: 740px; margin: 0; font-size: clamp(55px, 5.5vw, 86px); line-height: .93; }
.growth-copy > p:not(.eyebrow) { max-width: 650px; margin: 28px 0 0; font-size: 16px; line-height: 1.7; }
.growth-steps { align-self: center; margin: 0; padding: 0; border-top: 2px solid var(--ink); list-style: none; }
.growth-steps li { display: grid; grid-template-columns: 78px 1fr; gap: 20px; padding: 24px 0; border-bottom: 2px solid var(--ink); }
.growth-steps li > span { color: var(--red); font-size: 9px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.growth-steps strong { font-family: var(--font-display), serif; font-size: 23px; line-height: 1; }
.growth-steps p { margin: 8px 0 0; font-size: 13px; line-height: 1.55; }
.about-next { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 2px solid var(--ink); }
.about-next article { min-height: 540px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 80px 5vw; }
.about-next-shop { background: var(--pink); border-right: 2px solid var(--ink); }
.about-next-work { background: var(--blue); }
.about-next h2 { max-width: 680px; margin: 0; font-size: clamp(50px, 4.8vw, 76px); line-height: .95; }
.about-next p:not(.eyebrow) { max-width: 570px; margin: 24px 0 30px; font-size: 15px; line-height: 1.65; }
.next-links { display: flex; gap: 24px; }
.next-links a { padding-bottom: 4px; border-bottom: 2px solid var(--ink); font-size: 12px; font-weight: 850; text-transform: uppercase; }

/* Contact */
.contact-announcement { background: var(--blue); color: var(--ink); }
.contact-hero { min-height: calc(100vh - 122px); display: grid; grid-template-columns: 50% 50%; overflow: hidden; background: var(--cream); border-bottom: 2px solid var(--ink); }
.contact-hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 90px 5vw; }
.contact-hero-copy .eyebrow { color: var(--red); }
.contact-hero-copy h1 { max-width: 820px; font-size: clamp(64px, 6.5vw, 104px); }
.contact-lead { max-width: 650px; margin: 30px 0 0; font-size: clamp(17px, 1.35vw, 21px); line-height: 1.6; }
.contact-hero-copy .button:hover { box-shadow: 6px 6px 0 var(--blue); }
.contact-direct { display: flex; flex-direction: column; gap: 5px; margin-top: 42px; }
.contact-direct span { color: rgba(21,18,15,.6); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-direct a { align-self: flex-start; padding-bottom: 4px; border-bottom: 2px solid var(--red); font-family: var(--font-display), serif; font-size: 23px; font-weight: 700; }
.contact-hero-art { position: relative; min-height: 720px; overflow: hidden; background: var(--orange); border-left: 2px solid var(--ink); }
.contact-gridlines { position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(var(--ink) 1px, transparent 1px), linear-gradient(90deg, var(--ink) 1px, transparent 1px); background-size: 50px 50px; }
.contact-envelope { position: absolute; z-index: 2; left: 10%; top: 22%; width: 72%; aspect-ratio: 1.4 / 1; overflow: hidden; background: var(--cream); border: 3px solid var(--ink); box-shadow: 11px 11px 0 var(--ink); transform: rotate(-4deg); }
.envelope-flap { position: absolute; inset: 0; background: linear-gradient(145deg, transparent 49.5%, var(--ink) 50%, var(--ink) 50.6%, var(--pink) 51%) left / 50% 100% no-repeat, linear-gradient(215deg, transparent 49.5%, var(--ink) 50%, var(--ink) 50.6%, var(--pink) 51%) right / 50% 100% no-repeat; opacity: .75; }
.contact-note { position: absolute; z-index: 3; left: 15%; right: 15%; top: 12%; display: flex; flex-direction: column; min-height: 62%; padding: 24px; background: white; border: 2px solid var(--ink); box-shadow: 6px 6px 0 var(--ink); }
.contact-note > span { color: var(--red); font-size: 10px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.contact-note strong { max-width: 390px; margin: auto 0; font-family: var(--font-display), serif; font-size: clamp(25px, 3.2vw, 46px); line-height: .95; }
.contact-note small { font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-product-card { position: absolute; z-index: 4; width: 22%; aspect-ratio: 1 / 1.18; overflow: hidden; background: white; border: 3px solid var(--ink); box-shadow: 6px 6px 0 var(--ink); }
.contact-product-card img { object-fit: cover; }
.contact-product-one { left: 4%; bottom: 6%; transform: rotate(7deg); }
.contact-product-two { right: 6%; bottom: 7%; transform: rotate(-8deg); }
.contact-stamp { position: absolute; z-index: 5; right: 6%; top: 5%; display: grid; place-items: center; width: 110px; height: 110px; padding: 16px; background: var(--yellow); border: 2px solid var(--ink); border-radius: 50%; box-shadow: 5px 5px 0 var(--ink); font-family: var(--font-display), serif; font-size: 16px; font-weight: 750; line-height: 1; text-align: center; transform: rotate(8deg); }
.contact-routes { padding: 110px 4.5vw 125px; background: var(--cream); }
.contact-routes-heading { display: grid; grid-template-columns: .38fr 1fr; gap: 7vw; margin-bottom: 58px; }
.contact-routes-heading .eyebrow { margin-top: 14px; }
.contact-routes-heading h2 { max-width: 980px; margin: 0; font-size: clamp(52px, 5.4vw, 84px); line-height: .94; }
.contact-route-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 2px solid var(--ink); }
.contact-route-grid article { min-height: 420px; display: flex; flex-direction: column; padding: 27px; border-right: 2px solid var(--ink); }
.contact-route-grid article:last-child { border-right: 0; }
.contact-route-grid article.yellow { background: var(--yellow); }
.contact-route-grid article.blue { background: var(--blue); }
.contact-route-grid article.pink { background: var(--pink); }
.route-top { display: flex; justify-content: space-between; gap: 20px; font-size: 9px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.contact-route-grid h3 { margin: auto 0 14px; font-family: var(--font-display), serif; font-size: 31px; line-height: 1; }
.contact-route-grid p { max-width: 420px; margin: 0 0 26px; font-size: 13px; line-height: 1.55; }
.contact-route-grid a { align-self: flex-start; padding-bottom: 4px; border-bottom: 2px solid var(--ink); font-size: 10px; font-weight: 850; text-transform: uppercase; }
.contact-form-section { display: grid; grid-template-columns: .78fr 1.22fr; min-height: 920px; background: var(--red); color: white; }
.contact-form-intro { padding: 100px 5vw; border-right: 2px solid var(--ink); }
.contact-form-intro .eyebrow { color: var(--yellow); }
.contact-form-intro h2 { max-width: 680px; margin: 0; font-size: clamp(55px, 5.5vw, 86px); line-height: .93; }
.contact-form-intro > p:not(.eyebrow) { max-width: 580px; margin: 28px 0; color: rgba(255,255,255,.78); font-size: 17px; line-height: 1.65; }
.contact-form-note { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; max-width: 390px; margin-top: 42px; padding: 20px; border: 2px solid white; }
.contact-form-note strong { color: var(--yellow); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.contact-form-note a { padding-bottom: 3px; border-bottom: 1px solid white; font-size: 12px; font-weight: 750; }
.contact-form { padding: 90px 5vw; background: var(--cream); color: var(--ink); }
.contact-form label { display: flex; flex-direction: column; gap: 9px; margin-bottom: 23px; }
.contact-form label > span { font-size: 11px; font-weight: 800; }
.contact-form input:not([type="checkbox"]), .contact-form select, .contact-form textarea { width: 100%; padding: 15px 0; border: 0; border-bottom: 2px solid var(--ink); border-radius: 0; outline: 0; background: transparent; color: var(--ink); font: inherit; font-size: 15px; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(21,18,15,.48); }
.contact-form textarea { resize: vertical; }
.contact-form .privacy-check { flex-direction: row; align-items: flex-start; gap: 10px; margin: 8px 0 28px; }
.contact-submit { background: var(--ink); color: white; cursor: pointer; }
.contact-submit:hover { box-shadow: 6px 6px 0 var(--yellow); }
.contact-details { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--yellow); border-bottom: 2px solid var(--ink); }
.contact-details article { min-height: 230px; display: flex; flex-direction: column; justify-content: center; padding: 35px 4.5vw; border-right: 2px solid var(--ink); }
.contact-details article:last-child { border-right: 0; }
.contact-details span { margin-bottom: 40px; color: var(--red); font-size: 9px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.contact-details a, .contact-details strong { font-family: var(--font-display), serif; font-size: clamp(24px, 2.5vw, 37px); font-weight: 750; letter-spacing: -.04em; line-height: 1; }
.contact-details p { margin: 12px 0 0; font-size: 12px; line-height: 1.5; }
.contact-help { padding: 105px 4.5vw 120px; background: var(--cream); }
.contact-help-heading { display: grid; grid-template-columns: .4fr 1fr; gap: 7vw; }
.contact-help-heading .eyebrow { margin-top: 14px; }
.contact-help-heading h2 { max-width: 960px; margin: 0; font-size: clamp(52px, 5.3vw, 84px); line-height: .94; }
.contact-help-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 68px; border: 2px solid var(--ink); }
.contact-help-grid > a { min-height: 330px; display: flex; flex-direction: column; padding: 25px; border-right: 2px solid var(--ink); transition: background .2s ease; }
.contact-help-grid > a:last-child { border-right: 0; }
.contact-help-grid > a:nth-child(1):hover { background: var(--yellow); }
.contact-help-grid > a:nth-child(2):hover { background: var(--pink); }
.contact-help-grid > a:nth-child(3):hover { background: var(--blue); }
.contact-help-grid > a:nth-child(4):hover { background: var(--orange); }
.contact-help-grid span { font-size: 9px; font-weight: 850; }
.contact-help-grid h3 { margin: auto 0 11px; font-family: var(--font-display), serif; font-size: 28px; line-height: 1; }
.contact-help-grid p { margin: 0 0 22px; font-size: 12px; line-height: 1.55; }
.contact-help-grid strong { font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.contact-faq { display: grid; grid-template-columns: .75fr 1.25fr; gap: 9vw; padding: 105px 4.5vw 115px; background: var(--blue); }
.contact-faq-heading h2 { max-width: 670px; margin: 0; font-size: clamp(52px, 5vw, 80px); line-height: .95; }
.contact-faq-list { border-top: 2px solid var(--ink); }
.contact-faq-list details { border-bottom: 2px solid var(--ink); }
.contact-faq-list summary { display: flex; justify-content: space-between; gap: 28px; padding: 24px 0; cursor: pointer; font-family: var(--font-display), serif; font-size: 23px; font-weight: 700; list-style: none; }
.contact-faq-list summary::-webkit-details-marker { display: none; }
.contact-faq-list summary span { color: var(--red); font-family: var(--font-body), sans-serif; font-size: 22px; }
.contact-faq-list details[open] summary span { transform: rotate(45deg); }
.contact-faq-list details p { max-width: 760px; margin: -5px 0 24px; font-size: 14px; line-height: 1.65; }

/* Help & FAQ */
.help-announcement { background: var(--yellow); color: var(--ink); }
.help-hero { min-height: calc(100vh - 122px); display: grid; grid-template-columns: 50% 50%; overflow: hidden; background: var(--cream); border-bottom: 2px solid var(--ink); }
.help-hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 90px 5vw; }
.help-hero-copy .eyebrow { color: var(--red); }
.help-hero-copy h1 { max-width: 820px; font-size: clamp(64px, 6.5vw, 104px); }
.help-lead { max-width: 660px; margin: 30px 0 0; font-size: clamp(17px, 1.35vw, 21px); line-height: 1.6; }
.help-hero-copy .button:hover { box-shadow: 6px 6px 0 var(--yellow); }
.help-hero-art { position: relative; min-height: 720px; overflow: hidden; background: var(--blue); border-left: 2px solid var(--ink); }
.help-gridlines { position: absolute; inset: 0; opacity: .17; background-image: linear-gradient(var(--ink) 1px, transparent 1px), linear-gradient(90deg, var(--ink) 1px, transparent 1px); background-size: 50px 50px; }
.help-question { position: absolute; left: 18%; top: -14%; color: var(--cream); font-family: var(--font-display), serif; font-size: clamp(380px, 38vw, 610px); font-weight: 850; line-height: 1; transform: rotate(-9deg); }
.help-ticket { position: absolute; z-index: 3; display: flex; flex-direction: column; justify-content: space-between; width: 31%; aspect-ratio: 1 / .72; padding: 17px; border: 3px solid var(--ink); box-shadow: 7px 7px 0 var(--ink); }
.help-ticket > span { font-size: 9px; font-weight: 850; }
.help-ticket strong { font-family: var(--font-display), serif; font-size: clamp(24px, 2.6vw, 40px); line-height: .9; }
.help-ticket small { font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.help-ticket-orders { left: 6%; top: 15%; background: var(--yellow); transform: rotate(-6deg); }
.help-ticket-sizes { right: 7%; top: 27%; background: var(--pink); transform: rotate(7deg); }
.help-ticket-business { left: 22%; bottom: 12%; background: var(--orange); transform: rotate(3deg); }
.help-sock-card { position: absolute; z-index: 4; right: 8%; bottom: 7%; width: 23%; aspect-ratio: 1 / 1.16; overflow: hidden; background: white; border: 3px solid var(--ink); box-shadow: 6px 6px 0 var(--ink); transform: rotate(-6deg); }
.help-sock-card img { object-fit: cover; }
.help-stamp { position: absolute; z-index: 5; right: 6%; top: 6%; display: grid; place-items: center; width: 108px; height: 108px; padding: 16px; background: var(--red); color: white; border: 2px solid var(--ink); border-radius: 50%; box-shadow: 5px 5px 0 var(--ink); font-family: var(--font-display), serif; font-size: 15px; font-weight: 750; line-height: 1; text-align: center; transform: rotate(8deg); }
.help-facts { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--ink); color: white; }
.help-facts article { min-height: 160px; display: flex; align-items: center; justify-content: center; gap: 18px; padding: 28px; border-right: 1px solid rgba(255,255,255,.18); }
.help-facts article:last-child { border-right: 0; }
.help-facts strong { color: var(--yellow); font-family: var(--font-display), serif; font-size: 54px; line-height: 1; }
.help-facts span { font-size: 12px; font-weight: 700; line-height: 1.35; }
.help-topics { padding: 110px 4.5vw 125px; background: var(--cream); }
.help-topics-heading { display: grid; grid-template-columns: .38fr 1fr; gap: 7vw; margin-bottom: 58px; }
.help-topics-heading .eyebrow { margin-top: 14px; }
.help-topics-heading h2 { max-width: 920px; margin: 0; font-size: clamp(52px, 5.4vw, 84px); line-height: .94; }
.help-topic-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 2px solid var(--ink); }
.help-topic-grid > a { min-height: 360px; display: flex; flex-direction: column; padding: 25px; border-right: 2px solid var(--ink); }
.help-topic-grid > a:last-child { border-right: 0; }
.help-topic-grid > a.yellow { background: var(--yellow); }
.help-topic-grid > a.pink { background: var(--pink); }
.help-topic-grid > a.blue { background: var(--blue); }
.help-topic-grid > a.orange { background: var(--orange); }
.help-topic-grid > a > span { font-size: 9px; font-weight: 850; }
.help-topic-grid h3 { margin: auto 0 12px; font-family: var(--font-display), serif; font-size: 29px; line-height: 1; }
.help-topic-grid p { margin: 0 0 24px; font-size: 12px; line-height: 1.55; }
.help-topic-grid strong { font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.faq-category { display: grid; grid-template-columns: .78fr 1.22fr; border-top: 2px solid var(--ink); scroll-margin-top: 32px; }
.faq-category-heading { min-height: 640px; padding: 92px 5vw; border-right: 2px solid var(--ink); }
.faq-category-heading > span { display: inline-grid; place-items: center; width: 42px; height: 42px; margin-bottom: 55px; border: 2px solid var(--ink); border-radius: 50%; font-weight: 850; }
.faq-category-heading h2 { max-width: 680px; margin: 18px 0 25px; font-size: clamp(48px, 5vw, 80px); line-height: .96; }
.faq-category-heading > p:not(.eyebrow) { max-width: 560px; font-size: 16px; line-height: 1.65; }
.faq-category-heading .text-link { display: inline-flex; margin-top: 34px; padding-bottom: 5px; border-bottom: 2px solid var(--ink); }
.help-accordion { padding: 70px 5vw 90px; background: var(--cream); }
.help-accordion details { border-top: 2px solid var(--ink); }
.help-accordion details:last-child { border-bottom: 2px solid var(--ink); }
.help-accordion summary { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px; padding: 31px 0; cursor: pointer; font-family: var(--font-display), serif; font-size: clamp(20px, 2vw, 30px); font-weight: 750; line-height: 1.08; list-style: none; }
.help-accordion summary::-webkit-details-marker { display: none; }
.help-accordion summary span { display: grid; place-items: center; width: 34px; height: 34px; border: 2px solid var(--ink); border-radius: 50%; font-family: var(--font-body), sans-serif; font-size: 20px; transition: transform .2s ease; }
.help-accordion details[open] summary span { transform: rotate(45deg); }
.help-accordion details p { max-width: 700px; margin: -6px 58px 32px 0; font-size: 15px; line-height: 1.7; }
.faq-orders .faq-category-heading { background: var(--yellow); }
.faq-products .faq-category-heading { background: var(--pink); }
.faq-wholesale .faq-category-heading { background: var(--blue); }
.faq-custom .faq-category-heading { background: var(--orange); }
.carton-equation { max-width: 570px; display: grid; grid-template-columns: repeat(7, auto); align-items: end; gap: 10px; margin: 38px 0 8px; padding: 24px 0; border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.carton-equation strong { font-family: var(--font-display), serif; font-size: 35px; line-height: 1; }
.carton-equation small { align-self: center; margin-left: -6px; font-size: 8px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.carton-equation b { align-self: center; font-size: 16px; }
.help-next { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; padding: 105px 5vw; background: var(--ink); color: white; }
.help-next h2 { max-width: 720px; margin: 18px 0 24px; font-size: clamp(52px, 5.5vw, 86px); line-height: .94; }
.help-next > div:first-child > p:last-child { max-width: 530px; color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.65; }
.help-next-links { border-top: 1px solid rgba(255,255,255,.5); }
.help-next-links a { display: grid; grid-template-columns: .72fr 1fr; gap: 24px; padding: 27px 0; color: white; border-bottom: 1px solid rgba(255,255,255,.5); }
.help-next-links span { color: var(--yellow); font-size: 9px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.help-next-links strong { font-family: var(--font-display), serif; font-size: 20px; }

/* Shipping & returns */
.shipping-announcement { background: var(--yellow); color: var(--ink); }
.shipping-hero { min-height: calc(100vh - 122px); display: grid; grid-template-columns: 50% 50%; overflow: hidden; background: var(--cream); border-bottom: 2px solid var(--ink); }
.shipping-hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 90px 5vw; }
.shipping-hero-copy .eyebrow { color: var(--red); }
.shipping-hero-copy h1 { max-width: 850px; font-size: clamp(64px, 6.5vw, 104px); }
.shipping-lead { max-width: 670px; margin: 30px 0 0; font-size: clamp(17px, 1.35vw, 21px); line-height: 1.6; }
.shipping-hero-art { position: relative; min-height: 720px; overflow: hidden; background: var(--orange); border-left: 2px solid var(--ink); }
.shipping-gridlines { position: absolute; inset: 0; opacity: .14; background-image: linear-gradient(var(--ink) 1px, transparent 1px), linear-gradient(90deg, var(--ink) 1px, transparent 1px); background-size: 50px 50px; }
.shipping-route { position: absolute; left: 7%; right: 7%; top: 7%; display: flex; align-items: center; justify-content: space-between; font-size: 9px; font-weight: 850; letter-spacing: .12em; }
.shipping-route::before { content: ""; position: absolute; left: 82px; right: 88px; top: 50%; z-index: 0; border-top: 2px dashed var(--ink); }
.shipping-route b { z-index: 1; display: grid; place-items: center; width: 42px; height: 42px; background: var(--yellow); border: 2px solid var(--ink); border-radius: 50%; font-size: 19px; }
.shipping-parcel { position: absolute; left: 14%; top: 26%; width: 67%; height: 47%; background: #c99052; border: 3px solid var(--ink); box-shadow: 10px 10px 0 var(--ink); transform: rotate(-4deg); }
.shipping-tape { position: absolute; left: 0; right: 0; top: 17%; padding: 12px; overflow: hidden; background: var(--yellow); border-block: 2px solid var(--ink); font-size: 9px; font-weight: 850; letter-spacing: .17em; white-space: nowrap; }
.shipping-label { position: absolute; left: 17%; right: 17%; bottom: 12%; display: flex; flex-direction: column; padding: 24px; background: var(--cream); border: 2px solid var(--ink); }
.shipping-label small { font-size: 8px; font-weight: 850; letter-spacing: .12em; }
.shipping-label strong { margin: 8px 0 20px; font-family: var(--font-display), serif; font-size: clamp(27px, 3.2vw, 48px); line-height: .9; }
.shipping-label span { padding-top: 11px; border-top: 2px solid var(--ink); font-size: 9px; font-weight: 850; }
.shipping-product { position: absolute; z-index: 4; width: 18%; aspect-ratio: .78; overflow: hidden; background: white; border: 3px solid var(--ink); box-shadow: 6px 6px 0 var(--ink); }
.shipping-product img { object-fit: cover; }
.shipping-product-one { left: 5%; bottom: 5%; transform: rotate(8deg); }
.shipping-product-two { right: 5%; bottom: 4%; transform: rotate(-7deg); }
.shipping-stamp { position: absolute; z-index: 5; right: 5%; top: 10%; display: grid; place-items: center; width: 110px; height: 110px; padding: 17px; background: var(--red); color: white; border: 2px solid var(--ink); border-radius: 50%; box-shadow: 5px 5px 0 var(--ink); font-family: var(--font-display), serif; font-size: 15px; font-weight: 750; line-height: 1; text-align: center; transform: rotate(8deg); }
.shipping-facts { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--ink); color: white; }
.shipping-facts article { min-height: 160px; display: flex; align-items: center; justify-content: center; gap: 18px; padding: 28px; border-right: 1px solid rgba(255,255,255,.18); }
.shipping-facts article:last-child { border-right: 0; }
.shipping-facts strong { color: var(--yellow); font-family: var(--font-display), serif; font-size: 50px; line-height: 1; }
.shipping-facts span { font-size: 12px; font-weight: 700; line-height: 1.35; }
.shipping-routes { padding: 110px 4.5vw 125px; background: var(--cream); }
.shipping-routes-heading { display: grid; grid-template-columns: .38fr 1fr; gap: 7vw; margin-bottom: 58px; }
.shipping-routes-heading .eyebrow { margin-top: 14px; }
.shipping-routes-heading h2 { max-width: 920px; margin: 0; font-size: clamp(52px, 5.4vw, 84px); line-height: .94; }
.shipping-route-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 2px solid var(--ink); }
.shipping-route-grid > a { min-height: 360px; display: flex; flex-direction: column; padding: 25px; border-right: 2px solid var(--ink); }
.shipping-route-grid > a:last-child { border-right: 0; }
.shipping-route-grid > a.yellow { background: var(--yellow); }
.shipping-route-grid > a.pink { background: var(--pink); }
.shipping-route-grid > a.blue { background: var(--blue); }
.shipping-route-grid > a > span { font-size: 9px; font-weight: 850; }
.shipping-route-grid h3 { margin: auto 0 12px; font-family: var(--font-display), serif; font-size: 31px; line-height: 1; }
.shipping-route-grid p { max-width: 380px; margin: 0 0 24px; font-size: 12px; line-height: 1.55; }
.shipping-route-grid strong { font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.shipping-delivery { display: grid; grid-template-columns: .78fr 1.22fr; border-top: 2px solid var(--ink); scroll-margin-top: 28px; }
.shipping-section-heading { min-height: 690px; padding: 92px 5vw; background: var(--yellow); border-right: 2px solid var(--ink); }
.shipping-section-heading > span { display: inline-grid; place-items: center; width: 42px; height: 42px; margin-bottom: 55px; border: 2px solid var(--ink); border-radius: 50%; font-weight: 850; }
.shipping-section-heading h2 { max-width: 620px; margin: 18px 0 25px; font-size: clamp(54px, 5.5vw, 88px); line-height: .94; }
.shipping-section-heading > p:not(.eyebrow) { max-width: 560px; font-size: 16px; line-height: 1.65; }
.shipping-section-heading .text-link { display: inline-flex; margin-top: 35px; padding-bottom: 5px; border-bottom: 2px solid var(--ink); }
.delivery-steps { margin: 0; padding: 66px 5vw 80px; background: var(--cream); list-style: none; }
.delivery-steps li { display: grid; grid-template-columns: 62px 1fr; gap: 26px; padding: 30px 0; border-top: 2px solid var(--ink); }
.delivery-steps li:last-child { border-bottom: 2px solid var(--ink); }
.delivery-steps li > span { display: grid; place-items: center; width: 44px; height: 44px; background: var(--blue); border: 2px solid var(--ink); border-radius: 50%; font-size: 10px; font-weight: 850; }
.delivery-steps h3 { margin: 0 0 10px; font-family: var(--font-display), serif; font-size: 30px; line-height: 1; }
.delivery-steps p { max-width: 680px; margin: 0; font-size: 14px; line-height: 1.65; }
.shipping-costs { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.shipping-costs article { min-height: 475px; display: flex; flex-direction: column; padding: 40px 3.6vw; border-right: 2px solid var(--ink); }
.shipping-costs article:last-child { border-right: 0; }
.shipping-costs article > span { font-size: 9px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.shipping-costs article > strong { margin-top: auto; font-family: var(--font-display), serif; font-size: clamp(44px, 4.5vw, 72px); line-height: .9; }
.shipping-costs h3 { margin: 21px 0 13px; font-family: var(--font-display), serif; font-size: 25px; }
.shipping-costs p { max-width: 420px; margin: 0 0 27px; font-size: 13px; line-height: 1.65; }
.shipping-costs a { align-self: flex-start; padding-bottom: 4px; border-bottom: 2px solid var(--ink); font-size: 11px; font-weight: 800; }
.cost-free { background: var(--pink); }
.cost-checkout { background: var(--cream); }
.cost-trade { background: var(--blue); }
.shipping-returns-section { display: grid; grid-template-columns: 46% 54%; scroll-margin-top: 28px; }
.returns-visual { position: relative; min-height: 820px; overflow: hidden; background: var(--pink); border-right: 2px solid var(--ink); }
.returns-number { position: absolute; left: -5%; top: 2%; color: var(--yellow); font-family: var(--font-display), serif; font-size: clamp(300px, 34vw, 540px); font-weight: 850; line-height: .8; letter-spacing: -.09em; -webkit-text-stroke: 2px var(--ink); }
.returns-visual > span { position: absolute; right: 7%; top: 13%; font-family: var(--font-display), serif; font-size: 52px; font-weight: 850; transform: rotate(8deg); }
.returns-card { position: absolute; left: 18%; right: 18%; bottom: 10%; display: flex; flex-direction: column; padding: 27px; background: var(--cream); border: 3px solid var(--ink); box-shadow: 9px 9px 0 var(--ink); transform: rotate(-5deg); }
.returns-card small { font-size: 8px; font-weight: 850; letter-spacing: .12em; }
.returns-card strong { margin: 17px 0 24px; font-family: var(--font-display), serif; font-size: clamp(42px, 5vw, 72px); line-height: .86; }
.returns-card p { margin: 0; padding-top: 18px; border-top: 2px solid var(--ink); font-size: 11px; font-weight: 750; line-height: 1.6; text-transform: uppercase; }
.returns-arrow { position: absolute; right: 7%; bottom: 5%; display: grid; place-items: center; width: 82px; height: 82px; background: var(--red); color: white; border: 2px solid var(--ink); border-radius: 50%; box-shadow: 5px 5px 0 var(--ink); font-size: 38px; transform: rotate(10deg); }
.returns-copy { padding: 90px 5vw; background: var(--cream); }
.returns-copy h2 { max-width: 760px; margin: 18px 0 26px; font-size: clamp(52px, 5.5vw, 88px); line-height: .94; }
.returns-intro { max-width: 730px; margin-bottom: 48px; font-size: 16px; line-height: 1.7; }
.returns-accordion details { border-top: 2px solid var(--ink); }
.returns-accordion details:last-child { border-bottom: 2px solid var(--ink); }
.returns-accordion summary { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; padding: 27px 0; cursor: pointer; font-family: var(--font-display), serif; font-size: clamp(19px, 1.8vw, 27px); font-weight: 750; list-style: none; }
.returns-accordion summary::-webkit-details-marker { display: none; }
.returns-accordion summary span { display: grid; place-items: center; width: 33px; height: 33px; border: 2px solid var(--ink); border-radius: 50%; font-family: var(--font-body), sans-serif; font-size: 19px; transition: transform .2s ease; }
.returns-accordion details[open] summary span { transform: rotate(45deg); }
.returns-accordion details p { max-width: 690px; margin: -3px 55px 29px 0; font-size: 14px; line-height: 1.7; }
.order-problems { padding: 105px 4.5vw 120px; background: var(--blue); border-top: 2px solid var(--ink); scroll-margin-top: 28px; }
.order-problems-heading { display: grid; grid-template-columns: .32fr 1fr .7fr; gap: 5vw; align-items: start; }
.order-problems-heading h2 { max-width: 750px; margin: 0; font-size: clamp(54px, 5.8vw, 92px); line-height: .92; }
.order-problems-heading > p:last-child { margin: 10px 0 0; font-size: 15px; line-height: 1.65; }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin: 65px 0 45px; border: 2px solid var(--ink); }
.problem-grid article { min-height: 300px; display: flex; flex-direction: column; padding: 28px; background: var(--cream); border-right: 2px solid var(--ink); }
.problem-grid article:last-child { border-right: 0; }
.problem-grid span { font-size: 9px; font-weight: 850; }
.problem-grid h3 { margin: auto 0 14px; font-family: var(--font-display), serif; font-size: 30px; }
.problem-grid p { margin: 0; font-size: 13px; line-height: 1.65; }
.order-problems .button { display: inline-flex; }
.shipping-note { display: grid; grid-template-columns: 1fr .8fr; gap: 9vw; padding: 105px 5vw; background: var(--ink); color: white; }
.shipping-note h2 { max-width: 800px; margin: 18px 0 0; font-size: clamp(52px, 5.8vw, 92px); line-height: .93; }
.shipping-note > div:last-child { align-self: end; }
.shipping-note > div:last-child p { max-width: 570px; margin: 0 0 32px; color: rgba(255,255,255,.75); font-size: 16px; line-height: 1.7; }

/* Privacy policy */
.footer-bottom a { color: inherit; }
.privacy-announcement { background: var(--pink); color: var(--ink); }
.privacy-hero { min-height: calc(100vh - 122px); display: grid; grid-template-columns: 50% 50%; overflow: hidden; background: var(--cream); border-bottom: 2px solid var(--ink); }
.privacy-hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 90px 5vw; }
.privacy-hero-copy .eyebrow { color: var(--red); }
.privacy-hero-copy h1 { max-width: 860px; font-size: clamp(64px, 6.5vw, 104px); }
.privacy-lead { max-width: 680px; margin: 30px 0 0; font-size: clamp(17px, 1.35vw, 21px); line-height: 1.6; }
.privacy-hero-art { position: relative; min-height: 720px; overflow: hidden; background: var(--blue); border-left: 2px solid var(--ink); }
.privacy-gridlines { position: absolute; inset: 0; opacity: .15; background-image: linear-gradient(var(--ink) 1px, transparent 1px), linear-gradient(90deg, var(--ink) 1px, transparent 1px); background-size: 50px 50px; }
.privacy-shield { position: absolute; left: 23%; top: 14%; width: 54%; height: 65%; background: var(--yellow); border: 4px solid var(--ink); border-radius: 48% 48% 50% 50% / 28% 28% 72% 72%; box-shadow: 10px 10px 0 var(--ink); transform: rotate(-4deg); }
.privacy-shield::after { content: ""; position: absolute; left: 50%; bottom: -14%; width: 40%; height: 32%; background: var(--yellow); border-right: 4px solid var(--ink); border-bottom: 4px solid var(--ink); transform: translateX(-50%) rotate(45deg); }
.privacy-lock { position: absolute; z-index: 2; left: 50%; top: 49%; width: 34%; aspect-ratio: .84; background: var(--red); border: 3px solid var(--ink); box-shadow: 6px 6px 0 var(--ink); transform: translate(-50%, -50%) rotate(4deg); }
.privacy-lock::before { content: ""; position: absolute; left: 18%; right: 18%; top: -45%; height: 58%; border: 9px solid var(--ink); border-bottom: 0; border-radius: 48px 48px 0 0; }
.privacy-lock span { position: absolute; left: 50%; top: 45%; width: 20px; height: 30px; background: var(--ink); clip-path: polygon(50% 0, 80% 45%, 68% 100%, 32% 100%, 20% 45%); transform: translate(-50%, -50%); }
.privacy-card { position: absolute; z-index: 4; display: flex; flex-direction: column; justify-content: space-between; width: 25%; aspect-ratio: 1 / .72; padding: 15px; border: 3px solid var(--ink); box-shadow: 6px 6px 0 var(--ink); }
.privacy-card small { font-size: 8px; font-weight: 850; }
.privacy-card strong { font-family: var(--font-display), serif; font-size: clamp(20px, 2vw, 31px); line-height: .9; }
.privacy-card span { font-size: 8px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.privacy-card-orders { left: 5%; top: 9%; background: var(--orange); transform: rotate(-7deg); }
.privacy-card-contact { right: 5%; top: 31%; background: var(--pink); transform: rotate(7deg); }
.privacy-card-cookies { left: 8%; bottom: 6%; background: var(--cream); transform: rotate(5deg); }
.privacy-stamp { position: absolute; z-index: 5; right: 7%; bottom: 7%; display: grid; place-items: center; width: 108px; height: 108px; padding: 17px; background: var(--red); color: white; border: 2px solid var(--ink); border-radius: 50%; box-shadow: 5px 5px 0 var(--ink); font-family: var(--font-display), serif; font-size: 15px; font-weight: 750; line-height: 1; text-align: center; transform: rotate(8deg); }
.privacy-facts { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--ink); color: white; }
.privacy-facts article { min-height: 160px; display: flex; align-items: center; justify-content: center; gap: 18px; padding: 28px; border-right: 1px solid rgba(255,255,255,.18); }
.privacy-facts article:last-child { border-right: 0; }
.privacy-facts strong { color: var(--yellow); font-family: var(--font-display), serif; font-size: 45px; line-height: 1; }
.privacy-facts span { font-size: 12px; font-weight: 700; line-height: 1.35; }
.privacy-draft-note { display: grid; grid-template-columns: .28fr 1fr; gap: 5vw; padding: 30px 4.5vw; background: var(--yellow); border-bottom: 2px solid var(--ink); }
.privacy-draft-note span { font-size: 9px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.privacy-draft-note p { max-width: 1100px; margin: 0; font-size: 13px; line-height: 1.6; }
.privacy-topics { padding: 110px 4.5vw 125px; background: var(--cream); }
.privacy-topics-heading { display: grid; grid-template-columns: .38fr 1fr; gap: 7vw; margin-bottom: 58px; }
.privacy-topics-heading .eyebrow { margin-top: 14px; }
.privacy-topics-heading h2 { max-width: 920px; margin: 0; font-size: clamp(52px, 5.4vw, 84px); line-height: .94; }
.privacy-topic-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 2px solid var(--ink); }
.privacy-topic-grid > a { min-height: 360px; display: flex; flex-direction: column; padding: 25px; border-right: 2px solid var(--ink); }
.privacy-topic-grid > a:last-child { border-right: 0; }
.privacy-topic-grid > a.yellow { background: var(--yellow); }
.privacy-topic-grid > a.pink { background: var(--pink); }
.privacy-topic-grid > a.blue { background: var(--blue); }
.privacy-topic-grid > a.orange { background: var(--orange); }
.privacy-topic-grid > a > span { font-size: 9px; font-weight: 850; }
.privacy-topic-grid h3 { margin: auto 0 12px; font-family: var(--font-display), serif; font-size: 28px; line-height: 1; }
.privacy-topic-grid p { margin: 0 0 24px; font-size: 12px; line-height: 1.55; }
.privacy-topic-grid strong { font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.privacy-controller { display: grid; grid-template-columns: 1fr .72fr; gap: 9vw; align-items: center; padding: 105px 5vw; background: var(--ink); color: white; }
.privacy-controller h2 { max-width: 770px; margin: 18px 0 24px; font-size: clamp(54px, 5.8vw, 90px); line-height: .93; }
.privacy-controller > div:first-child > p:last-child { max-width: 600px; color: rgba(255,255,255,.72); font-size: 16px; line-height: 1.65; }
.controller-card { display: flex; flex-direction: column; padding: 35px; background: var(--yellow); color: var(--ink); border: 3px solid var(--ink); box-shadow: 8px 8px 0 var(--pink); transform: rotate(2deg); }
.controller-card > span { font-size: 9px; font-weight: 850; letter-spacing: .12em; }
.controller-card > strong { margin: 32px 0 15px; font-family: var(--font-display), serif; font-size: clamp(48px, 5vw, 76px); }
.controller-card p { margin: 0 0 30px; font-size: 16px; line-height: 1.7; }
.controller-card a { border-bottom: 2px solid var(--ink); }
.controller-card small { padding-top: 18px; border-top: 2px solid var(--ink); font-size: 10px; font-weight: 750; line-height: 1.55; }
.privacy-detail-section { display: grid; grid-template-columns: .78fr 1.22fr; border-top: 2px solid var(--ink); scroll-margin-top: 28px; }
.privacy-section-heading { min-height: 720px; padding: 92px 5vw; background: var(--yellow); border-right: 2px solid var(--ink); }
.privacy-section-heading > span { display: inline-grid; place-items: center; width: 42px; height: 42px; margin-bottom: 55px; border: 2px solid var(--ink); border-radius: 50%; font-weight: 850; }
.privacy-section-heading h2 { max-width: 660px; margin: 18px 0 25px; font-size: clamp(50px, 5vw, 80px); line-height: .95; }
.privacy-section-heading > p:not(.eyebrow) { max-width: 560px; font-size: 16px; line-height: 1.65; }
.privacy-data-list { padding: 65px 5vw 85px; background: var(--cream); }
.privacy-data-list article { padding: 26px 0; border-top: 2px solid var(--ink); }
.privacy-data-list article:last-child { border-bottom: 2px solid var(--ink); }
.privacy-data-list span { font-size: 8px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.privacy-data-list h3 { margin: 12px 0 10px; font-family: var(--font-display), serif; font-size: 27px; }
.privacy-data-list p { max-width: 760px; margin: 0; font-size: 14px; line-height: 1.68; }
.privacy-use-section { padding: 105px 4.5vw 120px; background: var(--pink); border-top: 2px solid var(--ink); scroll-margin-top: 28px; }
.privacy-use-heading { display: grid; grid-template-columns: .34fr 1fr; gap: 6vw; margin-bottom: 60px; }
.privacy-use-heading h2 { max-width: 900px; margin: 0; font-size: clamp(54px, 5.8vw, 90px); line-height: .93; }
.privacy-use-table { border: 2px solid var(--ink); background: var(--cream); }
.privacy-use-row { display: grid; grid-template-columns: .7fr 1.25fr .9fr; }
.privacy-use-row > * { margin: 0; padding: 25px; border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.privacy-use-row > *:last-child { border-right: 0; }
.privacy-use-row:last-child > * { border-bottom: 0; }
.privacy-use-row strong { font-family: var(--font-display), serif; font-size: 22px; }
.privacy-use-row p, .privacy-use-row span { font-size: 12px; line-height: 1.6; }
.privacy-use-header { background: var(--ink); color: white; }
.privacy-use-header span { font-size: 8px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.privacy-providers { padding: 105px 4.5vw 120px; background: var(--blue); border-top: 2px solid var(--ink); scroll-margin-top: 28px; }
.privacy-providers-heading { display: grid; grid-template-columns: .32fr 1fr .7fr; gap: 5vw; align-items: start; }
.privacy-providers-heading h2 { max-width: 840px; margin: 0; font-size: clamp(52px, 5.5vw, 86px); line-height: .94; }
.privacy-providers-heading > p:last-child { margin: 10px 0 0; font-size: 14px; line-height: 1.65; }
.provider-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 65px; border: 2px solid var(--ink); }
.provider-grid article { min-height: 280px; display: flex; flex-direction: column; padding: 26px; background: var(--cream); border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.provider-grid article:nth-child(3n) { border-right: 0; }
.provider-grid article:nth-last-child(-n+3) { border-bottom: 0; }
.provider-grid span { font-size: 9px; font-weight: 850; }
.provider-grid h3 { margin: auto 0 12px; font-family: var(--font-display), serif; font-size: 27px; }
.provider-grid p { margin: 0; font-size: 12px; line-height: 1.62; }
.provider-launch-note { display: grid; grid-template-columns: .25fr 1fr; gap: 4vw; margin-top: 25px; padding: 27px; background: var(--yellow); border: 2px solid var(--ink); }
.provider-launch-note strong { font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.provider-launch-note p { margin: 0; font-size: 13px; line-height: 1.65; }
.privacy-cookies { display: grid; grid-template-columns: 46% 54%; border-top: 2px solid var(--ink); scroll-margin-top: 28px; }
.cookies-visual { position: relative; min-height: 760px; overflow: hidden; background: var(--orange); border-right: 2px solid var(--ink); }
.cookie-disc { position: absolute; left: 10%; top: 10%; width: 68%; aspect-ratio: 1; background: #c99052; border: 4px solid var(--ink); border-radius: 50%; box-shadow: 10px 10px 0 var(--ink); }
.cookie-disc::after { content: ""; position: absolute; right: -5%; top: -6%; width: 35%; height: 35%; background: var(--orange); border-left: 4px solid var(--ink); border-bottom: 4px solid var(--ink); border-radius: 50%; }
.cookie-disc span { position: absolute; width: 8%; aspect-ratio: 1; background: var(--ink); border-radius: 50%; }
.cookie-disc span:nth-child(1) { left: 24%; top: 26%; }.cookie-disc span:nth-child(2) { left: 54%; top: 17%; }.cookie-disc span:nth-child(3) { left: 41%; top: 50%; }.cookie-disc span:nth-child(4) { left: 19%; top: 65%; }.cookie-disc span:nth-child(5) { right: 18%; bottom: 20%; }
.cookie-ticket { position: absolute; left: 18%; right: 18%; bottom: 8%; display: flex; flex-direction: column; padding: 28px; background: var(--cream); border: 3px solid var(--ink); box-shadow: 8px 8px 0 var(--ink); transform: rotate(-5deg); }
.cookie-ticket small { font-size: 8px; font-weight: 850; letter-spacing: .1em; }
.cookie-ticket strong { margin: 17px 0 24px; font-family: var(--font-display), serif; font-size: clamp(39px, 4.5vw, 68px); line-height: .87; }
.cookie-ticket p { margin: 0; padding-top: 17px; border-top: 2px solid var(--ink); font-size: 10px; font-weight: 750; line-height: 1.6; text-transform: uppercase; }
.cookies-copy { padding: 92px 5vw; background: var(--cream); }
.cookies-copy h2 { max-width: 760px; margin: 18px 0 26px; font-size: clamp(52px, 5.5vw, 86px); line-height: .94; }
.cookies-copy > p:not(.eyebrow):not(.cookie-note) { max-width: 760px; font-size: 15px; line-height: 1.7; }
.cookie-types { display: grid; grid-template-columns: 1fr 1fr; margin-top: 45px; border: 2px solid var(--ink); }
.cookie-types article { min-height: 245px; display: flex; flex-direction: column; padding: 24px; }
.cookie-types article + article { background: var(--pink); border-left: 2px solid var(--ink); }
.cookie-types span { font-size: 8px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.cookie-types h3 { margin: auto 0 10px; font-family: var(--font-display), serif; font-size: 29px; }
.cookie-types p, .cookie-note { margin: 0; font-size: 12px; line-height: 1.62; }
.cookie-note { margin-top: 23px; padding: 20px; background: var(--yellow); border: 2px solid var(--ink); }
.privacy-retention { padding: 105px 4.5vw 120px; background: var(--cream); border-top: 2px solid var(--ink); scroll-margin-top: 28px; }
.privacy-retention-heading { display: grid; grid-template-columns: .28fr .9fr .65fr; gap: 5vw; align-items: start; }
.privacy-retention-heading h2 { max-width: 850px; margin: 0; font-size: clamp(52px, 5.5vw, 86px); line-height: .94; }
.privacy-retention-heading > p:last-child { margin: 10px 0 0; font-size: 14px; line-height: 1.65; }
.retention-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 65px; border: 2px solid var(--ink); }
.retention-grid article { min-height: 310px; display: flex; flex-direction: column; padding: 25px; border-right: 2px solid var(--ink); }
.retention-grid article:last-child { border-right: 0; }
.retention-grid article:nth-child(1) { background: var(--yellow); }.retention-grid article:nth-child(2) { background: var(--pink); }.retention-grid article:nth-child(3) { background: var(--blue); }.retention-grid article:nth-child(4) { background: var(--orange); }
.retention-grid span { font-size: 9px; font-weight: 850; }
.retention-grid h3 { margin: auto 0 13px; font-family: var(--font-display), serif; font-size: 27px; }
.retention-grid p { margin: 0; font-size: 12px; line-height: 1.62; }
.privacy-rights { display: grid; grid-template-columns: .9fr 1.1fr; border-top: 2px solid var(--ink); scroll-margin-top: 28px; }
.rights-copy { padding: 92px 5vw; background: var(--pink); border-right: 2px solid var(--ink); }
.rights-copy h2 { max-width: 700px; margin: 18px 0 26px; font-size: clamp(52px, 5.3vw, 84px); line-height: .94; }
.rights-copy > p:not(.eyebrow) { max-width: 650px; font-size: 14px; line-height: 1.7; }
.rights-copy .button { display: inline-flex; margin-top: 27px; }
.rights-list { display: grid; grid-template-columns: 1fr 1fr; background: var(--cream); }
.rights-list article { min-height: 260px; display: flex; flex-direction: column; padding: 27px; border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.rights-list article:nth-child(2n) { border-right: 0; }
.rights-list article:nth-last-child(-n+2) { border-bottom: 0; }
.rights-list span { font-size: 9px; font-weight: 850; }
.rights-list strong { margin: auto 0 11px; font-family: var(--font-display), serif; font-size: 29px; }
.rights-list p { margin: 0; font-size: 12px; line-height: 1.62; }
.privacy-final-info { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.privacy-final-info article { min-height: 360px; display: flex; flex-direction: column; padding: 38px 3.6vw; border-right: 2px solid var(--ink); }
.privacy-final-info article:last-child { border-right: 0; }
.privacy-final-info article:nth-child(1) { background: var(--blue); }.privacy-final-info article:nth-child(2) { background: var(--orange); }.privacy-final-info article:nth-child(3) { background: var(--yellow); }
.privacy-final-info span { font-size: 9px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.privacy-final-info h3 { margin: auto 0 15px; font-family: var(--font-display), serif; font-size: 30px; }
.privacy-final-info p { margin: 0; font-size: 12px; line-height: 1.65; }
.privacy-contact { display: grid; grid-template-columns: 1fr .8fr; gap: 9vw; padding: 105px 5vw; background: var(--ink); color: white; }
.privacy-contact h2 { max-width: 780px; margin: 18px 0 0; font-size: clamp(54px, 5.8vw, 90px); line-height: .93; }
.privacy-contact > div:last-child { align-self: end; }
.privacy-contact > div:last-child p { max-width: 580px; margin: 0 0 32px; color: rgba(255,255,255,.75); font-size: 15px; line-height: 1.7; }

/* Cookie policy */
.cookie-announcement { background: var(--orange); color: var(--ink); }
.cookie-hero { min-height: calc(100vh - 122px); display: grid; grid-template-columns: 50% 50%; overflow: hidden; background: var(--cream); border-bottom: 2px solid var(--ink); }
.cookie-hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 90px 5vw; }
.cookie-hero-copy .eyebrow { color: var(--red); }
.cookie-hero-copy h1 { max-width: 880px; font-size: clamp(64px, 6.5vw, 104px); }
.cookie-lead { max-width: 690px; margin: 30px 0 0; font-size: clamp(17px, 1.35vw, 21px); line-height: 1.6; }
.cookie-hero-art { position: relative; min-height: 720px; overflow: hidden; background: var(--pink); border-left: 2px solid var(--ink); }
.cookie-hero-grid { position: absolute; inset: 0; opacity: .14; background-image: linear-gradient(var(--ink) 1px, transparent 1px), linear-gradient(90deg, var(--ink) 1px, transparent 1px); background-size: 50px 50px; }
.cookie-main-disc { position: absolute; left: 12%; top: 8%; width: 68%; aspect-ratio: 1; background: #c99052; border: 4px solid var(--ink); border-radius: 50%; box-shadow: 10px 10px 0 var(--ink); transform: rotate(-8deg); }
.cookie-main-disc::after { content: ""; position: absolute; right: -7%; top: -7%; width: 35%; height: 35%; background: var(--pink); border-left: 4px solid var(--ink); border-bottom: 4px solid var(--ink); border-radius: 50%; }
.cookie-main-disc i { position: absolute; width: 8%; aspect-ratio: 1; background: var(--ink); border-radius: 50%; }
.cookie-main-disc i:nth-child(1) { left: 24%; top: 23%; }.cookie-main-disc i:nth-child(2) { left: 53%; top: 16%; }.cookie-main-disc i:nth-child(3) { left: 40%; top: 47%; }.cookie-main-disc i:nth-child(4) { left: 18%; top: 62%; }.cookie-main-disc i:nth-child(5) { right: 20%; bottom: 20%; }.cookie-main-disc i:nth-child(6) { right: 18%; top: 41%; }
.cookie-control-card { position: absolute; z-index: 4; right: 5%; bottom: 7%; width: 45%; padding: 23px; background: var(--cream); border: 3px solid var(--ink); box-shadow: 8px 8px 0 var(--ink); transform: rotate(4deg); }
.cookie-control-card > small { font-size: 8px; font-weight: 850; letter-spacing: .11em; }
.cookie-control-card > strong { display: block; margin: 12px 0 20px; font-family: var(--font-display), serif; font-size: clamp(28px, 3.3vw, 47px); }
.cookie-control-card > div { display: grid; grid-template-columns: 1fr auto; align-items: center; padding: 10px 0; border-top: 2px solid var(--ink); font-size: 10px; font-weight: 800; }
.cookie-switch { position: relative; width: 42px; height: 23px; background: white; border: 2px solid var(--ink); border-radius: 20px; }
.cookie-switch i { position: absolute; left: 3px; top: 3px; width: 13px; height: 13px; background: var(--ink); border-radius: 50%; }
.cookie-switch.on { background: var(--yellow); }.cookie-switch.on i { left: 22px; }
.cookie-mini-card { position: absolute; z-index: 4; left: 5%; bottom: 8%; display: flex; flex-direction: column; justify-content: space-between; width: 24%; aspect-ratio: 1 / .78; padding: 15px; background: var(--blue); border: 3px solid var(--ink); box-shadow: 6px 6px 0 var(--ink); transform: rotate(-7deg); }
.cookie-mini-card > span, .cookie-mini-card small { font-size: 8px; font-weight: 850; text-transform: uppercase; }.cookie-mini-card strong { font-family: var(--font-display), serif; font-size: clamp(21px, 2.3vw, 34px); }
.cookie-stamp { position: absolute; z-index: 5; right: 5%; top: 6%; display: grid; place-items: center; width: 108px; height: 108px; padding: 17px; background: var(--red); color: white; border: 2px solid var(--ink); border-radius: 50%; box-shadow: 5px 5px 0 var(--ink); font-family: var(--font-display), serif; font-size: 15px; font-weight: 750; line-height: 1; text-align: center; transform: rotate(8deg); }
.cookie-facts { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--ink); color: white; }
.cookie-facts article { min-height: 160px; display: flex; align-items: center; justify-content: center; gap: 18px; padding: 28px; border-right: 1px solid rgba(255,255,255,.18); }
.cookie-facts article:last-child { border-right: 0; }.cookie-facts strong { color: var(--yellow); font-family: var(--font-display), serif; font-size: 44px; line-height: 1; }.cookie-facts span { font-size: 12px; font-weight: 700; line-height: 1.35; }
.cookie-draft-note { display: grid; grid-template-columns: .28fr 1fr; gap: 5vw; padding: 30px 4.5vw; background: var(--yellow); border-bottom: 2px solid var(--ink); }.cookie-draft-note span { font-size: 9px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }.cookie-draft-note p { max-width: 1100px; margin: 0; font-size: 13px; line-height: 1.6; }
.cookie-categories { padding: 110px 4.5vw 125px; background: var(--cream); }
.cookie-categories-heading { display: grid; grid-template-columns: .38fr 1fr; gap: 7vw; margin-bottom: 58px; }.cookie-categories-heading .eyebrow { margin-top: 14px; }.cookie-categories-heading h2 { max-width: 920px; margin: 0; font-size: clamp(52px, 5.4vw, 84px); line-height: .94; }
.cookie-category-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 2px solid var(--ink); }.cookie-category-grid > a { min-height: 360px; display: flex; flex-direction: column; padding: 25px; border-right: 2px solid var(--ink); }.cookie-category-grid > a:last-child { border-right: 0; }.cookie-category-grid > a.yellow { background: var(--yellow); }.cookie-category-grid > a.pink { background: var(--pink); }.cookie-category-grid > a.blue { background: var(--blue); }.cookie-category-grid > a.orange { background: var(--orange); }.cookie-category-grid > a > span { font-size: 9px; font-weight: 850; }.cookie-category-grid h3 { margin: auto 0 12px; font-family: var(--font-display), serif; font-size: 29px; line-height: 1; }.cookie-category-grid p { margin: 0 0 24px; font-size: 12px; line-height: 1.55; }.cookie-category-grid strong { font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }

.cookie-explainer { display: grid; grid-template-columns: .86fr 1.14fr; gap: 8vw; padding: 105px 5vw; background: var(--ink); color: white; }
.cookie-explainer h2 { max-width: 720px; margin: 18px 0 24px; font-size: clamp(54px, 5.8vw, 90px); line-height: .93; }
.cookie-explainer > div:first-child > p:last-child { max-width: 640px; color: rgba(255,255,255,.74); font-size: 15px; line-height: 1.7; }
.cookie-definitions { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid rgba(255,255,255,.42); }
.cookie-definitions article { min-height: 230px; display: flex; flex-direction: column; padding: 25px; border-right: 1px solid rgba(255,255,255,.42); border-bottom: 1px solid rgba(255,255,255,.42); }
.cookie-definitions article:nth-child(2n) { border-right: 0; }
.cookie-definitions article:nth-last-child(-n+2) { border-bottom: 0; }
.cookie-definitions span { color: var(--yellow); font-size: 9px; font-weight: 850; }
.cookie-definitions h3 { margin: auto 0 10px; font-family: var(--font-display), serif; font-size: 27px; }
.cookie-definitions p { margin: 0; color: rgba(255,255,255,.72); font-size: 12px; line-height: 1.6; }
.cookie-essential { display: grid; grid-template-columns: .72fr 1.28fr; border-top: 2px solid var(--ink); scroll-margin-top: 28px; }
.cookie-section-heading { min-height: 760px; padding: 92px 5vw; background: var(--yellow); border-right: 2px solid var(--ink); }
.cookie-section-heading > span { display: inline-grid; place-items: center; width: 42px; height: 42px; margin-bottom: 55px; border: 2px solid var(--ink); border-radius: 50%; font-weight: 850; }
.cookie-section-heading h2 { max-width: 650px; margin: 18px 0 25px; font-size: clamp(49px, 4.8vw, 78px); line-height: .95; }
.cookie-section-heading > p:not(.eyebrow) { max-width: 560px; font-size: 15px; line-height: 1.68; }
.cookie-table-wrap { padding: 65px 4vw 85px; background: var(--cream); }
.cookie-table-intro { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 22px; }
.cookie-table-intro strong { font-family: var(--font-display), serif; font-size: 25px; }
.cookie-table-intro span { max-width: 200px; font-size: 8px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; text-align: right; }
.cookie-table { border: 2px solid var(--ink); }
.cookie-row { display: grid; grid-template-columns: .85fr 1.3fr .45fr; }
.cookie-row > * { margin: 0; padding: 21px; border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.cookie-row > *:last-child { border-right: 0; }
.cookie-row:last-child > * { border-bottom: 0; }
.cookie-row code { overflow-wrap: anywhere; font-size: 11px; font-weight: 750; }
.cookie-row p, .cookie-row span { font-size: 11px; line-height: 1.55; }
.cookie-row-header { background: var(--ink); color: white; }
.cookie-row-header span { font-size: 8px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.cookie-table-note { margin: 23px 0 0; padding: 20px; background: var(--blue); border: 2px solid var(--ink); font-size: 12px; line-height: 1.65; }
.cookie-optional { padding: 105px 4.5vw 120px; background: var(--cream); border-top: 2px solid var(--ink); scroll-margin-top: 28px; }
.cookie-optional-heading { display: grid; grid-template-columns: .3fr .9fr .7fr; gap: 5vw; align-items: start; }
.cookie-optional-heading h2 { max-width: 860px; margin: 0; font-size: clamp(52px, 5.5vw, 86px); line-height: .94; }
.cookie-optional-heading > p:last-child { margin: 10px 0 0; font-size: 14px; line-height: 1.66; }
.optional-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 65px; border: 2px solid var(--ink); }
.optional-grid article { min-height: 410px; display: flex; flex-direction: column; padding: 28px; border-right: 2px solid var(--ink); }
.optional-grid article:last-child { border-right: 0; }
.optional-preferences { background: var(--pink); }.optional-analytics { background: var(--blue); }.optional-marketing { background: var(--orange); }
.optional-grid span, .optional-grid small { font-size: 8px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.optional-grid strong { margin-top: auto; font-family: var(--font-display), serif; font-size: clamp(34px, 3.7vw, 58px); line-height: .92; }
.optional-grid p { margin: 20px 0 28px; font-size: 13px; line-height: 1.65; }
.optional-grid small { padding-top: 17px; border-top: 2px solid var(--ink); }
.cookie-controls { display: grid; grid-template-columns: 46% 54%; border-top: 2px solid var(--ink); scroll-margin-top: 28px; }
.controls-visual { position: relative; min-height: 800px; overflow: hidden; background: var(--blue); border-right: 2px solid var(--ink); }
.controls-visual::before { content: ""; position: absolute; inset: 0; opacity: .14; background-image: linear-gradient(var(--ink) 1px, transparent 1px), linear-gradient(90deg, var(--ink) 1px, transparent 1px); background-size: 50px 50px; }
.controls-panel { position: absolute; left: 12%; right: 12%; top: 12%; display: flex; flex-direction: column; padding: 30px; background: var(--cream); border: 3px solid var(--ink); box-shadow: 10px 10px 0 var(--ink); transform: rotate(-4deg); }
.controls-panel small { font-size: 8px; font-weight: 850; letter-spacing: .1em; }
.controls-panel > strong { margin: 18px 0 30px; font-family: var(--font-display), serif; font-size: clamp(45px, 5vw, 74px); line-height: .87; }
.controls-panel > div { display: grid; grid-template-columns: 1fr auto; padding: 15px 0; border-top: 2px solid var(--ink); font-size: 11px; font-weight: 800; }
.controls-panel b { color: var(--red); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.controls-stamp { position: absolute; right: 7%; bottom: 6%; display: grid; place-items: center; width: 105px; height: 105px; padding: 17px; background: var(--yellow); border: 2px solid var(--ink); border-radius: 50%; box-shadow: 5px 5px 0 var(--ink); font-family: var(--font-display), serif; font-weight: 750; text-align: center; transform: rotate(8deg); }
.controls-copy { padding: 92px 5vw; background: var(--cream); }
.controls-copy h2 { max-width: 760px; margin: 18px 0 26px; font-size: clamp(52px, 5.4vw, 86px); line-height: .94; }
.controls-copy > p:not(.eyebrow) { max-width: 740px; font-size: 15px; line-height: 1.7; }
.controls-copy ol { margin: 46px 0 0; padding: 0; list-style: none; }
.controls-copy li { display: grid; grid-template-columns: 54px 1fr; gap: 20px; padding: 24px 0; border-top: 2px solid var(--ink); }
.controls-copy li > span { display: grid; place-items: center; width: 40px; height: 40px; background: var(--pink); border: 2px solid var(--ink); border-radius: 50%; font-size: 9px; font-weight: 850; }
.controls-copy h3 { margin: 0 0 8px; font-family: var(--font-display), serif; font-size: 25px; }
.controls-copy li p { margin: 0; font-size: 12px; line-height: 1.62; }
.cookie-settings-placeholder { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; padding: 22px; background: var(--yellow); border: 2px solid var(--ink); }
.cookie-settings-placeholder span { font-size: 8px; font-weight: 850; letter-spacing: .1em; }
.cookie-settings-placeholder strong { font-family: var(--font-display), serif; font-size: 19px; }
.browser-cookie-controls { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; padding: 105px 5vw; background: var(--pink); border-top: 2px solid var(--ink); }
.browser-cookie-controls h2 { max-width: 720px; margin: 18px 0 24px; font-size: clamp(49px, 5vw, 80px); line-height: .95; }
.browser-cookie-controls > div:first-child > p:last-child { max-width: 620px; font-size: 14px; line-height: 1.7; }
.browser-actions { display: grid; grid-template-columns: repeat(3, 1fr); border: 2px solid var(--ink); }
.browser-actions article { min-height: 290px; display: flex; flex-direction: column; padding: 23px; background: var(--cream); border-right: 2px solid var(--ink); }
.browser-actions article:last-child { border-right: 0; }
.browser-actions span { font-size: 9px; font-weight: 850; }.browser-actions h3 { margin: auto 0 10px; font-family: var(--font-display), serif; font-size: 27px; }.browser-actions p { margin: 0; font-size: 11px; line-height: 1.6; }
.cookie-launch { padding: 105px 4.5vw 120px; background: var(--ink); color: white; }
.cookie-launch-heading { display: grid; grid-template-columns: .3fr .9fr .65fr; gap: 5vw; align-items: start; }
.cookie-launch-heading h2 { max-width: 820px; margin: 0; font-size: clamp(52px, 5.5vw, 86px); line-height: .94; }
.cookie-launch-heading > p:last-child { margin: 10px 0 0; color: rgba(255,255,255,.72); font-size: 14px; line-height: 1.65; }
.cookie-launch ol { display: grid; grid-template-columns: repeat(5, 1fr); margin: 65px 0 0; padding: 0; border: 1px solid rgba(255,255,255,.42); list-style: none; }
.cookie-launch li { min-height: 310px; display: flex; flex-direction: column; padding: 24px; border-right: 1px solid rgba(255,255,255,.42); }
.cookie-launch li:last-child { border-right: 0; }.cookie-launch li > span { color: var(--yellow); font-size: 9px; font-weight: 850; }.cookie-launch h3 { margin: auto 0 12px; font-family: var(--font-display), serif; font-size: 24px; }.cookie-launch li p { margin: 0; color: rgba(255,255,255,.7); font-size: 11px; line-height: 1.62; }
.cookie-faq { display: grid; grid-template-columns: .74fr 1.26fr; border-top: 2px solid var(--ink); }
.cookie-faq-heading { padding: 92px 5vw; background: var(--orange); border-right: 2px solid var(--ink); }.cookie-faq-heading h2 { max-width: 640px; margin: 18px 0 0; font-size: clamp(49px, 5vw, 80px); line-height: .95; }
.cookie-faq-list { padding: 70px 5vw 90px; background: var(--cream); }.cookie-faq-list details { border-top: 2px solid var(--ink); }.cookie-faq-list details:last-child { border-bottom: 2px solid var(--ink); }.cookie-faq-list summary { display: grid; grid-template-columns: 1fr auto; gap: 22px; align-items: center; padding: 29px 0; cursor: pointer; font-family: var(--font-display), serif; font-size: clamp(20px, 1.9vw, 28px); font-weight: 750; list-style: none; }.cookie-faq-list summary::-webkit-details-marker { display: none; }.cookie-faq-list summary span { display: grid; place-items: center; width: 33px; height: 33px; border: 2px solid var(--ink); border-radius: 50%; font-family: var(--font-body), sans-serif; font-size: 19px; transition: transform .2s ease; }.cookie-faq-list details[open] summary span { transform: rotate(45deg); }.cookie-faq-list details p { max-width: 700px; margin: -3px 55px 30px 0; font-size: 13px; line-height: 1.7; }
.cookie-contact { display: grid; grid-template-columns: 1fr .8fr; gap: 9vw; padding: 105px 5vw; background: var(--ink); color: white; }
.cookie-contact h2 { max-width: 780px; margin: 18px 0 0; font-size: clamp(54px, 5.8vw, 90px); line-height: .93; }.cookie-contact > div:last-child { align-self: end; }.cookie-contact > div:last-child p { max-width: 580px; margin: 0 0 30px; color: rgba(255,255,255,.75); font-size: 15px; line-height: 1.7; }.cookie-privacy-link { display: inline-flex; margin: 25px 0 0 20px; color: white; padding-bottom: 5px; border-bottom: 2px solid white; font-size: 11px; font-weight: 800; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding-bottom: 65px; }
  .hero-art { min-height: 680px; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .trio-section, .story-section { grid-template-columns: 1fr; }
  .trio-art, .story-art { border-right: 0; border-left: 0; border-bottom: 2px solid var(--ink); }
  .promise-strip { grid-template-columns: 1fr 1fr; }
  .promise-strip article:nth-child(2) { border-right: 0; }
  .promise-strip article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.2); }
  .gift-heading, .stockist-section, .newsletter { grid-template-columns: 1fr; }
  .stockist-section { align-items: start; }
  .button-outline { justify-self: start; }
  .wholesale-hero { grid-template-columns: 1fr; }
  .wholesale-hero-art { border-left: 0; border-top: 2px solid var(--ink); }
  .wholesale-section-heading { grid-template-columns: 1fr; gap: 24px; }
  .wholesale-facts { grid-template-columns: 1fr 1fr; }
  .wholesale-facts article:nth-child(2) { border-right: 0; }
  .wholesale-facts article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.18); }
  .retailer-fit-heading, .process-heading, .small-batch-section { grid-template-columns: 1fr; gap: 26px; }
  .display-section, .wholesale-enquiry { grid-template-columns: 1fr; }
  .display-visual { border-right: 0; border-bottom: 2px solid var(--ink); }
  .enquiry-intro { border-right: 0; border-bottom: 2px solid var(--ink); }
  .wholesale-process ol { grid-template-columns: 1fr 1fr; }
  .wholesale-process li:nth-child(2) { border-right: 0; }
  .wholesale-process li:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.22); }
  .custom-hero { grid-template-columns: 1fr; }
  .custom-hero-art { border-left: 0; border-top: 2px solid var(--ink); }
  .custom-section-heading { grid-template-columns: 1fr; gap: 24px; }
  .custom-facts, .audience-grid { grid-template-columns: 1fr 1fr; }
  .custom-facts article:nth-child(2), .audience-grid article:nth-child(2) { border-right: 0; }
  .custom-facts article:nth-child(-n+2), .audience-grid article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.18); }
  .audience-grid article:nth-child(-n+2) { border-bottom: 2px solid var(--ink); }
  .custom-scope, .custom-realities, .custom-enquiry { grid-template-columns: 1fr; gap: 40px; }
  .custom-process .process-heading { grid-template-columns: 1fr; }
  .custom-process ol { grid-template-columns: 1fr 1fr; }
  .custom-process li:nth-child(2) { border-right: 0; }
  .custom-process li:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.3); }
  .custom-enquiry-intro { border-right: 0; border-bottom: 2px solid var(--ink); }
  .products-hero { grid-template-columns: 1fr; }
  .products-hero-art { border-left: 0; border-top: 2px solid var(--ink); }
  .products-facts { grid-template-columns: 1fr 1fr; }
  .products-facts article:nth-child(2) { border-right: 0; }
  .products-facts article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.18); }
  .products-section-heading { grid-template-columns: 1fr; gap: 24px; }
  .size-section, .retail-packaging, .products-trio, .products-faq { grid-template-columns: 1fr; }
  .packaging-art, .products-trio-copy { border-right: 0; border-bottom: 2px solid var(--ink); }
  .products-origin { grid-template-columns: 1fr; }
  .products-origin article + article { border-left: 1px solid rgba(255,255,255,.45); border-top: 0; }
  .about-hero { grid-template-columns: 1fr; }
  .about-hero-art { border-left: 0; border-top: 2px solid var(--ink); }
  .about-facts { grid-template-columns: 1fr 1fr; }
  .about-facts article:nth-child(2) { border-right: 0; }
  .about-facts article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.18); }
  .about-story { grid-template-columns: 1fr; gap: 42px; }
  .about-making-heading { grid-template-columns: 1fr; gap: 24px; }
  .about-section-heading, .about-values-heading, .about-growth { grid-template-columns: 1fr; gap: 35px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .values-grid article:nth-child(2) { border-right: 0; }
  .values-grid article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.28); }
  .contact-hero { grid-template-columns: 1fr; }
  .contact-hero-art { border-left: 0; border-top: 2px solid var(--ink); }
  .contact-routes-heading { grid-template-columns: 1fr; gap: 24px; }
  .contact-form-section, .contact-faq { grid-template-columns: 1fr; }
  .contact-form-intro { border-right: 0; border-bottom: 2px solid var(--ink); }
  .contact-details { grid-template-columns: 1fr; }
  .contact-details article { border-right: 0; border-bottom: 2px solid var(--ink); }
  .contact-details article:last-child { border-bottom: 0; }
  .contact-help-heading { grid-template-columns: 1fr; gap: 24px; }
  .contact-help-grid { grid-template-columns: 1fr 1fr; }
  .contact-help-grid > a:nth-child(2) { border-right: 0; }
  .contact-help-grid > a:nth-child(-n+2) { border-bottom: 2px solid var(--ink); }
  .help-hero { grid-template-columns: 1fr; }
  .help-hero-art { border-left: 0; border-top: 2px solid var(--ink); }
  .help-facts { grid-template-columns: 1fr 1fr; }
  .help-facts article:nth-child(2) { border-right: 0; }
  .help-facts article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.18); }
  .help-topics-heading { grid-template-columns: 1fr; gap: 24px; }
  .help-topic-grid { grid-template-columns: 1fr 1fr; }
  .help-topic-grid > a:nth-child(2) { border-right: 0; }
  .help-topic-grid > a:nth-child(-n+2) { border-bottom: 2px solid var(--ink); }
  .faq-category { grid-template-columns: 1fr; }
  .faq-category-heading { min-height: 0; border-right: 0; border-bottom: 2px solid var(--ink); }
  .help-next { grid-template-columns: 1fr; }
  .shipping-hero { grid-template-columns: 1fr; }
  .shipping-hero-art { border-left: 0; border-top: 2px solid var(--ink); }
  .shipping-facts { grid-template-columns: 1fr 1fr; }
  .shipping-facts article:nth-child(2) { border-right: 0; }
  .shipping-facts article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.18); }
  .shipping-routes-heading { grid-template-columns: 1fr; gap: 24px; }
  .shipping-delivery, .shipping-returns-section { grid-template-columns: 1fr; }
  .shipping-section-heading, .returns-visual { border-right: 0; border-bottom: 2px solid var(--ink); }
  .shipping-costs { grid-template-columns: 1fr; }
  .shipping-costs article { min-height: 360px; border-right: 0; border-bottom: 2px solid var(--ink); }
  .shipping-costs article:last-child { border-bottom: 0; }
  .order-problems-heading { grid-template-columns: 1fr; gap: 25px; }
  .shipping-note { grid-template-columns: 1fr; }
  .privacy-hero { grid-template-columns: 1fr; }
  .privacy-hero-art { border-left: 0; border-top: 2px solid var(--ink); }
  .privacy-facts { grid-template-columns: 1fr 1fr; }
  .privacy-facts article:nth-child(2) { border-right: 0; }
  .privacy-facts article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.18); }
  .privacy-topics-heading { grid-template-columns: 1fr; gap: 24px; }
  .privacy-topic-grid { grid-template-columns: 1fr 1fr; }
  .privacy-topic-grid > a:nth-child(2) { border-right: 0; }
  .privacy-topic-grid > a:nth-child(-n+2) { border-bottom: 2px solid var(--ink); }
  .privacy-controller, .privacy-detail-section, .privacy-cookies, .privacy-rights { grid-template-columns: 1fr; }
  .privacy-section-heading, .cookies-visual, .rights-copy { border-right: 0; border-bottom: 2px solid var(--ink); }
  .privacy-use-heading, .privacy-providers-heading, .privacy-retention-heading { grid-template-columns: 1fr; gap: 25px; }
  .provider-grid { grid-template-columns: 1fr 1fr; }
  .provider-grid article:nth-child(3n) { border-right: 2px solid var(--ink); }
  .provider-grid article:nth-child(2n) { border-right: 0; }
  .provider-grid article:nth-last-child(-n+3) { border-bottom: 2px solid var(--ink); }
  .provider-grid article:nth-last-child(-n+2) { border-bottom: 0; }
  .retention-grid { grid-template-columns: 1fr 1fr; }
  .retention-grid article:nth-child(2) { border-right: 0; }
  .retention-grid article:nth-child(-n+2) { border-bottom: 2px solid var(--ink); }
  .privacy-final-info { grid-template-columns: 1fr; }
  .privacy-final-info article { border-right: 0; border-bottom: 2px solid var(--ink); }
  .privacy-final-info article:last-child { border-bottom: 0; }
  .privacy-contact { grid-template-columns: 1fr; }
  .cookie-hero { grid-template-columns: 1fr; }.cookie-hero-art { border-left: 0; border-top: 2px solid var(--ink); }.cookie-facts { grid-template-columns: 1fr 1fr; }.cookie-facts article:nth-child(2) { border-right: 0; }.cookie-facts article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.18); }.cookie-categories-heading { grid-template-columns: 1fr; gap: 24px; }.cookie-category-grid { grid-template-columns: 1fr 1fr; }.cookie-category-grid > a:nth-child(2) { border-right: 0; }.cookie-category-grid > a:nth-child(-n+2) { border-bottom: 2px solid var(--ink); }
}

@media (max-width: 700px) {
  .announcement { padding-inline: 14px; font-size: 9px; }
  .site-header { height: 72px; padding-inline: 20px; }
  .brand span { font-size: 25px; }
  .brand small, .locale { display: none; }
  .menu-link { display: inline; }
  .header-actions { gap: 8px; }
  .hero-copy { padding: 64px 22px 55px; }
  h1 { font-size: clamp(54px, 16vw, 76px); }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-notes { gap: 14px 20px; margin-top: 36px; }
  .hero-art { min-height: 490px; }
  .hero-card { width: 43%; box-shadow: 7px 7px 0 var(--ink); }
  .hero-card-cow { top: 9%; left: 5%; }
  .hero-card-fondue { top: 21%; right: 5%; }
  .hero-card-chocolate { bottom: 5%; left: 25%; }
  .roundel { width: 82px; height: 82px; font-size: 14px; }
  .roundel-top { right: 4%; top: 3%; }
  .roundel-bottom { right: 3%; bottom: 3%; }
  .shop-section { padding: 82px 20px 95px; }
  .product-grid { grid-template-columns: 1fr; gap: 28px; }
  .trio-art { min-height: 530px; }
  .trio-image { width: 46%; box-shadow: 6px 6px 0 var(--ink); }
  .bundle-sticker { width: 88px; height: 88px; padding: 12px; font-size: 14px; }
  .trio-copy { padding: 75px 22px; }
  .bundle-buy { align-items: start; flex-direction: column; }
  .promise-strip { grid-template-columns: 1fr; }
  .promise-strip article, .promise-strip article:nth-child(2) { min-height: 190px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
  .promise-strip h3 { margin-top: 25px; }
  .story-copy { padding: 78px 22px; }
  .story-art { min-height: 480px; }
  .story-art::before, .story-art::after { width: 110px; height: 110px; }
  .cross-mark { font-size: 90px; }
  .story-caption { font-size: 17px; }
  .gift-section { padding: 80px 20px; }
  .gift-grid { grid-template-columns: 1fr; margin-top: 50px; }
  .gift-grid article { min-height: 230px; }
  .gift-grid h3 { margin-top: 45px; }
  .stockist-section, .newsletter { padding: 78px 20px; }
  .signup-form { margin-top: 20px; }
  .footer { grid-template-columns: 1fr; padding: 70px 20px 24px; }
  .footer-links { grid-template-columns: 1fr 1fr; margin-top: 55px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; margin-top: 55px; }
  .wholesale-hero-copy { padding: 70px 22px 62px; }
  .wholesale-hero-copy h1 { font-size: clamp(54px, 16vw, 76px); }
  .wholesale-hero-art { min-height: 520px; }
  .wholesale-hero-product { width: 43%; box-shadow: 6px 6px 0 var(--ink); }
  .local-stamp { width: 82px; height: 82px; font-size: 14px; }
  .carton-label { right: 4%; bottom: 4%; }
  .carton-label strong { font-size: 36px; }
  .wholesale-facts { grid-template-columns: 1fr; }
  .wholesale-facts article, .wholesale-facts article:nth-child(2) { min-height: 125px; justify-content: flex-start; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .wholesale-collection { padding: 82px 20px 95px; }
  .wholesale-product-grid { grid-template-columns: 1fr; gap: 28px; }
  .retailer-fit { padding: 80px 20px 90px; }
  .retailer-fit-grid { grid-template-columns: 1fr; margin-top: 48px; }
  .retailer-fit-grid article { min-height: 240px; }
  .retailer-fit-grid h3 { margin-top: 48px; }
  .display-visual { min-height: 500px; }
  .display-hook { width: 31%; box-shadow: 5px 5px 0 var(--ink); }
  .display-hook-one { left: 3%; }
  .display-hook-two { left: 34%; }
  .display-hook-three { right: 3%; }
  .display-tag { font-size: 18px; }
  .display-copy { padding: 78px 22px; }
  .small-batch-section, .wholesale-process { padding: 80px 20px 90px; }
  .wholesale-process ol { grid-template-columns: 1fr; margin-top: 48px; }
  .wholesale-process li, .wholesale-process li:nth-child(2) { min-height: 220px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.22); }
  .wholesale-process h3 { margin-top: 42px; }
  .enquiry-intro, .wholesale-form { padding: 78px 22px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .custom-hero-copy { padding: 70px 22px 62px; }
  .custom-hero-copy h1 { font-size: clamp(54px, 16vw, 76px); }
  .custom-hero-art { min-height: 520px; }
  .concept-card { width: 37%; padding: 14px; box-shadow: 5px 5px 0 var(--ink); }
  .concept-idea { left: 4%; }
  .concept-design { left: 34%; }
  .concept-pair { right: 4%; width: 40%; padding: 0 0 32px; }
  .concept-arrow { width: 42px; height: 42px; font-size: 21px; }
  .custom-stamp { width: 82px; height: 82px; font-size: 14px; }
  .custom-facts, .audience-grid { grid-template-columns: 1fr; }
  .custom-facts article, .custom-facts article:nth-child(2) { min-height: 125px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .custom-audience { padding: 82px 20px 95px; }
  .audience-grid article, .audience-grid article:nth-child(2) { min-height: 260px; border-right: 0; border-bottom: 2px solid var(--ink); }
  .custom-scope, .custom-realities, .custom-process { padding: 80px 20px 90px; }
  .scope-list { margin-top: 18px; }
  .custom-process ol { grid-template-columns: 1fr; margin-top: 48px; }
  .custom-process li, .custom-process li:nth-child(2) { min-height: 220px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.3); }
  .custom-process h3 { margin-top: 42px; }
  .custom-example { padding: 82px 20px 95px; }
  .example-grid { grid-template-columns: 1fr; gap: 28px; }
  .realities-grid { grid-template-columns: 1fr; }
  .realities-grid article, .realities-grid article:nth-child(odd), .realities-grid article:nth-child(-n+2) { min-height: 175px; border-right: 0; border-bottom: 2px solid var(--ink); }
  .custom-enquiry { gap: 0; }
  .custom-enquiry-intro, .custom-form { padding: 78px 22px; }
  .products-hero-copy { padding: 70px 22px 62px; }
  .products-hero-copy h1 { font-size: clamp(54px, 16vw, 76px); }
  .products-hero-art { min-height: 520px; }
  .products-hero-card { width: 43%; box-shadow: 6px 6px 0 var(--ink); }
  .products-hero-card-1 { top: 9%; left: 5%; }
  .products-hero-card-2 { top: 21%; right: 5%; }
  .products-hero-card-3 { bottom: 5%; left: 25%; }
  .products-stamp { width: 84px; height: 84px; font-size: 13px; }
  .products-facts { grid-template-columns: 1fr; }
  .products-facts article, .products-facts article:nth-child(2) { min-height: 125px; justify-content: flex-start; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .products-collection { padding: 82px 20px 95px; }
  .catalog-grid { grid-template-columns: 1fr; gap: 28px; }
  .catalog-title p { min-height: 0; }
  .size-section, .products-faq { padding: 80px 20px 90px; }
  .size-grid { grid-template-columns: 1fr; }
  .size-grid article { min-height: 170px; border-right: 0; border-bottom: 2px solid var(--ink); }
  .size-grid article:last-child { border-bottom: 0; }
  .packaging-art, .products-trio-art { min-height: 520px; }
  .bag-shape { width: 43%; padding: 30px 9px 11px; box-shadow: 5px 5px 0 var(--ink); }
  .bag-shape-one { left: 5%; }
  .bag-shape-two { right: 5%; }
  .package-sticker { width: 84px; height: 84px; font-size: 14px; }
  .packaging-copy, .products-trio-copy { padding: 78px 22px; }
  .trio-catalog-card { width: 38%; box-shadow: 5px 5px 0 var(--ink); }
  .trio-catalog-card-1 { left: 3%; }
  .trio-catalog-card-2 { left: 31%; }
  .trio-catalog-card-3 { right: 3%; }
  .products-origin { padding: 80px 20px 90px; }
  .products-origin article { min-height: 230px; }
  .products-origin h3 { margin-top: 50px; }
  .products-business { grid-template-columns: 1fr; }
  .business-wholesale { border-right: 0; border-bottom: 2px solid var(--ink); }
  .products-business article { min-height: 440px; padding: 70px 22px; }
  .about-hero-copy { padding: 70px 22px 62px; }
  .about-hero-copy h1 { font-size: clamp(56px, 16vw, 78px); }
  .about-hero-art { min-height: 520px; }
  .about-word { top: 8%; font-size: 110px; }
  .about-icon-card { width: 39%; box-shadow: 5px 5px 0 var(--ink); }
  .about-icon-cow { top: 27%; left: 4%; }
  .about-icon-fondue { top: 34%; right: 4%; }
  .about-icon-chocolate { left: 30%; bottom: 4%; }
  .about-stamp { width: 84px; height: 84px; padding: 12px; font-size: 13px; }
  .about-facts { grid-template-columns: 1fr; }
  .about-facts article, .about-facts article:nth-child(2) { min-height: 125px; justify-content: flex-start; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .about-story { padding: 82px 20px 95px; }
  .about-making, .about-values, .about-growth { padding: 80px 20px 90px; }
  .making-panels { grid-template-columns: 1fr; margin-top: 48px; }
  .making-panels article { min-height: 350px; }
  .making-link { top: 50%; }
  .about-icons { padding: 82px 20px 95px; }
  .icon-story-grid { grid-template-columns: 1fr; gap: 28px; }
  .values-grid { grid-template-columns: 1fr; margin-top: 48px; }
  .values-grid article, .values-grid article:nth-child(2) { min-height: 230px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.28); }
  .values-grid h3 { margin-top: 48px; }
  .growth-steps { margin-top: 12px; }
  .growth-steps li { grid-template-columns: 62px 1fr; }
  .about-next { grid-template-columns: 1fr; }
  .about-next-shop { border-right: 0; border-bottom: 2px solid var(--ink); }
  .about-next article { min-height: 450px; padding: 72px 22px; }
  .contact-hero-copy { padding: 70px 22px 62px; }
  .contact-hero-copy h1 { font-size: clamp(55px, 16vw, 77px); }
  .contact-hero-art { min-height: 520px; }
  .contact-envelope { left: 8%; top: 18%; width: 78%; box-shadow: 7px 7px 0 var(--ink); }
  .contact-note { left: 12%; right: 12%; padding: 17px; }
  .contact-product-card { width: 27%; box-shadow: 5px 5px 0 var(--ink); }
  .contact-stamp { width: 84px; height: 84px; font-size: 13px; }
  .contact-routes { padding: 82px 20px 95px; }
  .contact-route-grid { grid-template-columns: 1fr; }
  .contact-route-grid article { min-height: 340px; border-right: 0; border-bottom: 2px solid var(--ink); }
  .contact-route-grid article:last-child { border-bottom: 0; }
  .contact-form-intro, .contact-form { padding: 78px 22px; }
  .contact-details article { min-height: 200px; padding: 35px 22px; }
  .contact-help, .contact-faq { padding: 80px 20px 90px; }
  .contact-help-grid { grid-template-columns: 1fr; margin-top: 48px; }
  .contact-help-grid > a, .contact-help-grid > a:nth-child(2) { min-height: 260px; border-right: 0; border-bottom: 2px solid var(--ink); }
  .contact-help-grid > a:last-child { border-bottom: 0; }
  .help-hero-copy { padding: 70px 22px 62px; }
  .help-hero-copy h1 { font-size: clamp(55px, 16vw, 77px); }
  .help-hero-art { min-height: 520px; }
  .help-question { font-size: 390px; }
  .help-ticket { width: 38%; padding: 13px; box-shadow: 5px 5px 0 var(--ink); }
  .help-ticket-orders { left: 4%; }
  .help-ticket-sizes { right: 4%; }
  .help-ticket-business { left: 20%; }
  .help-sock-card { right: 4%; width: 28%; box-shadow: 5px 5px 0 var(--ink); }
  .help-stamp { width: 82px; height: 82px; font-size: 12px; }
  .help-facts { grid-template-columns: 1fr; }
  .help-facts article, .help-facts article:nth-child(2) { min-height: 125px; justify-content: flex-start; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .help-topics { padding: 82px 20px 95px; }
  .help-topic-grid { grid-template-columns: 1fr; }
  .help-topic-grid > a, .help-topic-grid > a:nth-child(2) { min-height: 290px; border-right: 0; border-bottom: 2px solid var(--ink); }
  .help-topic-grid > a:last-child { border-bottom: 0; }
  .faq-category-heading { padding: 78px 22px; }
  .faq-category-heading > span { margin-bottom: 42px; }
  .help-accordion { padding: 52px 22px 72px; }
  .help-accordion summary { padding: 25px 0; }
  .help-accordion details p { margin-right: 0; }
  .carton-equation { grid-template-columns: auto 1fr auto 1fr auto 1fr auto; gap: 6px; }
  .carton-equation small { margin-left: -2px; font-size: 7px; }
  .help-next { gap: 50px; padding: 82px 22px 90px; }
  .help-next-links a { grid-template-columns: 1fr; gap: 9px; }
  .shipping-hero-copy { padding: 70px 22px 62px; }
  .shipping-hero-copy h1 { font-size: clamp(55px, 16vw, 77px); }
  .shipping-hero-art { min-height: 520px; }
  .shipping-parcel { left: 10%; top: 26%; width: 74%; height: 45%; box-shadow: 7px 7px 0 var(--ink); }
  .shipping-label { left: 12%; right: 12%; padding: 17px; }
  .shipping-product { width: 24%; box-shadow: 5px 5px 0 var(--ink); }
  .shipping-stamp { width: 84px; height: 84px; font-size: 12px; }
  .shipping-facts { grid-template-columns: 1fr; }
  .shipping-facts article, .shipping-facts article:nth-child(2) { min-height: 125px; justify-content: flex-start; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .shipping-routes { padding: 82px 20px 95px; }
  .shipping-route-grid { grid-template-columns: 1fr; }
  .shipping-route-grid > a { min-height: 290px; border-right: 0; border-bottom: 2px solid var(--ink); }
  .shipping-route-grid > a:last-child { border-bottom: 0; }
  .shipping-section-heading { min-height: 0; padding: 78px 22px; border-right: 0; }
  .shipping-section-heading > span { margin-bottom: 42px; }
  .delivery-steps { padding: 50px 22px 72px; }
  .delivery-steps li { grid-template-columns: 48px 1fr; gap: 16px; }
  .delivery-steps li > span { width: 38px; height: 38px; }
  .shipping-costs article { min-height: 340px; padding: 38px 22px; }
  .returns-visual { min-height: 560px; }
  .returns-number { top: 5%; font-size: 330px; }
  .returns-visual > span { font-size: 37px; }
  .returns-card { left: 12%; right: 12%; }
  .returns-arrow { width: 66px; height: 66px; font-size: 30px; }
  .returns-copy { padding: 78px 22px; }
  .returns-accordion details p { margin-right: 0; }
  .order-problems { padding: 80px 20px 90px; }
  .problem-grid { grid-template-columns: 1fr; margin-top: 48px; }
  .problem-grid article { min-height: 250px; border-right: 0; border-bottom: 2px solid var(--ink); }
  .problem-grid article:last-child { border-bottom: 0; }
  .shipping-note { gap: 48px; padding: 82px 22px 90px; }
  .privacy-hero-copy { padding: 70px 22px 62px; }
  .privacy-hero-copy h1 { font-size: clamp(55px, 16vw, 77px); }
  .privacy-hero-art { min-height: 520px; }
  .privacy-shield { left: 22%; width: 56%; height: 63%; }
  .privacy-card { width: 31%; padding: 12px; box-shadow: 5px 5px 0 var(--ink); }
  .privacy-stamp { width: 82px; height: 82px; font-size: 12px; }
  .privacy-facts { grid-template-columns: 1fr; }
  .privacy-facts article, .privacy-facts article:nth-child(2) { min-height: 125px; justify-content: flex-start; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .privacy-draft-note { grid-template-columns: 1fr; gap: 12px; padding: 28px 20px; }
  .privacy-topics { padding: 82px 20px 95px; }
  .privacy-topic-grid { grid-template-columns: 1fr; }
  .privacy-topic-grid > a, .privacy-topic-grid > a:nth-child(2) { min-height: 290px; border-right: 0; border-bottom: 2px solid var(--ink); }
  .privacy-topic-grid > a:last-child { border-bottom: 0; }
  .privacy-controller { gap: 48px; padding: 82px 22px 90px; }
  .controller-card { padding: 27px; }
  .privacy-section-heading { min-height: 0; padding: 78px 22px; }
  .privacy-section-heading > span { margin-bottom: 42px; }
  .privacy-data-list { padding: 52px 22px 72px; }
  .privacy-use-section, .privacy-providers, .privacy-retention { padding: 80px 20px 90px; }
  .privacy-use-row, .privacy-use-header { grid-template-columns: 1fr; }
  .privacy-use-row > * { border-right: 0; }
  .privacy-use-row > *:last-child { border-bottom: 2px solid var(--ink); }
  .privacy-use-row:last-child > *:last-child { border-bottom: 0; }
  .privacy-use-header { display: none; }
  .provider-grid { grid-template-columns: 1fr; }
  .provider-grid article, .provider-grid article:nth-child(2n), .provider-grid article:nth-child(3n), .provider-grid article:nth-last-child(-n+2) { min-height: 240px; border-right: 0; border-bottom: 2px solid var(--ink); }
  .provider-grid article:last-child { border-bottom: 0; }
  .provider-launch-note { grid-template-columns: 1fr; gap: 12px; }
  .cookies-visual { min-height: 570px; }
  .cookie-disc { left: 12%; width: 72%; }
  .cookie-ticket { left: 11%; right: 11%; }
  .cookies-copy, .rights-copy { padding: 78px 22px; }
  .cookie-types { grid-template-columns: 1fr; }
  .cookie-types article + article { border-left: 0; border-top: 2px solid var(--ink); }
  .retention-grid { grid-template-columns: 1fr; }
  .retention-grid article, .retention-grid article:nth-child(2) { min-height: 250px; border-right: 0; border-bottom: 2px solid var(--ink); }
  .retention-grid article:last-child { border-bottom: 0; }
  .rights-list { grid-template-columns: 1fr; }
  .rights-list article, .rights-list article:nth-child(2n), .rights-list article:nth-last-child(-n+2) { min-height: 220px; border-right: 0; border-bottom: 2px solid var(--ink); }
  .rights-list article:last-child { border-bottom: 0; }
  .privacy-final-info article { min-height: 300px; padding: 38px 22px; }
  .privacy-contact { gap: 48px; padding: 82px 22px 90px; }
  .cookie-hero-copy { padding: 70px 22px 62px; }.cookie-hero-copy h1 { font-size: clamp(55px, 16vw, 77px); }.cookie-hero-art { min-height: 520px; }.cookie-main-disc { left: 11%; width: 72%; }.cookie-control-card { width: 49%; padding: 17px; box-shadow: 5px 5px 0 var(--ink); }.cookie-mini-card { width: 28%; padding: 11px; box-shadow: 5px 5px 0 var(--ink); }.cookie-stamp { width: 82px; height: 82px; font-size: 12px; }.cookie-facts { grid-template-columns: 1fr; }.cookie-facts article, .cookie-facts article:nth-child(2) { min-height: 125px; justify-content: flex-start; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }.cookie-draft-note { grid-template-columns: 1fr; gap: 12px; padding: 28px 20px; }.cookie-categories { padding: 82px 20px 95px; }.cookie-category-grid { grid-template-columns: 1fr; }.cookie-category-grid > a, .cookie-category-grid > a:nth-child(2) { min-height: 290px; border-right: 0; border-bottom: 2px solid var(--ink); }.cookie-category-grid > a:last-child { border-bottom: 0; }
}

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

/* Terms & Conditions */
.terms-announcement { background: var(--orange); color: var(--ink); }
.terms-hero { min-height: calc(100vh - 122px); display: grid; grid-template-columns: 52% 48%; overflow: hidden; background: var(--cream); border-bottom: 2px solid var(--ink); }
.terms-hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 9vw 7vw 8vw 4.5vw; }
.terms-hero-copy h1 { max-width: 780px; margin: 16px 0 25px; font-size: clamp(68px, 7.8vw, 124px); line-height: .78; }
.terms-lead { max-width: 660px; margin: 0; font-size: 19px; line-height: 1.55; }
.terms-hero-art { position: relative; min-height: 720px; overflow: hidden; background: var(--blue); border-left: 2px solid var(--ink); }
.terms-gridlines { position: absolute; inset: 0; opacity: .2; background-image: linear-gradient(var(--ink) 1px, transparent 1px), linear-gradient(90deg, var(--ink) 1px, transparent 1px); background-size: 52px 52px; }
.terms-receipt { position: absolute; z-index: 2; top: 11%; left: 18%; width: 64%; padding: 30px 30px 34px; background: var(--cream); border: 3px solid var(--ink); box-shadow: 12px 12px 0 var(--ink); transform: rotate(-3deg); }
.terms-receipt::after { content: ""; position: absolute; left: 0; right: 0; bottom: -13px; height: 18px; background: linear-gradient(135deg, transparent 8px, var(--cream) 0) 0 0/18px 18px repeat-x; filter: drop-shadow(0 3px 0 var(--ink)); }
.terms-receipt > small { font-size: 11px; font-weight: 850; letter-spacing: .15em; }
.terms-receipt > strong { position: absolute; top: 19px; right: 24px; display: grid; place-items: center; width: 64px; height: 64px; border: 2px solid var(--ink); border-radius: 50%; background: var(--red); color: white; font-size: 36px; transform: rotate(8deg); }
.terms-receipt h2 { margin: 44px 0 34px; font-size: clamp(62px, 6.3vw, 98px); line-height: .76; }
.terms-receipt div { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 13px 0; border-top: 2px solid var(--ink); }
.terms-receipt div span { font-size: 10px; font-weight: 850; letter-spacing: .12em; }
.terms-receipt div b { font-family: var(--font-display), serif; font-size: 20px; }
.terms-card { position: absolute; z-index: 4; min-width: 135px; padding: 15px; border: 2px solid var(--ink); box-shadow: 5px 5px 0 var(--ink); text-align: center; }
.terms-card span { display: block; font-size: 9px; font-weight: 850; letter-spacing: .13em; }
.terms-card strong { display: block; margin-top: 5px; font-family: var(--font-display), serif; font-size: 27px; }
.terms-card-stock { left: 4%; bottom: 8%; background: var(--pink); transform: rotate(6deg); }
.terms-card-ch { right: 4%; bottom: 12%; background: var(--yellow); transform: rotate(-5deg); }
.terms-stamp { position: absolute; z-index: 5; right: 4%; top: 5%; display: grid; place-items: center; width: 108px; height: 108px; padding: 16px; border: 2px solid var(--ink); border-radius: 50%; background: var(--orange); font-family: var(--font-display), serif; font-size: 17px; font-weight: 750; line-height: 1.05; text-align: center; transform: rotate(9deg); }
.terms-facts { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--ink); color: white; }
.terms-facts article { min-height: 175px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 25px 4.5vw; border-right: 1px solid rgba(255,255,255,.24); }
.terms-facts article:last-child { border-right: 0; }
.terms-facts strong { color: var(--yellow); font-family: var(--font-display), serif; font-size: clamp(28px, 3vw, 48px); line-height: .9; }
.terms-facts span { font-size: 11px; font-weight: 750; line-height: 1.45; }
.terms-draft-note { display: grid; grid-template-columns: 250px 1fr; gap: 3vw; align-items: center; padding: 30px 4.5vw; background: var(--yellow); border-bottom: 2px solid var(--ink); }
.terms-draft-note span { font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.terms-draft-note p { max-width: 1000px; margin: 0; font-size: 13px; line-height: 1.55; }
.terms-topics { padding: 105px 4.5vw 120px; background: var(--cream); border-bottom: 2px solid var(--ink); }
.terms-topics-heading { display: grid; grid-template-columns: .36fr 1fr; gap: 5vw; align-items: start; margin-bottom: 55px; }
.terms-topics-heading h2 { max-width: 900px; margin: 0; font-size: clamp(50px, 6vw, 92px); line-height: .86; }
.terms-topic-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 2px solid var(--ink); }
.terms-topic-grid > a { min-height: 350px; display: flex; flex-direction: column; padding: 25px; border-right: 2px solid var(--ink); color: var(--ink); }
.terms-topic-grid > a:last-child { border-right: 0; }
.terms-topic-grid > a.yellow { background: var(--yellow); }.terms-topic-grid > a.pink { background: var(--pink); }.terms-topic-grid > a.blue { background: var(--blue); }.terms-topic-grid > a.orange { background: var(--orange); }
.terms-topic-grid > a > span { font-size: 11px; font-weight: 850; letter-spacing: .1em; }
.terms-topic-grid h3 { margin: auto 0 14px; font-family: var(--font-display), serif; font-size: 30px; line-height: .95; }
.terms-topic-grid p { min-height: 64px; margin: 0 0 24px; font-size: 13px; line-height: 1.5; }
.terms-topic-grid strong { font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }

@media (max-width: 980px) {
  .terms-hero { grid-template-columns: 1fr; }
  .terms-hero-art { border-left: 0; border-top: 2px solid var(--ink); }
  .terms-facts, .terms-topic-grid { grid-template-columns: 1fr 1fr; }
  .terms-facts article:nth-child(2), .terms-topic-grid > a:nth-child(2) { border-right: 0; }
  .terms-facts article:nth-child(-n+2), .terms-topic-grid > a:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.24); }
  .terms-topic-grid > a:nth-child(-n+2) { border-bottom: 2px solid var(--ink); }
  .terms-topics-heading { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 700px) {
  .terms-hero-copy { padding: 70px 22px 62px; }
  .terms-hero-copy h1 { font-size: clamp(55px, 16vw, 77px); }
  .terms-hero-art { min-height: 520px; }
  .terms-receipt { top: 10%; left: 12%; width: 76%; padding: 22px; box-shadow: 7px 7px 0 var(--ink); }
  .terms-receipt h2 { margin: 35px 0 27px; font-size: 58px; }
  .terms-receipt > strong { width: 50px; height: 50px; font-size: 28px; }
  .terms-card { min-width: 112px; }
  .terms-card strong { font-size: 22px; }
  .terms-stamp { width: 82px; height: 82px; font-size: 12px; }
  .terms-facts, .terms-topic-grid { grid-template-columns: 1fr; }
  .terms-facts article, .terms-facts article:nth-child(2) { min-height: 125px; justify-content: flex-start; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .terms-draft-note { grid-template-columns: 1fr; gap: 12px; padding: 28px 20px; }
  .terms-topics { padding: 82px 20px 95px; }
  .terms-topic-grid > a, .terms-topic-grid > a:nth-child(2) { min-height: 290px; border-right: 0; border-bottom: 2px solid var(--ink); }
  .terms-topic-grid > a:last-child { border-bottom: 0; }
}

@media (max-width: 980px) {
  .cookie-explainer, .cookie-essential, .cookie-controls, .browser-cookie-controls, .cookie-faq, .cookie-contact { grid-template-columns: 1fr; }
  .cookie-section-heading, .controls-visual, .cookie-faq-heading { border-right: 0; border-bottom: 2px solid var(--ink); }
  .cookie-optional-heading, .cookie-launch-heading { grid-template-columns: 1fr; gap: 25px; }
  .optional-grid { grid-template-columns: 1fr; }
  .optional-grid article { min-height: 330px; border-right: 0; border-bottom: 2px solid var(--ink); }
  .optional-grid article:last-child { border-bottom: 0; }
  .cookie-launch ol { grid-template-columns: 1fr 1fr; }
  .cookie-launch li { border-bottom: 1px solid rgba(255,255,255,.42); }
  .cookie-launch li:nth-child(2n) { border-right: 0; }
  .cookie-launch li:last-child { border-bottom: 0; }
}

@media (max-width: 700px) {
  .cookie-explainer, .browser-cookie-controls, .cookie-contact { gap: 48px; padding: 82px 22px 90px; }
  .cookie-definitions { grid-template-columns: 1fr; }
  .cookie-definitions article, .cookie-definitions article:nth-child(2n), .cookie-definitions article:nth-last-child(-n+2) { min-height: 200px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.42); }
  .cookie-definitions article:last-child { border-bottom: 0; }
  .cookie-section-heading { min-height: 0; padding: 78px 22px; }
  .cookie-section-heading > span { margin-bottom: 42px; }
  .cookie-table-wrap { padding: 52px 20px 72px; }
  .cookie-table-intro { align-items: start; flex-direction: column; }
  .cookie-table-intro span { text-align: left; }
  .cookie-row, .cookie-row-header { grid-template-columns: 1fr; }
  .cookie-row > * { border-right: 0; }
  .cookie-row > *:last-child { border-bottom: 2px solid var(--ink); }
  .cookie-row:last-child > *:last-child { border-bottom: 0; }
  .cookie-row-header { display: none; }
  .cookie-optional, .cookie-launch { padding: 80px 20px 90px; }
  .controls-visual { min-height: 610px; }
  .controls-panel { left: 8%; right: 8%; top: 9%; padding: 23px; }
  .controls-copy, .cookie-faq-heading, .cookie-faq-list { padding: 78px 22px; }
  .browser-actions { grid-template-columns: 1fr; }
  .browser-actions article { min-height: 210px; border-right: 0; border-bottom: 2px solid var(--ink); }
  .browser-actions article:last-child { border-bottom: 0; }
  .cookie-launch ol { grid-template-columns: 1fr; }
  .cookie-launch li, .cookie-launch li:nth-child(2n) { min-height: 230px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.42); }
  .cookie-launch li:last-child { border-bottom: 0; }
  .cookie-faq-list details p { margin-right: 0; }
  .cookie-privacy-link { display: table; margin-left: 0; }
}

/* Terms — detailed sections */
.terms-seller { display: grid; grid-template-columns: 1.1fr .9fr; gap: 9vw; align-items: center; padding: 105px 4.5vw 115px; background: var(--pink); border-bottom: 2px solid var(--ink); }
.terms-seller h2, .terms-stock-copy h2, .terms-prices-heading h2, .terms-rights-heading h2, .terms-legal h2, .terms-contact h2 { margin: 12px 0 24px; font-size: clamp(48px, 6vw, 88px); line-height: .86; }
.terms-seller > div:first-child > p:not(.eyebrow) { max-width: 720px; font-size: 15px; line-height: 1.65; }
.terms-seller-card { padding: 35px; background: var(--cream); border: 3px solid var(--ink); box-shadow: 10px 10px 0 var(--ink); transform: rotate(2deg); }
.terms-seller-card > span { display: inline-block; padding: 7px 10px; background: var(--ink); color: white; font-size: 9px; font-weight: 850; letter-spacing: .13em; }
.terms-seller-card > strong { display: block; margin: 42px 0 22px; font-family: var(--font-display), serif; font-size: clamp(50px, 5vw, 80px); line-height: .8; }
.terms-seller-card p { font-size: 17px; line-height: 1.6; }
.terms-seller-card small { display: block; margin-top: 35px; padding-top: 17px; border-top: 2px solid var(--ink); font-size: 10px; line-height: 1.5; }
.terms-order-section { display: grid; grid-template-columns: .42fr .58fr; background: var(--cream); border-bottom: 2px solid var(--ink); }
.terms-section-heading { min-height: 780px; padding: 95px 4.5vw; border-right: 2px solid var(--ink); }
.terms-section-heading > span { display: block; margin-bottom: 100px; font-family: var(--font-display), serif; font-size: 90px; font-weight: 800; line-height: .8; }
.terms-section-heading h2 { margin: 13px 0 24px; font-size: clamp(50px, 5.5vw, 84px); line-height: .85; }
.terms-section-heading > p:last-child { max-width: 520px; font-size: 14px; line-height: 1.6; }
.terms-order-steps { margin: 0; padding: 52px 4.5vw 70px; list-style: none; }
.terms-order-steps li { display: grid; grid-template-columns: 60px 1fr; gap: 25px; padding: 30px 0; border-bottom: 2px solid var(--ink); }
.terms-order-steps li:last-child { border-bottom: 0; }
.terms-order-steps li > span { display: grid; place-items: center; width: 48px; height: 48px; background: var(--yellow); border: 2px solid var(--ink); border-radius: 50%; font-size: 11px; font-weight: 850; }
.terms-order-steps h3 { margin: 2px 0 10px; font-family: var(--font-display), serif; font-size: 28px; }
.terms-order-steps p { max-width: 680px; margin: 0; font-size: 13px; line-height: 1.6; }
.terms-stock { display: grid; grid-template-columns: 1fr 1fr; min-height: 760px; border-bottom: 2px solid var(--ink); }
.terms-stock-art { position: relative; min-height: 760px; overflow: hidden; background: var(--red); border-right: 2px solid var(--ink); }
.terms-stock-number { position: absolute; top: -8%; left: 4%; color: var(--pink); font-family: var(--font-display), serif; font-size: clamp(380px, 43vw, 650px); font-weight: 850; line-height: 1; transform: rotate(-7deg); }
.terms-stock-ticket { position: absolute; z-index: 2; left: 17%; right: 12%; top: 19%; padding: 30px; background: var(--cream); border: 3px solid var(--ink); box-shadow: 10px 10px 0 var(--ink); transform: rotate(4deg); }
.terms-stock-ticket small { font-size: 10px; font-weight: 850; letter-spacing: .13em; }
.terms-stock-ticket strong { display: block; margin: 40px 0 30px; font-family: var(--font-display), serif; font-size: clamp(48px, 5.8vw, 84px); line-height: .75; }
.terms-stock-ticket span { display: block; padding-top: 15px; border-top: 2px solid var(--ink); font-size: 12px; font-weight: 800; }
.terms-stock-stamp { position: absolute; z-index: 4; right: 5%; bottom: 7%; display: grid; place-items: center; width: 112px; height: 112px; padding: 15px; background: var(--yellow); border: 2px solid var(--ink); border-radius: 50%; font-family: var(--font-display), serif; font-size: 16px; font-weight: 750; line-height: 1.05; text-align: center; transform: rotate(-8deg); }
.terms-stock-copy { padding: 95px 5vw; background: var(--blue); }
.terms-stock-copy > p:not(.eyebrow) { max-width: 650px; font-size: 15px; line-height: 1.65; }
.terms-mini-grid { display: grid; grid-template-columns: 1fr 1fr; margin-top: 55px; border: 2px solid var(--ink); background: var(--cream); }
.terms-mini-grid article { min-height: 270px; display: flex; flex-direction: column; padding: 23px; }
.terms-mini-grid article + article { border-left: 2px solid var(--ink); }
.terms-mini-grid span { font-size: 9px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.terms-mini-grid h3 { margin: auto 0 12px; font-family: var(--font-display), serif; font-size: 25px; line-height: .95; }
.terms-mini-grid p { margin: 0; font-size: 12px; line-height: 1.55; }
.terms-prices { padding: 105px 4.5vw 115px; background: var(--yellow); border-bottom: 2px solid var(--ink); }
.terms-prices-heading { display: grid; grid-template-columns: .33fr .72fr .48fr; gap: 4vw; align-items: start; margin-bottom: 55px; }
.terms-prices-heading h2 { margin-top: 0; }
.terms-prices-heading > p:last-child { margin: 0; font-size: 14px; line-height: 1.6; }
.terms-price-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 2px solid var(--ink); background: var(--cream); }
.terms-price-grid article { min-height: 310px; display: flex; flex-direction: column; padding: 24px; border-right: 2px solid var(--ink); }
.terms-price-grid article:last-child { border-right: 0; }
.terms-price-grid span { font-size: 9px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.terms-price-grid strong { margin: auto 0 22px; font-family: var(--font-display), serif; font-size: clamp(45px, 5vw, 72px); line-height: .8; }
.terms-price-grid p { margin: 0; font-size: 12px; line-height: 1.5; }
.terms-payment-note { display: grid; grid-template-columns: .3fr 1fr .4fr; gap: 3vw; align-items: center; padding: 25px; border: 2px solid var(--ink); border-top: 0; background: var(--pink); }
.terms-payment-note strong { font-family: var(--font-display), serif; font-size: 24px; }
.terms-payment-note p { margin: 0; font-size: 12px; line-height: 1.55; }
.terms-payment-note span { padding: 10px; background: var(--ink); color: white; font-size: 9px; font-weight: 800; text-align: center; text-transform: uppercase; }
.terms-delivery { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 2px solid var(--ink); }
.terms-delivery-copy, .terms-returns-copy { padding: 100px 5vw 110px; }
.terms-delivery-copy { background: var(--ink); color: white; }
.terms-returns-copy { background: var(--cream); }
.terms-delivery h2 { margin: 14px 0 25px; font-size: clamp(52px, 6vw, 90px); line-height: .83; }
.terms-delivery-copy > p:not(.eyebrow), .terms-returns-copy > p:not(.eyebrow) { max-width: 650px; font-size: 15px; line-height: 1.65; }
.terms-delivery-copy ul, .terms-returns-copy ol { margin: 45px 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.35); }
.terms-delivery-copy li { display: grid; grid-template-columns: 100px 1fr; gap: 24px; padding: 21px 0; border-bottom: 1px solid rgba(255,255,255,.35); }
.terms-delivery-copy li strong { font-family: var(--font-display), serif; font-size: 20px; }
.terms-delivery-copy li span { font-size: 12px; line-height: 1.55; }
.terms-returns-copy ol { border-top: 2px solid var(--ink); }
.terms-returns-copy li { display: grid; grid-template-columns: 44px 1fr; gap: 18px; padding: 20px 0; border-bottom: 2px solid var(--ink); }
.terms-returns-copy li span { display: grid; place-items: center; width: 36px; height: 36px; background: var(--red); color: white; border: 2px solid var(--ink); border-radius: 50%; font-size: 9px; font-weight: 850; }
.terms-returns-copy li p { margin: 2px 0 0; font-size: 12px; line-height: 1.55; }
.terms-returns-copy small { display: block; padding: 15px; background: var(--yellow); border: 2px solid var(--ink); font-size: 10px; line-height: 1.5; }
.terms-rights { padding: 105px 4.5vw 115px; background: var(--pink); border-bottom: 2px solid var(--ink); }
.terms-rights-heading { display: grid; grid-template-columns: .35fr .75fr .45fr; gap: 4vw; align-items: start; margin-bottom: 55px; }
.terms-rights-heading h2 { margin-top: 0; }
.terms-rights-heading > p:last-child { margin: 0; font-size: 14px; line-height: 1.6; }
.terms-rights-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 2px solid var(--ink); background: var(--cream); }
.terms-rights-grid article { min-height: 360px; display: flex; flex-direction: column; padding: 25px; border-right: 2px solid var(--ink); }
.terms-rights-grid article:last-child { border-right: 0; }
.terms-rights-grid span { font-size: 9px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.terms-rights-grid h3 { margin: auto 0 14px; font-family: var(--font-display), serif; font-size: 28px; line-height: .95; }
.terms-rights-grid p { margin: 0; font-size: 12px; line-height: 1.55; }
.terms-business { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 2px solid var(--ink); }
.terms-business article { min-height: 590px; display: flex; flex-direction: column; align-items: flex-start; padding: 90px 5vw; }
.terms-business-wholesale { background: var(--orange); border-right: 2px solid var(--ink); }
.terms-business-custom { background: var(--blue); }
.terms-business h2 { max-width: 660px; margin: 15px 0 25px; font-size: clamp(52px, 6vw, 91px); line-height: .83; }
.terms-business article > p:not(.eyebrow) { max-width: 600px; font-size: 15px; line-height: 1.65; }
.terms-business .button { margin-top: auto; }
.terms-legal { display: grid; grid-template-columns: .9fr 1.1fr; gap: 7vw; padding: 105px 4.5vw 115px; background: var(--ink); color: white; border-bottom: 2px solid var(--ink); }
.terms-legal > div:first-child > p:not(.eyebrow) { max-width: 650px; font-size: 15px; line-height: 1.65; }
.terms-legal-cards { border: 1px solid rgba(255,255,255,.4); }
.terms-legal-cards article { min-height: 180px; display: grid; grid-template-columns: .24fr .45fr 1fr; gap: 20px; align-items: center; padding: 25px; border-bottom: 1px solid rgba(255,255,255,.4); }
.terms-legal-cards article:last-child { border-bottom: 0; }
.terms-legal-cards span { color: var(--yellow); font-size: 9px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.terms-legal-cards h3 { font-family: var(--font-display), serif; font-size: 24px; line-height: 1; }
.terms-legal-cards p { font-size: 12px; line-height: 1.55; }
.terms-legal-cards strong { font-family: var(--font-display), serif; font-size: 28px; }
.terms-legal a { color: white; text-decoration: underline; }
.terms-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; align-items: end; padding: 100px 4.5vw 110px; background: var(--yellow); border-bottom: 2px solid var(--ink); }
.terms-contact h2 { margin-bottom: 0; }
.terms-contact > div:last-child p { max-width: 550px; font-size: 15px; line-height: 1.65; }
.terms-footer { border-top: 0; }

@media (max-width: 980px) {
  .terms-seller, .terms-stock, .terms-delivery, .terms-business, .terms-legal, .terms-contact { grid-template-columns: 1fr; }
  .terms-order-section { grid-template-columns: 1fr; }
  .terms-section-heading { min-height: 0; border-right: 0; border-bottom: 2px solid var(--ink); }
  .terms-stock-art, .terms-business-wholesale { border-right: 0; border-bottom: 2px solid var(--ink); }
  .terms-prices-heading, .terms-rights-heading { grid-template-columns: 1fr; gap: 24px; }
  .terms-price-grid, .terms-rights-grid { grid-template-columns: 1fr 1fr; }
  .terms-price-grid article:nth-child(2), .terms-rights-grid article:nth-child(2) { border-right: 0; }
  .terms-price-grid article:nth-child(-n+2), .terms-rights-grid article:nth-child(-n+2) { border-bottom: 2px solid var(--ink); }
  .terms-payment-note { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .terms-seller, .terms-prices, .terms-rights, .terms-legal, .terms-contact { padding: 80px 20px 90px; }
  .terms-seller-card { padding: 27px; box-shadow: 6px 6px 0 var(--ink); }
  .terms-section-heading { padding: 78px 22px; }
  .terms-section-heading > span { margin-bottom: 42px; }
  .terms-order-steps { padding: 50px 22px 72px; }
  .terms-order-steps li { grid-template-columns: 48px 1fr; gap: 16px; }
  .terms-order-steps li > span { width: 38px; height: 38px; }
  .terms-stock-art { min-height: 560px; }
  .terms-stock-ticket { left: 10%; right: 10%; padding: 23px; box-shadow: 6px 6px 0 var(--ink); }
  .terms-stock-stamp { width: 84px; height: 84px; font-size: 12px; }
  .terms-stock-copy, .terms-delivery-copy, .terms-returns-copy { padding: 78px 22px; }
  .terms-mini-grid { grid-template-columns: 1fr; }
  .terms-mini-grid article { min-height: 230px; }
  .terms-mini-grid article + article { border-left: 0; border-top: 2px solid var(--ink); }
  .terms-price-grid, .terms-rights-grid { grid-template-columns: 1fr; }
  .terms-price-grid article, .terms-price-grid article:nth-child(2), .terms-rights-grid article, .terms-rights-grid article:nth-child(2) { min-height: 250px; border-right: 0; border-bottom: 2px solid var(--ink); }
  .terms-price-grid article:last-child, .terms-rights-grid article:last-child { border-bottom: 0; }
  .terms-delivery-copy li { grid-template-columns: 1fr; gap: 8px; }
  .terms-business article { min-height: 500px; padding: 75px 22px; }
  .terms-legal-cards article { grid-template-columns: 1fr; gap: 8px; }
}

/* Imprint */
.imprint-announcement { background: var(--pink); color: var(--ink); }
.imprint-hero { min-height: calc(100vh - 122px); display: grid; grid-template-columns: 52% 48%; overflow: hidden; background: var(--cream); border-bottom: 2px solid var(--ink); }
.imprint-hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 9vw 7vw 8vw 4.5vw; }
.imprint-hero-copy h1 { max-width: 800px; margin: 16px 0 25px; font-size: clamp(66px, 7.5vw, 120px); line-height: .79; }
.imprint-lead { max-width: 650px; margin: 0; font-size: 19px; line-height: 1.55; }
.imprint-hero-art { position: relative; min-height: 720px; overflow: hidden; background: var(--yellow); border-left: 2px solid var(--ink); }
.imprint-gridlines { position: absolute; inset: 0; opacity: .19; background-image: linear-gradient(var(--ink) 1px, transparent 1px), linear-gradient(90deg, var(--ink) 1px, transparent 1px); background-size: 52px 52px; }
.imprint-id-card { position: absolute; z-index: 2; top: 15%; left: 12%; width: 72%; padding: 32px; background: var(--cream); border: 3px solid var(--ink); box-shadow: 12px 12px 0 var(--ink); transform: rotate(-3deg); }
.imprint-id-card > small { font-size: 10px; font-weight: 850; letter-spacing: .15em; }
.imprint-id-card > strong { display: block; margin: 44px 0 8px; font-family: var(--font-display), serif; font-size: clamp(68px, 7.4vw, 112px); line-height: .75; }
.imprint-id-card > span { display: block; margin-bottom: 45px; font-size: 12px; font-weight: 850; letter-spacing: .16em; }
.imprint-id-card div { display: grid; grid-template-columns: 80px 1fr; gap: 18px; padding: 14px 0; border-top: 2px solid var(--ink); }
.imprint-id-card b { font-size: 9px; letter-spacing: .12em; }
.imprint-id-card em { overflow-wrap: anywhere; font-family: var(--font-display), serif; font-size: 18px; font-style: normal; font-weight: 700; }
.imprint-postmark { position: absolute; z-index: 4; left: 5%; bottom: 7%; display: flex; align-items: center; gap: 13px; width: 165px; height: 92px; padding: 15px; background: var(--blue); border: 2px solid var(--ink); border-radius: 50%; box-shadow: 5px 5px 0 var(--ink); transform: rotate(8deg); }
.imprint-postmark span { display: grid; place-items: center; width: 55px; height: 55px; border: 2px solid var(--ink); border-radius: 50%; font-family: var(--font-display), serif; font-size: 26px; font-weight: 800; }
.imprint-postmark small { font-size: 9px; font-weight: 850; line-height: 1.2; }
.imprint-card { position: absolute; z-index: 4; min-width: 125px; padding: 14px; border: 2px solid var(--ink); box-shadow: 5px 5px 0 var(--ink); text-align: center; }
.imprint-card span { display: block; font-size: 9px; font-weight: 850; letter-spacing: .12em; }
.imprint-card strong { display: block; margin-top: 5px; font-family: var(--font-display), serif; font-size: 27px; }
.imprint-card-open { right: 3%; bottom: 9%; background: var(--orange); transform: rotate(-6deg); }
.imprint-card-direct { left: 4%; top: 6%; background: var(--red); color: white; transform: rotate(5deg); }
.imprint-stamp { position: absolute; z-index: 5; right: 4%; top: 5%; display: grid; place-items: center; width: 108px; height: 108px; padding: 16px; border: 2px solid var(--ink); border-radius: 50%; background: var(--pink); font-family: var(--font-display), serif; font-size: 17px; font-weight: 750; line-height: 1.05; text-align: center; transform: rotate(9deg); }
.imprint-facts { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--ink); color: white; }
.imprint-facts article { min-height: 175px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 25px 4.5vw; border-right: 1px solid rgba(255,255,255,.24); }
.imprint-facts article:last-child { border-right: 0; }
.imprint-facts strong { color: var(--pink); font-family: var(--font-display), serif; font-size: clamp(30px, 3.1vw, 49px); line-height: .9; }
.imprint-facts span { font-size: 11px; font-weight: 750; line-height: 1.45; }
.imprint-draft-note { display: grid; grid-template-columns: 250px 1fr; gap: 3vw; align-items: center; padding: 30px 4.5vw; background: var(--red); color: white; border-bottom: 2px solid var(--ink); }
.imprint-draft-note span { font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.imprint-draft-note p { max-width: 1000px; margin: 0; font-size: 13px; line-height: 1.55; }
.imprint-operator { display: grid; grid-template-columns: .9fr 1.1fr; gap: 8vw; align-items: center; padding: 105px 4.5vw 115px; background: var(--blue); border-bottom: 2px solid var(--ink); }
.imprint-operator-heading h2 { margin: 13px 0 24px; font-size: clamp(50px, 6vw, 90px); line-height: .85; }
.imprint-operator-heading > p:last-child { max-width: 560px; font-size: 14px; line-height: 1.65; }
.imprint-identity-card { padding: 35px; background: var(--cream); border: 3px solid var(--ink); box-shadow: 10px 10px 0 var(--ink); transform: rotate(1deg); }
.imprint-card-label { display: inline-block; padding: 7px 10px; background: var(--ink); color: white; font-size: 9px; font-weight: 850; letter-spacing: .13em; }
.imprint-identity-card h3 { margin: 42px 0 30px; font-family: var(--font-display), serif; font-size: clamp(52px, 6vw, 88px); line-height: .8; }
.imprint-identity-card dl { margin: 0; }
.imprint-identity-card dl div { display: grid; grid-template-columns: .8fr 1.2fr; gap: 25px; padding: 17px 0; border-top: 2px solid var(--ink); }
.imprint-identity-card dt { font-size: 10px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.imprint-identity-card dd { margin: 0; font-size: 13px; font-weight: 650; }
.imprint-identity-card dd:not(:has(a)) { color: var(--red); }

@media (max-width: 980px) {
  .imprint-hero, .imprint-operator { grid-template-columns: 1fr; }
  .imprint-hero-art { border-left: 0; border-top: 2px solid var(--ink); }
  .imprint-facts { grid-template-columns: 1fr 1fr; }
  .imprint-facts article:nth-child(2) { border-right: 0; }
  .imprint-facts article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.24); }
}

@media (max-width: 700px) {
  .imprint-hero-copy { padding: 70px 22px 62px; }
  .imprint-hero-copy h1 { font-size: clamp(55px, 16vw, 77px); }
  .imprint-hero-art { min-height: 520px; }
  .imprint-id-card { left: 10%; width: 78%; padding: 22px; box-shadow: 7px 7px 0 var(--ink); }
  .imprint-id-card > strong { margin-top: 34px; font-size: 58px; }
  .imprint-id-card > span { margin-bottom: 28px; }
  .imprint-postmark { width: 135px; height: 75px; }
  .imprint-postmark span { width: 44px; height: 44px; font-size: 21px; }
  .imprint-card { min-width: 105px; }
  .imprint-stamp { width: 82px; height: 82px; font-size: 12px; }
  .imprint-facts { grid-template-columns: 1fr; }
  .imprint-facts article, .imprint-facts article:nth-child(2) { min-height: 125px; justify-content: flex-start; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .imprint-draft-note { grid-template-columns: 1fr; gap: 12px; padding: 28px 20px; }
  .imprint-operator { padding: 80px 20px 90px; }
  .imprint-identity-card { padding: 27px; box-shadow: 6px 6px 0 var(--ink); }
  .imprint-identity-card dl div { grid-template-columns: 1fr; gap: 8px; }
}

/* Imprint — detailed sections */
.imprint-launch-fields { padding: 105px 4.5vw 115px; background: var(--cream); border-bottom: 2px solid var(--ink); }
.imprint-launch-heading { display: grid; grid-template-columns: .34fr .72fr .46fr; gap: 4vw; align-items: start; margin-bottom: 55px; }
.imprint-launch-heading h2, .imprint-responsibility-copy h2, .imprint-routes-heading h2, .imprint-notice-copy h2, .imprint-version h2, .imprint-contact h2 { margin: 0; font-size: clamp(50px, 6vw, 90px); line-height: .85; }
.imprint-launch-heading > p:last-child { margin: 0; font-size: 14px; line-height: 1.65; }
.imprint-launch-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 2px solid var(--ink); }
.imprint-launch-grid article { min-height: 365px; display: flex; flex-direction: column; padding: 25px; border-right: 2px solid var(--ink); }
.imprint-launch-grid article:last-child { border-right: 0; }
.imprint-launch-grid article:nth-child(1) { background: var(--yellow); }.imprint-launch-grid article:nth-child(2) { background: var(--pink); }.imprint-launch-grid article:nth-child(3) { background: var(--blue); }.imprint-launch-grid article:nth-child(4) { background: var(--orange); }
.imprint-launch-grid article > span { font-size: 10px; font-weight: 850; letter-spacing: .1em; }
.imprint-launch-grid h3 { margin: auto 0 14px; font-family: var(--font-display), serif; font-size: 29px; line-height: .95; }
.imprint-launch-grid p { min-height: 88px; margin: 0 0 24px; font-size: 12px; line-height: 1.55; }
.imprint-launch-grid strong { padding: 9px; background: var(--ink); color: white; font-size: 9px; letter-spacing: .1em; text-align: center; }
.imprint-responsibility { display: grid; grid-template-columns: 1fr 1fr; min-height: 790px; border-bottom: 2px solid var(--ink); }
.imprint-responsibility-art { position: relative; min-height: 790px; overflow: hidden; background: var(--pink); border-right: 2px solid var(--ink); }
.imprint-responsibility-word { position: absolute; top: 4%; left: -4%; color: var(--red); font-family: var(--font-display), serif; font-size: clamp(170px, 19vw, 310px); font-weight: 850; letter-spacing: -.1em; line-height: .8; transform: rotate(-8deg); }
.imprint-responsibility-ticket { position: absolute; z-index: 2; left: 15%; right: 12%; top: 26%; padding: 30px; background: var(--cream); border: 3px solid var(--ink); box-shadow: 10px 10px 0 var(--ink); transform: rotate(3deg); }
.imprint-responsibility-ticket small { font-size: 10px; font-weight: 850; letter-spacing: .13em; }
.imprint-responsibility-ticket strong { display: block; margin: 40px 0 32px; font-family: var(--font-display), serif; font-size: clamp(52px, 6vw, 88px); line-height: .76; }
.imprint-responsibility-ticket span { display: block; padding-top: 15px; border-top: 2px solid var(--ink); font-size: 12px; font-weight: 800; }
.imprint-responsibility-stamp { position: absolute; z-index: 4; right: 5%; bottom: 7%; display: grid; place-items: center; width: 112px; height: 112px; padding: 15px; background: var(--yellow); border: 2px solid var(--ink); border-radius: 50%; font-family: var(--font-display), serif; font-size: 16px; font-weight: 750; line-height: 1.05; text-align: center; transform: rotate(-8deg); }
.imprint-responsibility-copy { padding: 95px 5vw; background: var(--yellow); }
.imprint-responsibility-copy h2 { margin: 13px 0 25px; }
.imprint-responsibility-copy > p:not(.eyebrow) { max-width: 650px; font-size: 15px; line-height: 1.65; }
.imprint-responsibility-list { margin-top: 45px; border-top: 2px solid var(--ink); }
.imprint-responsibility-list article { display: grid; grid-template-columns: .28fr .42fr 1fr; gap: 20px; align-items: center; min-height: 145px; padding: 22px 0; border-bottom: 2px solid var(--ink); }
.imprint-responsibility-list span { font-size: 9px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.imprint-responsibility-list h3 { font-family: var(--font-display), serif; font-size: 23px; line-height: 1; }
.imprint-responsibility-list p { font-size: 11px; line-height: 1.55; }
.imprint-contact-routes { padding: 105px 4.5vw 115px; background: var(--blue); border-bottom: 2px solid var(--ink); }
.imprint-routes-heading { display: grid; grid-template-columns: .34fr 1fr; gap: 4vw; margin-bottom: 55px; }
.imprint-route-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 2px solid var(--ink); }
.imprint-route-grid article { min-height: 390px; display: flex; flex-direction: column; align-items: flex-start; padding: 28px; border-right: 2px solid var(--ink); }
.imprint-route-grid article:last-child { border-right: 0; }
.imprint-route-grid .yellow { background: var(--yellow); }.imprint-route-grid .pink { background: var(--pink); }.imprint-route-grid .blue { background: var(--cream); }
.imprint-route-grid span { font-size: 9px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.imprint-route-grid h3 { margin: auto 0 15px; font-family: var(--font-display), serif; font-size: 35px; line-height: .95; }
.imprint-route-grid p { min-height: 60px; margin: 0 0 28px; font-size: 13px; line-height: 1.55; }
.imprint-route-grid a { padding-bottom: 5px; border-bottom: 2px solid var(--ink); font-size: 11px; font-weight: 800; }
.imprint-website-notice { display: grid; grid-template-columns: 1.08fr .92fr; border-bottom: 2px solid var(--ink); }
.imprint-notice-copy { padding: 100px 5vw 110px; background: var(--ink); color: white; }
.imprint-notice-copy h2 { margin: 13px 0 25px; }
.imprint-notice-copy > p:not(.eyebrow) { max-width: 700px; font-size: 15px; line-height: 1.65; }
.imprint-notice-grid { display: grid; grid-template-columns: 1fr 1fr; margin-top: 50px; border: 1px solid rgba(255,255,255,.42); }
.imprint-notice-grid article { min-height: 250px; display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; }
.imprint-notice-grid article + article { border-left: 1px solid rgba(255,255,255,.42); }
.imprint-notice-grid span { margin-bottom: auto; color: var(--yellow); font-size: 9px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.imprint-notice-grid p { margin: 0; font-size: 12px; line-height: 1.55; }
.imprint-notice-links { padding: 100px 4.5vw; background: var(--orange); }
.imprint-notice-links > span { display: block; margin-bottom: 60px; font-size: 10px; font-weight: 850; letter-spacing: .12em; }
.imprint-notice-links > a { display: grid; grid-template-columns: 52px 1fr; gap: 18px; padding: 26px 0; border-top: 2px solid var(--ink); }
.imprint-notice-links > a:last-child { border-bottom: 2px solid var(--ink); }
.imprint-notice-links b { grid-row: 1 / 3; display: grid; place-items: center; width: 44px; height: 44px; background: var(--cream); border: 2px solid var(--ink); border-radius: 50%; font-size: 10px; }
.imprint-notice-links strong { font-family: var(--font-display), serif; font-size: 27px; line-height: 1; }
.imprint-notice-links em { font-size: 11px; font-style: normal; }
.imprint-version { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; align-items: center; padding: 100px 4.5vw 110px; background: var(--pink); border-bottom: 2px solid var(--ink); }
.imprint-version h2 { margin-top: 13px; }
.imprint-version-card { padding: 35px; background: var(--cream); border: 3px solid var(--ink); box-shadow: 9px 9px 0 var(--ink); transform: rotate(-2deg); }
.imprint-version-card span { font-size: 9px; font-weight: 850; letter-spacing: .12em; }
.imprint-version-card strong { display: block; margin: 50px 0 25px; font-family: var(--font-display), serif; font-size: clamp(40px, 5vw, 70px); line-height: .85; }
.imprint-version-card p { padding-top: 18px; border-top: 2px solid var(--ink); font-size: 12px; line-height: 1.55; }
.imprint-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; align-items: end; padding: 100px 4.5vw 110px; background: var(--yellow); border-bottom: 2px solid var(--ink); }
.imprint-contact h2 { margin-top: 13px; }
.imprint-contact > div:last-child p { max-width: 560px; font-size: 15px; line-height: 1.65; }
.imprint-footer { border-top: 0; }

@media (max-width: 980px) {
  .imprint-launch-heading { grid-template-columns: 1fr; gap: 24px; }
  .imprint-launch-grid { grid-template-columns: 1fr 1fr; }
  .imprint-launch-grid article:nth-child(2) { border-right: 0; }
  .imprint-launch-grid article:nth-child(-n+2) { border-bottom: 2px solid var(--ink); }
  .imprint-responsibility, .imprint-website-notice, .imprint-version, .imprint-contact { grid-template-columns: 1fr; }
  .imprint-responsibility-art { border-right: 0; border-bottom: 2px solid var(--ink); }
  .imprint-routes-heading { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 700px) {
  .imprint-launch-fields, .imprint-contact-routes, .imprint-version, .imprint-contact { padding: 80px 20px 90px; }
  .imprint-launch-grid, .imprint-route-grid { grid-template-columns: 1fr; }
  .imprint-launch-grid article, .imprint-launch-grid article:nth-child(2) { min-height: 290px; border-right: 0; border-bottom: 2px solid var(--ink); }
  .imprint-launch-grid article:last-child { border-bottom: 0; }
  .imprint-responsibility-art { min-height: 560px; }
  .imprint-responsibility-ticket { left: 10%; right: 10%; padding: 23px; box-shadow: 6px 6px 0 var(--ink); }
  .imprint-responsibility-stamp { width: 84px; height: 84px; font-size: 12px; }
  .imprint-responsibility-copy, .imprint-notice-copy, .imprint-notice-links { padding: 78px 22px; }
  .imprint-responsibility-list article { grid-template-columns: 1fr; gap: 7px; }
  .imprint-route-grid article { min-height: 310px; border-right: 0; border-bottom: 2px solid var(--ink); }
  .imprint-route-grid article:last-child { border-bottom: 0; }
  .imprint-notice-grid { grid-template-columns: 1fr; }
  .imprint-notice-grid article + article { border-left: 0; border-top: 1px solid rgba(255,255,255,.42); }
  .imprint-version-card { padding: 27px; box-shadow: 6px 6px 0 var(--ink); }
}

/* WordPress and Divi integration */
:root {
  --font-sans: "DM Sans";
  --font-display: "Fraunces";
}
body.swizzys-site { line-height: inherit; }
body.swizzys-site #page-container { padding-top: 0 !important; }
.swizzys-builder-wrap .et_pb_section,
.swizzys-builder-wrap .et_pb_row,
.swizzys-builder-wrap .et_pb_column,
.swizzys-builder-wrap .et_pb_module,
.swizzys-builder-wrap .et_pb_code,
.swizzys-builder-wrap .et_pb_code_inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}
.swizzys-builder-wrap .et_pb_row::after,
.swizzys-builder-wrap .et_pb_column::after { display: none; }
.swizzys-builder-wrap p:empty { display: none; }
.site-header nav .swizzys-primary-menu {
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-header nav .swizzys-primary-menu li { margin: 0; padding: 0; }
.site-header nav .current-menu-item > a::after { right: 0; }
.swizzys-woocommerce-wrap {
  min-height: 60vh;
  padding: 80px 4.5vw 110px;
  background: var(--cream);
}
.swizzys-woocommerce-wrap .woocommerce {
  width: min(1180px, 100%);
  margin: 0 auto;
}
.swizzys-woocommerce-wrap .button,
.swizzys-woocommerce-wrap button.button,
.swizzys-woocommerce-wrap input.button {
  border: 2px solid var(--ink) !important;
  border-radius: 0 !important;
  background: var(--red) !important;
  color: white !important;
  font-weight: 800 !important;
}
.swizzys-woocommerce-wrap input,
.swizzys-woocommerce-wrap select,
.swizzys-woocommerce-wrap textarea {
  border: 1px solid rgba(21,18,15,.35);
  border-radius: 0;
  background: white;
}
@media (max-width: 980px) {
  body.swizzys-site .site-header nav { display: none; }
  body.swizzys-site .menu-link { display: inline-flex; }
}
