:root {
  --bg: #eeebe4;
  --bg-deep: #ddd6ca;
  --panel: rgba(255, 255, 255, 0.72);
  --panel-strong: rgba(255, 255, 255, 0.9);
  --ink: #18212b;
  --muted: #5d6670;
  --line: rgba(24, 33, 43, 0.11);
  --shadow: 0 28px 70px rgba(24, 33, 43, 0.12);
  --shadow-soft: 0 18px 45px rgba(24, 33, 43, 0.08);
  --accent: #c46d43;
  --accent-deep: #18486a;
  --accent-cool: #3b6b8a;
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max-width: 1220px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 14%, rgba(24, 72, 106, 0.15), transparent 24%),
    radial-gradient(circle at 84% 9%, rgba(196, 109, 67, 0.14), transparent 22%),
    linear-gradient(180deg, #f7f4ee 0%, var(--bg) 38%, var(--bg-deep) 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.22)),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 110px,
      rgba(31, 35, 33, 0.022) 110px,
      rgba(31, 35, 33, 0.022) 111px
    );
  opacity: 0.8;
}

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

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

.site-shell {
  position: relative;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 22px 22px 38px;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 16px 22px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 999px;
  background: rgba(250, 247, 241, 0.7);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(59, 56, 46, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(250, 247, 241, 0.92);
  box-shadow: 0 14px 35px rgba(24, 33, 43, 0.1);
}

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

.brand-mark {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 58px;
  height: 28px;
  padding: 4px 6px;
  border-radius: 10px;
  background:
    linear-gradient(135deg, var(--accent-deep), #285b81 58%, var(--accent) 100%);
  box-shadow: 0 12px 24px rgba(24, 72, 106, 0.22);
  overflow: hidden;
}

.brand-mark span {
  position: relative;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: -0.08em;
}

.brand-mark span + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1;
}

.brand-copy strong {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-copy span {
  color: var(--accent-deep);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.site-nav a,
.header-cta,
.menu-toggle,
.button {
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.header-cta {
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--accent-deep), var(--ink));
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.header-cta:hover,
.header-cta:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  justify-self: end;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel-strong);
  color: var(--ink);
  font: inherit;
  cursor: pointer;
}

.section-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: center;
  min-height: calc(100vh - 150px);
  padding: 66px 0 38px;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.2rem, 6vw, 6.1rem);
  line-height: 0.95;
}

h2 {
  max-width: 15ch;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
}

h3 {
  font-size: 1.28rem;
  line-height: 1.1;
}

.hero-text,
.section-heading p,
.capability-copy p,
.product-card p,
.capability-item p,
.project-card p,
.contact-copy p,
.site-footer p,
.floating-card p,
.qr-note {
  color: var(--muted);
  line-height: 1.72;
}

.hero-text {
  max-width: 620px;
  margin: 24px 0 0;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 30px;
}

.button {
  padding: 16px 24px;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent-deep), var(--ink));
  color: #fff;
  box-shadow: var(--shadow);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.4);
  color: var(--ink);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points span,
.signal-track span,
.product-tags li,
.project-label,
.floating-tag,
.qr-caption {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 10px 14px;
  border: 1px solid rgba(31, 35, 33, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 640px;
}

.board-card {
  width: min(100%, 540px);
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 34px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.82), rgba(249, 244, 237, 0.52)),
    rgba(255, 255, 255, 0.48);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.board-topline,
.board-meta,
.contact-notes {
  display: grid;
  gap: 18px;
}

.board-topline {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.swatch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.swatch {
  position: relative;
  aspect-ratio: 1 / 0.9;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.swatch::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 45%),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.08) 16px,
      transparent 16px,
      transparent 34px
    );
  mix-blend-mode: soft-light;
}

