:root {
  --bg: #f5f0e4;
  --bg-soft: #ebe2cf;
  --bg-card: rgba(255, 252, 245, 0.9);
  --bg-card-strong: rgba(255, 250, 238, 0.97);
  --surface: #fffaf0;
  --surface-2: #eadbb0;
  --surface-panel: rgba(255, 252, 245, 0.96);
  --surface-soft: rgba(255, 250, 243, 0.98);
  --surface-soft-alt: rgba(255, 250, 243, 0.96);
  --surface-input: rgba(255, 250, 243, 0.85);
  --surface-header: rgba(255, 255, 255, 0.94);
  --surface-header-strong: rgba(255, 255, 255, 0.98);
  --line: rgba(19, 40, 92, 0.12);
  --line-strong: rgba(19, 40, 92, 0.22);
  --text: #102451;
  --text-muted: rgba(16, 36, 81, 0.76);
  --text-dark: #102028;
  --accent: #c52b2d;
  --accent-soft: rgba(197, 43, 45, 0.14);
  --blue: #19367e;
  --blue-soft: rgba(25, 54, 126, 0.1);
  --shadow: 0 16px 30px rgba(25, 54, 126, 0.12);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --ease: cubic-bezier(0.2, 0.9, 0.2, 1);
  --transition-fast: 220ms var(--ease);
  --transition-base: 360ms var(--ease);
  --transition-image: transform 900ms var(--ease), filter 500ms var(--ease);
  --display-font: "Permanent Marker", "Knewave", cursive;
  --ui-font: "Archivo", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--ui-font);
  background:
    radial-gradient(circle at top, rgba(255, 250, 238, 0.8), transparent 28%),
    linear-gradient(180deg, #f7f2e8 0%, #f3eee4 45%, #efe7db 100%);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.has-fancy-cursor,
body.has-fancy-cursor a,
body.has-fancy-cursor button,
body.has-fancy-cursor .interactive-tile,
body.has-fancy-cursor .product-card,
body.has-fancy-cursor .showcase-card {
  cursor: none;
}

body.menu-open {
  overflow: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

body.has-fancy-cursor.lightbox-open,
body.has-fancy-cursor.lightbox-open a,
body.has-fancy-cursor.lightbox-open button,
body.has-fancy-cursor.lightbox-open .interactive-tile,
body.has-fancy-cursor.lightbox-open .lightbox,
body.has-fancy-cursor.lightbox-open .lightbox * {
  cursor: auto;
}

body:not(.page-loaded) .site-header {
  transform: translateY(-100%);
}

body:not(.page-loaded) .hero-copy > *,
body:not(.page-loaded) .hero-side > * {
  opacity: 0;
  transform: translateY(50px);
}

body.page-loaded .site-header {
  transform: translateY(0);
  transition: transform 800ms var(--ease);
}

body.page-loaded .hero-copy > *,
body.page-loaded .hero-side > * {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}

body.page-loaded .hero-copy > *:nth-child(2) { transition-delay: 100ms; }
body.page-loaded .hero-copy > *:nth-child(3) { transition-delay: 180ms; }
body.page-loaded .hero-copy > *:nth-child(4) { transition-delay: 260ms; }
body.page-loaded .hero-copy > *:nth-child(5) { transition-delay: 340ms; }
body.page-loaded .hero-side > *:nth-child(1) { transition-delay: 180ms; }
body.page-loaded .hero-side > *:nth-child(2) { transition-delay: 300ms; }
body.page-loaded .hero-side > *:nth-child(3) { transition-delay: 420ms; }

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

p,
h1,
h2,
h3,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

::selection {
  background: rgba(197, 43, 45, 0.25);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.site-shell {
  position: relative;
  z-index: 1;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 100px 0;
  position: relative;
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
  isolation: isolate;
}

.section[id],
.hero[id],
.subhero[id] {
  scroll-margin-top: 104px;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.section-dark {
  background: linear-gradient(180deg, rgba(19, 40, 92, 0.98), rgba(25, 54, 126, 0.96));
  border-top: 1px solid rgba(255, 247, 220, 0.12);
  border-bottom: 1px solid rgba(255, 247, 220, 0.12);
}

.section-dark::before {
  content: "";
  position: absolute;
  inset: auto auto -70px -50px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 243, 29, 0.12) 0%, rgba(255, 243, 29, 0) 72%);
  pointer-events: none;
  animation: ambient-drift 14s ease-in-out infinite alternate;
}

.section-dark::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 12px;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, rgba(255, 243, 29, 0.14) 0 12%, transparent 13% 100%),
    repeating-radial-gradient(circle at center, rgba(255, 243, 29, 0.18) 0 2px, transparent 2px 24px);
  pointer-events: none;
  opacity: 0.5;
  animation: orbit-pulse 12s ease-in-out infinite alternate-reverse;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

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

.section-heading h2,
.subhero-content h1,
.hero-copy h1,
.cta-banner h2,
.contact-panel h2,
.showcase-copy h2,
.story-layout h2,
.manifesto-grid h2,
.map-copy h2 {
  font-family: var(--display-font);
  font-weight: 400;
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-heading h2,
.cta-banner h2,
.showcase-copy h2,
.story-layout h2,
.manifesto-grid h2,
.map-copy h2 {
  font-size: clamp(2rem, 3.2vw, 3.3rem);
  margin-bottom: 16px;
}

.section-heading p,
.subhero-content p,
.hero-text,
.cta-banner p,
.contact-panel p,
.showcase-copy p,
.story-layout p,
.manifesto-grid p,
.map-copy p,
.feature-card p,
.value-panel p,
.product-body p,
.advice-card p,
.promise-card p,
.timeline-card p,
.practical-card p,
.support-card p {
  color: var(--text-muted);
  line-height: 1.7;
}

.eyebrow,
.mini-label,
.product-tag,
.feature-index,
.timeline-card span {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 800;
}

.eyebrow,
.product-tag,
.feature-index,
.timeline-card span {
  color: var(--accent);
}

.section-dark .eyebrow,
.section-dark h2,
.section-dark h3,
.section-dark p,
.section-dark strong,
.section-dark span,
.section-dark a {
  color: #fff7dc;
}

.section-dark .showcase-card,
.section-dark .advice-card,
.section-dark .promise-card,
.section-dark .support-card {
  background: rgba(255, 250, 238, 0.08);
  border-color: rgba(255, 247, 220, 0.16);
  box-shadow: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: var(--surface-header);
  border-bottom: 4px solid var(--blue);
  box-shadow: 0 10px 24px rgba(16, 36, 81, 0.08);
}

.site-header.is-scrolled {
  background: var(--surface-header-strong);
}

.header-inner {
  min-height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-logo-image {
  width: 206px;
  height: auto;
  max-height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 6px 10px rgba(16, 36, 81, 0.18));
}

.site-header .brand-copy {
  display: inline-flex;
  align-items: center;
  padding-left: 10px;
  border-left: 2px solid rgba(19, 40, 92, 0.16);
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.nav-link {
  padding: 10px 12px;
  border-radius: 0;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  transition: color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--text);
  background: transparent;
  border-color: var(--accent);
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  gap: 12px;
}

.button {
  border: 0;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), background 240ms var(--ease), color 240ms var(--ease), clip-path 240ms var(--ease);
}

.button:hover {
  transform: translateY(-3px) scale(1.02);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
}

.button-primary {
  background: linear-gradient(135deg, #cf2f31, #a91f23);
  color: #fff7dc;
  box-shadow: 0 12px 24px rgba(197, 43, 45, 0.22);
}

.button-secondary,
.button-muted {
  background: linear-gradient(135deg, #1a3577, #254a9b);
  color: #fff7dc;
  border: 1px solid rgba(19, 40, 92, 0.18);
}

.hero,
.subhero {
  position: relative;
  overflow: clip;
}

.hero-home::after,
.subhero::before {
  content: "";
  position: absolute;
  left: -6%;
  right: -6%;
  pointer-events: none;
  will-change: transform;
}

.hero {
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 10%, rgba(255, 243, 29, 0.18) 36%, transparent 58%);
  transform: translateX(-120%);
  animation: hero-swipe 1.8s var(--ease) 0.2s both;
  z-index: 1;
  pointer-events: none;
}

.subhero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 12%, rgba(255, 243, 29, 0.16) 38%, transparent 60%);
  transform: translateX(-120%);
  animation: hero-swipe 1.7s var(--ease) 0.22s both;
  z-index: 1;
  pointer-events: none;
}

