/* Unergy Inc. — company site */
:root {
  --ink: #121c16;
  --forest: #1c3328;
  --forest-deep: #13221b;
  --moss: #3d5c47;
  --leaf: #6a8f5a;
  --leaf-bright: #c5d9a4;
  --copper: #b08a5b;
  --copper-deep: #8d6b42;
  --cream: #f3efe6;
  --paper: #faf8f3;
  --white: #ffffff;
  --muted: #5a6b60;
  --body: #2c3a32;
  --line: #ddd6c8;
  --line-strong: #cfc6b4;
  --danger: #9b3d2e;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow-sm: 0 1px 2px rgba(18, 28, 22, 0.06);
  --shadow: 0 8px 28px rgba(18, 28, 22, 0.08);
  --shadow-lg: 0 22px 60px rgba(18, 28, 22, 0.14);
  --font: "Outfit", system-ui, -apple-system, sans-serif;
  --font-display: "Fraunces", "Times New Roman", serif;
  --max: 1160px;
  --header-h: 76px;
  --transition: 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--body);
  background: var(--paper);
  min-height: 100vh;
}

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

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

ul {
  list-style: none;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -40px;
  z-index: 2000;
  background: var(--forest);
  color: var(--cream);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: 0.75rem;
}

.container {
  width: min(100% - 2.25rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: 5.25rem 0;
}

.section-sm {
  padding: 3.5rem 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 0.85rem;
}

.section-label::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--leaf);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  font-weight: 600;
  font-optical-sizing: auto;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 38rem;
  line-height: 1.7;
}

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

.text-center .section-label {
  justify-content: center;
}

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

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--paper);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition),
    box-shadow var(--transition);
}

.site-header.scrolled {
  background: var(--paper);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.page-home .site-header:not(.scrolled) {
  position: absolute;
  left: 0;
  right: 0;
  background: transparent;
  backdrop-filter: none;
}

.page-home .site-header:not(.scrolled) .brand,
.page-home .site-header:not(.scrolled) .nav-desktop a,
.page-home .site-header:not(.scrolled) .menu-toggle span {
  color: var(--cream);
}

.page-home .site-header:not(.scrolled) .menu-toggle span {
  background: var(--cream);
}

.page-home .site-header:not(.scrolled) .nav-desktop a:hover,
.page-home .site-header:not(.scrolled) .nav-desktop a.active {
  background: rgba(243, 239, 230, 0.12);
  color: var(--white);
}

.page-home .site-header:not(.scrolled) .btn-primary {
  background: var(--leaf-bright);
  color: var(--forest-deep);
  box-shadow: none;
}

.page-home .site-header:not(.scrolled) .btn-primary:hover {
  background: var(--cream);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--forest);
  flex-shrink: 0;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: block;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

.brand-type {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.28rem;
  letter-spacing: -0.02em;
}

.brand-inc {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.72;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.15rem;
}

.nav-desktop a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--muted);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--ink);
  background: rgba(28, 51, 40, 0.06);
}

.desktop-only {
  display: none;
}

.header-actions .desktop-only {
  display: none;
}

.honeypot,
[hidden] {
  display: none !important;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--leaf);
  outline-offset: 3px;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1001;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 0.75rem 1.25rem 1.4rem;
  box-shadow: var(--shadow);
}

.nav-mobile.open {
  display: block;
}

.page-home .site-header:not(.scrolled) .nav-mobile {
  background: var(--forest-deep);
  border-bottom-color: rgba(243, 239, 230, 0.12);
}

.page-home .site-header:not(.scrolled) .nav-mobile a {
  color: var(--cream);
}

.nav-mobile a {
  display: block;
  padding: 0.85rem 1rem;
  font-weight: 500;
  color: var(--body);
  border-radius: var(--radius-sm);
}

.nav-mobile a:hover,
.nav-mobile a.active {
  background: rgba(28, 51, 40, 0.06);
}

.nav-mobile .btn {
  width: 100%;
  margin-top: 0.6rem;
  justify-content: center;
}

body.nav-open {
  overflow: hidden;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.94rem;
  padding: 0.78rem 1.35rem;
  border-radius: 11px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
    border-color var(--transition), box-shadow var(--transition),
    transform var(--transition);
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.98);
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-primary {
  background: var(--forest);
  color: var(--cream);
  box-shadow: 0 2px 10px rgba(28, 51, 40, 0.28);
}

.btn-primary:hover {
  background: #243f32;
}

.btn-secondary {
  background: transparent;
  color: var(--cream);
  border-color: rgba(243, 239, 230, 0.35);
}

.btn-secondary:hover {
  background: rgba(243, 239, 230, 0.08);
  border-color: rgba(243, 239, 230, 0.6);
}

