:root {
  --paper: #f3ecdf;
  --paper-light: #fbf7ef;
  --ink: #211712;
  --ink-soft: #54463c;
  --line: rgba(33, 23, 18, 0.2);
  --terracotta: #b84b28;
  --terracotta-dark: #8e351c;
  --olive: #3e4827;
  --olive-deep: #28301a;
  --saffron: #e4ae22;
  --cobalt: #124a68;
  --white: #fffdf8;
  --page-pad: clamp(20px, 4.2vw, 72px);
  --max-width: 1440px;
  --h1: clamp(4.15rem, 7vw, 7.8rem);
  --h2: clamp(3.1rem, 5vw, 5.8rem);
  --h3: clamp(1.45rem, 2.1vw, 2rem);
  --body-lg: clamp(1.05rem, 1.35vw, 1.28rem);
  --radius-xl: 0;
  --shadow: none;
  --shadow-soft: none;
  --shadow-strong: 0 22px 44px rgba(33, 23, 18, 0.16);
}

html {
  scroll-padding-top: 86px;
}

body {
  color: var(--ink);
  background: var(--paper);
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  letter-spacing: -0.012em;
  overflow-x: hidden;
}

body::selection {
  color: var(--white);
  background: var(--terracotta);
}

.grain {
  z-index: 20;
  opacity: 0.055;
  mix-blend-mode: multiply;
}

.halo {
  display: none;
}

.container {
  width: min(calc(100% - (var(--page-pad) * 2)), var(--max-width));
}

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

a:focus-visible,
button:focus-visible,
select:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--saffron);
  outline-offset: 4px;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: "Fraunces", serif;
  font-weight: 600;
  letter-spacing: -0.045em;
}

p {
  color: var(--ink-soft);
}

.site-header {
  min-height: 78px;
  padding: 11px 0;
  background: rgba(243, 236, 223, 0.97);
  border-bottom: 1px solid var(--ink);
  box-shadow: none;
}

.header-inner {
  min-height: 55px;
  gap: clamp(16px, 2.4vw, 40px);
}

