/* =========================================================
   LabelsAgent — Foil Candle Labels (Atelier Foil)
   Sora + Inter
   Navy #0033a0 + Champagne Gold #c9a96a
   Max-width 1280px · WordPress-embeddable
   ========================================================= */

:root {
  --fc-navy: #0033a0;
  --fc-navy-deep: #001f5c;
  --fc-navy-ink: #0a1430;
  --fc-navy-pale: #eef3fc;
  --fc-navy-mist: #f6f9fe;
  --fc-navy-line: #cdddf6;

  --fc-gold: #c9a96a;
  --fc-gold-deep: #a68847;
  --fc-gold-light: #e6d4a8;
  --fc-gold-pale: #f5eddc;
  --fc-gold-line: #e8d9b5;

  --fc-warm: #faf6ee;
  --fc-cream: #faf8f4;
  --fc-blush: #fbf4f6;
  --fc-paper: #ffffff;
  --fc-pearl: #fdfcfa;
  --fc-ink: #1a1521;
  --fc-slate: #5b5563;
  --fc-slate-light: #8b8294;
  --fc-cloud: #f4f3f7;
  --fc-line: #ece9f1;
  --fc-line-soft: #f6f4f9;
  --fc-success: #16a34a;
  --fc-warning: #d97706;

  --fc-font-display: "Sora", Georgia, serif;
  --fc-font-body:
    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --fc-font-mono: "Inter", ui-monospace, "SF Mono", Menlo, monospace;

  --fc-r-sm: 8px;
  --fc-r-md: 14px;
  --fc-r-lg: 20px;
  --fc-r-xl: 28px;
  --fc-r-pill: 999px;

  --fc-sh-soft: 0 2px 8px rgba(26, 21, 33, 0.05);
  --fc-sh-md: 0 8px 24px rgba(26, 21, 33, 0.08);
  --fc-sh-lg: 0 18px 50px rgba(26, 21, 33, 0.12);
  --fc-sh-gold: 0 8px 28px rgba(201, 169, 106, 0.22);
  --fc-sh-navy: 0 10px 32px rgba(0, 51, 160, 0.18);

  --fc-max: 1280px;
  --fc-pad: clamp(16px, 4vw, 40px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--fc-font-body);
  color: var(--fc-ink);
  background: var(--fc-pearl);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: var(--fc-navy);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: var(--fc-navy-deep);
}
button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}
ul,
ol {
  list-style: none;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--fc-navy);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 var(--fc-r-sm) 0;
  z-index: 9999;
  font-weight: 600;
}
.skip-link:focus {
  left: 0;
}

.container {
  max-width: var(--fc-max);
  margin: 0 auto;
  padding: 0 var(--fc-pad);
}
.container--narrow {
  max-width: 1080px;
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 252, 250, 0.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--fc-line-soft);
  transition: box-shadow 0.3s ease;
}
.site-header.is-scrolled {
  box-shadow: var(--fc-sh-soft);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fc-font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--fc-ink);
  letter-spacing: -0.01em;
}
.brand__mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    var(--fc-navy) 0%,
    var(--fc-navy-deep) 100%
  );
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--fc-font-body);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.02em;
  box-shadow: var(--fc-sh-navy);
}
.brand__name em {
  font-style: italic;
  font-weight: 500;
  color: var(--fc-gold-deep);
}
.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 500;
}
.nav a {
  color: var(--fc-ink);
  position: relative;
  padding: 4px 0;
}
.nav a.is-active {
  color: var(--fc-navy);
}
.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--fc-navy);
  border-radius: 2px;
}
.nav a:hover {
  color: var(--fc-navy);
}
.nav__cta {
  background: var(--fc-navy);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: var(--fc-r-pill);
  font-weight: 600;
  box-shadow: var(--fc-sh-navy);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 51, 160, 0.25);
}
.nav-toggle {
  display: none;
  font-size: 24px;
  padding: 6px;
  color: var(--fc-ink);
}

