/* ==========================================================================
   GROWMORE DIGITAL
   Cognimit-inspired editorial / engineering interface
   Original implementation — designed around existing GrowMore components
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@400;500;600&family=Instrument+Serif:ital@0;1&display=swap');


/* ==========================================================================
   01. DESIGN TOKENS
   ========================================================================== */

:root {
  --black: #090b0c;
  --black-soft: #101315;
  --black-panel: #121618;

  --cream: #f3f0e9;
  --cream-soft: #dedbd4;

  --text: #e7e4dd;
  --text-muted: #98a0a4;
  --text-dim: #6f787d;

  --orange: #ff542f;
  --orange-dark: #e94727;
  --orange-soft: rgba(255, 84, 47, 0.12);

  --line: #2a3033;
  --line-light: #343a3d;
  --line-orange: #ff542f;

  --blue-muted: #8eaabd;

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  --font-serif: "Instrument Serif", Georgia, serif;

  --container: 1580px;

  --radius: 0px;
  --radius-small: 2px;
}


/* ==========================================================================
   02. RESET
   ========================================================================== */

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

html {
  margin: 0;
  padding: 0;
  background: var(--black);
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;

  background: var(--black);
  color: var(--text);

  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body,
button,
input,
textarea,
select {
  font-family: var(--font-sans);
}

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

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

button {
  color: inherit;
}

p {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
}

::selection {
  background: var(--orange);
  color: #fff;
}


/* ==========================================================================
   03. TYPOGRAPHY
   ========================================================================== */

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--cream);

  font-family: var(--font-sans);
  font-weight: 700;

  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 {
  font-size: clamp(3.5rem, 7.2vw, 7.8rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2.6rem, 5vw, 5.4rem);
  font-weight: 800;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 700;
}

h4 {
  font-size: 1rem;
  font-weight: 600;
}

em,
.serif,
.display-serif {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.02em;
}

.mono,
.eyebrow,
.section-number,
.category,
.job-meta,
.tech-chip {
  font-family: var(--font-mono);
}


/* ==========================================================================
   04. GLOBAL CONTAINER
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container);

  margin: 0 auto;

  padding-left: 58px;
  padding-right: 58px;
}

section {
  position: relative;
  padding: 120px 0;
}

.section-tight {
  padding: 70px 0;
}


/* ==========================================================================
   05. BACKGROUNDS
   ========================================================================== */

.bg-white,
.bg-warm {
  background: var(--black);
}

.bg-surface,
.bg-neutral {
  background: var(--black-soft);
}

.bg-dark {
  background: var(--black);
  color: var(--text);
}

.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4 {
  color: var(--cream);
}

.bg-dark p {
  color: var(--text-muted);
}

.section-border-top {
  border-top: 1px solid var(--line);
}

.bg-dark.section-border-top {
  border-top: 1px solid var(--line);
}


/* ==========================================================================
   06. TECHNICAL GRID
   ========================================================================== */

.hero,
section {
  --grid-line: rgba(255, 255, 255, 0.045);
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  background-image:
    linear-gradient(
      90deg,
      transparent calc(25% - 1px),
      var(--grid-line) 25%,
      transparent calc(25% + 1px)
    ),
    linear-gradient(
      90deg,
      transparent calc(50% - 1px),
      var(--grid-line) 50%,
      transparent calc(50% + 1px)
    ),
    linear-gradient(
      90deg,
      transparent calc(75% - 1px),
      var(--grid-line) 75%,
      transparent calc(75% + 1px)
    );

  opacity: 0.8;
}

.hero::before {
  content: "";

  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(
      var(--grid-line) 1px,
      transparent 1px
    );

  background-size: 100% 110px;

  pointer-events: none;
}


/* ==========================================================================
   07. HEADER
   ========================================================================== */

header.site-header {
  position: sticky;
  top: 0;

  z-index: 1000;

  height: 68px;

  background: rgba(9, 11, 12, 0.97);

  border-bottom: 1px solid var(--line);

  backdrop-filter: blur(10px);

  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

header.site-header.scrolled {
  background: rgba(9, 11, 12, 0.98);
  border-bottom-color: var(--line-light);
  box-shadow: none;
}

.nav {
  height: 68px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;

  color: var(--cream);

  font-size: 1.12rem;
  font-weight: 600;

  letter-spacing: -0.035em;
}

.brand-mark {
  width: 31px;
  height: 31px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--orange);
  color: #fff;

  border-radius: 2px;

  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
}

.brand-mark-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-about .brand-mark-img {
  width: 38px;
  height: 38px;
}

.nav-links {
  display: flex;
  align-items: center;

  gap: 34px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.nav-links a {
  position: relative;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: #899196;

  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;

  text-transform: uppercase;
  letter-spacing: 0.045em;

  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "■";

  color: var(--text-dim);

  font-size: 0.3rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--cream);
}

.nav-links a.active {
  color: var(--cream);
}

.nav-links a.active::before {
  content: "";

  position: absolute;

  left: -20px;
  right: -20px;
  bottom: -24px;

  height: 2px;

  background: var(--orange);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;

  width: 42px;
  height: 42px;

  padding: 0;

  border: 1px solid var(--line-light);
  background: transparent;

  align-items: center;
  justify-content: center;

  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 1px;

  background: var(--cream);

  display: block;

  margin: 3px 0;
}