.logo {
  flex: 0 0 auto;
  gap: 10px;
  color: var(--ink);
  font-size: clamp(0.92rem, 1.15vw, 1.08rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.logo img {
  width: 44px;
  height: 44px;
}

.main-nav {
  flex: 1;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 42px);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.main-nav a {
  padding: 9px 0 7px;
}

.main-nav a::after {
  height: 1px;
  background: var(--terracotta);
}

.header-actions {
  gap: 8px;
}

.lang-select,
.cart-btn {
  min-height: 42px;
  padding: 8px 13px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.lang-select {
  width: 66px;
}

.cart-btn {
  border-color: var(--ink);
}

.cart-count {
  color: var(--white);
  background: var(--terracotta);
}

.btn {
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid var(--ink);
  border-radius: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.btn::before,
.btn::after {
  display: none;
}

.btn-primary {
  color: var(--white);
  background: var(--terracotta);
  border-color: var(--terracotta);
  box-shadow: none;
}

.btn-primary:hover {
  color: var(--white);
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  box-shadow: none;
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--ink);
  background: transparent;
  border-color: var(--ink);
  box-shadow: none;
}

.btn-ghost:hover {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-2px);
}

main {
  display: flex;
  flex-direction: column;
}

.hero {
  order: 0;
  min-height: auto;
  padding: clamp(32px, 3.3vw, 48px) 0 0;
  background: var(--paper);
  border-bottom: 1px solid var(--ink);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(520px, 1.16fr);
  align-items: stretch;
  gap: clamp(26px, 4vw, 70px);
}

.hero-content {
  display: flex;
  min-width: 0;
  padding: 12px 0 48px;
  flex-direction: column;
  align-items: flex-start;
}

.badge {
  display: inline-flex;
  padding: 0;
  color: var(--terracotta-dark);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-content h1 {
  max-width: 8.5ch;
  margin: clamp(22px, 2.2vw, 32px) 0 24px;
  color: var(--ink);
  font-size: var(--h1);
  line-height: 0.84;
  letter-spacing: -0.062em;
  text-wrap: balance;
}

.hero-content > p {
  max-width: 48ch;
  color: var(--ink-soft);
  font-size: var(--body-lg);
  line-height: 1.5;
}

.hero-trust {
  display: grid;
  width: 100%;
  margin-top: 30px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-pill {
  min-height: 58px;
  padding: 14px 14px 14px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.trust-pill:last-child {
  padding-left: 14px;
  border-right: 0;
}

.trust-pill:nth-child(2) {
  padding-left: 14px;
}

.hero-ctas {
  display: flex;
  margin-top: 28px;
  gap: 10px;
}

.hero-stats {
  display: grid;
  width: 100%;
  margin-top: auto;
  padding-top: clamp(30px, 3.5vw, 48px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.hero-stats > div {
  padding: 16px 16px 0 0;
  border-top: 1px solid var(--ink);
}

.hero-stats > div + div {
  padding-left: 16px;
  border-left: 1px solid var(--line);
}

.hero-stats strong {
  color: var(--ink);
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 600;
  line-height: 1;
}

.hero-stats span {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
}

.v2-hero-art {
  position: relative;
  min-height: 760px;
  margin: 0;
  overflow: hidden;
  background: #eadac5;
  border-left: 1px solid var(--ink);
}

.v2-hero-art picture,
.v2-hero-art img {
  width: 100%;
  height: 100%;
}

.v2-hero-art img {
  object-fit: cover;
  object-position: 50% 50%;
  transition: transform 900ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.v2-hero-art:hover img {
  transform: scale(1.018);
}

.v2-hero-art figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  min-width: min(360px, 72%);
  padding: 18px 22px;
  color: var(--white);
  background: var(--cobalt);
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 4px 18px;
}

.v2-hero-art figcaption span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.v2-hero-art figcaption strong {
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  font-weight: 600;
}

.v2-hero-art figcaption small {
  grid-column: 2;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: clamp(84px, 9vw, 140px) 0;
  border-bottom: 1px solid var(--ink);
  scroll-margin-top: 0;
}

.section-title {
  display: grid;
  margin-bottom: clamp(42px, 6vw, 78px);
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 0.65fr);
  align-items: end;
  justify-content: space-between;
  gap: 32px 8vw;
}

.section-title h2 {
  max-width: 10ch;
  margin: 0;
  color: var(--ink);
  font-size: var(--h2);
  line-height: 0.9;
}

.section-title p {
  max-width: 54ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: var(--body-lg);
}

#shop {
  order: 1;
  background: var(--paper-light);
}

#shop .section-title::before {
  content: "LA COLLEZIONE / THE COLLECTION";
  display: block;
  grid-column: 1 / -1;
  margin-bottom: -10px;
  color: var(--terracotta);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.product-card {
  position: relative;
  display: flex;
  min-width: 0;
  padding: 0 24px 28px;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--ink);
  border-radius: 0;
  box-shadow: none;
  flex-direction: column;
  overflow: visible;
}

.product-card:first-child {
  padding-left: 0;
}

.product-card:last-child {
  padding-right: 0;
  border-right: 0;
}

.product-media {
  position: relative;
  height: auto;
  margin: 0 -24px 26px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #ebdfcd;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
}

.product-card:first-child .product-media {
  margin-left: 0;
}

.product-card:last-child .product-media {
  margin-right: 0;
}

.product-media picture,
.product-media img {
  width: 100%;
  height: 100%;
}

.product-media img {
  object-fit: cover;
  object-position: 50% 44%;
  transform: scale(1.005);
  transition: transform 600ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.product-card:hover {
  box-shadow: none;
  transform: none;
}

.product-card:hover .product-media img {
  transform: scale(1.035);
}

.product-tag {
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 8px 10px;
  color: var(--white);
  background: var(--terracotta);
  border: 0;
  border-radius: 0;
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(1.9rem, 2.7vw, 2.7rem);
}

.product-card p {
  min-height: 4.8em;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

.product-benefits {
  display: flex;
  min-height: 68px;
  margin: 24px 0 18px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
  align-content: center;
  gap: 5px 12px;
}

.product-benefits span {
  padding: 0;
  color: var(--ink-soft);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.product-benefits span:not(:last-child)::after {
  content: " /";
  color: var(--terracotta);
}

.price {
  margin: 0 0 16px;
  color: var(--ink);
  font-family: "Fraunces", serif;
  font-size: 2.25rem;
  font-weight: 600;
}

.product-cta {
  width: 100%;
  margin-top: auto;
  color: var(--white);
  background: var(--terracotta);
  border-color: var(--terracotta);
}

.product-details {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  margin-top: 14px;
  padding: 2px 0;
  align-items: center;
  color: var(--ink);
  background: transparent;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

#collections {
  display: none;
}

#story {
  order: 2;
  background: var(--paper);
}

.quality-card {
  display: grid;
  padding: 0;
  background: transparent;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  box-shadow: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quality-card > div {
  min-height: 190px;
  padding: 30px;
  border-right: 1px solid var(--ink);
}

.quality-card > div:first-child {
  padding-left: 0;
}

.quality-card > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.quality-card h3 {
  margin-bottom: 12px;
  font-size: 1.65rem;
}

.quality-card p {
  line-height: 1.55;
}

.pill-row {
  display: flex;
  margin: 28px 0 clamp(62px, 8vw, 110px);
  padding: 0;
  flex-wrap: wrap;
  gap: 8px;
}

.pill-row span {
  padding: 10px 14px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--ink);
  border-radius: 0;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trust-payments {
  display: grid;
  padding: 34px 0;
  background: transparent;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  box-shadow: none;
  grid-template-columns: 0.6fr 1fr;
  gap: 14px 8vw;
}

.trust-payments h3 {
  grid-row: span 3;
  font-size: clamp(2rem, 3.5vw, 3.8rem);
}

.payment-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.payment-row span {
  padding: 7px 10px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 0;
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.payments-note {
  color: var(--ink-soft);
}

.buyer-confidence {
  display: grid;
  margin-top: clamp(52px, 7vw, 96px);
  padding: clamp(34px, 5vw, 72px);
  color: var(--white);
  background: var(--olive-deep);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  grid-template-columns: minmax(260px, 0.76fr) minmax(460px, 1.24fr);
  gap: clamp(38px, 6vw, 92px);
}

.confidence-copy .eyebrow {
  color: var(--saffron);
  font-size: 0.68rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.confidence-copy h3 {
  margin: 24px 0;
  color: var(--white);
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  line-height: 0.94;
}

.confidence-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.confidence-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.confidence-grid article {
  min-height: 150px;
  padding: 24px;
  background: transparent;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0;
}

.confidence-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--white);
}

.confidence-grid span {
  color: rgba(255, 255, 255, 0.65);
}

.device-coverage-link {
  margin-top: 28px;
}

#build {
  order: 3;
  color: var(--white);
  background: var(--cobalt);
}

#build .section-title h2,
#build .section-title p {
  color: var(--white);
}

#build .section-title p {
  color: rgba(255, 255, 255, 0.72);
}

.builder-grid {
  display: grid;
  overflow: hidden;
  background: var(--paper-light);
  border: 1px solid var(--ink);
  border-radius: 0;
  box-shadow: none;
  grid-template-columns: minmax(360px, 0.72fr) minmax(460px, 1.28fr);
  gap: 0;
}

.builder-panel {
  padding: clamp(28px, 4vw, 58px);
  color: var(--ink);
  background: var(--paper-light);
  border-right: 1px solid var(--ink);
  border-radius: 0;
  box-shadow: none;
}

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

.builder-form .field {
  gap: 8px;
}

.builder-form .field > span {
  color: var(--ink);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.builder-form select,
.builder-form input {
  min-height: 52px;
  padding: 12px 14px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--ink);
  border-radius: 0;
  box-shadow: none;
}

.personalization-field,
#customTextField {
  display: none !important;
}

.builder-actions {
  display: grid;
  margin-top: 28px;
  grid-template-columns: 1fr;
  gap: 12px;
}

.builder-actions small {
  max-width: 48ch;
  color: var(--ink-soft);
}

.compat-card {
  margin-top: 34px;
  padding: 22px 0 0;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
}

.builder-preview {
  position: relative;
  display: grid;
  min-height: 660px;
  padding: clamp(28px, 4vw, 54px);
  overflow: hidden;
  background: #e9ddca;
  border-radius: 0;
  grid-template-columns: minmax(170px, 0.46fr) minmax(300px, 1fr);
  align-items: center;
  gap: 24px;
}

.preview-card {
  position: relative;
  z-index: 2;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.preview-badge {
  display: inline-block;
  margin-bottom: 24px;
  padding-bottom: 8px;
  color: var(--terracotta);
  background: transparent;
  border-bottom: 1px solid var(--terracotta);
  border-radius: 0;
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.preview-card h3 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3.4vw, 3.7rem);
  line-height: 0.95;
}

.preview-card p {
  color: var(--ink-soft);
  line-height: 1.45;
}

.preview-price {
  margin-top: 24px;
  color: var(--ink);
  font-family: "Fraunces", serif;
  font-size: 2.6rem;
}

.preview-device {
  position: relative;
  display: grid;
  min-width: 0;
  place-items: center;
}

.v2-builder-product {
  display: block;
  width: min(100%, 450px);
}

.v2-builder-product img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 28px rgba(33, 23, 18, 0.17));
}

#builderPreviewCase,
#devicePreviewCase,
.preview-device .device-shadow {
  display: none !important;
}

#devices {
  order: 4;
  background: var(--paper);
}