/* ============ BREADCRUMBS ============ */
.breadcrumbs {
  background: var(--fc-navy-mist);
  border-bottom: 1px solid var(--fc-navy-line);
  padding: 14px 0;
  font-family: var(--fc-font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
}
.breadcrumbs ol {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumbs li {
  color: var(--fc-slate-light);
}
.breadcrumbs li[aria-current] {
  color: var(--fc-navy);
  font-weight: 600;
}
.breadcrumbs a {
  color: var(--fc-slate);
  text-decoration: none;
}
.breadcrumbs a:hover {
  color: var(--fc-navy);
}
.breadcrumbs .sep {
  color: var(--fc-navy-line);
  font-weight: 400;
}

/* ============ EYEBROW ============ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fc-font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fc-navy);
  background: var(--fc-navy-pale);
  padding: 6px 14px;
  border-radius: var(--fc-r-pill);
  border: 1px solid var(--fc-navy-line);
}
.eyebrow--gold {
  color: var(--fc-gold-deep);
  background: var(--fc-gold-pale);
  border-color: var(--fc-gold-line);
}
.eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fc-navy);
}
.eyebrow--gold .eyebrow__dot {
  background: var(--fc-gold);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fc-font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: var(--fc-r-pill);
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  cursor: pointer;
  border: none;
  line-height: 1;
}
.btn svg {
  width: 18px;
  height: 18px;
}
.btn--primary {
  background: var(--fc-navy);
  color: #fff;
  box-shadow: var(--fc-sh-navy);
}
.btn--primary:hover {
  background: var(--fc-navy-deep);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 51, 160, 0.28);
}
.btn--gold {
  background: linear-gradient(
    135deg,
    var(--fc-gold) 0%,
    var(--fc-gold-deep) 100%
  );
  color: #fff;
  box-shadow: var(--fc-sh-gold);
}
.btn--gold:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(201, 169, 106, 0.32);
}
.btn--ghost {
  background: transparent;
  color: var(--fc-navy);
  border: 1.5px solid var(--fc-navy-line);
}
.btn--ghost:hover {
  background: var(--fc-navy-pale);
  border-color: var(--fc-navy);
}
.btn--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.btn--lg {
  padding: 16px 28px;
  font-size: 16px;
}
.btn--sm {
  padding: 10px 18px;
  font-size: 13px;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: clamp(40px, 7vw, 84px) 0 clamp(40px, 6vw, 72px);
  background:
    radial-gradient(
      circle at 85% 12%,
      rgba(201, 169, 106, 0.14) 0%,
      transparent 45%
    ),
    radial-gradient(
      circle at 10% 85%,
      rgba(0, 51, 160, 0.06) 0%,
      transparent 50%
    ),
    linear-gradient(180deg, var(--fc-pearl) 0%, var(--fc-warm) 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 20% 30%,
      rgba(201, 169, 106, 0.1) 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 70% 60%,
      rgba(0, 51, 160, 0.06) 1px,
      transparent 1px
    );
  background-size:
    48px 48px,
    64px 64px;
  pointer-events: none;
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
}
.hero__title {
  font-family: var(--fc-font-display);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 18px 0 22px;
  color: var(--fc-ink);
}
.hero__title em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(
    120deg,
    var(--fc-gold-deep) 0%,
    var(--fc-gold) 60%,
    var(--fc-navy) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__lead {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.7;
  color: var(--fc-slate);
  max-width: 540px;
  margin-bottom: 30px;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}
.hero__bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 26px;
  padding-top: 24px;
  border-top: 1px solid var(--fc-line);
  font-size: 13px;
}
.hero__bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--fc-slate);
}
.hero__bullet svg {
  width: 18px;
  height: 18px;
  color: var(--fc-gold-deep);
  flex-shrink: 0;
}

/* ============ HERO VISUAL — Foil Atelier Card ============ */
.foil-card {
  position: relative;
  background: linear-gradient(160deg, #fff 0%, var(--fc-warm) 100%);
  border-radius: var(--fc-r-xl);
  padding: 32px 28px 28px;
  box-shadow: var(--fc-sh-lg);
  border: 1px solid var(--fc-gold-line);
}
.foil-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--fc-navy) 0%, var(--fc-gold) 100%);
  border-radius: var(--fc-r-xl) var(--fc-r-xl) 0 0;
}
.foil-card__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 22px;
}
.foil-card__title {
  font-family: var(--fc-font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--fc-ink);
  letter-spacing: -0.01em;
}
.foil-card__hint {
  font-family: var(--fc-font-mono);
  font-size: 10px;
  color: var(--fc-slate-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.foil-card__jar {
  position: relative;
  height: 230px;
  margin: 0 auto 26px;
}
.foil-card__jar svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 12px 24px rgba(0, 51, 160, 0.18));
}
.foil-card__jar-glow {
  position: absolute;
  inset: -20% -10% -10% -10%;
  background: radial-gradient(
    circle at 50% 30%,
    rgba(255, 200, 120, 0.45) 0%,
    transparent 60%
  );
  z-index: -1;
  pointer-events: none;
}
.foil-card__jar-foil {
  transition:
    fill 0.4s ease,
    filter 0.4s ease;
}
.foil-card__swatches {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.foil-swatch {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 10px;
  cursor: pointer;
  overflow: hidden;
  border: 2px solid transparent;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}
.foil-swatch:hover {
  transform: scale(1.08);
  border-color: var(--fc-gold);
}
.foil-swatch.is-active {
  border-color: var(--fc-navy);
  box-shadow: 0 0 0 2px rgba(0, 51, 160, 0.15);
}
.foil-swatch::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.8s ease;
}
.foil-swatch:hover::after {
  transform: translateX(100%);
}
.foil-swatch--gold {
  background: linear-gradient(
    135deg,
    #fff8e1 0%,
    #e0c989 30%,
    #c9a961 50%,
    #a8884a 70%,
    #e0c989 100%
  );
}
.foil-swatch--rose {
  background: linear-gradient(
    135deg,
    #fce4ec 0%,
    #f8bbd0 30%,
    #e8a4b8 50%,
    #d4909e 70%,
    #f8bbd0 100%
  );
}
.foil-swatch--copper {
  background: linear-gradient(
    135deg,
    #ffe0cc 0%,
    #e8a87c 30%,
    #c9805e 50%,
    #a05f3f 70%,
    #e8a87c 100%
  );
}
.foil-swatch--silver {
  background: linear-gradient(
    135deg,
    #fafafa 0%,
    #e0e0e0 30%,
    #bdbdbd 50%,
    #9e9e9e 70%,
    #e0e0e0 100%
  );
}
.foil-swatch--matte {
  background: linear-gradient(135deg, #f5f5f0 0%, #d4d0c4 50%, #a8a294 100%);
}
.foil-swatch--gloss {
  background: linear-gradient(
    135deg,
    #fff9c4 0%,
    #ffd54f 30%,
    #ffb300 50%,
    #ff8f00 70%,
    #ffd54f 100%
  );
}

.foil-card__caption {
  text-align: center;
  font-family: var(--fc-font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--fc-ink);
  letter-spacing: -0.005em;
}
.foil-card__caption span {
  color: var(--fc-gold-deep);
  font-style: italic;
  font-weight: 500;
}

/* ============ TRUST STRIP ============ */
.trust {
  background: var(--fc-navy-ink);
  color: #fff;
  padding: 36px 0;
  position: relative;
  overflow: hidden;
}
.trust::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 15% 50%,
    rgba(201, 169, 106, 0.12) 0%,
    transparent 40%
  );
  pointer-events: none;
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.trust__cell {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.trust__icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(201, 169, 106, 0.18);
  display: grid;
  place-items: center;
  color: var(--fc-gold);
  flex-shrink: 0;
}
.trust__icon svg {
  width: 20px;
  height: 20px;
}
.trust__num {
  font-family: var(--fc-font-display);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.01em;
}
.trust__label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
  margin-top: 2px;
}

