/*
Theme Name: GA Group
Theme URI: https://www.gagroupindonesia.com
Author: GA Group
Author URI: https://www.nhsecs.com
Description: Custom multi-page WordPress theme for GA Group.
Version: 1.0.14
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: ga-group
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

:root {
  --primary-gold: #C8AA6F;
  --secondary-gold: #E7C642;
  --black: #000000;
  --white: #ffffff;
  --text: #101012;
  --muted: #5e5f66;
  --surface: #f6f4ef;
  --surface-2: #ece8de;
  --border: #ddd4c2;
  --ink-navy: #1b2337;
  --radius-xs: 10px;
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --shadow-soft: 0 18px 45px rgba(16, 16, 18, 0.08);
  --shadow-hover: 0 26px 55px rgba(16, 16, 18, 0.14);
  --transition: 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Modern CSS reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html:focus-within {
  scroll-behavior: smooth;
}

html {
  background-color: #f6f4ef;
  background:
    radial-gradient(1500px 700px at 85% -12%, rgba(231, 198, 66, 0.22), transparent 60%),
    radial-gradient(1000px 500px at -5% -8%, rgba(200, 170, 111, 0.2), transparent 55%),
    linear-gradient(180deg, #f8f6f1 0%, #f5f1e7 56%, #f6f4ef 100%);
}

body {
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-family: "Sora", "Plus Jakarta Sans", "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(1500px 700px at 85% -12%, rgba(231, 198, 66, 0.22), transparent 60%),
    radial-gradient(1000px 500px at -5% -8%, rgba(200, 170, 111, 0.2), transparent 55%),
    linear-gradient(180deg, #f8f6f1 0%, #f5f1e7 56%, #f6f4ef 100%);
}

body.pjax-loading {
  cursor: progress;
}

body.pjax-loading::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 9999;
  background: linear-gradient(90deg, var(--secondary-gold), var(--primary-gold), var(--secondary-gold));
  background-size: 200% 100%;
  animation: ga-loading-bar 1s linear infinite;
}

@keyframes ga-loading-bar {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

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

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

a {
  color: var(--ink-navy);
  text-decoration: none;
}

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

h1,
h2,
h3,
h4 {
  color: var(--ink-navy);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

p {
  color: var(--muted);
}

.container {
  width: min(1200px, 100% - 2rem);
  margin-inline: auto;
}

.section-shell {
  padding: clamp(2.5rem, 4vw, 4.25rem) 0;
}

.section-heading {
  margin-bottom: 1.4rem;
}

.section-heading h1 {
  font-size: clamp(2rem, 4.5vw, 4rem);
}

.section-heading h2 {
  font-size: clamp(1.55rem, 3.2vw, 2.6rem);
}

.section-heading p {
  max-width: 68ch;
}

.eyebrow {
  margin-bottom: 0.55rem;
  color: var(--primary-gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ga-bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

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

.business-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
}

.business-card:hover,
.business-card:focus-within {
  transform: translateY(-6px);
  border-color: var(--primary-gold);
  box-shadow: var(--shadow-hover);
  background: rgba(255, 255, 255, 0.97);
}

.business-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}

.business-card p {
  margin-bottom: 0.55rem;
}

.business-card small {
  color: #777;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  border-bottom: 1px solid rgba(27, 35, 55, 0.08);
  background-color: transparent;
  backdrop-filter: blur(14px);
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.header-scrolled {
  background-color: #000000;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.26);
}

.site-header.is-immersive-page {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  border-bottom-color: transparent;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.site-header.is-immersive-page .header-bar {
  background: transparent;
  border-bottom-color: rgba(255, 255, 255, 0.16);
}

.site-header.is-immersive-page .header-bar p,
.site-header.is-immersive-page .header-bar a,
.site-header.is-immersive-page .brand-link,
.site-header.is-immersive-page .brand-text small,
.site-header.is-immersive-page .primary-navigation a {
  color: rgba(255, 255, 255, 0.96);
}

.site-header.is-immersive-page .primary-navigation a:hover,
.site-header.is-immersive-page .primary-navigation a:focus-visible,
.site-header.is-immersive-page .primary-navigation .current-menu-item > a,
.site-header.is-immersive-page .primary-navigation .current_page_item > a,
.site-header.is-immersive-page .primary-navigation .current_page_parent > a {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.site-header.is-immersive-page .header-cta {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
}

.site-header.is-immersive-page .brand-mark {
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22));
}

.site-header.is-immersive-page.is-scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.08);
  background: rgba(8, 17, 29, 0.8);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.site-header.is-immersive-page.is-scrolled .header-bar {
  background: rgba(255, 255, 255, 0.03);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

body.has-fullscreen-hero .site-header.header-over-hero:not(.header-scrolled):not(.is-immersive-page) .header-bar {
  background: transparent;
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

body.has-fullscreen-hero .site-header.header-over-hero:not(.header-scrolled):not(.is-immersive-page) .header-bar p,
body.has-fullscreen-hero .site-header.header-over-hero:not(.header-scrolled):not(.is-immersive-page) .header-bar a,
body.has-fullscreen-hero .site-header.header-over-hero:not(.header-scrolled):not(.is-immersive-page) .brand-link,
body.has-fullscreen-hero .site-header.header-over-hero:not(.header-scrolled):not(.is-immersive-page) .brand-text small,
body.has-fullscreen-hero .site-header.header-over-hero:not(.header-scrolled):not(.is-immersive-page) .primary-navigation a {
  color: #ffffff;
}

body.has-fullscreen-hero .site-header.header-over-hero:not(.header-scrolled):not(.is-immersive-page) .primary-navigation a:hover,
body.has-fullscreen-hero .site-header.header-over-hero:not(.header-scrolled):not(.is-immersive-page) .primary-navigation a:focus-visible,
body.has-fullscreen-hero .site-header.header-over-hero:not(.header-scrolled):not(.is-immersive-page) .primary-navigation .current-menu-item > a,
body.has-fullscreen-hero .site-header.header-over-hero:not(.header-scrolled):not(.is-immersive-page) .primary-navigation .current_page_item > a,
body.has-fullscreen-hero .site-header.header-over-hero:not(.header-scrolled):not(.is-immersive-page) .primary-navigation .current_page_parent > a {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
}

body.has-fullscreen-hero .site-header.header-over-hero:not(.header-scrolled):not(.is-immersive-page) .header-cta {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
}

.site-header.header-scrolled .header-bar {
  background: rgba(255, 255, 255, 0.03);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.site-header.header-scrolled .header-bar p,
.site-header.header-scrolled .header-bar a,
.site-header.header-scrolled .brand-link,
.site-header.header-scrolled .brand-text small,
.site-header.header-scrolled .primary-navigation a {
  color: rgba(255, 255, 255, 0.96);
}

.site-header.header-scrolled .primary-navigation a:hover,
.site-header.header-scrolled .primary-navigation a:focus-visible,
.site-header.header-scrolled .primary-navigation .current-menu-item > a,
.site-header.header-scrolled .primary-navigation .current_page_item > a,
.site-header.header-scrolled .primary-navigation .current_page_parent > a {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
}

.site-header.header-scrolled .header-cta {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
}

.header-bar {
  border-bottom: 1px solid rgba(27, 35, 55, 0.07);
  background: linear-gradient(90deg, rgba(200, 170, 111, 0.2), rgba(231, 198, 66, 0.12));
}

.header-bar .container {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-bar p,
.header-bar a {
  margin: 0;
  color: var(--ink-navy);
  font-size: 0.78rem;
  font-weight: 600;
}

.header-main {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-link {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 0;
  color: var(--ink-navy);
}

.brand-mark {
  width: 164px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-mark--image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-mark--icon {
  width: 56px;
  height: 56px;
}

.brand-mark--icon img {
  border-radius: 14px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-text small {
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.primary-navigation .menu,
.primary-navigation .page_item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.primary-navigation ul,
.primary-navigation .menu > ul {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.primary-navigation li,
.primary-navigation .page_item {
  margin: 0;
  list-style: none;
}

.primary-navigation a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: all var(--transition);
}

.primary-navigation a:hover,
.primary-navigation a:focus-visible {
  color: var(--ink-navy);
  background: rgba(200, 170, 111, 0.16);
}

.primary-navigation .current-menu-item > a,
.primary-navigation .current_page_item > a,
.primary-navigation .current_page_parent > a {
  color: var(--ink-navy);
  background: rgba(200, 170, 111, 0.24);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.58rem 1rem;
  color: #111;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  border: 1px solid rgba(200, 170, 111, 0.78);
  background: linear-gradient(120deg, rgba(231, 198, 66, 0.95), rgba(200, 170, 111, 0.76));
  transition: transform var(--transition), box-shadow var(--transition);
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(17, 17, 17, 0.12);
}

.home-hero--fullscreen,
.page-hero--fullscreen {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 0;
  background-color: #10161f;
}

.home-hero--fullscreen::before,
.page-hero--fullscreen::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(650px 320px at 85% 16%, rgba(1, 162, 100, 0.22), transparent 72%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.7) 74%, rgba(0, 0, 0, 0.86) 100%);
}

.home-hero-overlay,
.page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.82) 100%);
}

.home-hero-inner,
.page-hero-inner {
  min-height: 100vh;
  position: relative;
  z-index: 2;
}

.hero-content-absolute {
  position: absolute;
  bottom: 10%;
  left: 5%;
  right: 5%;
  max-width: 660px;
}

.hero-content-absolute .eyebrow,
.hero-content-absolute h1,
.hero-content-absolute p {
  color: #ffffff;
}

.hero-content-absolute .eyebrow {
  color: rgba(188, 255, 225, 0.95);
}

.hero-content-absolute h1 {
  margin-bottom: 0.68rem;
  font-size: clamp(2.1rem, 5vw, 4.2rem);
}

.hero-content-absolute p {
  margin-bottom: 0.65rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero-cta {
  height: 0;
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-cta a.business-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0.74rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(27, 35, 55, 0.16);
  box-shadow: none;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink-navy);
  background: rgba(255, 255, 255, 0.88);
}

.hero-cta a.business-card:first-child {
  color: #111;
  border-color: rgba(200, 170, 111, 0.7);
  background: linear-gradient(120deg, rgba(231, 198, 66, 0.78), rgba(200, 170, 111, 0.58));
}

.hero-cta a.business-card:hover,
.hero-cta a.business-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.12);
}

.home-overview .business-card {
  border-left: 4px solid var(--primary-gold);
}

.home-overview h2 {
  margin-bottom: 0.6rem;
}

.business-thumb {
  margin: 0.75rem 0 1rem;
  overflow: hidden;
  border-radius: var(--radius-xs);
}

.business-thumb img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform var(--transition);
}

.business-card:hover .business-thumb img {
  transform: scale(1.035);
}

.business-excerpt p:last-child {
  margin-bottom: 0;
}

.home-values .section-heading + .ga-bento-grid {
  margin-top: 1rem;
}

.value-proposition-list {
  margin-top: 0.5rem;
}

.value-points-list {
  display: grid;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(27, 35, 55, 0.14);
}

.value-point-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(27, 35, 55, 0.1);
}

.value-point-index {
  color: var(--primary-gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding-top: 0.35rem;
}

.value-point-copy h3 {
  margin-bottom: 0.35rem;
  font-size: 1.08rem;
}

.value-point-copy p {
  margin: 0;
}

.core-value-accordion-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.core-value-accordion-item summary::-webkit-details-marker {
  display: none;
}

.core-value-accordion-item summary::after {
  content: "+";
  color: var(--primary-gold);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
}

.core-value-accordion-item[open] summary::after {
  content: "-";
}

.core-value-accordion-item summary h3 {
  margin: 0;
}

.core-value-accordion-panel {
  margin-top: 0.7rem;
}

@media (min-width: 761px) {
  .core-value-accordion-item summary {
    cursor: default;
    pointer-events: none;
  }

  .core-value-accordion-item summary::after {
    display: none;
  }
}

.home-cta .business-card {
  border: 1px solid rgba(200, 170, 111, 0.42);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.97), rgba(241, 236, 224, 0.92));
}

.home-cta h2 {
  margin-bottom: 0.65rem;
}

.site-footer {
  margin-top: 2rem;
  border-top: 1px solid rgba(27, 35, 55, 0.09);
  background:
    radial-gradient(900px 260px at 20% 0, rgba(231, 198, 66, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(247, 243, 233, 0.95), rgba(239, 233, 221, 0.95));
}

.footer-top {
  padding: 2rem 0 1.5rem;
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 1.4rem;
}

.footer-brand {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.footer-logo {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem;
  border: 1px solid rgba(27, 35, 55, 0.1);
  background: rgba(255, 255, 255, 0.92);
}

.footer-logo--image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.footer-logo--icon {
  width: 52px;
  height: 52px;
}

.footer-logo--icon img {
  border-radius: 10px;
}

.footer-brand h3,
.footer-links h4,
.footer-contact h4 {
  margin-bottom: 0.55rem;
  color: var(--ink-navy);
  font-size: 1rem;
}

.footer-brand p,
.footer-contact p,
.footer-links a {
  color: #4a4d57;
  font-size: 0.9rem;
}

.footer-links ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem 0.8rem;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--ink-navy);
}

.footer-bottom {
  border-top: 1px solid rgba(27, 35, 55, 0.1);
}

.footer-bottom .container {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-bottom p {
  margin: 0;
  color: #5e616c;
  font-size: 0.82rem;
}

.team-photo {
  margin-bottom: 0.85rem;
  overflow: hidden;
  border-radius: var(--radius-xs);
}

.team-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-team {
  background: transparent;
  color: var(--text);
}

.team-profile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(27, 35, 55, 0.16);
  border-left: 1px solid rgba(27, 35, 55, 0.16);
}

.team-profile {
  min-width: 0;
  border-right: 1px solid rgba(27, 35, 55, 0.16);
  border-bottom: 1px solid rgba(27, 35, 55, 0.16);
}

.team-profile-photo {
  overflow: hidden;
  background: #181818;
}

.team-profile-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter var(--transition), transform var(--transition);
}

.team-profile:hover .team-profile-photo img {
  filter: grayscale(0);
  transform: scale(1.025);
}

.team-profile-photo--placeholder {
  display: grid;
  aspect-ratio: 4 / 5;
  place-items: center;
  padding: 1rem;
  color: rgba(27, 35, 55, 0.55);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.team-profile-copy {
  padding: 1rem;
}

.team-profile-copy h3 {
  margin: 0;
  color: inherit;
  font-size: clamp(1.05rem, 1.6vw, 1.5rem);
  line-height: 1.18;
}

.team-profile-role,
.team-profile-summary {
  margin: 0.45rem 0 0;
  color: var(--ink-navy);
}

.team-profile-role p {
  margin: 0;
}

.team-profile-summary {
  color: var(--ink-muted);
  font-size: 0.9rem;
}

/* Consistent space for logos and images */
.media-space,
.logo-space {
  margin: 0.8rem 0 1.2rem;
}