.device-explorer {
  overflow: hidden;
  background: transparent;
  border: 1px solid var(--ink);
  border-radius: 0;
  box-shadow: none;
}

.device-tabs {
  display: grid;
  margin: 0;
  border-bottom: 1px solid var(--ink);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.device-tab {
  min-height: 58px;
  padding: 12px 18px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-right: 1px solid var(--ink);
  border-radius: 0;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.device-tab:last-child {
  border-right: 0;
}

.device-tab.is-active {
  color: var(--white);
  background: var(--terracotta);
}

.device-subtabs {
  display: none;
}

.device-search {
  padding: 20px;
  border-bottom: 1px solid var(--ink);
}

.device-search input {
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--ink);
  border-radius: 0;
}

.device-explorer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(400px, 1.22fr);
  gap: 0;
}

.device-groups {
  max-height: none;
  padding: clamp(24px, 4vw, 48px);
  overflow: visible;
  border-right: 1px solid var(--ink);
}

.device-group {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.device-group h3 {
  margin-bottom: 18px;
  font-size: 2rem;
}

.model-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.model-chip {
  min-height: 44px;
  padding: 10px 14px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--ink);
  border-radius: 0;
}

.model-chip.is-selected,
.model-chip:hover {
  color: var(--white);
  background: var(--olive);
}