/* ============ SECTION COMMON ============ */
.section {
  padding: clamp(50px, 8vw, 65px) 0;
  position: relative;
}
.section--tight {
  padding: 48px 0;
}
.section--alt {
  background: var(--fc-cream);
}
.section--warm {
  background: linear-gradient(180deg, var(--fc-warm) 0%, var(--fc-cream) 100%);
}
.section--navy {
  background: var(--fc-navy-ink);
  color: #fff;
}
.section--navy h2,
.section--navy h3 {
  color: #fff;
}
.section--navy p {
  color: rgba(255, 255, 255, 0.78);
}

.section-head {
  text-align: center;
  max-width: 1080px;
  margin: 0 auto clamp(36px, 5vw, 56px);
}
.section-head__title {
  font-family: var(--fc-font-display);
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 18px 0 16px;
  color: var(--fc-ink);
}
.section--navy .section-head__title {
  color: #fff;
}
.section-head__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--fc-gold-deep);
}
.section--navy .section-head__title em {
  color: var(--fc-gold-light);
}
.section-head__lead {
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--fc-slate);
  line-height: 1.7;
}
.section--navy .section-head__lead {
  color: rgba(255, 255, 255, 0.78);
}

/* ============ GEO QUOTE ============ */
.geo-quote {
  background: var(--fc-paper);
  border: 1px solid var(--fc-line-soft);
  border-left: 4px solid var(--fc-gold);
  border-radius: var(--fc-r-md);
  padding: 32px 36px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--fc-slate);
  box-shadow: var(--fc-sh-soft);
  position: relative;
}
.geo-quote::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 18px;
  width: 32px;
  height: 32px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a96a' stroke-width='1.5'%3E%3Cpath d='M3 21c3 0 7-1 7-8V5c0-1-1-2-2-2H4c-1 0-2 1-2 2v8c0 7 4 8 7 8z M14 21c3 0 7-1 7-8V5c0-1-1-2-2-2h-4c-1 0-2 1-2 2v8c0 7 4 8 7 8z'/%3E%3C/svg%3E")
    no-repeat center / contain;
  opacity: 0.18;
}
.geo-quote p {
  position: relative;
  padding-left: 42px;
}
.geo-quote strong {
  color: var(--fc-ink);
  font-weight: 600;
}