/* ==========================================================================
   08. BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  min-height: 48px;

  padding: 0 22px;

  border-radius: 0;

  border: 1px solid var(--line-light);

  background: transparent;

  color: var(--cream);

  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;

  text-transform: uppercase;
  letter-spacing: 0.06em;

  cursor: pointer;

  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease;
}

.btn .arrow {
  transition: transform 0.18s ease;
}

.btn:hover .arrow {
  transform: translateX(4px);
}

.btn-primary {
  background: var(--orange);
  border-color: var(--orange);

  color: #080808;
}

.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);

  color: #080808;
}

.btn-secondary {
  background: transparent;

  border-color: var(--line-light);

  color: var(--cream);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.04);

  border-color: var(--cream);
}

.btn-ghost {
  padding: 0;

  border: 0;

  background: transparent;

  color: var(--orange);

  font-family: var(--font-mono);

  text-transform: uppercase;
}

.btn-ghost:hover {
  color: var(--cream);
  text-decoration: none;
}

.btn-sm {
  min-height: 42px;

  padding: 0 17px;

  font-size: 0.7rem;
}


/* ==========================================================================
   09. EYEBROW / LABELS
   ========================================================================== */

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;

  margin-bottom: 28px;

  color: var(--orange);

  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;

  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.eyebrow::before {
  content: "■";

  color: var(--orange);

  font-size: 0.42rem;
}

.bg-dark .eyebrow {
  color: var(--orange);
}

.bg-dark .eyebrow::before {
  background: none;
}


/* ==========================================================================
   10. SECTION HEADERS
   ========================================================================== */

.section-head {
  width: 100%;
  max-width: none;

  display: grid;
  grid-template-columns: 1fr 0.75fr;

  gap: 80px;

  margin-bottom: 70px;

  padding-bottom: 36px;

  border-bottom: 1px solid var(--line);
}

.section-head h2 {
  max-width: 760px;
}

.section-head p {
  max-width: 620px;

  margin: 0;

  color: #a4adb0;

  font-size: 1.05rem;
  line-height: 1.75;
}

.section-head.center {
  display: block;

  max-width: 760px;

  margin-left: auto;
  margin-right: auto;

  text-align: center;

  border-bottom: 0;
}

.section-head.center p {
  margin-left: auto;
  margin-right: auto;
}


/* ==========================================================================
   11. HERO
   ========================================================================== */

/* =========================================================
   GROWMORE HERO HEADING — CLEAN EDITORIAL LOCKUP
   ========================================================= */

.hero h1.hero-title {
  position: relative;
  z-index: 3;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  width: 100%;
  max-width: 1050px;

  margin: 0;

  color: var(--cream);

  font-family: var(--font-sans);
  font-size: clamp(4rem, 7.6vw, 8.6rem);
  font-weight: 800;

  line-height: 0.86;
  letter-spacing: -0.065em;

  white-space: normal;
}

.hero-title > span {
  display: block;

  width: max-content;
  max-width: 100%;

  margin: 0;
  padding: 0;
}


/* Sans-serif main words */

.hero-title > span:not(.hero-serif) {
  font-family: var(--font-sans);
  font-weight: 800;
}


/* Serif words */

.hero-title .hero-serif {
  font-family: var(--font-serif);
  font-weight: 400;

  letter-spacing: -0.035em;

  line-height: 0.78;
}


/* "for" sits immediately after Solutions,
   but remains visually separated */

.hero-title .hero-serif:not(.hero-last) {
  margin-left: 0.02em;
}


/* Final line */

.hero-title .hero-last {
  margin-top: 0.12em;

  font-size: 0.92em;

  white-space: nowrap;
}


/* Orange period */

.hero-title .hero-last::after {
  content: "";
  display: inline-block;

  width: 0.11em;
  height: 0.11em;

  margin-left: 0.05em;

  vertical-align: 0.05em;

  background: var(--orange);

  border-radius: 50%;
}


/* =========================================================
   HERO LAYOUT
   ========================================================= */

.hero-inner {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns: minmax(0, 1.45fr) minmax(360px, 0.75fr);

  gap: 70px;

  align-items: end;
}


/* Give the heading enough room */

.hero-inner > :first-child {
  min-width: 0;
}


/* Architecture panel */

.hero-inner > :last-child {
  min-width: 0;

  align-self: end;

  margin-bottom: 25px;
}


/* =========================================================
   HERO DESCRIPTION
   ========================================================= */

.hero-sub {
  position: relative;
  z-index: 3;

  max-width: 680px;

  margin-top: 55px;

  color: #a6adb0;

  font-family: var(--font-sans);

  font-size: 1.02rem;

  line-height: 1.75;

  letter-spacing: -0.01em;
}


/* =========================================================
   HERO BUTTONS
   ========================================================= */

.hero-ctas {
  position: relative;
  z-index: 3;

  display: flex;
  align-items: center;

  gap: 10px;

  margin-top: 32px;
}


/* =========================================================
   DESKTOP — PRECISE SCALE
   ========================================================= */