.device-preview-panel {
  display: grid;
  min-height: 590px;
  padding: clamp(28px, 4vw, 54px);
  background: #e9ddca;
  border-radius: 0;
  place-items: center;
}

.v2-device-product {
  display: block;
  width: min(100%, 410px);
}

.v2-device-product img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 28px rgba(33, 23, 18, 0.17));
}

.device-preview-meta {
  display: flex;
  width: min(100%, 410px);
  padding-top: 20px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--ink);
}

#process {
  order: 5;
  color: var(--white);
  background: var(--terracotta);
}

#process .section-title h2 {
  color: var(--white);
}

.process-grid {
  display: grid;
  overflow: hidden;
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.process-grid article {
  min-height: 220px;
  padding: 30px 24px;
  color: var(--white);
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 0;
  box-shadow: none;
}

.process-grid article:last-child {
  border-right: 0;
}

.process-grid article::before {
  color: rgba(255, 255, 255, 0.65);
}

.process-grid h3 {
  color: var(--white);
  font-size: 1.8rem;
}

.process-grid p {
  color: rgba(255, 255, 255, 0.76);
}

#experience {
  display: none;
}

#support {
  order: 6;
  padding: clamp(64px, 7vw, 100px) 0;
  color: var(--white);
  background: var(--olive-deep);
}