/* ============ SET DIAGRAM ============ */
.set-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.set-tile {
  background: var(--fc-paper);
  border: 1px solid var(--fc-line-soft);
  border-radius: var(--fc-r-lg);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  /* image left (30%), text right (70%) */
  display: grid;
  grid-template-columns: 30% 70%;
  align-items: start;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.set-tile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--fc-gold), var(--fc-navy));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.set-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--fc-sh-md);
  border-color: var(--fc-gold-line);
}
.set-tile:hover::before {
  transform: scaleX(1);
}
.set-tile__num {
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: var(--fc-font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--fc-cloud);
  line-height: 1;
  letter-spacing: -0.02em;
}
.set-tile__icon {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: start;
  justify-self: stretch;
  /* right margin is the gutter against the text column */
  margin: 0 18px 0 0;
  aspect-ratio: 1 / 1.6;
  border-radius: 14px;

  color: var(--fc-gold-deep);
  /* block (not grid) so the img's height:100% resolves against the
     aspect-ratio box instead of falling back to the intrinsic ratio */
  display: block;
  overflow: hidden;
}
.set-tile__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.set-tile__icon svg {
  width: 22px;
  height: 22px;
}
.set-tile__title {
  grid-column: 2;
  grid-row: 1;
  font-family: var(--fc-font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--fc-ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.set-tile__text {
  grid-column: 2;
  grid-row: 2;
  font-size: 13.5px;
  color: var(--fc-slate);
  line-height: 1.6;
}

/* ============ MATCHER TABLE ============ */
.matcher {
  background: var(--fc-paper);
  border: 1px solid var(--fc-line-soft);
  border-radius: var(--fc-r-xl);
  overflow: hidden;
  box-shadow: var(--fc-sh-soft);
}
.matcher__table {
  width: 100%;
  border-collapse: collapse;
}
.matcher__table thead {
  background: linear-gradient(
    135deg,
    var(--fc-navy) 0%,
    var(--fc-navy-deep) 100%
  );
  color: #fff;
}
.matcher__table th {
  text-align: left;
  padding: 18px 22px;
  font-family: var(--fc-font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
}
.matcher__table tbody tr {
  border-top: 1px solid var(--fc-line-soft);
  transition: background 0.2s ease;
}
.matcher__table tbody tr:hover {
  background: var(--fc-navy-mist);
}
.matcher__table td {
  padding: 18px 22px;
  vertical-align: middle;
  font-size: 14px;
  color: var(--fc-ink);
}
.matcher__table td:first-child {
  font-family: var(--fc-font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--fc-navy);
}
.matcher__table td:nth-child(2),
.matcher__table td:nth-child(3) {
  color: var(--fc-slate);
  font-size: 13.5px;
}
.matcher__compat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--fc-font-mono);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: var(--fc-r-pill);
  letter-spacing: 0.04em;
}
.matcher__compat--full {
  background: rgba(22, 163, 74, 0.1);
  color: var(--fc-success);
  border: 1px solid rgba(22, 163, 74, 0.22);
}
.matcher__compat--partial {
  background: var(--fc-gold-pale);
  color: var(--fc-gold-deep);
  border: 1px solid var(--fc-gold-line);
}

/* ============ FOIL GRID ============ */
.foil-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.foil-item {
  background: var(--fc-paper);
  border: 1px solid var(--fc-line-soft);
  border-radius: var(--fc-r-lg);
  padding: 22px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.foil-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--fc-sh-md);
}
.foil-item__swatch {
  width: 100%;
  height: 90px;
  border-radius: var(--fc-r-md);
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--fc-line);
}
.foil-item__swatch::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.5) 50%,
    transparent 70%
  );
  animation: shimmer 5s infinite;
}
@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  50%,
  100% {
    transform: translateX(100%);
  }
}
.foil-item__swatch--gold {
  background: linear-gradient(
    135deg,
    #fff8e1 0%,
    #e0c989 30%,
    #c9a961 50%,
    #a8884a 70%,
    #e0c989 100%
  );
}
.foil-item__swatch--rose {
  background: linear-gradient(
    135deg,
    #fce4ec 0%,
    #f8bbd0 30%,
    #e8a4b8 50%,
    #d4909e 70%,
    #f8bbd0 100%
  );
}
.foil-item__swatch--copper {
  background: linear-gradient(
    135deg,
    #ffe0cc 0%,
    #e8a87c 30%,
    #c9805e 50%,
    #a05f3f 70%,
    #e8a87c 100%
  );
}
.foil-item__swatch--silver {
  background: linear-gradient(
    135deg,
    #fafafa 0%,
    #e0e0e0 30%,
    #bdbdbd 50%,
    #9e9e9e 70%,
    #e0e0e0 100%
  );
}
.foil-item__swatch--matte {
  background: linear-gradient(135deg, #f5f5f0 0%, #d4d0c4 50%, #a8a294 100%);
}
.foil-item__swatch--gloss {
  background: linear-gradient(
    135deg,
    #fff9c4 0%,
    #ffd54f 30%,
    #ffb300 50%,
    #ff8f00 70%,
    #ffd54f 100%
  );
}
.foil-item__title {
  font-family: var(--fc-font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--fc-ink);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.foil-item__text {
  font-size: 13.5px;
  color: var(--fc-slate);
  line-height: 1.6;
}

/* ============ STYLE CARDS ============ */
.style-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.style-card {
  position: relative;
  border-radius: var(--fc-r-lg);
  overflow: hidden;
  min-height: 240px;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  color: #fff;
  border: 1px solid var(--fc-line);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.style-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--fc-sh-md);
}
/* --- Photo-backed direction cards ------------------------------------
   Each of the five design-direction cards uses a real design photo as its
   background, with the caption floated over it. The linear-gradient sits
   UNDER the url() so the card still reads if a photo fails to load.
   Photo paths are relative to this stylesheet (up five levels to
   wp-content/, then into uploads/) so the same file resolves under the
   local /labelsagent/ subdirectory and at the production domain root. */
.style-card--minimal {
  background-image:
    url("../../../../../uploads/2026/09/minimal-luxury-candle-label-design.webp"),
    linear-gradient(135deg, #faf8f3 0%, #f5f0e0 100%);
}
.style-card--botanical {
  background-image:
    url("../../../../../uploads/2026/09/botanical-handmade-candle-label-design.webp"),
    linear-gradient(135deg, #3a5a40 0%, #588157 100%);
}
.style-card--dark {
  background-image:
    url("../../../../../uploads/2026/09/black-gold-premium-candle-label-design.webp"),
    linear-gradient(135deg, #1a1a1a 0%, #2d1810 100%);
}
.style-card--kraft {
  background-image:
    url("../../../../../uploads/2026/09/kraft-natural-candle-label-design.webp"),
    linear-gradient(135deg, #c9a961 0%, #a8884a 100%);
}
.style-card--white {
  background-image:
    url("../../../../../uploads/2026/09/white-textured-boutique-candle-label-design.webp"),
    linear-gradient(135deg, #ffffff 0%, #faf8f3 100%);
  border-color: var(--fc-line);
}
/* every photo card except the dashed "custom direction" tile */
.style-card:not(.style-card--custom) {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* bottom scrim: keeps the white caption legible over any photo */
.style-card:not(.style-card--custom)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(10, 8, 14, 0.86) 0%,
    rgba(10, 8, 14, 0.62) 34%,
    rgba(10, 8, 14, 0.18) 66%,
    rgba(10, 8, 14, 0) 100%
  );
}
.style-card:not(.style-card--custom) > * {
  position: relative;
  z-index: 2;
}
.style-card__tag {
  display: inline-block;
  font-family: var(--fc-font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: var(--fc-r-pill);
  /* dark pill, not white-translucent: the tag sits high on the card
     where the bottom scrim is still weak */
  background: rgba(10, 8, 14, 0.45);
  margin-bottom: 10px;
  color: #fff;
}
.style-card__title {
  font-family: var(--fc-font-display);
  font-size: 20px;
  font-weight: 600;
  color: inherit;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.style-card__text {
  font-size: 13px;
  color: inherit;
  opacity: 0.88;
  line-height: 1.55;
}
.style-card--custom {
  background: linear-gradient(135deg, #faf8f3 0%, #f5edd6 100%);
  color: var(--fc-ink);
  border: 1.5px dashed var(--fc-gold);
  align-items: center;
  justify-content: center;
  text-align: center;
}
.style-card--custom .style-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 169, 106, 0.18);
  color: var(--fc-gold-deep);
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
}
.style-card--custom .style-card__icon svg {
  width: 24px;
  height: 24px;
}

/* ============ APP GRID ============ */
.app-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.app-card {
  background: var(--fc-paper);
  border: 1px solid var(--fc-line-soft);
  border-radius: var(--fc-r-lg);
  padding: 26px 22px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  position: relative;
  overflow: hidden;
  /* icon + title share row 1; the body copy spans full width on row 2.
     Markup order is icon, title, text so no source change is needed. */
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 12px;
  row-gap: 12px;
  align-items: center;
}
.app-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--fc-navy), var(--fc-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.app-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--fc-sh-md);
  border-color: var(--fc-navy-line);
}
.app-card:hover::before {
  transform: scaleX(1);
}
.app-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--fc-navy-pale);
  color: var(--fc-navy);
  display: grid;
  place-items: center;
  grid-column: 1;
  grid-row: 1;
}
.app-card__icon svg {
  width: 22px;
  height: 22px;
}
.app-card__title {
  font-family: var(--fc-font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--fc-ink);
  letter-spacing: -0.01em;
  /* zero the global heading margin (avy-design-system: 0 0 0.5em) so the
     title centres against the icon instead of sitting 4.5px high */
  margin: 0;
  grid-column: 2;
  grid-row: 1;
  align-self: center;
}
.app-card__text {
  font-size: 13.5px;
  color: var(--fc-slate);
  line-height: 1.6;
  margin: 0;
  grid-column: 1 / -1;
  grid-row: 2;
  align-self: start;
}

/* ============ SCENARIO GRID ============ */
.scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.scenario-card {
  background: var(--fc-paper);
  border: 1px solid var(--fc-line-soft);
  border-top: 3px solid var(--fc-gold);
  border-radius: var(--fc-r-lg);
  padding: 28px 24px;
  /* icon + title share row 1; body copy and CTA span the full width below.
     The 1fr spacer row keeps the CTA pinned to the card bottom (the old
     `flex: 1` on .scenario-card__text did the same job in a column flex). */
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  grid-template-rows: auto auto 1fr auto;
  column-gap: 14px;
  row-gap: 12px;
  align-items: center;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.scenario-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--fc-sh-md);
}
.scenario-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--fc-gold-pale) 0%,
    var(--fc-gold-line) 100%
  );
  color: var(--fc-gold-deep);
  display: grid;
  place-items: center;
  grid-column: 1;
  grid-row: 1;
}
.scenario-card__icon svg {
  width: 22px;
  height: 22px;
}
.scenario-card__title {
  font-family: var(--fc-font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--fc-ink);
  letter-spacing: -0.01em;
  margin: 0;
  grid-column: 2;
  grid-row: 1;
  align-self: center;
}
.scenario-card__text {
  font-size: 13.5px;
  color: var(--fc-slate);
  line-height: 1.6;
  margin: 0;
  grid-column: 1 / -1;
  grid-row: 2;
  align-self: start;
}
.scenario-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--fc-font-body);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--fc-navy);
  grid-column: 1 / -1;
  grid-row: 4;
  justify-self: start;
  align-self: end;
}
.scenario-card__link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}
.scenario-card__link:hover {
  color: var(--fc-navy-deep);
}
.scenario-card__link:hover svg {
  transform: translateX(3px);
}