.hero-home::after {
  right: 2%;
  bottom: 8%;
  left: auto;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  opacity: 0.46;
  background:
    radial-gradient(circle at center, rgba(25, 54, 126, 0.12) 0 12%, transparent 13% 100%),
    repeating-radial-gradient(circle at center, rgba(255, 243, 29, 0.18) 0 2px, transparent 2px 28px);
  animation: orbit-pulse 13s ease-in-out infinite alternate;
  z-index: 1;
}

.hero-media-video,
.hero-backdrop,
.subhero-media {
  position: absolute;
  inset: 0;
}

.hero-backdrop {
  background: #0b1426;
}

.hero-media-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
}

.hero-backdrop::after,
.subhero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 242, 232, 0.96) 0%, rgba(247, 242, 232, 0.68) 46%, rgba(19, 40, 92, 0.26) 100%),
    linear-gradient(180deg, rgba(255, 247, 220, 0.06) 0%, rgba(247, 242, 232, 0.44) 100%);
}

.hero-backdrop img,
.hero-media-video,
.subhero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
}

.hero-noise {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 28%, rgba(255, 255, 255, 0.22), transparent 18%),
    radial-gradient(circle at 82% 18%, rgba(255, 247, 220, 0.18), transparent 14%);
  opacity: 0.9;
}