.btn-outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--line-strong);
}

.btn-outline:hover {
  border-color: var(--forest);
  background: rgba(28, 51, 40, 0.04);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
}

.btn-ghost:hover {
  background: rgba(243, 239, 230, 0.1);
}

.btn-sm {
  padding: 0.5rem 0.95rem;
  font-size: 0.88rem;
}

.btn-lg {
  padding: 0.95rem 1.55rem;
  font-size: 1rem;
}

.hero-ctas,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  overflow: hidden;
  background: var(--forest-deep);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(19, 34, 27, 0.35) 0%, rgba(19, 34, 27, 0.2) 28%, rgba(19, 34, 27, 0.78) 100%),
    linear-gradient(90deg, rgba(19, 34, 27, 0.45) 0%, rgba(19, 34, 27, 0.05) 55%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 8.5rem 0 4.5rem;
  width: min(100% - 2.25rem, var(--max));
  margin-inline: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--leaf-bright);
  margin-bottom: 1.15rem;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--leaf-bright);
  box-shadow: 0 0 0 4px rgba(197, 217, 164, 0.2);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-optical-sizing: auto;
  font-size: clamp(2.4rem, 6.4vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 14ch;
  margin-bottom: 1.15rem;
}

.hero h1 .accent {
  font-style: italic;
  font-weight: 500;
  color: var(--leaf-bright);
}

.hero-text {
  font-size: 1.12rem;
  max-width: 38rem;
  color: rgba(243, 239, 230, 0.86);
  margin-bottom: 1.8rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin-top: 2.75rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(243, 239, 230, 0.16);
  max-width: 40rem;
}

@media (min-width: 560px) {
  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}

.hero-stats dt {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(243, 239, 230, 0.62);
  font-weight: 600;
}

.hero-stats dd {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 0.2rem;
}

/* ——— Intro / thesis ——— */
.intro-grid {
  display: grid;
  gap: 2.5rem;
}

.intro-copy p + p {
  margin-top: 1rem;
}

.pull {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.35;
  color: var(--forest);
  max-width: 22ch;
}

.pillars {
  display: grid;
  gap: 1.1rem;
}

.pillar {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.45rem 1.55rem;
  box-shadow: var(--shadow-sm);
}

.pillar-num {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--copper);
  margin-bottom: 0.55rem;
}

.pillar h3 {
  font-size: 1.12rem;
  color: var(--ink);
  margin-bottom: 0.45rem;
  letter-spacing: -0.01em;
}

.pillar p {
  color: var(--muted);
  font-size: 0.98rem;
}

/* ——— Split photo ——— */
.split {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.split-photo {
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 280px;
  box-shadow: var(--shadow);
}

.split-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.split-copy h2 {
  margin-bottom: 0.9rem;
}

.split-copy p + p {
  margin-top: 0.9rem;
  color: var(--muted);
}

.split-list {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.7rem;
}

.split-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--body);
}

.split-list svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--leaf);
  margin-top: 0.15rem;
}

/* ——— How it works ——— */
.band {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.steps {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.step {
  position: relative;
  padding: 1.6rem 1.4rem 1.5rem;
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}

.step h3 {
  color: var(--ink);
  font-size: 1.15rem;
  margin: 0.35rem 0 0.45rem;
}

.step p {
  color: var(--muted);
  font-size: 0.98rem;
}

.step-index {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper-deep);
}

/* ——— Venture cards ——— */
.venture-grid {
  display: grid;
  gap: 1.15rem;
  margin-top: 2.4rem;
}

.venture {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.55rem 1.45rem 1.45rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform var(--transition), box-shadow var(--transition),
    border-color var(--transition);
}

.venture:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--line-strong);
}

.venture-kicker {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 0.45rem;
}

.venture h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.55rem;
}

.venture p {
  color: var(--muted);
  flex: 1;
}

.venture-link {
  margin-top: 1.1rem;
  font-weight: 600;
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.venture-link:hover {
  color: var(--moss);
}

.venture.featured {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}

.venture.featured .venture-kicker {
  color: var(--leaf-bright);
}

.venture.featured h3,
.venture.featured .venture-link {
  color: var(--cream);
}

.venture.featured p {
  color: rgba(243, 239, 230, 0.9);
}

/* ——— Responsibility strip ——— */
.responsibility-panel {
  display: grid;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--forest-deep);
  color: var(--cream);
}

.responsibility-panel img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.responsibility-copy {
  padding: 1.75rem 1.5rem 1.9rem;
}

.responsibility-copy .section-label {
  color: var(--leaf-bright);
}

.responsibility-copy .section-label::before {
  background: var(--leaf-bright);
}