.media-placeholder {
  width: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  border: 1px dashed rgba(27, 35, 55, 0.3);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(130deg, rgba(200, 170, 111, 0.16), rgba(231, 198, 66, 0.14)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.42) 0, rgba(255, 255, 255, 0.42) 10px, rgba(255, 255, 255, 0.2) 10px, rgba(255, 255, 255, 0.2) 20px);
  color: var(--ink-navy);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.media-space img,
.logo-space img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
}

.logo-space {
  padding: 0.8rem;
  border: 1px solid rgba(27, 35, 55, 0.08);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.94);
}

.logo-space img {
  max-height: 320px;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  margin-inline: auto;
}

.hero-media .media-placeholder {
  min-height: 320px;
}

.business-thumb .media-placeholder,
.project-thumb .media-placeholder {
  aspect-ratio: 16 / 10;
  min-height: auto;
}

.team-photo .media-placeholder {
  aspect-ratio: 4 / 5;
  min-height: auto;
}

.about-intro-media .media-placeholder,
.business-featured-image .media-placeholder,
.single-project-hero .media-placeholder {
  aspect-ratio: 16 / 8;
  min-height: auto;
}

.about-intro-media {
  margin-bottom: 1rem;
  padding: 0.8rem;
}

.about-intro-media img {
  aspect-ratio: 16 / 8;
  object-fit: contain;
}