.swatch-stone {
  background:
    linear-gradient(135deg, #ecdfd1, #c9b39b),
    linear-gradient(90deg, transparent, rgba(122, 90, 66, 0.15));
}

.swatch-sand {
  background:
    linear-gradient(140deg, #f1dbc7, #d1b29b),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22));
}

.swatch-charcoal {
  background:
    linear-gradient(135deg, #56514d, #2c2f30),
    radial-gradient(circle at 22% 30%, rgba(255, 255, 255, 0.12), transparent 28%);
}

.swatch-copper {
  background:
    linear-gradient(145deg, #d28b60, #934d2d),
    linear-gradient(60deg, rgba(255, 255, 255, 0.18), transparent 52%);
}

.swatch-oak {
  background:
    linear-gradient(145deg, #a97d59, #d1a47a),
    repeating-linear-gradient(
      90deg,
      rgba(88, 57, 28, 0.16),
      rgba(88, 57, 28, 0.16) 5px,
      rgba(255, 255, 255, 0.02) 5px,
      rgba(255, 255, 255, 0.02) 12px
    );
}

.swatch-mist {
  background:
    linear-gradient(145deg, #d8dedf, #9ca4a5),
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.22), transparent 24%);
}

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

.board-meta div,
.contact-notes div {
  padding: 18px;
  border: 1px solid rgba(31, 35, 33, 0.07);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.64);
}

.board-meta small,
.contact-notes small {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.board-meta strong,
.contact-notes strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.52;
}

.floating-card {
  position: absolute;
  width: min(280px, 62%);
  padding: 20px;
  border: 1px solid rgba(31, 35, 33, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.floating-card strong {
  display: block;
  margin-top: 12px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.12rem;
}

.floating-card p {
  margin: 10px 0 0;
  font-size: 0.95rem;
}

.floating-card-left {
  left: -18px;
  bottom: 74px;
  transform: rotate(-5deg);
}

.floating-card-right {
  right: -10px;
  top: 84px;
  transform: rotate(5deg);
}

.signal-bar {
  margin: 18px 0 28px;
}

.signal-track {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.company-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: stretch;
}

.company-story,
.company-panel {
  padding: 32px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow-soft);
}

.company-story {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(248, 242, 234, 0.62)),
    rgba(255, 255, 255, 0.5);
}

.company-story p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.74;
}

.company-signature {
  margin-top: 26px;
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(24, 72, 106, 0.94), rgba(36, 49, 66, 0.92));
  box-shadow: 0 20px 40px rgba(24, 72, 106, 0.18);
}

.company-signature span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.company-signature p {
  margin: 16px 0 0;
  max-width: 38ch;
  color: rgba(255, 255, 255, 0.82) !important;
}

.company-panel {
  background:
    linear-gradient(155deg, rgba(24, 72, 106, 0.98), rgba(28, 39, 51, 0.96)),
    rgba(255, 255, 255, 0.04);
  color: #f6f3ee;
}

.company-wordmark small {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.company-wordmark strong {
  display: block;
  margin-top: 14px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(4rem, 9vw, 6.2rem);
  font-weight: 800;
  letter-spacing: -0.09em;
}

.company-wordmark p {
  max-width: 28ch;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

.company-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.company-point {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.07);
}

.company-point span {
  display: inline-flex;
  margin-bottom: 16px;
  color: #8bc1e6;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.company-point h3 {
  font-size: 1.02rem;
}

.company-point p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.64;
  font-size: 0.93rem;
}

.section-block {
  padding: 84px 0 24px;
}

.section-heading {
  max-width: 780px;
}

.section-heading p {
  max-width: 620px;
  margin: 18px 0 0;
}

.narrow {
  max-width: 700px;
}

.product-grid,
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.product-card,
.project-card,
.capability-item,
.process-strip article,
.qr-panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(249, 243, 236, 0.62)),
    rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-soft);
}

.product-index {
  margin-bottom: 18px;
  color: var(--accent-deep);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.product-card p,
.project-card p {
  margin: 16px 0 0;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.capability-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  margin-top: 32px;
}

.capability-copy,
.capability-list {
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-soft);
}

.capability-copy p:first-child {
  margin-top: 0;
}

.capability-copy p:last-child {
  margin-bottom: 0;
}

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

.capability-item {
  padding: 20px;
  border-radius: 24px;
}

.capability-item strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1rem;
}

