:root {
  --bg: #eef4f6;
  --surface: #ffffff;
  --surface-soft: #f7fbfc;
  --ink: #123745;
  --muted: #4d6f7d;
  --primary: #0c6f93;
  --primary-strong: #084f6e;
  --secondary: #2eb5cb;
  --accent: #d62e49;
  --line: rgba(18, 55, 69, 0.12);
  --shadow: 0 20px 50px rgba(21, 141, 168, 0.12);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: min(1360px, calc(100vw - clamp(24px, 4vw, 72px)));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(86, 208, 221, 0.22), transparent 28%),
    linear-gradient(180deg, #f6fbfc 0%, #eef4f6 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(246, 251, 252, 0.85);
  border-bottom: 1px solid rgba(18, 55, 69, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 92px;
  height: auto;
  flex: 0 0 auto;
  filter: drop-shadow(0 8px 18px rgba(13, 111, 137, 0.14));
}

.brand-name {
  display: block;
}

.brand-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand-tagline {
  display: block;
  margin-top: 4px;
  max-width: 45ch;
  font-size: 0.68rem;
  line-height: 1.35;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--muted);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--primary-strong);
  background: rgba(21, 141, 168, 0.1);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  border-radius: 999px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero,
.page-main {
  position: relative;
}

.hero {
  padding: 56px 0 36px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 42% auto auto 0;
  width: min(46vw, 580px);
  height: min(46vw, 580px);
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 70%),
    url("../images/logo-skandix-white.png") center/contain no-repeat;
  opacity: 0.06;
  pointer-events: none;
  transform: translate(-8%, -50%);
}

.section-tinted {
  position: relative;
  overflow: hidden;
}

.hero-grid,
.product-layout,
.split-layout,
.contact-layout,
.home-highlight {
  display: grid;
  gap: 28px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(540px, 0.95fr);
  align-items: start;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
}

.hero-copy h1,
.page-hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.2rem, 2.2vw, 3.8rem);
  max-width: 28ch;
}

body[data-page="products"] .page-hero h1 {
  font-size: clamp(1.95rem, 2.7vw, 3.1rem);
}

.hero-copy p,
.page-hero p,
.lead {
  margin-top: 28px;
  max-width: 62ch;
  font-size: 1.03rem;
}

.hero-tagline {
  margin-top: 18px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-strong);
}

.hero-actions,
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 45px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--surface);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-strong) 100%);
  box-shadow: var(--shadow);
}

.button-secondary {
  background: rgba(21, 141, 168, 0.08);
  color: var(--primary-strong);
}

.hero-points {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.hero-points li {
  padding-left: 18px;
  position: relative;
  color: var(--ink);
  font-weight: 600;
}

.hero-points li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
}

.hero-visual {
  display: grid;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.hero-card,
.feature-card,
.stat-card,
.media-placeholder,
.copy-panel,
.spec-card,
.contact-card,
.product-placeholder,
.brand-story-row,
.value-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.copy-panel p{
  padding-top: 15px !important;
}

.hero-card {
  overflow: hidden;
}

.brand-preview {
  padding: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(232, 241, 243, 0.92));
}

.brand-preview img {
  width: 100%;
  border-radius: 18px;
}

.placeholder-panel,
.media-placeholder,
.product-placeholder {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 24px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(21, 141, 168, 0.14), rgba(86, 208, 221, 0.14)),
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.55) 0, rgba(255, 255, 255, 0.55) 12px, rgba(21, 141, 168, 0.02) 12px, rgba(21, 141, 168, 0.02) 24px);
}

.placeholder-panel span,
.media-placeholder span,
.product-placeholder span {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-strong);
}

.placeholder-panel p,
.product-placeholder p {
  margin-top: 10px;
}

.promise-panel {
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(46, 181, 203, 0.24), transparent 28%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(145deg, rgba(9, 64, 83, 0.98), rgba(12, 111, 147, 0.94));
  color: var(--surface);
}

.promise-kicker {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.promise-grid > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-areas:
    "letter title"
    "copy copy";
  align-items: start;
  gap: 2px;
  min-height: 100px;
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.07));
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
}