.hero-noise::before,
.hero-noise::after {
  content: "";
  position: absolute;
  pointer-events: none;
  will-change: transform;
}

.hero-noise::before {
  top: 8%;
  right: 6%;
  width: 300px;
  height: 300px;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, rgba(255, 243, 29, 0.16) 0 10%, transparent 11% 100%),
    repeating-radial-gradient(circle at center, rgba(255, 243, 29, 0.28) 0 2px, transparent 2px 28px);
  opacity: 0.78;
  animation: orbit-pulse 9s ease-in-out infinite alternate;
}

.hero-noise::after {
  left: 6%;
  bottom: 4%;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  opacity: 0.44;
  background:
    radial-gradient(circle at center, rgba(25, 54, 126, 0.16) 0 14%, transparent 15% 100%),
    repeating-radial-gradient(circle at center, rgba(25, 54, 126, 0.18) 0 2px, transparent 2px 22px);
  animation: orbit-pulse 8s ease-in-out infinite alternate-reverse;
}

.hero-grid,
.subhero-content {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 42px;
  align-items: center;
  padding: 96px 0;
}

.hero-copy h1,
.subhero-content h1 {
  font-size: clamp(2.8rem, 5.2vw, 4.8rem);
  max-width: 13ch;
  text-shadow: 0 2px 0 rgba(255, 247, 220, 0.4);
}

.hero-copy {
  max-width: 670px;
}

.hero-text {
  font-size: 1.08rem;
  max-width: 58ch;
  margin-top: 22px;
}

.hero-actions-row,
.cta-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-points {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.hero-points li {
  width: fit-content;
  padding: 12px 16px;
  border-radius: 3px;
  background: rgba(255, 247, 220, 0.84);
  border: 1px solid var(--line);
  color: var(--text-muted);
}

.hero-side {
  position: relative;
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 18px;
  align-items: start;
}

.glass-card,
.metric-card,
.feature-card,
.value-panel,
.product-card,
.advice-card,
.promise-card,
.timeline-card,
.practical-card,
.support-card,
.contact-form,
.contact-panel,
.story-card,
.brand-tile,
.quote-banner,
.cta-banner,
.showcase-card,
.stats-pill,
.info-chip {
  border: 1px solid var(--line);
  background: var(--bg-card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

:is(.product-card, .story-card, .stats-pill, .strip-card, .map-frame, .contact-panel, .contact-form, .map-shell, .cta-banner, .quote-banner) {
  border-radius: 18px;
}

:is(.showcase-card, .showcase-card img, .brand-tile) {
  border-radius: 20px;
}

:is(.metric-card, .logo-badge, .thanks-card) {
  border-radius: 22px;
}

.hero-panel {
  max-width: 360px;
  padding: 28px;
  border-radius: var(--radius-lg);
  border-left: 8px solid var(--accent);
}

.hero-panel strong {
  display: block;
  font-size: 1.35rem;
  margin: 10px 0;
}

.hero-panel span {
  color: var(--text-muted);
  line-height: 1.7;
}

.metric-card {
  position: relative;
  grid-column: 2;
  width: 100%;
  padding: 22px;
  background: rgba(255, 244, 205, 0.9);
  border-top: 5px solid var(--blue);
}

.hero-panel-main {
  position: relative;
  grid-column: 1;
  grid-row: 1 / span 2;
  max-width: none;
  min-height: 100%;
}

.hero-home::after,
.hero-home .hero-noise::before,
.hero-home .hero-noise::after {
  display: none;
}

.hero-home .hero-backdrop::after {
  background:
    linear-gradient(90deg, rgba(10, 18, 40, 0.74) 0%, rgba(10, 18, 40, 0.48) 34%, rgba(10, 18, 40, 0.18) 62%, rgba(10, 18, 40, 0.44) 100%),
    linear-gradient(180deg, rgba(4, 8, 18, 0.16) 0%, rgba(4, 8, 18, 0.36) 100%);
}

.hero-home .hero-noise {
  display: none;
}

.hero-home .hero-grid {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  min-height: calc(100vh - 86px);
  padding: 110px 64px 82px 0;
  align-items: center;
  overflow: hidden;
}

.hero-home .hero-copy {
  max-width: 640px;
  padding-bottom: 0;
}

.hero-home .hero-copy h1 {
  max-width: 8.8ch;
  font-size: clamp(3rem, 5.6vw, 5rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: none;
}

.hero-home .hero-text {
  max-width: 34ch;
  margin-top: 16px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.58;
}

.hero-home .eyebrow {
  color: rgba(255, 255, 255, 0.84);
}

.hero-home .hero-actions-row {
  gap: 12px;
  margin-top: 22px;
}

.hero-home .hero-actions-row .button {
  padding: 14px 20px;
  border-radius: 10px;
  clip-path: none;
  box-shadow: none;
}

.hero-home .hero-actions-row .button:hover {
  clip-path: none;
}

.hero-home .hero-actions-row .button-primary {
  background: #fff;
  color: var(--text-dark);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.hero-home .hero-actions-row .button-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.36);
}

.hero-home .hero-side {
  display: none;
}

.home-sections-nav {
  position: fixed;
  right: 20px;
  top: 50%;
  z-index: 20;
  display: grid;
  gap: 22px;
  transform: translateY(-50%);
  isolation: isolate;
}

.home-sections-nav::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  right: 4px;
  width: 1px;
  background: rgba(25, 54, 126, 0.2);
  z-index: 0;
}

.home-sections-link {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  text-decoration: none;
}

.home-sections-text {
  color: var(--blue);
  font-family: var(--ui-font);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.46;
  transform: translateX(0);
  transition: opacity var(--transition-fast), color var(--transition-fast);
}

.home-sections-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(25, 54, 126, 0.65);
  background: rgba(255, 247, 220, 0.9);
  transition: transform var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), opacity var(--transition-fast);
}