@media (min-width: 1200px) {

  .hero h1.hero-title {
    font-size: clamp(5.2rem, 7vw, 8.4rem);
  }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

  .hero-inner {
    grid-template-columns: 1fr;

    gap: 55px;
  }

  .hero h1.hero-title {
    font-size: clamp(4.3rem, 10vw, 7rem);
  }

  .hero-inner > :last-child {
    max-width: 650px;

    margin-bottom: 0;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

  .hero {
    padding-top: 70px;
    padding-bottom: 65px;
  }

  .hero h1.hero-title {
    max-width: 100%;

    font-size: clamp(3.2rem, 15vw, 5rem);

    line-height: 0.88;

    letter-spacing: -0.06em;
  }

  .hero-title .hero-last {
    white-space: normal;

    max-width: 100%;
  }

  .hero-sub {
    margin-top: 38px;

    font-size: 0.92rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;

    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
  }

}


/* ==========================================================================
   12. PAGE HERO
   ========================================================================== */

.page-hero {
  position: relative;

  padding: 90px 0 75px;

  background: var(--black);

  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 1000px;

  font-size: clamp(3.5rem, 7vw, 7rem);
}

.page-hero .hero-sub {
  max-width: 680px;

  margin-top: 28px;
}

.breadcrumb {
  margin-bottom: 30px;

  color: var(--text-dim);

  font-family: var(--font-mono);
  font-size: 0.7rem;

  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.breadcrumb a:hover {
  color: var(--orange);
}


/* ==========================================================================
   13. SIGNATURE ARCHITECTURE DIAGRAM
   ========================================================================== */

.stack-diagram {
  position: relative;

  width: 100%;

  padding: 0;

  border: 1px solid var(--line);

  border-radius: 0;

  background: var(--black-soft);

  font-family: var(--font-mono);

  overflow: hidden;
}

.stack-diagram::before {
  content: "SYSTEM / ARCHITECTURE";

  display: block;

  padding: 13px 18px;

  border-bottom: 1px solid var(--line);

  color: var(--text-dim);

  font-size: 0.62rem;

  letter-spacing: 0.13em;
}

.stack-diagram-head {
  display: flex;
  justify-content: space-between;

  padding: 16px 18px;

  border-bottom: 1px solid var(--line);

  color: var(--text-dim);

  font-size: 0.68rem;
}

.arch-stack {
  display: flex;
  flex-direction: column;
}

.arch-node {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: space-between;

  min-height: 70px;

  padding: 0 20px;

  border-bottom: 1px solid var(--line);

  color: var(--cream);

  font-family: var(--font-mono);
  font-size: 0.78rem;
}

.arch-node:hover {
  background: rgba(255, 255, 255, 0.025);
}

.arch-node .layer-tag {
  padding: 4px 8px;

  border: 1px solid var(--line-light);

  border-radius: 0;

  background: transparent;

  color: var(--orange);

  font-size: 0.6rem;

  text-transform: uppercase;
}

.arch-connector {
  display: none;
}


/* ==========================================================================
   14. FLOW
   ========================================================================== */

.flow {
  display: flex;
  align-items: center;

  width: 100%;

  padding: 20px 24px;

  border: 1px solid var(--line);

  border-radius: 0;

  background: var(--black-soft);

  color: var(--text-muted);

  font-family: var(--font-mono);
  font-size: 0.7rem;

  text-transform: uppercase;
  letter-spacing: 0.07em;

  flex-wrap: wrap;
}

.flow .sep {
  margin: 0 16px;

  color: var(--orange);
}


/* ==========================================================================
   15. SIGNAL STRIP
   ========================================================================== */

.signal-strip {
  padding: 0;
}

.signal-row {
  display: grid;

  grid-template-columns: 80px 1fr 1fr;

  gap: 30px;

  align-items: center;

  min-height: 105px;

  padding: 22px 0;

  border-top: 1px solid var(--line);
}

.signal-row:last-child {
  border-bottom: 1px solid var(--line);
}

.signal-num {
  color: var(--orange);

  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
}

.signal-row h3 {
  margin: 0;

  color: var(--cream);

  font-size: 1.35rem;
}

.signal-row p {
  margin: 0;

  color: var(--text-muted);

  font-size: 0.9rem;
}


/* ==========================================================================
   16. GRIDS
   ========================================================================== */

.grid-3,
.grid-2 {
  display: grid;

  gap: 0;

  border: 1px solid var(--line);

  border-radius: 0;

  background: var(--line);

  overflow: hidden;
}

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

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

.cell {
  min-height: 260px;

  padding: 38px;

  background: var(--black);

  border: 0;

  transition: background 0.2s ease;
}

.cell:hover {
  background: var(--black-soft);
}


/* ==========================================================================
   17. SERVICE CARDS
   ========================================================================== */

.service-card-v2 {
  position: relative;

  min-height: 310px;

  padding: 38px;

  display: flex;
  flex-direction: column;

  background: var(--black);

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.service-card-v2:hover {
  background: var(--black-soft);
}

.service-card-v2 .svc-num {
  margin-bottom: 35px;

  color: var(--orange);

  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.service-card-v2 .svc-label {
  margin-bottom: 18px;

  color: var(--text-dim);

  font-family: var(--font-mono);
  font-size: 0.62rem;

  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.service-card-v2 h3 {
  margin-bottom: 16px;

  color: var(--cream);

  font-size: 1.5rem;

  line-height: 1.05;
}

.service-card-v2 p {
  max-width: 470px;

  margin-bottom: 28px;

  color: var(--text-muted);

  font-size: 0.92rem;

  line-height: 1.65;

  flex-grow: 1;
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: var(--orange);

  font-family: var(--font-mono);
  font-size: 0.68rem;

  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.svc-link .arrow {
  transition: transform 0.2s ease;
}

.service-card-v2:hover .svc-link .arrow {
  transform: translateX(5px);
}


/* ==========================================================================
   18. TECHNOLOGY
   ========================================================================== */

.tech-row {
  display: flex;

  flex-wrap: wrap;

  gap: 0;

  border-top: 1px solid var(--line);
}

.tech-chip {
  display: inline-flex;
  align-items: center;

  min-height: 50px;

  padding: 0 17px;

  border: 0;

  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);

  border-radius: 0;

  background: transparent;

  color: #9ca5a8;

  font-size: 0.68rem;

  transition:
    color 0.15s ease,
    background 0.15s ease;
}

.tech-chip:hover {
  background: var(--orange);

  color: #080808;
}


/* ==========================================================================
   19. SOLUTIONS
   ========================================================================== */

.solution-row {
  display: grid;

  grid-template-columns: 80px 0.8fr 1.4fr;

  gap: 32px;

  align-items: start;

  padding: 38px 0;

  border-top: 1px solid var(--line);
}

.solution-row:last-child {
  border-bottom: 1px solid var(--line);
}

.solution-num {
  padding-top: 5px;

  color: var(--orange);

  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.solution-row h3 {
  margin: 0;

  color: var(--cream);

  font-size: 1.6rem;
}

.solution-row p {
  max-width: 650px;

  margin: 0;

  color: var(--text-muted);

  font-size: 0.92rem;

  line-height: 1.7;
}


/* ==========================================================================
   20. PROJECTS / CASE STUDIES
   ========================================================================== */

.case-card {
  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  margin-bottom: 0;

  border: 0;

  border-top: 1px solid var(--line);

  border-radius: 0;

  background: var(--black);

  overflow: hidden;
}

.case-card:last-child {
  border-bottom: 1px solid var(--line);
}

.case-visual {
  position: relative;

  min-height: 400px;

  padding: 38px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  background:
    linear-gradient(
      135deg,
      #111617,
      #0b0d0e
    );

  border-right: 1px solid var(--line);

  color: var(--text-dim);

  font-family: var(--font-mono);
  font-size: 0.67rem;
}

.case-visual::before {
  content: "";

  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(
      rgba(255,255,255,0.04) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,0.04) 1px,
      transparent 1px
    );

  background-size: 45px 45px;
}

.case-visual .case-index {
  position: relative;
  z-index: 2;

  margin-bottom: 10px;

  color: var(--orange);

  font-family: var(--font-mono);
  font-size: 0.75rem;

  font-style: normal;
}

.case-visual.has-photo {
  padding: 0;
}

.case-visual.has-photo::before {
  display: none;
}

.case-visual .case-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(10%) contrast(1.04);
}

.case-visual.has-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,11,12,0.08) 0%, rgba(9,11,12,0.92) 88%);
}

.case-visual.has-photo .case-index {
  padding: 38px;
  margin-bottom: 0;
}


/* ==========================================================================
   20b. HOMEPAGE PHOTO SECTIONS
   ========================================================================== */

.photo-band {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.photo-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.05) brightness(0.9);
}