.about-founder-messages-heading {
  max-width: 720px;
}

.about-founder-messages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.about-founder-card {
  display: grid;
  grid-template-columns: minmax(200px, 280px) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 3px solid var(--primary-gold);
}

.about-founder-portrait {
  overflow: hidden;
  border-radius: var(--radius-xs);
  background: var(--paper-warm);
}

.about-founder-portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.about-founder-card-content {
  max-width: 780px;
}

.about-founder-card-content > :first-child {
  margin-top: 0;
}

.about-founder-card blockquote {
  margin: 0 0 1rem;
  color: var(--ink-navy);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.35;
}

.about-founder-card blockquote::before {
  content: "“";
  color: var(--gold);
  font-size: 2.25rem;
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 0.15em;
}

.about-founder-message-copy p:last-child {
  margin-bottom: 1rem;
}

.about-founder-card h3 {
  margin-bottom: 0.15rem;
}

.about-founder-role,
.about-founder-signature {
  margin: 0;
}

.about-founder-role {
  color: var(--ink-navy);
  font-weight: 700;
}

.about-founder-signature {
  margin-top: 0.75rem;
  color: var(--ink-muted);
  font-family: var(--font-display);
  font-style: italic;
}

.business-featured-image .business-card {
  padding: 0.8rem;
}