.home-sections-link:hover .home-sections-text,
.home-sections-link.is-active .home-sections-text {
  opacity: 1;
}

.home-sections-link:hover .home-sections-dot,
.home-sections-link.is-active .home-sections-dot {
  background: var(--blue);
  border-color: var(--blue);
  transform: scale(1.14);
}

.home-sections-link.is-active .home-sections-text {
  color: var(--red);
}

.metric-number {
  display: block;
  font-family: var(--ui-font);
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.metric-label {
  color: var(--text-muted);
}

.feature-grid,
.photo-mosaic,
.products-grid,
.brands-grid,
.stats-band,
.values-grid,
.timeline-grid,
.practical-layout,
.support-grid,
.promises-grid,
.advice-cards {
  display: grid;
  gap: 20px;
}

.photo-mosaic {
  position: relative;
  isolation: isolate;
}

.photo-mosaic::before {
  content: "";
  position: absolute;
  inset: auto auto -18px -6px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, rgba(255, 243, 29, 0.14) 0 12%, transparent 13% 100%),
    repeating-radial-gradient(circle at center, rgba(255, 243, 29, 0.2) 0 2px, transparent 2px 24px);
  opacity: 0.82;
  pointer-events: none;
  animation: orbit-pulse 10s ease-in-out infinite alternate;
}

.photo-mosaic::after {
  content: "";
  position: absolute;
  right: 3%;
  top: -14px;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  opacity: 0.42;
  background:
    radial-gradient(circle at center, rgba(25, 54, 126, 0.12) 0 16%, transparent 17% 100%),
    repeating-radial-gradient(circle at center, rgba(25, 54, 126, 0.2) 0 2px, transparent 2px 22px);
  pointer-events: none;
  animation: orbit-pulse 11s ease-in-out infinite alternate-reverse;
}

.photo-mosaic > * {
  position: relative;
  z-index: 1;
}

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

.photo-mosaic {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-template-rows: 260px 260px;
}

.photo-card {
  margin: 0;
  min-height: 0;
  border-radius: 30px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.photo-card-large {
  grid-row: 1 / span 2;
}

.compact-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

:is(.feature-card, .value-panel, .advice-card, .promise-card, .timeline-card, .practical-card, .support-card) {
  padding: 28px;
  border-radius: 18px;
}

:is(.feature-card h3, .value-panel strong, .advice-card strong, .promise-card h3, .timeline-card h3, .practical-card h3, .support-card h3) {
  font-size: 1.3rem;
  margin: 10px 0 12px;
}

.split-showcase,
.story-layout,
.manifesto-grid,
.contact-layout,
.advice-layout,
.map-shell {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
}

.showcase-stack {
  display: grid;
  gap: 18px;
}

.showcase-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 18px;
}

.photo-card img,
.showcase-card img,
.image-panel img,
.story-card img,
.strip-card img,
.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
}

.photo-card img,
.strip-card img,
.product-card img {
  transition: var(--transition-image);
}

.showcase-card img {
  height: 120px;
  transition: transform 700ms var(--ease);
}

.showcase-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

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

.values-grid > :nth-child(2) {
  transform: translateY(36px);
}

.values-grid > :nth-child(4) {
  transform: translateY(-28px);
}

.image-panel {
  overflow: hidden;
  padding: 0;
}

.image-panel img,
.story-card img {
  transition: transform 900ms var(--ease);
}

.image-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.image-strip > :nth-child(2n) {
  transform: translateY(32px);
}