.promise-grid > div > div {
  min-width: 0;
}

.promise-grid strong {
  grid-area: letter;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  margin-bottom: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  background: rgba(255, 255, 255, 0.16);
}

.promise-grid span {
  grid-area: title;
  display: block;
  line-height: 1.45;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.88rem;
}

.promise-grid small {
  grid-area: copy;
  display: block;
  margin-top: 2px;
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}

.section,
.page-hero {
  padding: 36px 0;
}

.page-hero {
  padding-top: 56px;
}

.section-tinted {
  background: linear-gradient(180deg, rgba(86, 208, 221, 0.08), rgba(255, 255, 255, 0));
}

.section-heading {
  margin-bottom: 26px;
  max-width: 760px;
}

.section-heading h2,
.copy-panel h2,
.contact-card h2,
.product-copy h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1rem, 1.5vw, 2.3rem);
}

.section-heading p {
  margin-top: 14px;
}

.feature-grid,
.stats-grid,
.spec-grid,
.media-grid {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.brand-story {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.brand-story-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.brand-story-intro {
  position: sticky;
  top: 120px;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top left, rgba(46, 181, 203, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(9, 64, 83, 0.96), rgba(12, 111, 147, 0.92));
  box-shadow: var(--shadow);
}

.brand-story-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.brand-story-intro h3 {
  margin-top: 14px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.7rem, 2.2vw, 2.3rem);
  color: var(--surface);
}

.brand-story-intro p:not(.brand-story-label) {
  color: rgba(255, 255, 255, 0.84);
}

.brand-story-intro h3 + p {
  margin-top: 16px;
}

.brand-story-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: start;
  gap: 16px;
  min-height: 100%;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 247, 249, 0.92));
}

.brand-letter {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--surface);
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
}

.brand-story-row h3,
.value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.feature-card,
.copy-panel,
.contact-card,
.spec-card,
.value-card {
  padding: 24px;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.value-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(236, 246, 248, 0.9));
}

.value-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
}

.value-number {
  display: inline-block;
  margin-bottom: 16px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.12em;
}

.home-highlight {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.stats-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stat-card {
  padding: 22px;
}

.stat-card strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  color: var(--primary-strong);
}

.stat-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.media-grid {
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
}

.media-placeholder.tall {
  min-height: 320px;
}

.media-placeholder.branded {
  min-height: 280px;
}

.split-layout,
.contact-layout,
.product-layout,
.product-feature-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.copy-panel,
.contact-card,
.product-copy {
  align-self: stretch;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.contact-list p {
  display: grid;
  gap: 4px;
}

.contact-list strong {
  color: var(--ink);
}

.contact-list a {
  color: var(--primary-strong);
  font-weight: 700;
}

.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.contact-badges span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(21, 141, 168, 0.08);
  color: var(--primary-strong);
  font-weight: 700;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: var(--ink);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(18, 55, 69, 0.12);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(46, 181, 203, 0.22);
  border-color: rgba(12, 111, 147, 0.34);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form-full {
  grid-column: 1 / -1;
}

.contact-submit {
  min-width: 210px;
}

.map-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
}

.product-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-image-card,
.product-feature-image {
  overflow: hidden;
}

.product-image-card img,
.product-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-feature-layout {
  display: grid;
  gap: 18px;
  align-items: start;
}

.product-feature-layout .feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.brochure-viewer {
  width: min(100%, 860px);
  margin: 0 auto;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(46, 181, 203, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 247, 249, 0.92));
  box-shadow: var(--shadow);
}

.brochure-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.brochure-title,
.brochure-status {
  color: var(--ink);
  font-weight: 800;
}

.brochure-book {
  display: grid;
  grid-template-columns: 48px minmax(0, 520px) 48px;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.brochure-page-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 0.72;
  min-height: 320px;
  padding: 12px;
  border-radius: 22px;
  border: 1px solid rgba(18, 55, 69, 0.08);
  background:
    linear-gradient(90deg, rgba(18, 55, 69, 0.04) 0, rgba(18, 55, 69, 0.01) 6%, rgba(255, 255, 255, 0.98) 14%, rgba(255, 255, 255, 0.98) 100%);
  overflow: hidden;
}