.capability-item p {
  margin: 0;
  font-size: 0.94rem;
}

.process-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.process-strip article {
  padding: 24px;
}

.process-strip span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent-deep);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.process-strip p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.66;
}

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

.project-label {
  margin-bottom: 18px;
}

.contact-block {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 24px;
  align-items: center;
}

.contact-copy p {
  max-width: 620px;
  margin: 18px 0 0;
}

.contact-notes {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 26px;
}

.qr-panel {
  padding: 22px;
  text-align: center;
}

.qr-frame {
  position: relative;
  padding: 20px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(243, 236, 226, 0.88)),
    rgba(255, 255, 255, 0.8);
}

.qr-caption {
  margin: 0 auto 18px;
}

.qr-frame img {
  width: min(100%, 360px);
  margin: 0 auto;
  border-radius: 22px;
  box-shadow: 0 16px 34px rgba(85, 67, 50, 0.14);
}

.qr-note {
  margin: 18px 8px 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 56px 0 18px;
  color: var(--muted);
}

.site-footer strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.04rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 700;
}

@media (max-width: 1080px) {
  .section-grid,
  .company-grid,
  .contact-block,
  .capability-layout,
  .project-grid,
  .process-strip {
    grid-template-columns: 1fr;
  }

  .company-points {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
    padding-top: 26px;
  }

  .floating-card-left,
  .floating-card-right {
    position: static;
    width: 100%;
    transform: none;
    margin-top: 16px;
  }

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

@media (max-width: 840px) {
  .site-shell {
    padding: 14px 14px 32px;
  }

  .site-header {
    grid-template-columns: auto auto;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 28px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav.is-open {
    display: flex;
    grid-column: 1 / -1;
    flex-direction: column;
    gap: 14px;
    padding-top: 12px;
  }

  .site-nav.is-open a {
    padding: 4px 2px;
  }

  .section-grid {
    min-height: auto;
    padding-top: 44px;
  }

  .company-story,
  .company-panel {
    padding: 24px;
    border-radius: 26px;
  }

  .board-topline,
  .board-meta,
  .contact-notes,
  .capability-list {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 12ch;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 42px;
  }
}

@media (max-width: 560px) {
  body {
    background:
      radial-gradient(circle at 15% 10%, rgba(24, 72, 106, 0.16), transparent 28%),
      linear-gradient(180deg, #faf5ef 0%, #eeebe4 52%, #ddd6ca 100%);
  }

  .section-block {
    padding-top: 66px;
  }

  .product-card,
  .project-card,
  .company-story,
  .company-panel,
  .capability-copy,
  .capability-list,
  .process-strip article,
  .qr-panel,
  .board-card {
    padding: 22px;
    border-radius: 24px;
  }

  .button,
  .header-cta,
  .menu-toggle {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-points,
  .signal-track,
  .product-tags {
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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

.site-nav a.is-active,
.footer-links a.is-active {
  color: var(--ink);
  font-weight: 800;
}

.hero-mosaic,
.proof-grid,
.feature-grid,
.story-grid,
.gallery-grid,
.category-grid,
.contact-page-grid,
.support-grid {
  display: grid;
  gap: 20px;
}

.hero-mosaic {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  grid-template-rows: repeat(2, minmax(220px, 1fr));
  align-self: stretch;
}

.mosaic-card,
.proof-card,
.link-card,
.category-card,
.checklist-card,
.dark-story,
.mini-cta,
.photo-stack-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(249, 243, 236, 0.62)),
    rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-soft);
}

.mosaic-card img,
.proof-card img,
.link-card img,
.category-image img,
.photo-stack-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mosaic-card {
  min-height: 220px;
}

.mosaic-card-large {
  grid-row: span 2;
  min-height: 460px;
}

.mosaic-card-note {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(155deg, rgba(24, 72, 106, 0.98), rgba(28, 39, 51, 0.94));
  color: #f8f6f1;
}

.mosaic-card-note small {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mosaic-card-note strong {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.4rem;
  line-height: 1.1;
}

.mosaic-card-note p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.68;
}

.mosaic-copy,
.proof-copy {
  position: absolute;
  inset: auto 0 0;
  padding: 22px;
  background: linear-gradient(180deg, transparent 0%, rgba(24, 33, 43, 0.78) 100%);
}

.mosaic-copy strong,
.proof-copy h3 {
  color: #fff;
}

.mosaic-copy strong {
  display: block;
  margin-top: 12px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.18rem;
  line-height: 1.2;
}

.proof-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  grid-auto-rows: minmax(220px, auto);
  margin-top: 34px;
}

.proof-card {
  min-height: 240px;
}

.proof-card-wide {
  grid-row: span 2;
  min-height: 500px;
}

.proof-copy h3 {
  margin-top: 14px;
  font-size: 1.18rem;
}

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

.link-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

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

.link-card-content {
  padding: 24px;
}

.link-card-content h3 {
  margin-top: 14px;
}

.link-card-content p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.page-hero {
  padding-bottom: 24px;
}

.photo-stack {
  display: grid;
  gap: 18px;
  align-content: start;
}

.photo-stack-card-large {
  min-height: 420px;
}

.photo-stack-card:not(.photo-stack-card-large) {
  min-height: 250px;
}

.story-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.dark-story {
  padding: 32px;
  background: linear-gradient(155deg, rgba(24, 72, 106, 0.98), rgba(28, 39, 51, 0.94));
  color: #f8f6f1;
}

.dark-story p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.74;
}

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

.detail-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(249, 243, 236, 0.62)),
    rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-soft);
}