/* ============ PROCESS ============ */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}
.process-step {
  background: var(--fc-paper);
  border: 1px solid var(--fc-line-soft);
  border-radius: var(--fc-r-lg);
  padding: 30px 24px 24px;
  position: relative;
  counter-increment: step;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.process-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--fc-sh-md);
}
.process-step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -14px;
  left: 24px;
  width: 36px;
  height: 36px;
  background: linear-gradient(
    135deg,
    var(--fc-gold) 0%,
    var(--fc-gold-deep) 100%
  );
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--fc-font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  box-shadow: var(--fc-sh-gold);
}
.process-step__title {
  font-family: var(--fc-font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--fc-ink);
  margin: 8px 0 8px;
  letter-spacing: -0.01em;
}
.process-step__text {
  font-size: 13px;
  color: var(--fc-slate);
  line-height: 1.6;
}

/* ============ SAMPLES BAND ============ */
.samples {
  background: linear-gradient(135deg, #0a1430 0%, #0033a0 60%, #0a1430 100%);
  color: #fff;
  border-radius: var(--fc-r-xl);
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.samples::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 169, 106, 0.28) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.samples__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.samples__title {
  font-family: var(--fc-font-display);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 14px 0 12px;
}
.samples__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--fc-gold-light);
}
.samples__text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 24px;
}
.samples__price {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 169, 106, 0.25);
  border-radius: var(--fc-r-lg);
  padding: 28px;
  backdrop-filter: blur(8px);
}
.samples__price-num {
  font-family: var(--fc-font-display);
  font-size: 64px;
  font-weight: 600;
  background: linear-gradient(
    135deg,
    var(--fc-gold-light) 0%,
    var(--fc-gold) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  letter-spacing: -0.03em;
}
.samples__price-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

/* ============ RELATED PRODUCTS ============ */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.related-card {
  background: linear-gradient(135deg, #0a1430 0%, #0033a0 100%);
  color: #fff;
  border-radius: var(--fc-r-lg);
  padding: 26px 22px;
  position: relative;
  overflow: hidden;
  /* Title occupies the left of row 1 and the icon is placed AFTER it on the
     same row (column 2) even though the icon comes first in the markup. */
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  grid-template-rows: auto auto;
  column-gap: 12px;
  row-gap: 12px;
  align-items: center;
  align-content: start;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  border: 1px solid rgba(201, 169, 106, 0.15);
}
.related-card::before {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 169, 106, 0.18) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.related-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--fc-sh-lg);
}
.related-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(201, 169, 106, 0.2);
  color: var(--fc-gold-light);
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  align-self: center;
}
.related-card__icon svg {
  width: 22px;
  height: 22px;
}
.related-card__title {
  font-family: var(--fc-font-display);
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 1;
  align-self: center;
}
.related-card__title svg {
  width: 14px;
  height: 14px;
  color: var(--fc-gold-light);
}
.related-card__text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  margin: 0;
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  grid-row: 2;
  align-self: start;
}