#support .section-title {
  margin: 0;
}

#support .section-title h2,
#support .section-title p,
#support .section-title small {
  color: var(--white);
}

#support .section-title small {
  grid-column: 2;
  color: rgba(255, 255, 255, 0.62);
}

.faq {
  order: 7;
  background: var(--paper-light);
}

.faq-grid {
  display: grid;
  border-top: 1px solid var(--ink);
}

.faq-grid details {
  padding: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  box-shadow: none;
}

.faq-grid summary {
  padding: 24px 0;
  color: var(--ink);
  font-family: "Fraunces", serif;
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  font-weight: 600;
}

.faq-grid details p {
  max-width: 70ch;
  padding: 0 0 26px;
}

.newsletter {
  order: 8;
  padding: 0;
  background: var(--saffron);
}

.newsletter .container {
  width: 100%;
  max-width: none;
}

.newsletter-card {
  display: grid;
  padding: clamp(54px, 8vw, 112px) var(--page-pad);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  grid-template-columns: minmax(280px, 0.85fr) minmax(360px, 1.15fr);
  align-items: end;
  gap: 28px 8vw;
}

.newsletter-card h2 {
  max-width: 8ch;
  color: var(--ink);
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: 0.9;
}

.newsletter-card p {
  margin-top: 14px;
  color: var(--ink);
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
}

.newsletter-form input {
  min-width: 0;
  min-height: 54px;
  padding: 12px 16px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--ink);
  border-right: 0;
  border-radius: 0;
}

.newsletter-form .btn {
  min-height: 54px;
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.newsletter-message {
  grid-column: 2;
}

.site-footer {
  padding: 54px 0;
  color: var(--paper);
  background: var(--ink);
  border: 0;
}

.footer-inner {
  align-items: start;
  gap: 30px;
}

.site-footer .logo,
.site-footer .logo span {
  color: var(--paper);
}

.site-footer p,
.footer-rights {
  color: rgba(255, 255, 255, 0.58);
}

.footer-links {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--paper);
}

#cartClose,
.modal-close {
  min-width: 44px;
  min-height: 44px;
}

.cart-drawer {
  color: var(--ink);
  background: var(--paper-light);
  border-left: 1px solid var(--ink);
  box-shadow: none;
}

.cart-header,
.cart-summary {
  border-color: var(--ink);
}

.cart-header h3 {
  font-size: 2rem;
}

.cart-item,
.modal-panel {
  background: var(--paper-light);
  border-color: var(--ink);
  border-radius: 0;
  box-shadow: var(--shadow-strong);
}

.modal-media {
  background: #e9ddca;
}

@media (max-width: 1180px) {
  .main-nav {
    gap: 18px;
  }

  .header-actions > .btn {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  }

  .hero-content h1 {
    font-size: clamp(3.8rem, 7vw, 6rem);
  }

  .builder-grid {
    grid-template-columns: minmax(330px, 0.82fr) minmax(400px, 1.18fr);
  }

  .builder-preview {
    grid-template-columns: 1fr;
  }

  .preview-card {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 4px 18px;
  }

  .preview-badge,
  .preview-card p {
    grid-column: 1 / -1;
  }

  .preview-card h3,
  .preview-price {
    margin: 0;
  }
}