.photo-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,11,12,0.35) 0%, rgba(9,11,12,0.95) 92%);
}

.photo-band .container {
  position: relative;
  z-index: 2;
  padding-bottom: 64px;
  padding-top: 64px;
}

.photo-band .eyebrow {
  color: var(--orange);
}

.photo-band blockquote {
  margin: 0;
  max-width: 900px;
  color: var(--cream);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  line-height: 1.3;
  letter-spacing: -0.015em;
}

.photo-band cite {
  display: block;
  margin-top: 20px;
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.split-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.split-media .split-photo {
  position: relative;
  border: 1px solid var(--line);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.split-media .split-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%) contrast(1.03);
}

.split-media .split-text h2 {
  margin-bottom: 18px;
}

@media (max-width: 900px) {
  .split-media {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .split-media .split-photo {
    order: -1;
  }
}

.accent-photo-row {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.accent-photo-row .accent-photo {
  position: relative;
  border: 1px solid var(--line);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.accent-photo-row .accent-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%) contrast(1.03);
}

@media (max-width: 900px) {
  .accent-photo-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .accent-photo-row .accent-photo {
    order: -1;
    max-width: 340px;
  }
}


  min-height: 400px;

  padding: 48px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.case-body .category {
  margin-bottom: 16px;

  color: var(--orange);

  font-size: 0.65rem;

  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.case-body h3 {
  margin-bottom: 20px;

  color: var(--cream);

  font-size: clamp(2rem, 3vw, 3.5rem);

  line-height: 0.95;
}

.case-body p {
  max-width: 680px;

  color: var(--text-muted);

  font-size: 0.95rem;

  line-height: 1.75;
}

.case-tech {
  display: flex;

  flex-wrap: wrap;

  gap: 0;

  margin: 15px 0 30px;
}

.case-tech span {
  padding: 7px 11px;

  border: 1px solid var(--line);

  border-radius: 0;

  color: var(--text-dim);

  font-family: var(--font-mono);
  font-size: 0.62rem;
}

.placeholder-badge {
  align-self: flex-start;

  margin-bottom: 20px;

  padding: 6px 10px;

  border: 1px dashed var(--line-light);

  border-radius: 0;

  color: var(--text-dim);

  font-family: var(--font-mono);
  font-size: 0.58rem;

  text-transform: uppercase;
  letter-spacing: 0.08em;
}


/* ==========================================================================
   21. TIMELINE
   ========================================================================== */

.timeline {
  display: flex;

  width: 100%;
}

.timeline-step {
  position: relative;

  flex: 1;

  padding: 28px 25px 0 0;
}

.timeline-step::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;
  right: 0;

  height: 1px;

  background: var(--line);
}

.timeline-step.is-active::before {
  background: var(--orange);
}

.timeline-step::after {
  content: "";

  position: absolute;

  top: -3px;
  left: 0;

  width: 7px;
  height: 7px;

  border: 0;

  border-radius: 0;

  background: var(--orange);
}

.timeline-step .t-label {
  display: block;

  margin-bottom: 12px;

  color: var(--orange);

  font-family: var(--font-mono);
  font-size: 0.64rem;

  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.timeline-step h3 {
  margin-bottom: 10px;

  color: var(--cream);

  font-size: 1.2rem;
}

.timeline-step p {
  max-width: 220px;

  padding-right: 10px;

  color: var(--text-muted);

  font-size: 0.82rem;
}


/* ==========================================================================
   22. PROCESS STEPS
   ========================================================================== */

.process-steps {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 0;

  border: 1px solid var(--line);

  border-radius: 0;

  background: var(--line);

  overflow: hidden;
}

.process-step {
  min-height: 220px;

  padding: 34px;

  background: var(--black);
}

.process-step .step-num {
  display: block;

  margin-bottom: 38px;

  color: var(--orange);

  font-family: var(--font-mono);
  font-size: 0.7rem;
}

.process-step h3 {
  margin-bottom: 13px;

  color: var(--cream);

  font-size: 1.25rem;
}

.process-step p {
  color: var(--text-muted);

  font-size: 0.87rem;
}


/* ==========================================================================
   23. VALUES / WHY GROWMORE
   ========================================================================== */

.value-row {
  display: grid;

  grid-template-columns: 80px 0.8fr 1.4fr;

  gap: 30px;

  padding: 30px 0;

  border-top: 1px solid var(--line);
}

.value-row:last-child {
  border-bottom: 1px solid var(--line);
}

.value-mark {
  padding-top: 5px;

  color: var(--orange);

  font-family: var(--font-mono);
  font-size: 0.7rem;
}

.value-row h3 {
  margin: 0;

  color: var(--cream);

  font-size: 1.25rem;
}

.value-row p {
  margin: 0;

  color: var(--text-muted);

  font-size: 0.9rem;
}


/* ==========================================================================
   24. CTA
   ========================================================================== */

.cta-band {
  position: relative;

  padding: 110px 0;

  background: var(--orange);

  color: #090909;

  text-align: left;

  overflow: hidden;
}

.cta-band::before {
  content: "";

  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(
      90deg,
      transparent 24.9%,
      rgba(0,0,0,0.08) 25%,
      transparent 25.1%
    ),
    linear-gradient(
      90deg,
      transparent 49.9%,
      rgba(0,0,0,0.08) 50%,
      transparent 50.1%
    ),
    linear-gradient(
      90deg,
      transparent 74.9%,
      rgba(0,0,0,0.08) 75%,
      transparent 75.1%
    );
}

.cta-band .container {
  position: relative;
  z-index: 2;
}

.cta-band h2 {
  max-width: 900px;

  margin-bottom: 25px;

  color: #080808;

  font-size: clamp(3rem, 6vw, 6rem);
}

.cta-band p {
  max-width: 650px;

  margin: 0 0 34px;

  color: rgba(0,0,0,0.65);

  font-size: 1rem;
}

.cta-band .btn-primary {
  background: #090909;

  border-color: #090909;

  color: #fff;
}

.cta-band .btn-primary:hover {
  background: #181818;

  border-color: #181818;
}

.cta-band .btn-secondary {
  border-color: rgba(0,0,0,0.45);

  color: #090909;
}

.cta-band .btn-secondary:hover {
  background: rgba(0,0,0,0.06);

  border-color: #090909;
}


/* ==========================================================================
   25. ABOUT
   ========================================================================== */

.about-section {
  padding: 90px 0;

  border-top: 1px solid var(--line);
}

.about-section:first-of-type {
  border-top: 0;
}

.two-col {
  display: grid;

  grid-template-columns: 0.75fr 1.4fr;

  gap: 100px;
}

.two-col h2 {
  margin: 0;

  color: var(--cream);
}

.two-col p {
  color: var(--text-muted);

  font-size: 1rem;

  line-height: 1.8;
}

.leader-card {
  display: flex;

  gap: 22px;

  padding: 28px 0;

  border-top: 1px solid var(--line);

  border-radius: 0;

  background: transparent;
}

.leader-avatar {
  width: 58px;
  height: 58px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--line);

  border-radius: 0;

  background: var(--black-soft);

  color: var(--orange);

  font-family: var(--font-serif);

  font-size: 1.6rem;
}

.leader-card h3 {
  margin-bottom: 4px;

  color: var(--cream);

  font-size: 1.15rem;
}

.leader-role {
  display: block;

  margin-bottom: 10px;

  color: var(--orange);

  font-family: var(--font-mono);
  font-size: 0.64rem;

  text-transform: uppercase;
}

.leader-card p {
  margin: 0;

  color: var(--text-muted);

  font-size: 0.85rem;
}


/* ==========================================================================
   26. CAREERS
   ========================================================================== */

.job-card {
  position: relative;

  padding: 30px 0;

  margin-bottom: 0;

  border: 0;

  border-top: 1px solid var(--line);

  border-radius: 0;

  background: transparent;

  transition: background 0.2s ease;
}

.job-card:last-child {
  border-bottom: 1px solid var(--line);
}

.job-card:hover {
  background: rgba(255,255,255,0.018);
}

.job-head {
  display: grid;

  grid-template-columns: 1fr auto;

  gap: 30px;

  align-items: center;
}

.job-title {
  margin-bottom: 9px;

  color: var(--cream);

  font-family: var(--font-sans);

  font-size: 1.55rem;
  font-weight: 600;

  letter-spacing: -0.035em;
}

.job-meta {
  display: flex;

  gap: 9px;

  flex-wrap: wrap;

  color: var(--text-dim);

  font-size: 0.62rem;

  text-transform: uppercase;
}

.job-meta span {
  padding: 4px 8px;

  border: 1px solid var(--line);

  border-radius: 0;
}

.job-desc {
  max-width: 700px;

  margin: 15px 0;

  color: var(--text-muted);

  font-size: 0.88rem;
}

.job-skills {
  display: flex;

  gap: 7px;

  flex-wrap: wrap;

  margin-bottom: 20px;
}

.job-skills span {
  padding: 4px 8px;

  background: transparent;

  border: 1px solid var(--line);

  border-radius: 0;

  color: var(--text-dim);

  font-family: var(--font-mono);
  font-size: 0.6rem;
}

.job-actions {
  display: flex;

  gap: 10px;
}

.job-details {
  max-height: 0;

  overflow: hidden;

  border-top: 1px solid transparent;

  margin-top: 0;

  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
}

.job-details.open {
  max-height: 800px;

  padding-top: 28px;

  border-top-color: var(--line);
}

.job-details p,
.job-details li {
  color: var(--text-muted);

  font-size: 0.88rem;
}

.job-details ul {
  padding-left: 20px;
}


/* ==========================================================================
   27. MODAL
   ========================================================================== */

.modal-overlay {
  position: fixed;
  inset: 0;

  z-index: 2000;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 24px;

  background: rgba(0,0,0,0.78);

  opacity: 0;

  pointer-events: none;

  transition: opacity 0.2s ease;
}

.modal-overlay.open {
  opacity: 1;

  pointer-events: auto;
}

.modal-panel {
  position: relative;

  width: 100%;
  max-width: 650px;

  max-height: 90vh;

  padding: 40px;

  overflow-y: auto;

  border: 1px solid var(--line-light);

  border-radius: 0;

  background: var(--black-soft);

  transform: translateY(12px);

  transition: transform 0.2s ease;
}

.modal-overlay.open .modal-panel {
  transform: translateY(0);
}

.modal-close {
  position: absolute;

  top: 18px;
  right: 18px;

  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--line);

  border-radius: 0;

  background: transparent;

  color: var(--text-muted);

  cursor: pointer;
}