/* ============ FAQ ============ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--fc-paper);
  border: 1px solid var(--fc-line-soft);
  border-radius: var(--fc-r-md);
  overflow: hidden;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.faq-item.is-open {
  border-color: var(--fc-navy-line);
  box-shadow: var(--fc-sh-soft);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 20px 24px;
  font-family: var(--fc-font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--fc-ink);
  text-align: left;
  letter-spacing: -0.01em;
}
.faq-q__icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  background: var(--fc-navy-pale);
  border-radius: 50%;
  color: var(--fc-navy);
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}
.faq-q__icon svg {
  width: 16px;
  height: 16px;
}
.faq-item.is-open .faq-q__icon {
  transform: rotate(45deg);
  background: var(--fc-navy);
  color: #fff;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.is-open .faq-a {
  max-height: 500px;
}
.faq-a__inner {
  padding: 0 24px 22px;
  font-size: 14.5px;
  color: var(--fc-slate);
  line-height: 1.7;
}

/* ============ CTA BAND ============ */
.cta-band {
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(201, 169, 106, 0.15) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(201, 169, 106, 0.1) 0%,
      transparent 40%
    ),
    linear-gradient(135deg, #0a1430 0%, #0033a0 60%, #0a1430 100%);
  color: #fff;
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-band .container {
  position: relative;
  z-index: 1;
}
.cta-band__title {
  font-family: var(--fc-font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 14px 0 14px;
}
.cta-band__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--fc-gold-light);
}
.cta-band__text {
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  max-width: 640px;
  margin: 0 auto 28px;
  line-height: 1.6;
}
.cta-band__group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ FOOTER ============ */
.site-footer {
  background: #0a0e1f;
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fc-font-display);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  margin-bottom: 14px;
}
.footer-brand .mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: linear-gradient(
    135deg,
    var(--fc-navy) 0%,
    var(--fc-navy-light) 100%
  );
  border-radius: 8px;
  font-size: 13px;
}
.site-footer p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}
.site-footer h4 {
  color: #fff;
  font-family: var(--fc-font-mono);
  font-size: 11px;
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.site-footer ul {
  list-style: none;
}
.site-footer li {
  margin-bottom: 9px;
}
.site-footer a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13.5px;
}
.site-footer a:hover {
  color: var(--fc-gold-light);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 10px;
}