.strip-card {
  margin: 0;
  aspect-ratio: 0.9;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.section-marquee {
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid rgba(19, 40, 92, 0.12);
  border-bottom: 1px solid rgba(19, 40, 92, 0.12);
  background: rgba(234, 219, 176, 0.56);
}

.logo-carousel {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 8px 0;
  mask-image: linear-gradient(90deg, transparent 0, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 8%, black 92%, transparent 100%);
  scrollbar-width: none;
}

.logo-carousel::-webkit-scrollbar {
  display: none;
}

.logo-carousel.is-ready {
  overflow: hidden;
}

.logo-carousel:not(.is-ready) {
  mask-image: none;
  -webkit-mask-image: none;
}

.logo-carousel::before,
.logo-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 54px;
  z-index: 1;
  pointer-events: none;
}

.logo-carousel:not(.is-ready)::before,
.logo-carousel:not(.is-ready)::after {
  display: none;
}

.logo-carousel::before {
  left: 0;
  background: linear-gradient(90deg, rgba(234, 219, 176, 0.85), rgba(234, 219, 176, 0));
}

.logo-carousel::after {
  right: 0;
  background: linear-gradient(270deg, rgba(234, 219, 176, 0.85), rgba(234, 219, 176, 0));
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

.logo-carousel.is-ready .marquee-track {
  animation: marquee var(--marquee-duration, 28s) linear infinite;
}

.logo-carousel:hover .marquee-track {
  animation-play-state: paused;
}

.logo-badge {
  flex: 0 0 clamp(158px, 15vw, 188px);
  min-width: 0;
  height: 104px;
  display: grid;
  place-items: center;
  padding: 20px 22px;
  background: var(--surface-panel);
  border: 1px solid rgba(19, 40, 92, 0.1);
  border-radius: 22px;
  box-shadow: 0 14px 28px rgba(25, 54, 126, 0.1);
}

.logo-badge img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 52px;
  display: block;
  object-fit: contain;
}

.brand-tile img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}

@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(var(--marquee-distance, 0px) * -1), 0, 0); }
}

@keyframes hero-swipe {
  from { transform: translateX(-120%); }
  to { transform: translateX(120%); }
}

@keyframes ambient-drift {
  0% {
    transform: translate3d(0, 0, 0) scale(0.96);
  }

  50% {
    transform: translate3d(34px, -24px, 0) scale(1.09);
  }

  100% {
    transform: translate3d(-28px, 20px, 0) scale(1.01);
  }
}

@keyframes orbit-pulse {
  0% {
    transform: translate3d(0, 0, 0) scale(0.88);
    opacity: 0.34;
  }

  50% {
    transform: translate3d(28px, -22px, 0) scale(1.12);
    opacity: 0.9;
  }

  100% {
    transform: translate3d(-24px, 18px, 0) scale(0.98);
    opacity: 0.56;
  }
}

:is(.cta-banner, .quote-banner) { padding: 34px; }

.cta-banner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.subhero {
  min-height: 62vh;
  display: flex;
  align-items: end;
}

.subhero::before {
  right: 4%;
  bottom: 10%;
  left: auto;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  opacity: 0.34;
  background:
    radial-gradient(circle at center, rgba(255, 243, 29, 0.12) 0 12%, transparent 13% 100%),
    repeating-radial-gradient(circle at center, rgba(255, 243, 29, 0.16) 0 2px, transparent 2px 24px);
  animation: orbit-pulse 11s ease-in-out infinite alternate-reverse;
  z-index: 0;
}

.subhero-content {
  padding: 120px 0 80px;
  max-width: 760px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.filter-chip {
  border: 1px solid var(--line);
  color: var(--text-muted);
  background: var(--surface-panel);
  padding: 11px 16px;
  border-radius: 3px;
  font-weight: 800;
  transition: all var(--transition-fast);
}

.filter-chip.is-active,
.filter-chip:hover {
  color: #fff7dc;
  background: var(--blue);
  border-color: transparent;
}

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

.product-card {
  overflow: hidden;
}

.product-card img {
  aspect-ratio: 4 / 3;
  transition: transform 850ms var(--ease), filter 500ms var(--ease);
}

.product-body {
  padding: 22px;
}

.product-body h3 {
  font-size: 1.45rem;
  margin: 12px 0 10px;
}

.product-body p {
  font-size: 1rem;
}

.product-body a {
  display: inline-flex;
  margin-top: 16px;
  font-weight: 800;
  color: var(--accent);
}

.advice-layout {
  align-items: start;
}

.advice-cards,
.promises-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.stats-pill {
  padding: 26px;
  text-align: center;
}

.stats-pill span {
  color: var(--text-muted);
}

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

.brand-logo-grid {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.brand-tile {
  min-height: 124px;
  display: grid;
  place-items: center;
  font-family: var(--ui-font);
  font-size: 1.2rem;
  text-align: center;
}

.brand-logo-grid .brand-tile {
  min-height: 124px;
  padding: 20px 22px;
  background: var(--surface-panel);
}

.interactive-tile {
  position: relative;
  overflow: hidden;
}

.interactive-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(33, 52, 60, 0.08));
  opacity: 0;
  transition: opacity 360ms var(--ease);
}