.business-featured-image img {
  aspect-ratio: 16 / 7;
  object-fit: contain;
}

.business-hero {
  position: relative;
  overflow: hidden;
  padding: 0;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  background-color: #10161f;
}

.business-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(650px 320px at 85% 16%, rgba(1, 162, 100, 0.22), transparent 72%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.7) 74%, rgba(0, 0, 0, 0.86) 100%);
}

.business-hero .page-hero-overlay {
  z-index: 1;
}

.business-hero .page-hero-inner {
  min-height: 100vh;
  position: relative;
  z-index: 2;
}

.business-hero .hero-content-absolute {
  max-width: 720px;
}

.business-hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.business-hero-video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-width: 177.78vh;
  min-height: 100vh;
  transform: translate(-50%, -50%);
  border: 0;
}

.business-hero.page-hero--fullscreen {
  min-height: 100vh;
}

.business-hero.page-hero--fullscreen[style*="background-image"] {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.business-stats-compact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.business-stat-item {
  padding: 0.25rem 0.35rem;
}

.business-stat-item + .business-stat-item {
  border-left: 1px solid rgba(27, 35, 55, 0.12);
  padding-left: 1rem;
}

.business-showcase-video .business-card h2 {
  margin-bottom: 0.8rem;
}

.business-showcase-video-embed iframe,
.business-showcase-video-embed video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: var(--radius-sm);
  display: block;
}