/* ============ STICKY CTA ============ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(253, 252, 250, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--fc-line);
  padding: 12px 24px;
  transform: translateY(110%);
  transition: transform 0.3s ease;
  z-index: 90;
  box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.08);
}
.sticky-cta.is-visible {
  transform: translateY(0);
}
.sticky-cta__inner {
  max-width: var(--fc-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.sticky-cta__msg {
  font-size: 14.5px;
  color: var(--fc-ink);
  font-weight: 500;
}
.sticky-cta__actions {
  display: flex;
  gap: 10px;
}

/* ============ REVEAL ANIMATION ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .foil-swatch::after,
  .foil-item__swatch::after {
    display: none;
  }
  * {
    animation: none !important;
  }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .nav {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .foil-card {
    max-width: 480px;
    margin: 0 auto;
  }
  .set-grid,
  .foil-grid,
  .style-grid,
  .app-grid,
  .scenario-grid,
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}
@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }
  .hero {
    padding: 48px 0 40px;
  }
  .hero__title {
    font-size: 34px;
  }
  .hero__lead {
    font-size: 15px;
  }
  .hero__bullets {
    gap: 12px 18px;
    font-size: 12px;
  }
  .trust {
    padding: 28px 0;
  }
  .trust__grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .trust__num {
    font-size: 20px;
  }
  .set-grid,
  .foil-grid,
  .style-grid,
  .app-grid,
  .scenario-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }
  .process {
    grid-template-columns: 1fr;
  }
  .samples {
    padding: 32px 24px;
  }
  .samples__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .samples__title {
    font-size: 24px;
  }
  .samples__price-num {
    font-size: 48px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .section {
    padding: 48px 0;
  }
  .section-head__title {
    font-size: 26px;
  }
  .geo-quote {
    padding: 24px;
    font-size: 15px;
  }
  .geo-quote p {
    padding-left: 0;
  }
  .geo-quote::before {
    display: none;
  }
  .sticky-cta__msg {
    display: none;
  }
  .sticky-cta__inner {
    justify-content: center;
  }
  .faq-q {
    font-size: 15px;
    padding: 18px 20px;
  }
  .matcher__table {
    font-size: 13px;
  }
  .matcher__table th,
  .matcher__table td {
    padding: 14px 16px;
  }
}