.quote-banner {
  text-align: center;
}

.quote-banner p {
  font-family: var(--ui-font);
  font-size: clamp(1.5rem, 2.4vw, 2.3rem);
  line-height: 1.18;
}

.quote-banner span {
  display: inline-block;
  margin-top: 16px;
  color: var(--text-muted);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.reviews-grid-wide {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.review-card {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(25, 54, 126, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 247, 240, 0.94));
  box-shadow: 0 16px 34px rgba(24, 35, 58, 0.08);
}

.review-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #ffffff;
  border: 1px solid rgba(25, 54, 126, 0.12);
  box-shadow: 0 8px 18px rgba(25, 54, 126, 0.08);
  color: #4285f4;
  font-weight: 800;
  font-size: 1rem;
}

.review-meta {
  display: grid;
  gap: 2px;
}

.review-meta strong {
  font-size: 0.98rem;
}

.review-meta span {
  color: var(--text-muted);
  font-size: 0.84rem;
}

.review-stars {
  margin-bottom: 12px;
  color: #fbbc04;
  letter-spacing: 0.18em;
  font-size: 0.92rem;
}

.review-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.review-card p {
  margin: 0;
  color: var(--text-muted);
}

.reviews-cta {
  margin-top: 22px;
  display: flex;
  justify-content: flex-start;
}

.reviews-widget-shell {
  padding: 12px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(252, 248, 239, 0.92));
  border: 1px solid rgba(25, 54, 126, 0.08);
  box-shadow: 0 16px 34px rgba(24, 35, 58, 0.08);
}

.story-card {
  overflow: hidden;
  min-height: 0;
  aspect-ratio: 4 / 3;
  padding: 0;
  display: flex;
  line-height: 0;
}

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

.manifesto-cards {
  display: grid;
  gap: 18px;
}

.manifesto-card {
  padding: 24px;
  border-left: 2px solid var(--accent);
  background: rgba(255, 250, 243, 0.55);
}

.manifesto-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

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

:is(.contact-panel, .contact-form, .map-shell) { padding: 32px; }

.contact-points {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.info-chip {
  border-radius: 12px;
  padding: 20px;
}

.info-chip strong {
  display: block;
  margin-bottom: 6px;
}

.info-chip span {
  color: var(--text-muted);
}

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

.form-grid label {
  display: grid;
  gap: 8px;
  color: var(--text);
}

.field-large {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--surface-input);
  color: var(--text);
  padding: 14px 16px;
}

input::placeholder,
textarea::placeholder {
  color: rgba(16, 36, 81, 0.42);
}

.checkbox-line {
  display: flex;
  align-items: start;
  gap: 12px;
  color: var(--text-muted);
  margin-top: 18px;
}

.checkbox-line input {
  width: auto;
  margin-top: 4px;
}

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

.map-shell {
  grid-template-columns: 0.65fr 1.35fr;
  align-items: stretch;
}

.home-contact-bar {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 24px;
  margin-top: 12px;
  max-width: 1140px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  align-items: stretch;
  overflow: visible;
}

.home-visit-shell {
  grid-template-columns: 360px minmax(0, 1fr);
}

.home-visit-copy {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(19, 40, 92, 0.1);
  border-radius: 24px;
  background: rgba(255, 252, 245, 0.96);
  box-shadow: 0 14px 24px rgba(25, 54, 126, 0.08);
}

.home-visit-copy h2 {
  font-family: var(--display-font);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 0.98;
  margin-bottom: 0;
  max-width: 8.5ch;
}

.home-visit-points {
  display: grid;
  gap: 8px;
}