.modal-close:hover {
  border-color: var(--orange);

  color: var(--orange);
}

.modal-panel h3 {
  margin-bottom: 8px;

  color: var(--cream);
}

.modal-panel .modal-role {
  color: var(--orange);
}

.modal-panel .modal-sub {
  margin-bottom: 28px;

  color: var(--text-muted);
}


/* ==========================================================================
   28. FORMS
   ========================================================================== */

.form-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 24px;
}

.form-field {
  display: flex;
  flex-direction: column;

  gap: 8px;

  margin-bottom: 18px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--cream);

  font-family: var(--font-mono);
  font-size: 0.67rem;

  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-field .req {
  color: var(--orange);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;

  padding: 14px 15px;

  border: 1px solid var(--line);

  border-radius: 0;

  outline: none;

  background: var(--black);

  color: var(--cream);

  font-family: var(--font-sans);
  font-size: 0.9rem;

  transition:
    border-color 0.15s ease,
    background 0.15s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-dim);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--orange);

  background: var(--black-soft);
}

.form-field textarea {
  min-height: 150px;

  resize: vertical;
}

.field-error {
  display: none;

  color: #ff6a57;

  font-size: 0.72rem;
}

.form-field.invalid input,
.form-field.invalid select,
.form-field.invalid textarea {
  border-color: #ff6a57;
}