.business-details-stack {
  display: grid;
  gap: 1.2rem;
}

.business-detail-item + .business-detail-item {
  border-top: 1px solid rgba(27, 35, 55, 0.12);
  padding-top: 1rem;
}

@media (max-width: 1100px) {
  .hero-content-absolute {
    max-width: 560px;
  }

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

@media (max-width: 760px) {
  .container {
    width: min(1200px, 100% - 1.1rem);
  }

  .header-bar {
    display: none;
  }

  .header-bar .container {
    min-height: 36px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.35rem 0;
    text-align: center;
  }

  .header-main {
    min-height: auto;
    padding: 0.65rem 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .site-header.header-scrolled .site-branding,
  .site-header.is-immersive-page.is-scrolled .site-branding {
    display: none;
  }

  .primary-navigation .menu,
  .primary-navigation .page_item {
    justify-content: center;
    gap: 0.2rem;
  }

  .primary-navigation a {
    padding: 0.45rem 0.68rem;
    font-size: 0.85rem;
  }

  .header-cta {
    width: 100%;
    max-width: 280px;
  }

  .brand-mark {
    width: 124px;
    height: 56px;
  }

  .brand-mark--icon {
    width: 44px;
    height: 44px;
  }

  .home-hero-inner,
  .page-hero-inner {
    min-height: 100dvh;
  }

  .hero-content-absolute {
    left: 6%;
    right: 6%;
    bottom: 8%;
  }

  .hero-content-absolute h1 {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
  }

  .ga-bento-grid {
    grid-template-columns: 1fr;
  }

  .business-stats-compact {
    grid-template-columns: 1fr;
  }

  .business-stat-item + .business-stat-item {
    border-left: 0;
    border-top: 1px solid rgba(27, 35, 55, 0.12);
    padding-left: 0.35rem;
    padding-top: 0.95rem;
  }

  .home-values .core-values-grid {
    grid-template-columns: 1fr;
  }

  .core-value-accordion-item {
    padding: 1rem 1.05rem;
  }

  .core-value-accordion-panel {
    margin-top: 0.55rem;
  }

  .value-point-item {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .value-point-index {
    padding-top: 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 1.1rem;
    padding-top: 1.5rem;
  }

  .footer-bottom .container {
    min-height: auto;
    padding: 0.85rem 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }
}

/* Dark hero treatment */
.home-hero {
  position: relative;
  isolation: isolate;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 36px;
  background:
    radial-gradient(circle at 18% 18%, rgba(231, 198, 66, 0.25), transparent 46%),
    radial-gradient(circle at 88% 80%, rgba(200, 170, 111, 0.2), transparent 40%),
    linear-gradient(145deg, #17130d 0%, #1f1b14 48%, #121011 100%);
}

.home-hero .container {
  padding: 0;
}

.home-hero .hero-cta a.business-card,
.page-hero--fullscreen .hero-cta a.business-card {
  color: #f8f6ef;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
}

.home-hero .hero-cta a.business-card:first-child,
.page-hero--fullscreen .hero-cta a.business-card:first-child {
  color: #191919;
  border-color: rgba(231, 198, 66, 0.95);
  background: linear-gradient(120deg, rgba(231, 198, 66, 0.95), rgba(200, 170, 111, 0.85));
}

.page-hero--fullscreen .section-heading,
.page-hero--fullscreen .section-heading h1,
.page-hero--fullscreen .section-heading p,
.page-hero--fullscreen .section-heading .eyebrow {
  color: #ffffff;
}

.page-hero--fullscreen .section-heading p {
  color: rgba(255, 255, 255, 0.9);
}

.page-hero--fullscreen .section-heading .eyebrow {
  color: rgba(188, 255, 225, 0.95);
}

.page-hero--fullscreen .hero-content-absolute {
  max-width: 720px;
}

.contact-hero {
  position: relative;
  overflow: hidden;
  background: #10161f;
}

.contact-hero.page-hero--fullscreen {
  min-height: 0;
}

.contact-hero.page-hero--fullscreen::before {
  display: none;
}

.contact-hero-media img {
  display: block;
  width: 100%;
  height: min(50vh, 640px);
  object-fit: cover;
  object-position: center;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.42) 56%, rgba(0, 0, 0, 0.16) 100%);
}

.contact-hero-inner {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: end;
  padding-top: 2rem;
  padding-bottom: clamp(1.5rem, 4vw, 4rem);
}

.contact-hero-content {
  max-width: 680px;
}

.contact-hero-content h1 {
  margin-bottom: 0.68rem;
  font-size: clamp(2rem, 5vw, 4rem);
}

.contact-hero-content,
.contact-hero-content h1,
.contact-hero-content p,
.contact-hero-content .eyebrow {
  color: #fff;
}

.contact-hero-content .eyebrow {
  color: rgba(188, 255, 225, 0.95);
}

.contact-hero--no-image {
  min-height: min(50vh, 640px);
}

@media (max-width: 700px) {
  .contact-hero-media img {
    height: clamp(360px, 58svh, 520px);
    min-height: 0;
  }

  .contact-hero--no-image {
    min-height: clamp(360px, 58svh, 520px);
  }
}

.contact-hero--no-image .contact-hero-inner {
  position: relative;
}

.page-hero--content {
  margin-top: 0;
  position: relative;
  z-index: 3;
}

.page-hero--content .business-card {
  box-shadow: 0 24px 46px rgba(16, 16, 18, 0.14);
}

.ga-contact-form {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.contact-details-content {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.contact-details-content h2 {
  margin-top: 0;
}

.contact-details-content > :last-child {
  margin-bottom: 0;
}

.contact-message-card {
  margin-top: 1.5rem;
}

.contact-business-cta {
  display: flex;
  width: max-content;
  margin: 1rem 0 0 auto;
  border: 1px solid rgba(231, 198, 66, 0.95);
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(231, 198, 66, 0.95), rgba(200, 170, 111, 0.85));
  color: #1a1a1a;
  font-weight: 700;
  padding: 0.72rem 1rem;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}

.contact-business-cta:hover,
.contact-business-cta:focus-visible {
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(200, 170, 111, 0.3);
}

.ga-contact-form label {
  color: var(--ink-navy);
  font-size: 0.92rem;
  font-weight: 600;
}

.ga-contact-form input,
.ga-contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text);
  padding: 0.72rem 0.85rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.ga-contact-form input:focus,
.ga-contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(200, 170, 111, 0.2);
}

.ga-contact-form button {
  margin-top: 0.4rem;
  border: 1px solid rgba(231, 198, 66, 0.95);
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(231, 198, 66, 0.95), rgba(200, 170, 111, 0.85));
  color: #1a1a1a;
  font-weight: 700;
  padding: 0.78rem 1.1rem;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.ga-contact-form button:hover,
.ga-contact-form button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(200, 170, 111, 0.3);
}