.home-visit-points p {
  margin: 0;
  max-width: 26ch;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.home-visit-shell .cta-actions {
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-contact-bar .button {
  min-width: 0;
  padding: 12px 18px;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 16px rgba(16, 36, 81, 0.08);
}

.home-contact-bar .map-frame {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 420px;
  max-width: none;
  border-radius: 24px;
  box-shadow: 0 14px 26px rgba(16, 36, 81, 0.1);
  justify-self: stretch;
  background: #eef2f8;
  border: 1px solid rgba(19, 40, 92, 0.12);
  overflow: hidden;
}

.home-contact-bar .map-frame::after {
  display: none;
}

.home-contact-bar .map-frame iframe {
  width: 100%;
  height: 100%;
  pointer-events: auto;
  transform: none;
  filter: none;
  border: 0;
}

.home-visit-map {
  min-height: 420px;
}

.section-home-visit {
  padding-top: 16px;
  padding-bottom: 12px;
}

.map-frame {
  min-height: 640px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.nav-toggle,
.toast {
  display: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  will-change: opacity, transform;
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

[data-reveal="left"] {
  transform: translateX(-34px);
}

[data-reveal="scale"] {
  transform: scale(0.92);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.is-filtered-out {
  opacity: 0;
  transform: scale(0.96);
  pointer-events: none;
}

.product-card[hidden] {
  display: none !important;
}

.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 92px;
  display: grid;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 243, 0.92);
  color: var(--text);
  z-index: 60;
  place-items: center;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #fff31d;
  box-shadow: 0 0 18px rgba(255, 243, 29, 0.8);
  transform: translate(-50%, -50%);
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 2px solid rgba(197, 43, 45, 0.8);
  background: rgba(255, 243, 29, 0.24);
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  backdrop-filter: blur(8px);
  box-shadow: 0 0 30px rgba(255, 243, 29, 0.4);
}

.cursor-ring.is-hover {
  width: 70px;
  height: 70px;
  border-color: rgba(197, 43, 45, 1);
  background: rgba(255, 243, 29, 0.62);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  padding: 14px 18px;
  border-radius: 6px;
  background: rgba(197, 43, 45, 0.95);
  color: #fff7dc;
  font-weight: 800;
  z-index: 80;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-status {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.thanks-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.thanks-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 42px;
  text-align: center;
  background: var(--surface-panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.thanks-card .brand-logo-image {
  margin: 0 auto 18px;
  width: min(250px, 72vw);
  max-height: none;
}

.thanks-card h1 {
  font-family: var(--display-font);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 10px 0 14px;
}

.thanks-card p {
  color: var(--text-muted);
}

.site-footer {
  margin-top: 36px;
  padding: 34px 0 18px;
  background: rgba(15, 30, 67, 0.96);
  color: #fff7dc;
  border-top: 1px solid rgba(255, 247, 220, 0.12);
  content-visibility: auto;
  contain-intrinsic-size: 1px 420px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 1fr;
  gap: 28px;
  align-items: start;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.footer-brand span {
  display: grid;
  gap: 4px;
}

.footer-brand strong {
  font-family: var(--ui-font);
  font-size: 1.05rem;
  text-transform: uppercase;
}

.footer-brand-block p,
.footer-col p,
.footer-col a {
  color: rgba(255, 247, 220, 0.78);
  line-height: 1.7;
}

.footer-brand-block p {
  margin-top: 16px;
  max-width: 34ch;
}

.footer-col {
  display: grid;
  gap: 8px;
}

.footer-col h3 {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff7dc;
  margin-bottom: 4px;
}

.footer-col a:hover,
.footer-brand:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 247, 220, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-bottom p {
  color: rgba(255, 247, 220, 0.62);
  font-size: 0.92rem;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-link {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 247, 220, 0.08);
  border: 1px solid rgba(255, 247, 220, 0.12);
  transition: transform 220ms var(--ease), background 220ms var(--ease), border-color 220ms var(--ease);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: #fff7dc;
}

.social-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 247, 220, 0.16);
  border-color: rgba(255, 247, 220, 0.26);
}

.lightbox {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 32px;
  background: rgba(9, 15, 35, 0.82);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms var(--ease);
  z-index: 120;
  cursor: default;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-figure {
  margin: 0;
  width: min(1000px, 100%);
  max-height: 88vh;
  display: grid;
  gap: 12px;
}

.lightbox-figure img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #fffaf0;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  cursor: zoom-out;
}

.lightbox-close {
  justify-self: end;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.94);
  color: var(--blue);
  font-size: 1.4rem;
  font-weight: 800;
  cursor: pointer;
}

.is-floating {
  animation: float-card var(--float-duration, 3200ms) ease-in-out infinite;
  will-change: transform;
}

@keyframes float-card {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(calc(var(--float-distance, 8px) * -1)); }
}

@media (hover: hover) and (pointer: fine) {
  .feature-card:hover,
  .value-panel:hover,
  .product-card:hover,
  .advice-card:hover,
  .promise-card:hover,
  .timeline-card:hover,
  .practical-card:hover,
  .support-card:hover,
  .showcase-card:hover,
  .brand-tile:hover,
  .info-chip:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 38px rgba(25, 54, 126, 0.16);
    border-color: rgba(197, 43, 45, 0.28);
  }

  .product-card:hover img,
  .showcase-card:hover img,
  .image-panel:hover img,
  .story-card:hover img,
  .interactive-tile:hover img {
    transform: scale(1.08);
    filter: saturate(1.04);
  }

  .interactive-tile:hover::after {
    opacity: 1;
  }

  .button:hover {
    box-shadow: 0 0 0 3px rgba(255, 243, 29, 0.45), 0 14px 28px rgba(25, 54, 126, 0.18);
  }
}

@media (max-width: 1240px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
    gap: 28px;
  }

  .hero-home .hero-grid {
    grid-template-columns: 1fr;
    padding-right: 0;
  }

  .home-sections-nav {
    display: none;
  }
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 18px;
  }

  .site-nav {
    position: fixed;
    top: 82px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 10px;
    padding: 18px;
    border-radius: 10px;
    background: rgba(247, 222, 117, 0.98);
    border: 3px solid var(--blue);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 220ms var(--ease), transform 220ms var(--ease), visibility 220ms var(--ease);
  }

  body.menu-open .site-nav {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }

  .nav-toggle {
    display: inline-grid;
    justify-self: end;
    gap: 6px;
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 8px;
    border: 2px solid var(--blue);
    background: rgba(255, 247, 220, 0.92);
    place-content: center;
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    background: var(--blue);
    transition: transform 220ms var(--ease), opacity 220ms var(--ease);
  }

  body.menu-open .nav-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  body.menu-open .nav-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .header-actions {
    display: none;
  }

  .site-header .brand-copy {
    font-size: 0.74rem;
    letter-spacing: 0.13em;
    padding-left: 8px;
  }

  .hero-grid,
  .split-showcase,
  .story-layout,
  .manifesto-grid,
  .contact-layout,
  .advice-layout,
  .map-shell {
    grid-template-columns: 1fr;
  }

  .home-contact-bar {
    margin-top: 16px;
  }

  .home-visit-shell {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-visit-copy {
    padding: 22px 22px 20px;
  }

  .home-visit-copy h2 {
    max-width: 10ch;
  }

  .home-contact-bar .button {
    min-width: 0;
  }

  .home-contact-bar .map-frame {
    max-width: none;
    justify-self: stretch;
  }

  .feature-grid,
  .photo-mosaic,
  .brands-grid,
  .timeline-grid,
  .practical-layout,
  .support-grid,
  .stats-band,
  .values-grid,
  .advice-cards,
  .promises-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-home .hero-grid {
    padding: 82px 0 76px;
    gap: 18px;
    align-items: start;
  }

  .hero-home .hero-side {
    display: none;
  }

  .hero-home .hero-copy h1 {
    max-width: 11ch;
  }

  .hero-home .hero-text {
    max-width: 42ch;
  }

}

@media (max-width: 720px) {
  .section {
    padding: 76px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 86px 0 72px;
  }

  .hero-home .hero-grid {
    padding: 82px 0 68px;
  }

  .hero-home .hero-copy h1 {
    font-size: clamp(2.45rem, 12vw, 4rem);
    max-width: 10ch;
  }

  .hero-home .hero-text {
    font-size: 1rem;
    max-width: 32ch;
  }

  .hero-copy h1,
  .subhero-content h1 {
    max-width: none;
  }

  .hero-panel-main,
  .metric-card,
  .metric-card-alt {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .hero-home .hero-actions-row .button {
    width: 100%;
  }

  .feature-grid,
  .photo-mosaic,
  .products-grid,
  .brands-grid,
  .timeline-grid,
  .practical-layout,
  .support-grid,
  .stats-band,
  .values-grid,
  .advice-cards,
  .promises-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .showcase-card {
    grid-template-columns: 1fr;
  }

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

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .filter-bar.products-toolbar {
    gap: 10px;
  }

  .filter-chip {
    padding: 9px 13px;
    font-size: 0.82rem;
  }

  .product-card img {
    aspect-ratio: 1 / 1;
  }

  .product-body {
    padding: 16px;
  }

  .product-body h3 {
    font-size: 1.05rem;
    margin: 10px 0 8px;
  }

  .product-body p,
  .product-body a {
    font-size: 0.92rem;
  }

  .product-body a {
    margin-top: 12px;
  }

  .values-grid > :nth-child(2),
  .values-grid > :nth-child(4),
  .image-strip > :nth-child(2n) {
    transform: none;
  }

  .cta-banner {
    flex-direction: column;
    align-items: start;
  }

  .contact-panel,
  .contact-form,
  .map-shell,
  .cta-banner,
  .quote-banner {
    padding: 24px;
  }

  .home-contact-bar {
    padding: 0;
  }

  .home-contact-bar,
  .home-visit-shell {
    grid-template-columns: 1fr;
  }

  .map-frame {
    min-height: 460px;
  }

  .home-contact-bar .map-frame,
  .home-visit-map {
    min-height: 280px;
  }

  .home-visit-copy {
    padding: 20px;
    border-radius: 24px;
  }

  .home-visit-copy h2 {
    font-size: clamp(1.8rem, 12vw, 3rem);
    max-width: none;
  }

  .home-contact-bar .button {
    min-width: min(100%, 220px);
  }

  .brand-logo-image {
    width: 138px;
    max-height: 52px;
  }

  .site-header .brand-copy {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    padding-left: 6px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .marquee-track {
    gap: 16px;
  }

  .scroll-top {
    right: 12px;
    bottom: 88px;
  }

  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }
}

@media (max-width: 560px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .filter-chip {
    font-size: 0.78rem;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
    will-change: auto;
  }

  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }
}

body.lightbox-open .cursor-dot,
body.lightbox-open .cursor-ring {
  opacity: 0 !important;
}