.form-field.invalid .field-error {
  display: block;
}

.form-note {
  color: var(--text-dim);

  font-size: 0.72rem;
}

.form-status {
  display: none;

  padding: 15px;

  margin-bottom: 22px;

  border: 1px solid var(--line);

  border-radius: 0;

  font-size: 0.82rem;
}

.form-status.show {
  display: block;
}

.form-status.success {
  background: rgba(255,84,47,0.08);

  border-color: rgba(255,84,47,0.4);

  color: var(--cream);
}

.form-status.loading {
  background: var(--black-soft);

  color: var(--text-muted);
}

.form-status.error {
  background: rgba(220, 60, 45, 0.1);

  border-color: rgba(220, 60, 45, 0.4);

  color: #ff9c8f;
}

/* ---------- success-card: full in-page confirmation state, replaces the form ---------- */
.success-card {
  text-align: center;
  padding: 48px 30px;
  border: 1px solid var(--line);
  background: var(--black-panel);
}

.success-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(127, 212, 138, 0.1);
  border: 1px solid rgba(127, 212, 138, 0.4);
  color: #7fd48a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 1.5rem;
}

.success-card h3 {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cream);
  margin: 0 0 12px;
}

.success-card p {
  color: var(--text-muted);
  font-size: 0.94rem;
  max-width: 380px;
  margin: 0 auto 22px;
}

