:root {
  --ink: #0a1b2c;
  --ink-soft: #17324c;
  --blue: #1459c7;
  --blue-bright: #1c70ff;
  --yellow: #ffd421;
  --yellow-soft: #fff3a8;
  --paper: #fafaf7;
  --white: #ffffff;
  --mist: #edf2f5;
  --line: #dbe3e7;
  --muted: #5d6a76;
  --success: #2ecc71;
  --italia-green: #008c45;
  --italia-red: #cd212a;
  --radius: 1.35rem;
  --shadow: 0 24px 70px rgb(10 27 44 / 12%);
  --shell: min(1280px, calc(100% - 64px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

img {
  display: block;
  max-width: 100%;
}

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

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  padding: 0.7rem 1rem;
  font-weight: 900;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

section[id] {
  scroll-margin-top: 120px;
}

.italian-ribbon {
  display: grid;
  height: 5px;
  grid-template-columns: repeat(3, 1fr);
}

.italian-ribbon span:nth-child(1),
.mini-tricolore i:nth-child(1) {
  background: var(--italia-green);
}

.italian-ribbon span:nth-child(2),
.mini-tricolore i:nth-child(2) {
  background: #fff;
}

.italian-ribbon span:nth-child(3),
.mini-tricolore i:nth-child(3) {
  background: var(--italia-red);
}

.utility-bar {
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.utility-bar__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.utility-bar__origin {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.utility-bar__mobile {
  display: none;
}

.mini-tricolore {
  display: inline-grid;
  width: 27px;
  height: 16px;
  overflow: hidden;
  flex: 0 0 auto;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgb(10 27 44 / 18%);
  border-radius: 3px;
  box-shadow: 0 2px 7px rgb(10 27 44 / 10%);
}

.mini-tricolore i {
  display: block;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgb(255 255 255 / 12%);
  background: rgb(10 27 44 / 96%);
  color: white;
  backdrop-filter: blur(16px);
}

.admin-bar .site-header {
  top: 32px;
}

.site-header__inner {
  display: grid;
  min-height: 78px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-header__actions {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 999px;
  background: rgb(255 255 255 / 5%);
  padding: 0.23rem;
  color: #b9c7d1;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.language-switcher a,
.language-switcher span {
  display: grid;
  min-width: 34px;
  min-height: 30px;
  place-items: center;
  border-radius: 999px;
}

.language-switcher a:hover {
  color: #fff;
}

.language-switcher [aria-current="page"] {
  background: #fff;
  color: var(--ink);
}

.brand-mark {
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: center;
  color: white;
  font-weight: 950;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.brand-mark__dream {
  font-size: 1.55rem;
}

.brand-mark__k {
  display: grid;
  width: 1.55rem;
  height: 1.55rem;
  margin-left: 0.16rem;
  place-items: center;
  border-radius: 0.32rem 0.32rem 0.75rem 0.32rem;
  background: var(--yellow);
  color: var(--ink);
  font-size: 1.16rem;
  letter-spacing: -0.03em;
}

.brand-mark__caption {
  grid-column: 1 / -1;
  margin-top: 0.36rem;
  color: #a9bbc9;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.brand-mark--compact .brand-mark__dream {
  font-size: 1.8rem;
}

.brand-mark--compact .brand-mark__k {
  width: 1.8rem;
  height: 1.8rem;
  font-size: 1.3rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 2rem);
  color: #d7e1e8;
  font-size: 0.9rem;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
  padding-block: 0.5rem;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--yellow);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.78rem 1.15rem;
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.2;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--dark {
  background: white;
  color: var(--ink);
  box-shadow: 0 7px 28px rgb(0 0 0 / 18%);
}

.button--yellow {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 16px 38px rgb(255 212 33 / 20%);
}

.button--yellow:hover {
  box-shadow: 0 20px 45px rgb(255 212 33 / 32%);
}

.button--ghost {
  border-color: rgb(255 255 255 / 42%);
  color: white;
}

.button--large {
  min-height: 58px;
  padding-inline: 1.5rem;
  font-size: 1rem;
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  display: grid;
  width: 44px;
  height: 44px;
  cursor: pointer;
  list-style: none;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 50%;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu nav {
  position: absolute;
  top: 54px;
  right: 0;
  display: grid;
  width: min(300px, calc(100vw - 40px));
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 1rem;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.mobile-menu__title {
  display: block;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
  color: var(--yellow);
  padding: 1rem;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobile-menu nav a {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
  padding: 0.8rem 1rem;
  font-weight: 700;
}

.mobile-menu nav a:hover {
  background: rgb(255 255 255 / 7%);
}

.mobile-menu nav .mobile-menu__order {
  border-bottom: 0;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 900;
}

.mobile-menu__language {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
  background: rgb(255 255 255 / 5%);
}

.mobile-menu nav .mobile-menu__language a,
.mobile-menu nav .mobile-menu__language strong {
  display: block;
  border: 0;
  padding: 0.8rem 1rem;
  color: #cbd6de;
  font-size: 0.78rem;
  text-align: center;
}

.mobile-menu__language strong {
  background: var(--yellow);
  color: var(--ink);
}

.mobile-action-bar {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 685px;
  background: var(--ink);
  color: white;
}

.hero::after {
  position: absolute;
  z-index: 1;
  right: -20%;
  bottom: -45%;
  width: 62vw;
  height: 62vw;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 50%;
  content: "";
}

.hero__pattern,
.closing-cta__pattern {
  position: absolute;
  z-index: 1;
  inset: 0;
  opacity: 0.06;
  background-image:
    linear-gradient(135deg, transparent 0 46%, var(--yellow) 46% 51%, transparent 51% 100%),
    linear-gradient(45deg, transparent 0 46%, #56c8e9 46% 51%, transparent 51% 100%);
  background-position: 0 0, 46px 0;
  background-size: 92px 92px;
  mask-image: linear-gradient(to right, transparent 0%, black 78%);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 685px;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
}

.hero__copy {
  position: relative;
  z-index: 3;
  max-width: 660px;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.145em;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 28px;
  height: 3px;
  margin: 0 0.65rem 0.2rem 0;
  background: linear-gradient(90deg, var(--italia-green) 0 33.33%, #f7f7f3 33.33% 66.66%, var(--italia-red) 66.66% 100%);
  box-shadow: 0 0 0 1px rgb(10 27 44 / 8%);
  content: "";
}

.eyebrow--light {
  color: var(--yellow);
}

.hero h1,
.product-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3.4rem, 7vw, 6.7rem);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 0.91;
}

.hero h1 span {
  display: block;
  color: var(--yellow);
}

.hero__lead {
  max-width: 620px;
  margin: 1.7rem 0 0;
  color: #ccd7df;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.1rem;
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.5rem;
  margin: 2rem 0 0;
  padding: 0;
  color: #d6e1e8;
  font-size: 0.88rem;
  font-weight: 700;
  list-style: none;
}

.hero__facts li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero__facts svg {
  color: var(--yellow);
}

.hero__artwork {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
}

.hero__artwork img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(8 20 35 / 99%) 0%, rgb(8 20 35 / 92%) 38%, rgb(8 20 35 / 24%) 66%, rgb(8 20 35 / 5%) 100%),
    linear-gradient(0deg, rgb(8 20 35 / 40%) 0%, transparent 38%);
}

.hero__badge {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 3.5rem;
  display: grid;
  width: 124px;
  height: 124px;
  place-content: center;
  border: 1px solid rgb(255 255 255 / 40%);
  border-radius: 50%;
  background: rgb(10 27 44 / 82%);
  color: #d8e4eb;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-align: center;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.hero__badge span {
  color: var(--yellow);
  font-size: 2.4rem;
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 1;
}

.proof-strip {
  border-bottom: 1px solid var(--line);
  background: white;
}

.proof-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-strip__grid div {
  display: flex;
  min-height: 118px;
  align-items: baseline;
  justify-content: center;
  gap: 0.6rem;
  border-right: 1px solid var(--line);
  padding: 1.5rem;
}

.proof-strip__grid div:first-child {
  border-left: 1px solid var(--line);
}

.proof-strip strong {
  color: var(--blue);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 950;
  letter-spacing: -0.07em;
}

.proof-strip span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding-block: clamp(4.5rem, 7vw, 6.75rem);
}

.section-heading {
  max-width: 880px;
  margin-bottom: clamp(2.25rem, 4vw, 3.5rem);
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.italian-story h2,
.faq-layout h2,
.closing-cta h2,
.content-prose h2,
.product-copy h2 {
  margin: 0;
  font-size: clamp(2.35rem, 4.4vw, 4.15rem);
  font-weight: 950;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.section-heading p,
.faq-layout__intro > p {
  max-width: 720px;
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.range-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.range-card {
  position: relative;
  display: grid;
  min-height: 575px;
  overflow: hidden;
  border-radius: calc(var(--radius) * 1.2);
  isolation: isolate;
}

.range-card__copy {
  position: relative;
  z-index: 4;
  align-self: end;
  max-width: 78%;
  padding: clamp(2rem, 4vw, 3.2rem);
}

.range-card h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 1;
}

.range-card p {
  margin: 1rem 0 1.5rem;
  line-height: 1.6;
}

.range-card__index {
  position: absolute;
  right: -0.1em;
  bottom: -0.26em;
  z-index: -1;
  color: rgb(10 27 44 / 7%);
  font-size: 13rem;
  font-weight: 950;
  letter-spacing: -0.1em;
  line-height: 1;
}

.range-card__image {
  position: absolute;
  top: -10%;
  right: -8%;
  width: 69%;
  transform: rotate(-8deg);
}

.range-card__image img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  mix-blend-mode: multiply;
}

.range-card--classic {
  border: 1px solid #d7e2e8;
  background: #eaf5f8;
}

.range-card--tribe {
  background: var(--blue);
  color: white;
}

.range-card--tribe::before {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image: linear-gradient(135deg, transparent 0 43%, white 43% 50%, transparent 50% 100%);
  background-size: 74px 74px;
  content: "";
}

.range-card--tribe::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(90deg, var(--blue) 0 46%, rgb(20 89 199 / 88%) 57%, transparent 79%);
  content: "";
  pointer-events: none;
}

.range-card--tribe p {
  color: #dbe9ff;
}

.range-card--tribe .range-card__copy {
  max-width: 64%;
}

.range-card--tribe .range-card__index {
  color: rgb(255 255 255 / 8%);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-bottom: 2px solid currentColor;
  padding-bottom: 0.18rem;
  font-weight: 900;
  line-height: 1.25;
}

.text-link svg {
  transition: transform 160ms ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.section--features {
  background: white;
}

.feature-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: clamp(3rem, 8vw, 7rem);
}

.feature-layout .section-heading {
  margin-bottom: 2rem;
}

.fact-list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fact-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 750;
}

.fact-list li span {
  display: grid;
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.feature-card {
  position: relative;
  min-height: 245px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2.1rem;
}

.feature-card > svg {
  color: var(--blue);
}

.feature-card__number {
  position: absolute;
  top: 1.2rem;
  right: 1.35rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.feature-card h3 {
  margin: 2.2rem 0 0.65rem;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.palette-preview {
  overflow: hidden;
  background: #eff4f6;
}

.palette-preview__bands {
  display: grid;
  gap: 1rem;
}

.palette-band {
  display: grid;
  grid-template-columns: 210px 1fr;
  align-items: center;
  gap: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 1.35rem;
  box-shadow: 0 12px 40px rgb(10 27 44 / 5%);
}

.palette-band__title {
  display: grid;
  gap: 0.15rem;
}

.palette-band__title span {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.palette-band__title strong {
  font-size: 1.05rem;
}

.palette-band__swatches {
  display: grid;
  grid-template-columns: repeat(13, 1fr);
  gap: 0.5rem;
}

.palette-band__swatches > span {
  min-width: 24px;
  aspect-ratio: 1;
  border: 1px solid rgb(10 27 44 / 12%);
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px rgb(255 255 255 / 56%);
}

.palette-band:first-child .palette-band__swatches {
  grid-template-columns: repeat(6, minmax(36px, 1fr));
}

.palette-preview__link {
  margin-top: 1.8rem;
  text-align: right;
}

.italian-story {
  background: white;
}

.italian-story__grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) 1.08fr;
  align-items: center;
  gap: clamp(3rem, 6vw, 5.5rem);
}

.italian-story__visual {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: calc(var(--radius) * 1.25);
  background:
    linear-gradient(90deg, var(--italia-green) 0 33.33%, #fff 33.33% 66.66%, var(--italia-red) 66.66% 100%) top / 100% 10px no-repeat,
    radial-gradient(circle at 74% 35%, #fff 0 24%, transparent 58%),
    #f1f4f2;
  box-shadow: 0 26px 70px rgb(10 27 44 / 12%);
}

.italian-story__visual::after {
  position: absolute;
  right: -20%;
  bottom: -38%;
  width: 88%;
  aspect-ratio: 1;
  border: 1px solid rgb(10 27 44 / 10%);
  border-radius: 50%;
  content: "";
}

.italian-story__sixtus {
  position: absolute;
  z-index: 4;
  top: 2rem;
  left: 2rem;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  padding: 0.65rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1;
}

.italian-story__image {
  position: absolute;
  z-index: 2;
  right: -1%;
  bottom: 1%;
  width: 78%;
  transform: rotate(-6deg);
  filter: drop-shadow(0 30px 38px rgb(10 27 44 / 20%));
}

.italian-story__image img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  mix-blend-mode: multiply;
}

.italian-story__stamp {
  position: absolute;
  z-index: 4;
  left: 2rem;
  bottom: 2rem;
  border: 1px solid rgb(10 27 44 / 26%);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.italian-story h2 {
  max-width: 11ch;
  font-size: clamp(2.8rem, 4.25vw, 4.35rem);
}

.italian-story__grid > div:last-child > p {
  color: var(--muted);
  font-size: 1.05rem;
}

.italian-story__signature {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-top: 2rem;
  border-left: 4px solid var(--italia-green);
  background: #f4f7f8;
  padding: 1.15rem 1.3rem;
}

.italian-story__signature svg {
  flex: 0 0 auto;
  color: var(--blue);
}

.section--steps {
  background: var(--ink);
  color: white;
}

.section--steps .section-heading p {
  color: #b7c5d0;
}

.section--steps .eyebrow {
  color: var(--yellow);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid rgb(255 255 255 / 18%);
  list-style: none;
}

.steps-grid li {
  min-height: 285px;
  border-right: 1px solid rgb(255 255 255 / 18%);
  padding: 2rem 1.6rem;
}

.steps-grid li:first-child {
  border-left: 1px solid rgb(255 255 255 / 18%);
}

.steps-grid li > span {
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.steps-grid h3 {
  margin: 4.5rem 0 0.65rem;
  font-size: 1.45rem;
}

.steps-grid p {
  margin: 0;
  color: #b7c5d0;
  font-size: 0.94rem;
}

.steps-grid__link {
  margin-top: 2rem;
  color: var(--yellow);
  text-align: right;
}

.section--faq {
  background: var(--paper);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: clamp(3rem, 8vw, 7rem);
}

.faq-layout__intro {
  position: sticky;
  top: 130px;
}

.faq-layout__intro .text-link {
  margin-top: 1.6rem;
}

.faq-list {
  border-top: 1px solid #bdcbd4;
}

.faq-list details {
  border-bottom: 1px solid #bdcbd4;
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 1.4rem 3rem 1.4rem 0;
  font-size: 1.08rem;
  font-weight: 850;
  line-height: 1.4;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 0.2rem;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid #a9b8c3;
  border-radius: 50%;
  content: "+";
  font-size: 1.25rem;
  font-weight: 500;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details > div {
  max-width: 700px;
  padding: 0 3rem 1.5rem 0;
  color: var(--muted);
}

.faq-list p {
  margin: 0;
}

.closing-cta {
  position: relative;
  overflow: hidden;
  background: var(--blue);
  color: white;
}

.closing-cta__pattern {
  opacity: 0.13;
  mask-image: linear-gradient(to right, transparent, black);
}

.closing-cta__inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 330px;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding-block: 4rem;
}

.closing-cta h2 {
  max-width: 720px;
}

.closing-cta p {
  max-width: 690px;
  margin-bottom: 0;
  color: #d8e6ff;
}

.site-footer {
  background: #071421;
  color: #c9d4dc;
  padding-top: 4.5rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.95fr 1.25fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 4rem;
}

.site-footer__intro {
  max-width: 300px;
  margin-top: 1.4rem;
  color: #8fa3b2;
  font-size: 0.9rem;
}

.footer-origin {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.25rem;
  color: #d3dce3;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-origin .mini-tricolore {
  border-color: rgb(255 255 255 / 18%);
  box-shadow: none;
}

.site-footer h2 {
  margin: 0 0 1rem;
  color: white;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__grid > div > a {
  display: block;
  margin: 0.55rem 0;
  color: #aebdc8;
  font-size: 0.9rem;
}

.site-footer__grid > div > a:hover {
  color: var(--yellow);
}

.site-footer__disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 1rem;
  background: rgb(255 255 255 / 4%);
  padding: 1rem;
}

.site-footer__disclaimer svg {
  flex: 0 0 auto;
  color: var(--yellow);
}

.site-footer__disclaimer p {
  margin: 0;
  font-size: 0.82rem;
}

.site-footer__bottom {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgb(255 255 255 / 10%);
  color: #7f94a4;
  font-size: 0.78rem;
}

/* Interior pages */

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding-block: 1.1rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.breadcrumbs > span {
  display: flex;
  gap: 0.55rem;
}

.product-hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.product-hero--tribe {
  background: var(--blue);
}

.product-hero__grid {
  display: grid;
  min-height: 540px;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  padding-block: 3.75rem;
}

.product-hero h1 {
  max-width: 760px;
  font-size: clamp(3.2rem, 6vw, 5.35rem);
}

.product-hero h1 span {
  display: block;
  color: var(--yellow);
}

.product-hero__lead {
  max-width: 660px;
  color: #c9d7e0;
  font-size: 1.1rem;
}

.product-hero__visual {
  position: relative;
  min-height: 430px;
}

.product-hero__visual::before {
  position: absolute;
  top: 6%;
  right: 9%;
  width: 82%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--yellow);
  content: "";
}

.product-hero__image {
  position: absolute;
  z-index: 2;
  inset: 0 4% auto auto;
  width: 84%;
  transform: rotate(-5deg);
  filter: drop-shadow(0 30px 38px rgb(0 0 0 / 22%));
}

.product-hero__image {
  display: block;
}

.product-hero__image img {
  display: block;
  width: 100%;
  border-radius: 50%;
  height: auto;
  mix-blend-mode: multiply;
}

.product-hero__tag {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 1rem;
  border-radius: 999px;
  background: white;
  color: var(--ink);
  padding: 0.55rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.colour-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.colour-grid--tribe {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.colour-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: white;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.colour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgb(10 27 44 / 10%);
}

.colour-card__visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: #fafaf7;
}

.colour-card__visual picture,
.colour-card__visual img {
  width: 100%;
  height: 100%;
}

.colour-card__visual img {
  object-fit: cover;
  transform: scale(1.035);
}

/* The Classic source photographs place the roll in the upper-left of the
   square canvas. These calibrated offsets centre the visible product rather
   than merely centring the surrounding white image canvas. */
.colour-grid--classic .colour-card__visual {
  background: #fff;
}

.colour-grid--classic .colour-card:nth-child(1) .colour-card__visual img,
.colour-grid--classic .colour-card:nth-child(2) .colour-card__visual img,
.colour-grid--classic .colour-card:nth-child(3) .colour-card__visual img {
  transform: translate(20.5%, 22.5%) scale(1.035);
}

.colour-grid--classic .colour-card:nth-child(4) .colour-card__visual img {
  transform: translate(16%, 17.5%) scale(1.035);
}

.colour-grid--classic .colour-card:nth-child(5) .colour-card__visual img {
  transform: translate(15%, 17.25%) scale(1.005);
}

.colour-grid--classic .colour-card:nth-child(6) .colour-card__visual img {
  transform: translate(8.25%, 8.85%) scale(0.87);
}

.colour-card__number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-size: 0.72rem;
  font-weight: 900;
}

.colour-card__copy {
  position: relative;
  align-content: start;
  padding: 1.25rem 1.35rem 1.45rem;
}

.colour-card__copy h3 {
  margin: 0.7rem 0 0;
  font-size: 1.05rem;
  line-height: 1.25;
}

.colour-card__copy p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.colour-dots {
  display: flex;
  gap: 0.4rem;
}

.colour-dots > span {
  width: 21px;
  height: 21px;
  border: 1px solid rgb(10 27 44 / 15%);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px white;
}

.section--tribe-collection {
  padding-bottom: 0;
  background: white;
}

.tribe-collection {
  overflow: hidden;
  border-radius: 1.5rem;
  background: white;
  box-shadow: 0 20px 60px rgb(10 27 44 / 10%);
}

.tribe-collection__copy {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  align-items: end;
  gap: 2rem;
  background: linear-gradient(115deg, var(--ink), var(--blue));
  color: white;
  padding: clamp(1.8rem, 4vw, 3rem);
}

.tribe-collection__copy .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -0.8rem;
  color: var(--yellow);
}

.tribe-collection__copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.25vw, 3.8rem);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.tribe-collection__copy p {
  margin: 0;
  color: #d6e4ef;
  font-size: 1.05rem;
}

.tribe-collection__picture,
.tribe-collection__picture img {
  display: block;
  width: 100%;
}

.tribe-collection__picture {
  padding: clamp(1rem, 3vw, 2.5rem);
  background: #fff;
}

.format-visual-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.format-visual-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: white;
  box-shadow: 0 12px 36px rgb(10 27 44 / 5%);
}

.format-visual-card__image {
  display: grid;
  aspect-ratio: 1;
  overflow: hidden;
  place-items: center;
  background: #fff;
  padding: 0;
}

.format-visual-card__image picture,
.format-visual-card__image img {
  display: block;
  width: 100%;
  height: 100%;
}

.format-visual-card__image img {
  object-fit: contain;
}

/* The four source photos use different product scales and white margins.
   These calibrated transforms align the visible products as one series. */
.format-visual-card:nth-child(1) .format-visual-card__image img {
  transform: scale(0.78);
}

.format-visual-card:nth-child(2) .format-visual-card__image img {
  transform: translateY(20.5%) scale(0.98);
}

.format-visual-card:nth-child(3) .format-visual-card__image img {
  transform: translateY(16.5%) scale(0.86);
}

.format-visual-card:nth-child(4) .format-visual-card__image img {
  transform: scale(0.82);
}

.format-visual-card__copy {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  padding: 1.2rem 1.25rem 1.35rem;
}

.format-visual-card__copy > span {
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.format-visual-card__copy h3 {
  margin: 0.35rem 0 0;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.format-visual-card__copy p {
  min-height: 2.9rem;
  margin: 0.55rem 0;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.45;
}

.format-visual-card__copy strong {
  display: block;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.45;
  margin-top: 0.35rem;
}

.format-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.format-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  text-align: left;
}

.format-table th,
.format-table td {
  border-bottom: 1px solid var(--line);
  padding: 1.2rem 1.35rem;
  vertical-align: top;
}

.format-table tr:last-child td {
  border-bottom: 0;
}

.format-table th {
  background: var(--ink);
  color: white;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.format-table td:first-child {
  color: var(--blue);
  font-weight: 900;
  white-space: nowrap;
}

.info-callout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  border-left: 5px solid var(--yellow);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: white;
  padding: 1.4rem 1.5rem;
  box-shadow: 0 12px 40px rgb(10 27 44 / 5%);
}

.info-callout svg {
  color: var(--blue);
}

.info-callout h3,
.info-callout p {
  margin: 0;
}

.info-callout p {
  margin-top: 0.3rem;
  color: var(--muted);
}

.content-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: start;
  gap: clamp(3rem, 8vw, 7rem);
}

.content-grid__aside {
  position: sticky;
  top: 130px;
}

.content-prose {
  max-width: 800px;
}

.editor-content-section {
  border-top: 1px solid var(--line);
  background: #fff;
}

.content-prose h2 {
  margin-top: 3.5rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.content-prose h2:first-child {
  margin-top: 0;
}

.content-prose h3 {
  margin: 2rem 0 0.5rem;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.content-prose p,
.content-prose li {
  color: #465767;
  font-size: 1.04rem;
}

.content-prose ul,
.content-prose ol {
  padding-left: 1.3rem;
}

.numbered-guide {
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
  padding: 0;
  counter-reset: steps;
  list-style: none;
}

.numbered-guide li {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: white;
  padding: 1.25rem 1.25rem 1.25rem 4.2rem;
  counter-increment: steps;
}

.numbered-guide li::before {
  position: absolute;
  top: 1.1rem;
  left: 1.15rem;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  content: counter(steps, decimal-leading-zero);
  font-size: 0.7rem;
  font-weight: 950;
}

.article-hero {
  background: #eaf1f4;
  padding-block: clamp(3.75rem, 6vw, 5.75rem);
}

.article-hero__inner {
  max-width: 850px;
}

.article-hero h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.25rem);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 0.94;
}

.article-hero p {
  max-width: 750px;
  color: var(--muted);
  font-size: 1.12rem;
}

.visual-note {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--blue);
  color: white;
  padding: 2rem;
}

.visual-note::after {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 140px;
  height: 140px;
  border: 24px solid var(--yellow);
  border-radius: 50%;
  content: "";
}

.visual-note h2 {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
}

.visual-note p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #d8e6ff;
}

.application-showcase {
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.application-showcase__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: end;
  gap: clamp(2rem, 7vw, 6rem);
  margin-bottom: 2.5rem;
}

.application-showcase__heading .eyebrow {
  color: var(--yellow);
}

.application-showcase__heading h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  letter-spacing: -0.07em;
  line-height: 0.94;
}

.application-showcase__heading > p {
  margin: 0;
  color: #c8d6e0;
  font-size: 1.04rem;
}

.application-gallery {
  columns: 3 280px;
  column-gap: 1rem;
}

.application-card {
  display: inline-block;
  width: 100%;
  overflow: hidden;
  break-inside: avoid;
  margin: 0 0 1rem;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 1.15rem;
  background: white;
  box-shadow: 0 18px 50px rgb(0 0 0 / 20%);
}

.application-card__picture,
.application-card__picture img {
  display: block;
  width: 100%;
}

.application-card__picture img {
  height: auto;
}

.application-card figcaption {
  color: var(--ink);
  padding: 0.85rem 1rem 1rem;
  font-size: 0.8rem;
  font-weight: 850;
  line-height: 1.35;
}

.application-showcase__notice {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-top: 1.5rem;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 1rem;
  background: rgb(255 255 255 / 7%);
  padding: 1.15rem 1.25rem;
}

.application-showcase__notice svg {
  flex: 0 0 auto;
  color: var(--yellow);
}

.application-showcase__notice p {
  margin: 0;
  color: #d5e2ea;
}

@media (max-width: 1050px) {
  :root {
    --shell: min(100% - 40px, 1180px);
  }

  .colour-grid--tribe {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .desktop-nav {
    gap: 1rem;
    font-size: 0.82rem;
  }

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

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

  .site-footer__grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .site-footer__disclaimer {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .desktop-nav,
  .site-header__actions {
    display: none;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .mobile-header__actions {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .mobile-menu nav {
    top: 55px;
    right: 0;
    width: calc(100vw - 40px);
  }

  .hero__grid,
  .product-hero__grid,
  .italian-story__grid,
  .feature-layout,
  .faq-layout,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .hero__artwork img {
    object-position: 62% center;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgb(8 20 35 / 99%) 0%, rgb(8 20 35 / 94%) 46%, rgb(8 20 35 / 42%) 78%, rgb(8 20 35 / 24%) 100%),
      linear-gradient(0deg, rgb(8 20 35 / 48%) 0%, transparent 45%);
  }

  .tribe-collection__copy {
    grid-template-columns: 1fr;
  }

  .application-showcase__heading {
    grid-template-columns: 1fr;
  }

  .proof-strip__grid {
    grid-template-columns: 1fr 1fr;
  }

  .proof-strip__grid div:first-child,
  .proof-strip__grid div:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .proof-strip__grid div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .range-card__copy {
    max-width: 68%;
  }

  .range-card--tribe .range-card__copy {
    max-width: 60%;
  }

  .italian-story__visual {
    min-height: 510px;
  }

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

  .steps-grid li:nth-child(2) {
    border-right: 1px solid rgb(255 255 255 / 18%);
  }

  .steps-grid li:nth-child(-n + 2) {
    border-bottom: 1px solid rgb(255 255 255 / 18%);
  }

  .faq-layout__intro,
  .content-grid__aside {
    position: static;
  }

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

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 760px) {
  .site-page {
    padding-bottom: calc(74px + env(safe-area-inset-bottom));
  }

  .mobile-action-bar {
    position: fixed;
    z-index: 70;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgb(255 255 255 / 18%);
    background: rgb(7 20 33 / 96%);
    color: white;
    padding: 0.45rem max(0.55rem, env(safe-area-inset-right)) calc(0.45rem + env(safe-area-inset-bottom)) max(0.55rem, env(safe-area-inset-left));
    box-shadow: 0 -14px 42px rgb(7 20 33 / 22%);
    backdrop-filter: blur(18px);
  }

  .mobile-action-bar::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--italia-green) 0 33.33%, #fff 33.33% 66.66%, var(--italia-red) 66.66% 100%);
    content: "";
  }

  .mobile-action-bar > a {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 56px;
    align-items: center;
    gap: 0.65rem;
    border-radius: 0.85rem;
    padding: 0.5rem 0.65rem;
  }

  .mobile-action-bar > a:last-child {
    background: var(--yellow);
    color: var(--ink);
  }

  .mobile-action-bar > a > svg {
    flex: 0 0 auto;
  }

  .mobile-action-bar > a > span {
    display: grid;
    min-width: 0;
    line-height: 1.1;
  }

  .mobile-action-bar small {
    color: #9eb0bd;
    font-size: 0.62rem;
    font-weight: 750;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .mobile-action-bar a:last-child small {
    color: rgb(10 27 44 / 64%);
  }

  .mobile-action-bar strong {
    overflow: hidden;
    margin-top: 0.2rem;
    font-size: 0.78rem;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-action-bar__external {
    position: absolute;
    top: 0.55rem;
    right: 0.55rem;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: min(100% - 28px, 1180px);
    --radius: 1.05rem;
  }

  .utility-bar__desktop {
    display: none;
  }

  .utility-bar__inner {
    min-height: 31px;
    justify-content: center;
    text-align: center;
  }

  .utility-bar__full {
    display: none;
  }

  .utility-bar__mobile {
    display: inline;
  }

  .utility-bar__origin {
    gap: 0.5rem;
    font-size: 0.68rem;
    letter-spacing: 0.075em;
  }

  .mini-tricolore {
    width: 24px;
    height: 14px;
  }

  .site-header__inner {
    min-height: 66px;
  }

  .brand-mark__caption {
    display: none;
  }

  .brand-mark__dream {
    font-size: 1.4rem;
  }

  .brand-mark__k {
    width: 1.45rem;
    height: 1.45rem;
    font-size: 1.05rem;
  }

  .language-switcher--mobile {
    padding: 0.18rem;
  }

  .language-switcher--mobile a,
  .language-switcher--mobile span {
    min-width: 31px;
    min-height: 32px;
  }

  .mobile-menu summary {
    width: 42px;
    height: 42px;
  }

  .mobile-menu nav {
    top: 54px;
    width: calc(100vw - 28px);
    max-height: calc(100svh - 116px);
    overflow-y: auto;
    border-radius: 1.1rem;
  }

  .hero {
    min-height: 0;
  }

  .hero__grid {
    min-height: calc(100svh - 102px);
    align-items: end;
    padding-block: clamp(2.25rem, 8vh, 3.5rem) 3.25rem;
  }

  .hero h1,
  .product-hero h1,
  .article-hero h1 {
    font-size: clamp(2.75rem, 12.8vw, 3.65rem);
    letter-spacing: -0.067em;
    line-height: 0.94;
  }

  .hero__lead {
    margin-top: 1.15rem;
    font-size: 0.98rem;
    line-height: 1.52;
  }

  .hero__actions,
  .product-actions {
    display: grid;
    gap: 0.6rem;
    margin-top: 1.4rem;
  }

  .hero__actions .button,
  .product-actions .button {
    width: 100%;
  }

  .hero__artwork {
    opacity: 0.72;
  }

  .hero__artwork img {
    object-position: 69% center;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgb(8 20 35 / 90%) 0%, rgb(8 20 35 / 88%) 45%, rgb(8 20 35 / 98%) 100%),
      linear-gradient(90deg, rgb(8 20 35 / 96%) 0%, transparent 100%);
  }

  .hero__badge {
    display: none;
  }

  .hero__facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 1.4rem;
    font-size: 0.7rem;
    line-height: 1.3;
  }

  .hero__facts li {
    min-width: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.28rem;
    border-left: 1px solid rgb(255 255 255 / 19%);
    padding-inline: 0.65rem;
  }

  .hero__facts li:first-child {
    border-left: 0;
    padding-left: 0;
  }

  .hero__facts li:last-child {
    padding-right: 0;
  }

  .proof-strip__grid div {
    min-height: 84px;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0.8rem;
  }

  .proof-strip strong {
    font-size: 2rem;
  }

  .section {
    padding-block: 3.75rem;
  }

  .section-heading {
    margin-bottom: 2rem;
  }

  .section-heading h2,
  .italian-story h2,
  .faq-layout h2,
  .closing-cta h2 {
    font-size: clamp(2.15rem, 10.8vw, 3.15rem);
  }

  .section-heading p,
  .faq-layout__intro > p {
    margin-top: 1rem;
    font-size: 1rem;
  }

  .range-card {
    min-height: 550px;
  }

  .range-card__copy {
    max-width: 100%;
    padding: 5rem 1.35rem 1.5rem;
    background: linear-gradient(180deg, rgb(234 245 248 / 0%) 0%, rgb(234 245 248 / 96%) 34%, #eaf5f8 52%);
  }

  .range-card--tribe .range-card__copy {
    max-width: 100%;
    background: linear-gradient(180deg, rgb(20 89 199 / 0%) 0%, rgb(20 89 199 / 96%) 34%, var(--blue) 52%);
  }

  .range-card__image {
    top: -3%;
    right: -9%;
    width: 90%;
  }

  .range-card h2 {
    font-size: clamp(2rem, 9vw, 2.65rem);
  }

  .range-card p {
    font-size: 0.94rem;
  }

  .feature-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .colour-grid,
  .format-visual-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .colour-card__copy,
  .format-visual-card__copy {
    padding: 0.85rem 0.85rem 1rem;
  }

  .colour-card__copy h3 {
    overflow-wrap: anywhere;
    font-size: 0.94rem;
  }

  .colour-card__copy p,
  .format-visual-card__copy p,
  .format-visual-card__copy strong {
    min-height: 0;
    font-size: 0.74rem;
  }

  .colour-card__number {
    top: 0.65rem;
    right: 0.65rem;
    width: 34px;
    height: 34px;
  }

  .format-visual-card__copy h3 {
    font-size: 1.08rem;
  }

  .feature-card {
    min-height: 0;
    padding: 1.4rem;
  }

  .feature-card h3 {
    margin-top: 1rem;
  }

  .palette-band {
    grid-template-columns: 1fr;
  }

  .palette-band__swatches {
    grid-template-columns: repeat(7, 1fr);
  }

  .palette-preview__link,
  .steps-grid__link {
    text-align: left;
  }

  .italian-story__visual {
    min-height: 390px;
  }

  .italian-story__sixtus {
    top: 1.25rem;
    left: 1.25rem;
  }

  .italian-story__image {
    right: -3%;
    bottom: 1%;
    width: 80%;
  }

  .italian-story__stamp {
    left: 1.25rem;
    bottom: 1.25rem;
  }

  .steps-grid li,
  .steps-grid li:first-child,
  .steps-grid li:nth-child(2) {
    min-height: auto;
    border-right: 1px solid rgb(255 255 255 / 18%);
    border-bottom: 1px solid rgb(255 255 255 / 18%);
    border-left: 1px solid rgb(255 255 255 / 18%);
  }

  .steps-grid h3 {
    margin-top: 1.25rem;
  }

  .closing-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .closing-cta .button {
    width: 100%;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 1.2rem;
  }

  .product-hero__grid {
    min-height: 0;
    gap: 1rem;
    padding-block: 2.75rem 1rem;
  }

  .product-hero__visual {
    min-height: 310px;
  }

  .product-hero__lead {
    font-size: 1rem;
  }

  .article-hero {
    padding-block: 3.5rem;
  }

  .article-hero p {
    font-size: 1rem;
  }

  .application-showcase__heading h2 {
    font-size: clamp(2.4rem, 12vw, 3.4rem);
  }

  .application-gallery {
    columns: 1;
  }

  .format-table-wrap {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .format-table {
    display: block;
    min-width: 0;
  }

  .format-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .format-table tbody {
    display: grid;
    gap: 0.8rem;
  }

  .format-table tr {
    display: block;
    overflow: hidden;
    border: 1px solid var(--line);
    border-top: 4px solid var(--blue);
    border-radius: 1rem;
    background: white;
    box-shadow: 0 12px 32px rgb(10 27 44 / 6%);
  }

  .format-table td,
  .format-table td:first-child {
    display: block;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: normal;
  }

  .format-table td:first-child {
    background: #f2f6f8;
  }

  .format-table td:last-child {
    border-bottom: 0;
  }

  .format-table td::before {
    display: block;
    margin-bottom: 0.15rem;
    color: var(--blue);
    content: attr(data-label);
    font-size: 0.64rem;
    font-weight: 900;
    letter-spacing: 0.085em;
    text-transform: uppercase;
  }

  .format-table td svg {
    display: inline;
    margin: 0 0.2rem -0.15rem 0;
    color: var(--italia-green);
  }

  .info-callout {
    gap: 0.75rem;
    padding: 1.1rem;
  }

  .content-prose p,
  .content-prose li {
    font-size: 1rem;
  }
}

@media (max-width: 380px) {
  :root {
    --shell: min(100% - 22px, 1180px);
  }

  .language-switcher--mobile a,
  .language-switcher--mobile span {
    min-width: 29px;
  }

  .mobile-menu nav {
    width: calc(100vw - 22px);
  }

  .hero h1,
  .product-hero h1,
  .article-hero h1 {
    font-size: clamp(2.5rem, 12.7vw, 3rem);
  }

  .mobile-action-bar > a {
    gap: 0.45rem;
    padding-inline: 0.5rem;
  }

  .mobile-action-bar strong {
    font-size: 0.72rem;
  }
}

@media print {
  .mobile-action-bar,
  .mobile-header__actions,
  .site-header__cta {
    display: none !important;
  }

  .site-page {
    padding-bottom: 0;
  }
}

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