@media (max-width: 960px) {
  .site-header {
    min-height: 70px;
  }

  .header-inner {
    min-height: 47px;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    width: 100%;
    max-width: none;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-content {
    width: min(calc(100% - (var(--page-pad) * 2)), var(--max-width));
    margin: 0 auto;
    padding: 32px 0 54px;
  }

  .hero-content h1 {
    max-width: 9ch;
    font-size: clamp(4rem, 12vw, 7rem);
  }

  .v2-hero-art {
    min-height: auto;
    aspect-ratio: 3 / 2;
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .section-title {
    grid-template-columns: 1fr;
  }

  .section-title h2 {
    max-width: 12ch;
  }

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

  .product-card,
  .product-card:first-child,
  .product-card:last-child {
    display: grid;
    padding: 0;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
    grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1.1fr);
    grid-template-rows: auto auto 1fr auto auto auto;
    column-gap: clamp(24px, 5vw, 54px);
  }

  .product-card:last-child {
    border-bottom: 0;
  }

  .product-media,
  .product-card:first-child .product-media,
  .product-card:last-child .product-media {
    grid-column: 1;
    grid-row: 1 / 7;
    height: 100%;
    min-height: 580px;
    margin: 0;
    border-right: 1px solid var(--ink);
    border-bottom: 0;
  }

  .product-tag {
    left: 16px;
  }

  .product-card h3 {
    grid-column: 2;
    margin: 34px 24px 12px 0;
  }

  .product-card p,
  .product-benefits,
  .price,
  .product-cta,
  .product-details {
    grid-column: 2;
    margin-right: 24px;
  }

  .product-card p {
    min-height: 0;
  }

  .product-benefits {
    margin-top: 22px;
  }

  .product-details {
    margin-bottom: 34px;
  }

  .quality-card,
  .buyer-confidence,
  .builder-grid,
  .device-explorer-grid,
  .newsletter-card {
    grid-template-columns: 1fr;
  }

  .quality-card > div,
  .quality-card > div:first-child,
  .quality-card > div:last-child {
    min-height: 0;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .quality-card > div:last-child {
    border-bottom: 0;
  }

  .buyer-confidence {
    gap: 46px;
  }

  .builder-panel,
  .device-groups {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .builder-preview {
    min-height: 620px;
    grid-template-columns: minmax(160px, 0.45fr) minmax(300px, 1fr);
  }

  .preview-card {
    display: block;
  }

  .preview-card h3 {
    margin-bottom: 12px;
  }

  .preview-price {
    margin-top: 24px;
  }

  .device-preview-panel {
    min-height: 640px;
  }

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

  .process-grid article:nth-child(2) {
    border-right: 0;
  }

  .process-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  }

  .newsletter-message {
    grid-column: 1;
  }
}

@media (max-width: 680px) {
  .grain {
    display: none;
  }

  .v2-builder-product img,
  .v2-device-product img {
    filter: none;
  }

  :root {
    --page-pad: 18px;
    --h1: clamp(3.55rem, 18vw, 5.4rem);
    --h2: clamp(2.85rem, 14vw, 4.4rem);
  }

  html {
    scroll-padding-top: 68px;
  }

  body {
    font-size: 15px;
  }

  .site-header {
    padding: 8px 0;
  }

  .header-inner {
    min-height: 44px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
  }

  .logo {
    gap: 7px;
    font-size: 0.78rem;
  }

  .logo img {
    width: 38px;
    height: 38px;
  }

  .header-actions {
    width: auto;
    margin-left: auto;
    gap: 6px;
  }

  .lang-select {
    display: none;
  }

  .cart-btn {
    width: auto;
    min-height: 40px;
    padding: 7px 10px;
    font-size: 0.72rem;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-content {
    padding: 22px 0 42px;
  }

  .hero-content h1 {
    margin: 20px 0 24px;
    font-size: var(--h1);
    line-height: 0.86;
  }

  .hero-content > p {
    font-size: 1.02rem;
  }

  .hero-trust {
    grid-template-columns: 1fr;
  }

  .trust-pill,
  .trust-pill:nth-child(2),
  .trust-pill:last-child {
    min-height: 0;
    padding: 12px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-pill:last-child {
    border-bottom: 0;
  }

  .hero-ctas {
    width: 100%;
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .hero-stats {
    padding-top: 38px;
  }

  .hero-stats > div,
  .hero-stats > div + div {
    padding: 12px 8px 0;
  }

  .hero-stats > div:first-child {
    padding-left: 0;
  }

  .hero-stats strong {
    font-size: 1.8rem;
  }

  .hero-stats span {
    font-size: 0.56rem;
  }

  .v2-hero-art {
    aspect-ratio: 1 / 1;
  }

  .v2-hero-art img {
    object-position: 50% 50%;
  }

  .v2-hero-art figcaption {
    width: 100%;
    min-width: 0;
    padding: 14px 18px;
  }

  .section {
    padding: 74px 0;
  }

  .section-title {
    margin-bottom: 38px;
    gap: 22px;
  }

  .section-title h2 {
    font-size: var(--h2);
  }

  .product-card,
  .product-card:first-child,
  .product-card:last-child {
    display: flex;
    padding: 0 0 34px;
  }

  .product-media,
  .product-card:first-child .product-media,
  .product-card:last-child .product-media {
    width: 100%;
    min-height: 0;
    margin: 0 0 24px;
    aspect-ratio: 4 / 5;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .product-card h3,
  .product-card p,
  .product-benefits,
  .price,
  .product-cta,
  .product-details {
    width: 100%;
    margin-right: 0;
  }

  .product-card h3 {
    margin-top: 0;
  }

  .product-card + .product-card {
    padding-top: 34px;
  }

  .quality-card > div,
  .quality-card > div:first-child,
  .quality-card > div:last-child {
    padding: 24px 0;
  }

  .trust-payments {
    grid-template-columns: 1fr;
  }

  .trust-payments h3 {
    grid-row: auto;
  }

  .buyer-confidence {
    margin-right: calc(var(--page-pad) * -1);
    margin-left: calc(var(--page-pad) * -1);
    padding: 46px var(--page-pad);
  }

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

  .builder-form {
    grid-template-columns: 1fr;
  }

  .builder-panel {
    padding: 26px 20px;
  }

  .builder-preview {
    min-height: auto;
    padding: 34px 20px 44px;
    grid-template-columns: 1fr;
  }

  .preview-card {
    width: 100%;
  }

  .v2-builder-product {
    width: min(100%, 360px);
  }

  .device-search {
    padding: 16px;
  }

  .device-groups,
  .device-preview-panel {
    padding: 24px 20px;
  }

  .device-preview-panel {
    min-height: auto;
  }

  .v2-device-product {
    width: min(100%, 340px);
  }

  .device-preview-meta {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

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

  .process-grid article,
  .process-grid article:nth-child(2),
  .process-grid article:nth-child(-n + 2) {
    min-height: 0;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  }

  .process-grid article:last-child {
    border-bottom: 0;
  }

  #support .section-title small {
    grid-column: 1;
  }

  .newsletter-card {
    padding: 68px var(--page-pad);
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .newsletter-form input {
    border-right: 1px solid var(--ink);
    border-bottom: 0;
  }

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

@media (prefers-reduced-motion: reduce) {
  .v2-hero-art img,
  .product-media img,
  .btn {
    transition: none;
  }

  .v2-hero-art:hover img,
  .product-card:hover .product-media img,
  .btn:hover {
    transform: none;
  }
}

@media (min-width: 761px) and (max-width: 960px) {
  .hero {
    padding-top: 0;
  }

  .hero-grid {
    display: grid;
    width: 100%;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: stretch;
  }

  .hero-content {
    width: auto;
    margin: 0;
    padding: 44px 30px 42px var(--page-pad);
  }

  .hero-content h1 {
    max-width: 8ch;
    margin: 26px 0 24px;
    font-size: clamp(3.35rem, 7vw, 4.15rem);
    line-height: 0.86;
  }

  .hero-content > p {
    font-size: 0.98rem;
  }

  .hero-trust {
    margin-top: 22px;
    grid-template-columns: 1fr;
  }

  .trust-pill,
  .trust-pill:nth-child(2),
  .trust-pill:last-child {
    min-height: 0;
    padding: 9px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-pill:last-child {
    border-bottom: 0;
  }

  .hero-ctas {
    width: 100%;
    margin-top: 22px;
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .hero-stats {
    display: none;
  }

  .v2-hero-art {
    min-height: 700px;
    aspect-ratio: auto;
    border-top: 0;
    border-left: 1px solid var(--ink);
  }

  .v2-hero-art figcaption {
    width: 100%;
    min-width: 0;
  }
}