.ga-form-notice {
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  padding: 0.72rem 0.85rem;
  margin-top: 0.85rem;
  font-size: 0.94rem;
}

.ga-form-notice.is-success {
  border-color: #c6ead5;
  background: #edf9f2;
  color: #236645;
}

.ga-form-notice.is-error {
  border-color: #f2c7c7;
  background: #fff0f0;
  color: #8b2b2b;
}

.ga-form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Section dividers */
.site-main > section {
  position: relative;
}

.site-main > section + section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -2px;
  transform: translateX(-50%);
  width: min(1040px, 92%);
  height: 1px;
  background: linear-gradient(90deg, rgba(200, 170, 111, 0), rgba(200, 170, 111, 0.65), rgba(200, 170, 111, 0));
}

.site-main > section + section::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -6px;
  transform: translateX(-50%);
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, #fff7d8, var(--primary-gold));
  box-shadow: 0 0 0 5px rgba(246, 244, 239, 0.98);
}

/* Stat counter emphasis */
.metric-value {
  margin: 0.2rem 0 0.5rem;
  color: var(--ink-navy);
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 800;
}

/* GoTo-inspired stat and card refinements */
.home-business .ga-bento-grid,
.home-values .ga-bento-grid,
.business-stats .ga-bento-grid,
.business-features .ga-bento-grid {
  gap: 1rem;
}

.business-unit-card {
  position: relative;
  overflow: hidden;
  padding: 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  border: 1px solid rgba(27, 35, 55, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 245, 238, 0.92));
}

.business-unit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(320px 140px at 90% -8%, rgba(1, 162, 100, 0.16), transparent 70%),
    radial-gradient(240px 130px at 8% 108%, rgba(0, 124, 90, 0.09), transparent 65%);
  opacity: 0;
  transition: opacity var(--transition);
}

.business-unit-card:hover::before,
.business-unit-card:focus-within::before {
  opacity: 1;
}

.business-unit-card .business-thumb {
  margin: 0;
  padding: 0.55rem;
  border-radius: 16px;
  border: 1px solid rgba(27, 35, 55, 0.08);
  background: rgba(255, 255, 255, 0.9);
}

.business-unit-card .business-thumb img {
  border-radius: 12px;
}

.business-unit-content {
  display: grid;
  gap: 0.5rem;
}

.card-kicker {
  margin: 0;
  color: #008455;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.business-unit-content h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2.1vw, 1.45rem);
}