.brochure-page-shell::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 14px;
  background: linear-gradient(180deg, rgba(8, 79, 110, 0.22), rgba(46, 181, 203, 0.08));
}

.brochure-image {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(18, 55, 69, 0.12);
  background: #fff;
  object-fit: contain;
}

.brochure-nav {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--surface);
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.brochure-nav:hover:not(:disabled) {
  transform: translateY(-2px);
}

.brochure-nav:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.spec-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.spec-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-strong);
}

.detail-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.detail-list li {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(21, 141, 168, 0.08);
  font-weight: 700;
  color: var(--ink);
}

.form-placeholder {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.form-placeholder span {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px dashed rgba(21, 141, 168, 0.35);
  color: var(--muted);
  background: var(--surface-soft);
}

.site-footer {
  margin-top: 32px;
  padding: 26px 0 40px;
  border-top: 1px solid rgba(18, 55, 69, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(21, 141, 168, 0.06));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr;
  gap: 24px;
}

.footer-brand,
.footer-title {
  margin-bottom: 12px;
  font-weight: 800;
  color: var(--ink);
}

.site-footer a,
.site-footer p + p,
.site-footer div a + a {
  margin-top: 8px;
  display: block;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 26px, 0) scale(0.99);
  filter: blur(3px);
  transition:
    opacity 0.68s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.68s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.68s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform, filter;
}

.reveal-on-scroll.reveal-up {
  transform: translate3d(0, 26px, 0) scale(0.99);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.reveal-on-scroll[data-reveal-delay="1"] {
  transition-delay: 0.06s;
}

.reveal-on-scroll[data-reveal-delay="2"] {
  transition-delay: 0.12s;
}

.reveal-on-scroll[data-reveal-delay="3"] {
  transition-delay: 0.18s;
}

.reveal-on-scroll[data-reveal-delay="4"] {
  transition-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .product-layout,
  .product-feature-layout,
  .split-layout,
  .contact-layout,
  .home-highlight,
  .footer-grid,
  .media-grid,
  .feature-grid,
  .spec-grid,
  .values-grid,
  .brand-story-shell,
  .brand-story,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brochure-book {
    grid-template-columns: 1fr;
  }

  .brochure-nav {
    width: 100%;
    max-width: 220px;
    justify-self: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    text-align: center;
  }

  .nav-toggle {
    display: inline-block;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 20px, 100%);
  }

  .header-inner {
    min-height: 74px;
  }

  .brand {
    gap: 10px;
  }

  .brand-logo {
    width: 72px;
  }

  .brand-name {
    font-size: 0.88rem;
  }

  .brand-tagline {
    display: block;
    max-width: 28ch;
    font-size: 0.56rem;
    line-height: 1.25;
  }

  .hero {
    padding-top: 34px;
  }

  .page-hero {
    padding-top: 34px;
  }

  .hero-copy h1,
  .page-hero h1 {
    max-width: none;
    font-size: clamp(2.15rem, 12vw, 3.4rem);
  }

  .hero::before {
    inset: 34% auto auto 0;
    width: min(72vw, 320px);
    height: min(72vw, 320px);
    opacity: 0.045;
    transform: translate(-16%, -50%);
  }

  .button {
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .brochure-viewer {
    width: 100%;
    padding: 14px;
  }

  .brochure-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .brochure-page-shell {
    min-height: 200px;
    aspect-ratio: 0.72;
    padding: 10px;
  }

  .feature-card,
  .copy-panel,
  .contact-card,
  .spec-card,
  .value-card,
  .brand-story-row {
    padding: 20px;
  }

  .promise-grid,
  .brand-story {
    grid-template-columns: 1fr;
  }

  .promise-grid > div {
    grid-template-columns: 40px 1fr;
  }

  .brand-story-intro {
    position: static;
    padding: 24px;
  }

  .brand-letter {
    width: 56px;
    height: 56px;
    font-size: 1.45rem;
  }
}