.responsibility-copy h2 {
  color: var(--cream);
  margin-bottom: 0.8rem;
}

.responsibility-copy p {
  color: rgba(243, 239, 230, 0.8);
  margin-bottom: 1.25rem;
}

/* ——— CTA band ——— */
.cta-band {
  background:
    linear-gradient(180deg, rgba(19, 34, 27, 0.55), rgba(19, 34, 27, 0.82)),
    url("../images/compact-yard.jpg") center / cover no-repeat;
  color: var(--cream);
  padding: 5.5rem 0;
  text-align: center;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.cta-band p {
  max-width: 36rem;
  margin: 0 auto 1.6rem;
  color: rgba(243, 239, 230, 0.84);
}

.cta-band .hero-ctas {
  justify-content: center;
}

/* ——— Page hero (inner pages) ——— */
.page-hero {
  padding: 4.5rem 0 3rem;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 16ch;
  line-height: 1.08;
  margin-bottom: 0.9rem;
}

.page-hero p {
  max-width: 40rem;
  font-size: 1.12rem;
  color: var(--muted);
}

/* ——— About ——— */
.prose {
  max-width: 42rem;
}

.prose p + p,
.prose h2 + p {
  margin-top: 1rem;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--ink);
  margin: 2.4rem 0 0.8rem;
  font-weight: 600;
}

.prose ul {
  margin: 1rem 0 0;
  display: grid;
  gap: 0.55rem;
}

.prose li {
  padding-left: 1.2rem;
  position: relative;
  color: var(--body);
}

.prose li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--leaf);
}

.meaning-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.meaning {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem 1.25rem;
}

.meaning h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--forest);
  margin-bottom: 0.35rem;
}

/* ——— Guide cards ——— */
.guide-grid {
  display: grid;
  gap: 1.15rem;
}

.guide {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem;
}

.guide h3 {
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.guide p {
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.guide ol {
  margin-left: 1.15rem;
  display: grid;
  gap: 0.45rem;
  color: var(--body);
}

.guide ol li {
  padding-left: 0.2rem;
}

/* ——— Contact ——— */
.contact-grid {
  display: grid;
  gap: 2rem;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.contact-card h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.contact-card p {
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.field {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--forest);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
  background: var(--paper);
  color: var(--ink);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--moss);
  box-shadow: 0 0 0 3px rgba(61, 92, 71, 0.15);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-status {
  margin-top: 0.85rem;
  color: var(--moss);
  font-weight: 600;
}

.direct-links {
  display: grid;
  gap: 0.75rem;
}

.direct-links a {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.direct-links strong {
  color: var(--ink);
}

.direct-links span {
  color: var(--muted);
  font-size: 0.95rem;
}

.direct-links a:hover {
  border-color: var(--moss);
}

/* ——— Footer ——— */
.site-footer {
  background: var(--ink);
  color: rgba(243, 239, 230, 0.78);
  padding: 3.2rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(243, 239, 230, 0.1);
}

.footer-brand .brand {
  color: var(--cream);
  margin-bottom: 0.85rem;
}

.footer-brand p {
  max-width: 28rem;
  font-size: 0.95rem;
}

.footer-col h4 {
  color: var(--cream);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.footer-col a {
  display: block;
  padding: 0.28rem 0;
  color: rgba(243, 239, 230, 0.72);
}

.footer-col a:hover {
  color: var(--leaf-bright);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  padding-top: 1.2rem;
  font-size: 0.88rem;
  color: rgba(243, 239, 230, 0.5);
}

/* ——— Legal ——— */
.legal {
  padding: 3.5rem 0 5rem;
}

.legal h1 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.legal .updated {
  color: var(--muted);
  margin-bottom: 1.6rem;
}

.legal h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 1.8rem 0 0.5rem;
  color: var(--ink);
}

.legal p + p {
  margin-top: 0.8rem;
}

.legal a {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ——— Media ——— */
@media (min-width: 760px) {
  .intro-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
    gap: 4rem;
  }

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

  .split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }

  .split.reverse {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .split.reverse .split-photo {
    order: 2;
  }

  .split-photo,
  .split-photo img {
    min-height: 420px;
  }

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

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

  .venture.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: center;
    padding: 2rem 2.1rem;
  }

  .responsibility-panel {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .responsibility-panel img {
    height: 100%;
    min-height: 360px;
  }

  .responsibility-copy {
    padding: 2.4rem 2.2rem;
  }

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

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

  .contact-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

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

@media (min-width: 960px) {
  .nav-desktop {
    display: flex;
  }

  .desktop-only,
  .header-actions .desktop-only {
    display: inline-flex;
  }

  .menu-toggle {
    display: none;
  }

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

  .venture.featured {
    grid-column: 1 / -1;
  }
}