.detail-card strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Sora", "Segoe UI", sans-serif;
}

.detail-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.category-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
}

.category-card {
  display: grid;
  grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
}

.category-image {
  min-height: 100%;
}

.category-body {
  padding: 26px;
}

.category-body h3 {
  margin-top: 14px;
}

.category-body p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.68;
}

.contact-page-grid {
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  align-items: start;
}

.checklist-card {
  padding: 30px;
}

.plain-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.plain-list li {
  padding: 16px 18px;
  border: 1px solid rgba(24, 33, 43, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  line-height: 1.64;
}

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

.mini-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 24px;
  align-items: center;
  margin: 84px 0 24px;
  padding: 28px;
}

.mini-cta-copy p {
  color: var(--muted);
  line-height: 1.72;
}

.mini-cta-side {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.qr-thumb {
  width: 112px;
  height: 112px;
  border-radius: 24px;
  box-shadow: 0 16px 34px rgba(85, 67, 50, 0.14);
}

.site-footer {
  align-items: flex-start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 18px;
  max-width: 420px;
}

.footer-links a {
  color: var(--muted);
  font-weight: 700;
}

.footer-note {
  margin-top: 10px;
  max-width: 34ch;
}

.credits-list li {
  overflow-wrap: anywhere;
}

@media (max-width: 1080px) {
  .hero-mosaic,
  .proof-grid,
  .feature-grid,
  .story-grid,
  .gallery-grid,
  .category-grid,
  .contact-page-grid,
  .support-grid,
  .mini-cta {
    grid-template-columns: 1fr;
  }

  .mosaic-card-large,
  .proof-card-wide {
    grid-row: span 1;
    min-height: 320px;
  }

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

@media (max-width: 840px) {
  .hero-mosaic {
    grid-template-rows: repeat(4, minmax(210px, auto));
  }

  .mosaic-card,
  .mosaic-card-large {
    min-height: 220px;
  }

  .mini-cta {
    padding: 24px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .mosaic-card,
  .proof-card,
  .link-card,
  .category-card,
  .checklist-card,
  .dark-story,
  .mini-cta,
  .photo-stack-card {
    border-radius: 24px;
  }

  .mosaic-card-note,
  .checklist-card,
  .dark-story,
  .category-body {
    padding: 22px;
  }

  .hero-mosaic,
  .proof-grid,
  .feature-grid,
  .gallery-grid,
  .support-grid,
  .detail-grid {
    gap: 14px;
  }

  .mini-cta-side,
  .footer-links {
    width: 100%;
  }
}