.business-unit-content h3 a {
  color: #091726;
}

.business-unit-link {
  margin-top: 0.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  color: #006f4a;
  font-size: 0.88rem;
  font-weight: 700;
}

.business-unit-link span {
  transition: transform var(--transition);
}

.business-unit-card:hover .business-unit-link span,
.business-unit-card:focus-within .business-unit-link span {
  transform: translateX(3px);
}

.stat-card {
  position: relative;
  overflow: hidden;
  padding: 1rem;
  min-height: 172px;
  border: 1px solid rgba(7, 31, 61, 0.06);
  background:
    linear-gradient(145deg, rgba(253, 255, 255, 0.98), rgba(243, 250, 247, 0.96));
}

.stat-card::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -52px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(1, 162, 100, 0.25), rgba(1, 162, 100, 0));
  pointer-events: none;
}

.stat-card-top {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.stat-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #00a062, #028e59);
  box-shadow: 0 0 0 4px rgba(0, 160, 98, 0.12);
}

.stat-label {
  margin: 0;
  color: #0e2a43;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat-card .metric-value {
  margin: 0.62rem 0 0.28rem;
  color: #041a2e;
  font-size: clamp(1.65rem, 3.2vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat-note {
  margin: 0;
  max-width: 30ch;
  color: #385268;
  font-size: 0.9rem;
}

.stat-card--business {
  min-height: 154px;
}

.feature-card {
  position: relative;
  padding: 1.05rem;
  border: 1px solid rgba(6, 25, 44, 0.1);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 247, 0.96));
}

.feature-card h3 {
  margin: 0.22rem 0 0.45rem;
}

/* Symmetric business grids */
.business-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.business-grid--two > * {
  min-width: 0;
}

.business-unit-card {
  height: 100%;
}

.business-unit-content {
  height: 100%;
  align-content: start;
}

.business-unit-content .business-excerpt p {
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.business-unit-link {
  margin-top: auto;
}

/* Immersive business archive split grid */
.business-immersive-main {
  padding-bottom: 0;
}

.business-immersive-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  grid-template-rows: minmax(320px, 1fr) minmax(320px, 1fr);
  transition: grid-template-columns 500ms cubic-bezier(0.2, 0.8, 0.2, 1), grid-template-rows 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: grid-template-columns, grid-template-rows;
}