.success-card .reference {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--orange);
  border: 1px dashed var(--line);
  padding: 10px 20px;
  margin-bottom: 6px;
}

.success-card .reference-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  margin-bottom: 26px;
}


/* ==========================================================================
   29. CONTACT
   ========================================================================== */

.contact-layout {
  display: grid;

  grid-template-columns: 1.25fr 0.75fr;

  gap: 70px;

  align-items: start;
}

.contact-form-panel {
  padding: 42px;

  border: 1px solid var(--line);

  border-radius: 0;

  background: var(--black-soft);
}

.info-block {
  padding: 24px 0;

  margin-bottom: 0;

  border: 0;

  border-top: 1px solid var(--line);

  border-radius: 0;
}

.info-block:last-child {
  border-bottom: 1px solid var(--line);
}

.info-block h4 {
  margin-bottom: 10px;

  color: var(--orange);

  font-family: var(--font-mono);
  font-size: 0.65rem;

  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.info-block p {
  margin: 0;

  color: var(--cream);

  font-size: 0.92rem;
}

.info-block a {
  color: var(--cream);
}

.info-block a:hover {
  color: var(--orange);
}


/* ==========================================================================
   30. FOOTER
   ========================================================================== */

footer {
  padding: 80px 0 28px;

  background: #070809;

  color: var(--text-muted);

  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;

  grid-template-columns: 1.6fr 1fr 1fr 1fr;

  gap: 55px;

  padding-bottom: 60px;

  border-bottom: 1px solid var(--line);
}

.footer-grid h4 {
  margin-bottom: 20px;

  color: var(--text-dim);

  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;

  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-grid ul {
  display: flex;
  flex-direction: column;

  gap: 12px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.footer-grid a {
  color: #9aa1a4;

  font-size: 0.84rem;
}

.footer-grid a:hover {
  color: var(--orange);
}

.footer-about .brand {
  margin-bottom: 22px;

  color: var(--cream);
}

.footer-about .brand-mark {
  background: var(--orange);
  color: #080808;
}

.footer-about p {
  max-width: 330px;

  color: var(--text-dim);

  font-size: 0.84rem;
}

.footer-bottom {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 20px;

  padding-top: 25px;
}

.footer-bottom p {
  margin: 0;

  color: var(--text-dim);

  font-family: var(--font-mono);
  font-size: 0.63rem;
}

.footer-legal {
  display: flex;

  gap: 24px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.footer-legal a {
  color: var(--text-dim);

  font-family: var(--font-mono);
  font-size: 0.63rem;
}

.footer-legal a:hover {
  color: var(--orange);
}


/* ==========================================================================
   31. DIVIDERS / UTILITY
   ========================================================================== */

.divider {
  width: 100%;
  height: 1px;

  margin: 0;

  background: var(--line);

  border: 0;
}

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

.center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}


/* ==========================================================================
   32. SKIP LINK / ACCESSIBILITY
   ========================================================================== */

.skip-link {
  position: absolute;

  left: -9999px;
  top: 0;

  padding: 12px 18px;

  background: var(--orange);

  color: #080808;

  font-family: var(--font-mono);
  font-size: 0.7rem;

  text-transform: uppercase;
}

.skip-link:focus {
  left: 16px;
  top: 16px;

  z-index: 3000;
}

:focus-visible {
  outline: 1px solid var(--orange);

  outline-offset: 4px;
}


/* ==========================================================================
   33. SCROLL REVEAL
   ========================================================================== */

.reveal {
  opacity: 0;

  transform: translateY(18px);

  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.reveal.in {
  opacity: 1;

  transform: translateY(0);
}


/* ==========================================================================
   34. RESPONSIVE — TABLET
   ========================================================================== */

@media (max-width: 1100px) {

  .container {
    padding-left: 34px;
    padding-right: 34px;
  }

  .nav-links {
    gap: 20px;
  }

  .hero-inner {
    grid-template-columns: 1fr 0.7fr;

    gap: 50px;
  }

  .hero h1 {
    font-size: clamp(4rem, 8vw, 7rem);
  }

  .section-head {
    gap: 50px;
  }

  .case-body {
    padding: 38px;
  }

  .footer-grid {
    gap: 30px;
  }
}


/* ==========================================================================
   35. RESPONSIVE — MOBILE NAV
   ========================================================================== */

@media (max-width: 900px) {

  header.site-header {
    height: 64px;
  }

  .nav {
    height: 64px;
  }

  .nav-links {
    position: fixed;

    top: 64px;
    left: 0;
    right: 0;

    display: flex;
    flex-direction: column;
    align-items: stretch;

    gap: 0;

    max-height: 0;

    overflow: hidden;

    background: var(--black);

    border-bottom: 1px solid var(--line);

    transition: max-height 0.3s ease;
  }

  .nav-links.open {
    max-height: 520px;
  }

  .nav-links li {
    width: 100%;

    border-top: 1px solid var(--line);
  }

  .nav-links a {
    width: 100%;

    padding: 17px 30px;

    font-size: 0.75rem;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a.active::before {
    display: none;
  }

  .nav-right .btn-primary {
    display: none;
  }

  .nav-toggle {
    display: flex;

    flex-direction: column;
  }

  .hero {
    min-height: auto;

    padding: 80px 0 70px;
  }

  .hero-inner {
    grid-template-columns: 1fr;

    gap: 60px;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 12vw, 6rem);
  }

  .hero-sub {
    font-size: 0.98rem;
  }

  .section-head {
    grid-template-columns: 1fr;

    gap: 25px;
  }

  .signal-row {
    grid-template-columns: 55px 1fr;

    gap: 15px;
  }

  .signal-row p {
    grid-column: 2 / -1;
  }

  .solution-row,
  .value-row {
    grid-template-columns: 55px 1fr;

    gap: 15px;
  }

  .solution-row p,
  .value-row p {
    grid-column: 2 / -1;
  }

  .timeline {
    flex-direction: column;

    gap: 0;
  }

  .timeline-step {
    padding: 24px 0 24px 28px;
  }

  .timeline-step::before {
    top: 0;
    bottom: 0;

    left: 0;
    right: auto;

    width: 1px;
    height: auto;
  }

  .timeline-step::after {
    top: 25px;
    left: -3px;
  }

  .timeline-step p {
    max-width: 600px;
  }

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

  .case-visual {
    min-height: 260px;

    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .case-body {
    min-height: auto;

    padding: 38px;
  }

  .job-head {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;

    gap: 45px;
  }
}


/* ==========================================================================
   36. RESPONSIVE — SMALL MOBILE
   ========================================================================== */

@media (max-width: 700px) {

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  section {
    padding: 75px 0;
  }

  .section-tight {
    padding: 50px 0;
  }

  .hero {
    padding: 65px 0 60px;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.8rem);

    line-height: 0.91;
  }

  .hero-sub {
    margin-top: 28px;

    font-size: 0.92rem;
  }

  .hero-ctas {
    align-items: stretch;

    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .page-hero {
    padding: 65px 0 50px;
  }

  .page-hero h1 {
    font-size: clamp(3rem, 13vw, 4.5rem);
  }

  .section-head {
    margin-bottom: 45px;

    padding-bottom: 25px;
  }

  .section-head h2 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .cell {
    min-height: auto;

    padding: 30px 25px;
  }

  .service-card-v2 {
    min-height: 280px;

    padding: 30px 25px;
  }

  .signal-row {
    min-height: auto;

    padding: 24px 0;
  }

  .signal-row h3 {
    font-size: 1.15rem;
  }

  .solution-row h3 {
    font-size: 1.3rem;
  }

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

  .process-step {
    min-height: auto;

    padding: 30px 25px;
  }

  .case-visual {
    min-height: 210px;

    padding: 25px;
  }

  .case-body {
    padding: 30px 25px;
  }

  .case-body h3 {
    font-size: 2.4rem;
  }

  .contact-form-panel {
    padding: 28px 22px;
  }

  .form-grid {
    grid-template-columns: 1fr;

    gap: 0;
  }

  .form-field.full {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;

    gap: 40px 25px;
  }

  .footer-about {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;

    align-items: flex-start;
  }

  .footer-legal {
    flex-wrap: wrap;

    gap: 14px;
  }
}


/* ==========================================================================
   37. VERY SMALL DEVICES
   ========================================================================== */

@media (max-width: 420px) {

  .container {
    padding-left: 17px;
    padding-right: 17px;
  }

  .brand {
    font-size: 1rem;
  }

  .brand-mark {
    width: 28px;
    height: 28px;
  }

  .hero h1 {
    font-size: 3.05rem;
  }

  .eyebrow {
    font-size: 0.62rem;
  }

  .btn {
    min-height: 46px;

    font-size: 0.68rem;
  }

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


/* ==========================================================================
   38. REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

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

    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;

    transform: none;
  }
}