.business-immersive-card {
  display: block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  background-image: var(--business-card-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #11171f;
  isolation: isolate;
  transition: transform 450ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.business-immersive-media {
  display: none;
}

.business-immersive-card--fallback {
  background-image:
    radial-gradient(500px 220px at 90% 10%, rgba(200, 170, 111, 0.32), transparent 70%),
    linear-gradient(145deg, #0f1722, #1a2633);
}

.business-immersive-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.2) 48%, rgba(0, 0, 0, 0.94) 100%),
    linear-gradient(115deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0) 62%);
  transition: opacity 450ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.business-immersive-content {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  color: #fff;
  z-index: 2;
  max-width: 520px;
  transition: transform 450ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.business-immersive-content h2 {
  margin: 0 0 0.58rem;
  color: #fff;
  font-size: clamp(1.5rem, 2.45vw, 2.45rem);
  line-height: 1.1;
}

.business-immersive-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(0.78rem, 0.95vw, 0.9rem);
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.business-immersive-button {
  position: relative;
  z-index: 3;
  height: 0;
  margin-top: 0;
  display: flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 1.1rem;
  border-radius: 999px;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
  border: 0 solid rgba(255, 255, 255, 0.42);
  background: linear-gradient(90deg, var(--ga-gold-secondary, var(--secondary-gold)) 0%, var(--ga-gold-secondary, var(--secondary-gold)) 50%, rgba(255, 255, 255, 0.14) 50%, rgba(255, 255, 255, 0.14) 100%);
  background-position: 100% 0;
  background-size: 200% 100%;
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: height 320ms cubic-bezier(0.2, 0.8, 0.2, 1), margin-top 320ms cubic-bezier(0.2, 0.8, 0.2, 1), padding 320ms cubic-bezier(0.2, 0.8, 0.2, 1), background-position 320ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 300ms ease, color 300ms ease, opacity 220ms ease, transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.business-immersive-card:hover,
.business-immersive-card:focus-within {
  transform: none;
}

.business-immersive-card:hover .business-immersive-overlay,
.business-immersive-card:focus-within .business-immersive-overlay {
  opacity: 0.78;
}

.business-immersive-card:hover .business-immersive-content,
.business-immersive-card:focus-within .business-immersive-content {
  transform: translateY(-8px);
}

.business-immersive-card:hover .business-immersive-button,
.business-immersive-card:focus-within .business-immersive-button {
  border-color: var(--ga-gold-secondary, var(--secondary-gold));
  border-width: 1px;
  height: 40px;
  margin-top: 1rem;
  padding: 0.55rem 1.1rem;
  background-position: 100% 0;
  color: #ffffff;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 110ms;
}

.business-immersive-card:hover .business-immersive-button:hover,
.business-immersive-card:focus-within .business-immersive-button:focus-visible {
  background-position: 0 0;
  color: #000000;
}

@media (hover: hover) and (min-width: 921px) {
  .business-immersive-grid:has(.business-immersive-card:nth-child(odd):hover),
  .business-immersive-grid:has(.business-immersive-card:nth-child(odd):focus-visible) {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .business-immersive-grid:has(.business-immersive-card:nth-child(even):hover),
  .business-immersive-grid:has(.business-immersive-card:nth-child(even):focus-visible) {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .business-immersive-grid:has(.business-immersive-card:nth-child(-n + 2):hover),
  .business-immersive-grid:has(.business-immersive-card:nth-child(-n + 2):focus-visible) {
    grid-template-rows: minmax(320px, 1.1fr) minmax(320px, 0.9fr);
  }

  .business-immersive-grid:has(.business-immersive-card:nth-child(n + 3):hover),
  .business-immersive-grid:has(.business-immersive-card:nth-child(n + 3):focus-visible) {
    grid-template-rows: minmax(320px, 0.9fr) minmax(320px, 1.1fr);
  }
}

/* Enterprise careers rows */
.career-list {
  overflow: hidden;
  border: 1px solid rgba(27, 35, 55, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.career-list-head,
.career-row {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.95rem 1.2rem;
}

.career-list-head {
  color: var(--ink-navy);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: linear-gradient(180deg, rgba(200, 170, 111, 0.17), rgba(200, 170, 111, 0.08));
}

.career-row {
  border-top: 1px solid rgba(27, 35, 55, 0.08);
  transition: background var(--transition);
}

.career-row:hover {
  background: rgba(200, 170, 111, 0.08);
}

.career-title a {
  color: var(--ink-navy);
  font-size: 1.02rem;
  font-weight: 700;
}

.career-col {
  color: var(--muted);
  font-size: 0.93rem;
}

.career-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.48rem 0.86rem;
  border: 1px solid rgba(27, 35, 55, 0.2);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--ink-navy);
  background: rgba(255, 255, 255, 0.88);
  transition: all var(--transition);
}

.career-btn:hover,
.career-btn:focus-visible {
  border-color: rgba(200, 170, 111, 0.85);
  background: rgba(231, 198, 66, 0.23);
}

/* Project visuals */
.project-grid .project-card {
  padding: 1.1rem;
}

.project-thumb {
  padding: 0.55rem;
  border: 1px solid rgba(27, 35, 55, 0.08);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.95);
}

.project-thumb img {
  aspect-ratio: 16 / 10;
  object-fit: contain;
}

.single-project-hero {
  margin-bottom: 1rem;
  padding: 0.8rem;
}

.single-project-hero img {
  aspect-ratio: 16 / 8;
  object-fit: contain;
}

@media (max-width: 920px) {
  .business-grid--two {
    grid-template-columns: 1fr;
  }

  .business-immersive-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: auto;
  }

  .business-immersive-card {
    display: grid;
    grid-template-rows: auto auto;
    aspect-ratio: auto;
    min-height: 0;
    background-image: none;
    background-color: #11171f;
  }

  .business-immersive-card.business-immersive-card--fallback {
    background-image: none;
  }

  .business-immersive-media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    background-image: var(--business-card-image);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .business-immersive-media::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.16));
  }

  .business-immersive-card--fallback .business-immersive-media {
    background-image:
      radial-gradient(500px 220px at 90% 10%, rgba(200, 170, 111, 0.32), transparent 70%),
      linear-gradient(145deg, #0f1722, #1a2633);
  }

  .business-immersive-overlay {
    display: none;
  }

  .business-immersive-content {
    position: static;
    max-width: none;
    padding: 1rem clamp(1rem, 4vw, 1.4rem) 1.25rem;
  }

  .career-list-head {
    display: none;
  }

  .career-row {
    grid-template-columns: 1fr;
    gap: 0.45rem;
    padding: 1rem;
  }

  .career-col[data-label]::before {
    content: attr(data-label) ": ";
    color: var(--ink-navy);
    font-weight: 700;
  }

  .career-action {
    margin-top: 0.35rem;
  }

  .about-intro-media img,
  .business-featured-image img,
  .single-project-hero img {
    aspect-ratio: 16 / 10;
  }

  .logo-space img {
    max-height: 240px;
  }

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

}

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

  .about-founder-portrait {
    max-width: 240px;
  }

  .team-profile-grid {
    grid-template-columns: 1fr;
  }
}
