@import url("https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Inter:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap");

:root {
  --bg: #f1f7f2;
  --bg-soft: #e2ede6;
  --bg-panel: rgba(255, 255, 255, 0.82);
  --bg-strong: #071e12;
  --text: #0d2214;
  --muted: #476058;
  --muted-strong: #2e4d3a;
  --brand: #0a6ebd;
  --brand-strong: #064c85;
  --brand-alt: #1e7a3c;
  --highlight: #bfe8d0;
  --line: rgba(20, 80, 40, 0.1);
  --line-strong: rgba(20, 80, 40, 0.18);
  --shadow: 0 28px 60px rgba(8, 32, 64, 0.13);
  --shadow-soft: 0 14px 30px rgba(8, 32, 64, 0.08);
  --radius-sm: 0.9rem;
  --radius-md: 1.25rem;
  --radius-lg: 1.75rem;
  --radius-xl: 2.4rem;
  --container: min(1120px, calc(100% - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at top left,
      rgba(30, 122, 60, 0.13),
      transparent 34%
    ),
    radial-gradient(
      circle at top right,
      rgba(10, 110, 189, 0.07),
      transparent 28%
    ),
    linear-gradient(180deg, #f3f8f4 0%, var(--bg) 42%, #e5f0e8 100%);
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(30, 100, 50, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 100, 50, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 80%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

ul {
  margin: 0;
  padding-left: 1.2rem;
}

p,
h1,
h2,
h3,
h4 {
  margin-top: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--brand-strong);
  color: #f6fbf9;
  z-index: 50;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 25;
  border-bottom: 1px solid rgba(10, 50, 90, 0.08);
  /* backdrop-filter moved to ::before so position:fixed children
     (the mobile nav drawer) use the viewport as their containing block */
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(248, 248, 245, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: -1;
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.15rem;
  padding: 0.95rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  flex: 0 1 auto;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}

.brand-mark {
  width: 3.2rem;
  height: auto;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(10, 110, 189, 0.14));
}

.brand-name {
  font-family: "Cormorant", Georgia, serif;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand-subline {
  color: var(--muted);
  font-size: 0.76rem;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 0;
}

/* Hide drawer-only elements on desktop */
.drawer-brand,
.drawer-meta,
.nav-divider {
  display: none;
}

.nav-links a {
  position: relative;
  padding: 0.48rem 0.64rem;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--muted-strong);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color 0.18s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0.64rem;
  right: 0.64rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--brand-alt), var(--brand));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  transform: scaleX(0.6);
}

.nav-links a[aria-current="page"] {
  color: var(--brand);
  font-weight: 600;
  background: transparent;
  border-color: transparent;
  transform: none;
}

.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-links .nav-cta {
  margin-left: 0.4rem;
  padding: 0.48rem 0.92rem;
  border: 1.5px solid var(--brand);
  border-radius: 0.45rem;
  color: var(--brand-strong);
  font-weight: 600;
  font-size: 0.84rem;
  background: transparent;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.nav-links .nav-cta::after {
  display: none;
}

.nav-links .nav-cta:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  transform: none;
}

main {
  position: relative;
  z-index: 1;
}

@media (max-width: 1140px) {
  .site-header .inner {
    gap: 0.85rem;
  }

  .brand-lockup {
    gap: 0.68rem;
  }

  .brand-mark {
    width: 2.85rem;
  }

  .brand-subline {
    display: none;
  }

  .nav-links a {
    padding: 0.42rem 0.5rem;
    font-size: 0.8rem;
  }

  .nav-links a::after {
    left: 0.5rem;
    right: 0.5rem;
  }

  .nav-links .nav-cta {
    padding: 0.44rem 0.74rem;
    font-size: 0.8rem;
  }
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
}

.hero {
  padding: 5.5rem 0 4rem;
}

.page-hero {
  padding: 4.5rem 0 3.2rem;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  right: -140px;
  top: -160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 139, 71, 0.16), transparent 68%);
  pointer-events: none;
}

.hero-grid,
.page-hero-grid,
.split-content,
.service-detail,
.footer-grid,
.callout-grid,
.office-grid,
.contact-grid {
  display: grid;
  gap: 1.5rem;
}

.hero-grid,
.page-hero-grid,
.split-content,
.service-detail {
  grid-template-columns: minmax(0, 1.15fr) minmax(290px, 0.85fr);
  align-items: stretch;
}

.hero-copy,
.page-copy {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted-strong);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 2.3rem;
  height: 1px;
  background: linear-gradient(90deg, var(--brand-alt), rgba(30, 122, 60, 0.1));
}

.hero h1,
.page-title,
.section-title,
.cta-band h2,
.disclosure h3 {
  font-family: "Cormorant", Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.hero h1 {
  max-width: 10.2ch;
  font-size: clamp(2.3rem, 6.4vw, 5.7rem);
}

.page-title {
  max-width: 14ch;
  font-size: clamp(1.95rem, 5.2vw, 4.9rem);
}

.section-title {
  max-width: 16ch;
  font-size: clamp(1.55rem, 4.2vw, 3.3rem);
}

.lede,
.page-summary,
.section-lede,
.card p,
.panel p,
.faq-group p,
.contact-card p,
.office-card p,
.metric-card p,
.signal-card p {
  color: var(--muted);
}

.lede,
.page-summary {
  max-width: 60ch;
  font-size: 1.08rem;
}

.section {
  padding: 4.8rem 0;
}

.section-alt {
  background: rgba(30, 122, 60, 0.05);
  border-top: 1px solid rgba(30, 122, 60, 0.07);
  border-bottom: 1px solid rgba(30, 122, 60, 0.07);
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.hero-actions,
.badge-row,
.tags,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #eff8f4;
  font-weight: 600;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
  background: var(--brand-strong);
  border-color: var(--brand-strong);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.8);
  border-color: var(--line-strong);
  color: var(--text);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 1);
  border-color: var(--brand);
}

.pill,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.36rem 0.74rem;
  border-radius: 999px;
  border: 1px solid rgba(30, 122, 60, 0.22);
  background: rgba(30, 122, 60, 0.07);
  color: var(--brand-alt);
  font-size: 0.82rem;
  font-weight: 500;
}

.hero-display,
.hero-side-card,
.panel,
.card,
.contact-card,
.office-card,
.faq-group,
.metric-card,
.experience-card,
.industry-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-panel);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.hero-display,
.hero-side-card,
.panel,
.card,
.contact-card,
.office-card,
.experience-card,
.industry-card,
.faq-group {
  padding: 1.6rem;
}

.hero-display {
  min-height: 100%;
  background:
    linear-gradient(135deg, rgba(10, 80, 140, 0.96), rgba(6, 65, 115, 0.82)),
    linear-gradient(180deg, rgba(212, 236, 227, 0.26), transparent);
  color: #eaf5ff;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.hero-display::before,
.hero-side-card::before,
.disclosure::before,
.cta-band::before {
  content: "";
  position: absolute;
  inset: auto -10% -30% auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(212, 236, 227, 0.22),
    transparent 68%
  );
}

.hero-image-col {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-image-col img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.7s ease;
}

.hero-image-col:hover img {
  transform: scale(1.04);
}

.hero-image-col::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 28, 56, 0.08) 0%,
    rgba(8, 28, 56, 0.62) 100%
  );
  z-index: 1;
}

.hero-image-caption {
  position: relative;
  z-index: 2;
  padding: 1.8rem 1.7rem;
}

.hero-image-caption .kicker {
  color: rgba(191, 232, 208, 0.9);
  margin-bottom: 0.7rem;
}

.hero-image-caption .kicker::before {
  background: linear-gradient(90deg, rgba(191, 232, 208, 0.65), transparent);
}

.hero-image-caption strong {
  display: block;
  font-family: "Cormorant", Georgia, serif;
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.97);
}

.signal-stack {
  display: grid;
  gap: 1rem;
}

.signal-card {
  padding: 1rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(248, 253, 250, 0.09);
}

.signal-card strong,
.metric-card strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.08rem;
}

.card h3,
.industry-card h3,
.contact-card h3,
.office-card h3,
.experience-card h3,
.hero-side-card h3,
.panel h3 {
  display: block;
  font-family: "Cormorant", Georgia, serif;
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.metric-grid,
.grid-2,
.grid-3,
.grid-4,
.strip-grid,
.callout-grid {
  display: grid;
  gap: 1rem;
}

.metric-grid,
.grid-2,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4,
.strip-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.callout-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.metric-card {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(248, 253, 250, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.metric-card span {
  display: block;
  margin-bottom: 0.25rem;
  color: rgba(236, 248, 255, 0.7);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.metric-card p,
.signal-card p {
  color: rgba(236, 248, 255, 0.84);
  margin-bottom: 0;
  font-size: 0.95rem;
}

.strip-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
}

.strip-marker {
  width: 0.92rem;
  height: 0.92rem;
  border-radius: 50%;
  flex: 0 0 auto;
  margin-top: 0.36rem;
  background: linear-gradient(135deg, var(--brand-alt), var(--brand));
  box-shadow: 0 0 0 0.26rem rgba(46, 139, 71, 0.12);
}

.strip-item strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.strip-item span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.checklist {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.checklist li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(10, 50, 90, 0.08);
}

.checklist li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.checklist li::before {
  content: "›";
  font-family: "Cormorant", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  color: var(--brand-alt);
  flex: 0 0 auto;
  width: 1rem;
  height: auto;
  background: none;
  border-radius: 0;
  margin-top: -0.08rem;
}

.process-flow {
  display: grid;
  gap: 0.95rem;
}

.flow-step {
  padding: 1rem 1rem 1rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  border-left: 4px solid var(--brand);
}

.flow-step span {
  display: block;
  margin-bottom: 0.28rem;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.workflow {
  position: relative;
  display: grid;
  gap: 0;
}

.workflow::before {
  content: "";
  position: absolute;
  left: 2.15rem;
  top: 4.5rem;
  bottom: 1.2rem;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(10, 80, 140, 0.45) 0%,
    rgba(46, 139, 71, 0.25) 65%,
    transparent 100%
  );
  pointer-events: none;
}

.wf-step {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1.5rem;
  padding: 1.7rem 0;
  border-bottom: 1px solid rgba(10, 50, 90, 0.08);
  position: relative;
}

.wf-step:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.wf-num {
  font-family: "Cormorant", Georgia, serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--brand);
  letter-spacing: -0.04em;
  user-select: none;
  position: relative;
  z-index: 1;
  opacity: 0.5;
}

.wf-body {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding-top: 0.3rem;
}

.wf-body strong {
  display: block;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}

.wf-body p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--muted);
}

.disclosure,
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.disclosure {
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(8, 28, 56, 0.98), rgba(10, 80, 140, 0.92)),
    linear-gradient(180deg, rgba(46, 139, 71, 0.18), transparent);
  color: #eaf5ff;
}

.disclosure h3,
.cta-band h2 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.disclosure h2,
.disclosure h3,
.disclosure h4 {
  color: #eaf5ff;
}

.disclosure p,
.disclosure li {
  color: rgba(236, 248, 255, 0.85);
}

.disclosure p:last-child,
.cta-band p:last-child,
.card p:last-child,
.panel p:last-child,
.contact-card p:last-child,
.office-card p:last-child,
.experience-card p:last-child,
.industry-card p:last-child,
.faq-group p:last-child {
  margin-bottom: 0;
}

.hero-side-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

.service-note,
.draft-note {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.service-note::before,
.draft-note::before {
  content: "";
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: var(--brand-alt);
}

.service-detail + .service-detail {
  margin-top: 1.4rem;
}

.service-detail .panel,
.service-detail .card {
  min-height: 100%;
}

.scope-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.scope-list li {
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.72);
}

.label {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.faq-group details {
  padding: 1rem 0;
  border-top: 1px solid rgba(10, 50, 90, 0.08);
}

.faq-group details:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.faq-group summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq-group summary::-webkit-details-marker {
  display: none;
}

.faq-group summary::after {
  content: "+";
  color: var(--brand);
  font-size: 1.35rem;
  line-height: 1;
}

.faq-group details[open] summary::after {
  content: "-";
}

.faq-group p {
  padding-top: 0.85rem;
}

.cta-band {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(10, 80, 140, 0.96), rgba(46, 139, 71, 0.88)),
    linear-gradient(180deg, rgba(212, 236, 227, 0.18), transparent);
  color: #eaf5ff;
}

.cta-band p {
  max-width: 52ch;
  color: rgba(236, 248, 255, 0.84);
}

.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.office-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-card a,
.office-card a,
.footer a,
.inline-link {
  color: var(--brand);
}

.contact-card a:hover,
.office-card a:hover,
.footer a:hover,
.inline-link:hover {
  color: var(--brand-alt);
}

.contact-lines,
.footer-meta,
.footer-nav {
  display: grid;
  gap: 0.55rem;
}

.contact-lines strong {
  font-size: 1.02rem;
}

.site-footer {
  margin-top: 4rem;
  padding: 3rem 0;
  background: linear-gradient(135deg, #071e12 0%, #0d2f18 38%, #063b70 100%);
  color: #dde7e2;
}

.footer-grid {
  grid-template-columns: 1.3fr 0.9fr 0.9fr;
}

.site-footer .brand {
  align-items: flex-start;
}

.site-footer .brand-mark {
  width: 4rem;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.22));
}

.site-footer .brand-name,
.site-footer h3 {
  color: #eaf5ff;
}

.site-footer .brand-subline,
.site-footer p,
.site-footer small,
.site-footer .draft-note {
  color: rgba(221, 231, 226, 0.76);
}

.site-footer a {
  color: rgba(239, 247, 242, 0.92);
}

.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.muted {
  color: var(--muted);
}

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  background: rgba(46, 139, 71, 0.1);
  color: var(--brand-alt);
  font-size: 1.35rem;
  margin-bottom: 1.1rem;
  flex-shrink: 0;
  border: 1px solid rgba(46, 139, 71, 0.18);
}

.card,
.industry-card,
.contact-card,
.office-card {
  display: flex;
  flex-direction: column;
}

.strip-item .ti {
  font-size: 1.7rem;
  color: var(--brand-alt);
  flex-shrink: 0;
  margin-top: 0.06rem;
  line-height: 1;
}

.contact-card .ti,
.office-card .ti {
  font-size: 1.1rem;
  color: var(--brand-alt);
  flex-shrink: 0;
  vertical-align: middle;
  margin-right: 0.4rem;
}

/* ──────────────── Photo card ──────────────── */
.photo-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.photo-card--compact {
  min-height: 250px;
}

.photo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.8s ease;
}

.photo-card:hover img {
  transform: scale(1.06);
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 28, 56, 0.1) 0%,
    rgba(8, 28, 56, 0.76) 100%
  );
  z-index: 1;
}

.photo-card-body {
  position: relative;
  z-index: 2;
  padding: 1.6rem;
}

.photo-card-body .badge-row {
  margin-bottom: 0.8rem;
}

.photo-card-body .tag {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
}

.photo-card-body h3 {
  font-family: "Cormorant", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 0.55rem;
}

.photo-card-body p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

/* ─────────────── Scene band ─────────────── */
.scene-band {
  position: relative;
  overflow: hidden;
  height: 400px;
  z-index: 0;
}

.scene-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.scene-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8, 28, 56, 0.66) 0%,
    rgba(10, 80, 140, 0.42) 50%,
    rgba(46, 139, 71, 0.22) 100%
  );
  pointer-events: none;
}

.scene-band-caption {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding: 3.2rem;
}

.scene-band-caption blockquote {
  margin: 0;
  padding: 0;
  border: none;
  font-family: "Cormorant", Georgia, serif;
  font-style: italic;
  font-size: clamp(1.55rem, 3vw, 2.6rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.96);
  max-width: 34ch;
  line-height: 1.2;
}

.scene-band-caption cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(191, 232, 208, 0.78);
}

@media (max-width: 1080px) {
  .grid-4,
  .strip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .site-header .inner,
  .hero-grid,
  .page-hero-grid,
  .split-content,
  .service-detail,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .site-header .inner {
    display: grid;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .contact-grid,
  .office-grid,
  .grid-3,
  .grid-2,
  .metric-grid,
  .callout-grid {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .page-title,
  .section-title {
    max-width: none;
  }

  .hero-image-col {
    min-height: 300px;
    max-height: 380px;
  }

  .wf-step {
    grid-template-columns: 3.8rem 1fr;
    gap: 1.2rem;
  }

  .wf-num {
    font-size: 2.6rem;
  }

  .workflow::before {
    left: 1.85rem;
  }
}

@media (max-width: 720px) {
  .hero,
  .page-hero {
    padding-top: 3.8rem;
  }

  .section {
    padding: 3rem 0;
  }

  .strip-grid,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .footer-links {
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .nav-links {
    gap: 0.35rem;
  }

  .nav-links a {
    padding: 0.62rem 0.84rem;
  }

  .hero-display,
  .hero-side-card,
  .panel,
  .card,
  .contact-card,
  .office-card,
  .faq-group,
  .experience-card,
  .industry-card,
  .disclosure,
  .cta-band {
    padding: 1.3rem;
  }

  .scene-band {
    height: 260px;
  }

  .scene-band-caption {
    padding: 1.8rem;
  }

  .photo-card {
    min-height: 280px;
  }

  .photo-card--compact {
    min-height: 220px;
  }
}

/* ═══════════════════════════════════════════════
   Mobile nav — hamburger + slide-in drawer
   ═══════════════════════════════════════════════ */

/* Nav overlay backdrop */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 24, 15, 0.18);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  z-index: 27;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

body.nav-open .nav-overlay {
  /* opacity: 1; */
  /* pointer-events: auto; */
}

body.nav-open {
  overflow: hidden;
}

/* Hamburger toggle button */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  background: rgba(255, 255, 255, 0.86);
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 35;
  box-shadow: 0 8px 18px rgba(7, 24, 15, 0.08);
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.nav-toggle:hover {
  background: #fff;
  border-color: var(--line-strong);
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 1.1rem;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition:
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.25s ease,
    background 0.25s ease;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.hamburger {
  top: 50%;
  margin-top: -0.75px;
}

.hamburger::before {
  content: "";
  top: -6px;
}

.hamburger::after {
  content: "";
  top: 6px;
}

body.nav-open .hamburger {
  background: transparent;
}

body.nav-open .hamburger::before {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}

body.nav-open .hamburger::after {
  top: 0;
  transform: translateX(-50%) rotate(-45deg);
}

/* ─── Mobile breakpoint: activate drawer ─── */
@media (max-width: 960px) {
  .nav-toggle {
    display: flex;
  }

  /* Override 920px stacked grid — keep header as flex row */
  .site-header .inner {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
  }

  /* ── Drawer panel ── */
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 84vw);
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0;
    padding: 0 0 1.35rem;
    background: rgba(249, 252, 249, 0.98);
    z-index: 30;
    transform: translateX(110%);
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    box-shadow: -18px 0 48px rgba(7, 24, 15, 0.14);
    border-left: 1px solid rgba(20, 80, 40, 0.08);
    justify-content: flex-start;
    border-radius: 0;
    isolation: isolate;
  }

  body.nav-open .nav-links {
    transform: translateX(0);
  }

  .nav-links::before,
  .nav-links::after {
    display: none;
  }

  .nav-links::before {
    top: -3rem;
    right: -2rem;
    width: 11rem;
    height: 11rem;
    background: radial-gradient(
      circle,
      rgba(111, 214, 91, 0.22),
      transparent 70%
    );
  }

  .nav-links::after {
    left: -3.5rem;
    bottom: 4rem;
    width: 12rem;
    height: 12rem;
    background: radial-gradient(
      circle,
      rgba(10, 110, 189, 0.2),
      transparent 72%
    );
  }

  .nav-links > * {
    position: relative;
    z-index: 1;
  }

  /* ── Drawer brand header ── */
  .drawer-brand {
    display: flex;
    align-items: center;
    gap: 0.72rem;
    padding: 1.05rem 1.1rem 0.85rem;
    margin: 0;
    border: none;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .drawer-brand-mark {
    width: 3rem;
    height: auto;
    flex: 0 0 auto;
    object-fit: contain;
  }

  .drawer-brand-copy {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }

  .drawer-brand-name {
    font-family: "Cormorant", Georgia, serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text);
  }

  .drawer-brand-sub {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.035em;
    color: var(--muted);
    text-transform: uppercase;
  }

  .drawer-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: 0.65rem 1.1rem 0.75rem;
  }

  .drawer-chip {
    display: inline-flex;
    align-items: center;
    min-height: 1.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--muted-strong);
    background: rgba(30, 122, 60, 0.05);
    border: 1px solid rgba(20, 80, 40, 0.08);
  }

  /* ── Drawer nav links ── */
  .nav-links a {
    color: var(--text);
    padding: 0.9rem 0.15rem;
    margin: 0 1.1rem;
    width: calc(100% - 2.2rem);
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--line);
    font-size: 0.94rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-align: left;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(10, 110, 189, 0.2);
    background: transparent;
    transition:
      color 0.18s ease,
      background 0.18s ease,
      border-color 0.18s ease,
      transform 0.18s ease;
  }

  /* Remove underline indicator inside drawer */
  .nav-links a::after {
    display: none;
  }

  .nav-links a:hover {
    color: var(--brand-strong);
    background: transparent;
    border-color: var(--line-strong);
    transform: none;
  }

  .nav-links a[aria-current="page"] {
    color: var(--brand-alt);
    font-weight: 600;
    background: transparent;
    border-color: rgba(20, 80, 40, 0.18);
    box-shadow: inset 2px 0 0 var(--brand-alt);
    padding-left: 0.65rem;
  }

  /* ── Drawer divider ── */
  .nav-divider {
    display: block;
    height: 1px;
    background: var(--line);
    margin: 0.8rem 1.1rem;
  }

  /* ── CTA inside drawer ── */
  .nav-links .nav-cta {
    margin: 0.8rem 1.1rem 0;
    padding: 0.78rem 1rem;
    width: calc(100% - 2.2rem);
    text-align: center;
    border-radius: 0.5rem;
    border: 1px solid var(--brand-alt);
    background: var(--brand-alt);
    color: #eff8f4;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(46, 139, 71, 0.25);
    box-shadow: none;
    transition:
      background 0.2s ease,
      border-color 0.2s ease,
      color 0.2s ease;
  }

  .nav-links .nav-cta::after {
    display: none;
  }

  .nav-links .nav-cta:hover {
    background: #165e2e;
    border-color: #165e2e;
    color: #eff8f4;
    transform: none;
  }
}

/* ═══════════════════════════════════════════════
   Page hero with full-bleed background image
   ═══════════════════════════════════════════════ */

.page-hero--img {
  background:
    linear-gradient(
      135deg,
      rgba(8, 28, 56, 0.76) 0%,
      rgba(10, 80, 140, 0.58) 62%,
      rgba(46, 139, 71, 0.3) 100%
    ),
    var(--hero-img) center / cover no-repeat;
  padding: 5.5rem 0 4rem;
}

.page-hero--img .page-title {
  color: #f0f8ff;
}

.page-hero--img .page-copy .kicker {
  color: rgba(191, 232, 208, 0.88);
}

.page-hero--img .page-copy .kicker::before {
  background: linear-gradient(90deg, rgba(191, 232, 208, 0.65), transparent);
}

.page-hero--img .page-summary {
  color: rgba(236, 248, 255, 0.84);
}

.page-hero--img .hero-side-card {
  background: rgba(8, 28, 56, 0.58);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: rgba(255, 255, 255, 0.14);
  color: #eaf5ff;
}

.page-hero--img .hero-side-card h3 {
  color: #f0f8ff;
}

.page-hero--img .hero-side-card p {
  color: rgba(236, 248, 255, 0.78);
}

.page-hero--img .service-note,
.page-hero--img .draft-note {
  color: rgba(236, 248, 255, 0.62);
}

/* ──────────────── Stat band ──────────────── */
.stat-band {
  background: linear-gradient(160deg, #071e12 0%, #0a2818 100%);
  padding: 3.4rem 0;
  color: #eaf5ff;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
  padding: 1.6rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  transition:
    background 0.22s ease,
    border-color 0.22s ease;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.16);
}

.stat-number {
  font-family: "Cormorant", Georgia, serif;
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #c5e8ff;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(236, 248, 255, 0.68);
}

/* ─── Card hover transitions ─── */
.card,
.panel,
.contact-card,
.office-card,
.industry-card {
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.card:hover,
.contact-card:hover,
.office-card:hover,
.industry-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

/* ─── About section principles grid spacing ─── */
.principle-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-alt);
  margin-bottom: 0.4rem;
}

@media (max-width: 720px) {
  .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .stat-item {
    padding: 1.2rem 0.8rem;
  }
}

.page-hero--img .tag,
.page-hero--img .pill {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.88);
}

/* ═══════════════════════════════════════════════
   Scope list — editorial left-bar style
   ═══════════════════════════════════════════════ */

.scope-list li {
  padding-left: 1.3rem;
  border-left: 2px solid var(--brand-alt);
  border-top: none;
  border-right: none;
  border-bottom: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(255, 255, 255, 0.68);
}

/* ═══════════════════════════════════════════════
   Full-bleed hero (index.php)
   ═══════════════════════════════════════════════ */

.hero--full {
  padding: 0;
  min-height: 100vh;
  background:
    linear-gradient(rgba(7, 24, 15, 0.14), rgba(7, 24, 15, 0.32)),
    var(--hero-bg) center center / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.hero--full::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 16% 26%,
      rgba(255, 255, 255, 0.18),
      transparent 26%
    ),
    radial-gradient(circle at 84% 72%, rgba(30, 122, 60, 0.16), transparent 24%);
  z-index: 0;
  pointer-events: none;
}

.hero--full::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 24, 15, 0.42), transparent 28%);
  z-index: 0;
  pointer-events: none;
}

.hero--full .hero-grid {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 7rem 0 4rem;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  align-items: center;
}

.hero--full .hero-copy {
  position: relative;
  overflow: hidden;
  max-width: 41rem;
  padding: clamp(1.4rem, 2.6vw, 2.25rem);
  border-radius: 1.55rem;
  background: rgba(248, 253, 250, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 26px 70px rgba(7, 24, 15, 0.18);
}

.hero--full .hero-copy::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(30, 122, 60, 0.38), transparent 72%);
}

.hero--full .kicker {
  color: var(--brand-alt);
}

.hero--full .kicker::before {
  background: linear-gradient(90deg, rgba(30, 122, 60, 0.72), transparent);
}

.hero--full h1 {
  max-width: 12ch;
  color: var(--text);
  font-size: clamp(2.5rem, 6vw, 5.2rem);
  line-height: 0.94;
}

.hero--full .lede {
  color: var(--muted-strong);
  max-width: 52ch;
}

.hero--full .pill {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(30, 122, 60, 0.18);
  color: var(--muted-strong);
}

.hero--full .btn {
  background: var(--brand-alt);
  border-color: var(--brand-alt);
  color: #f0fff6;
}

.hero--full .btn:hover {
  background: #165e2e;
  border-color: #165e2e;
}

.hero--full .btn-secondary {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(20, 80, 40, 0.14);
  color: var(--text);
}

.hero--full .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.96);
  border-color: var(--brand);
  color: var(--text);
}

.hero-showcase {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1rem;
  border-radius: 1.55rem;
  background: rgba(7, 24, 15, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-showcase-head {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.15rem 0.15rem 0;
}

.hero-showcase-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 1.9rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(219, 246, 228, 0.88);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-showcase-head strong {
  font-family: "Cormorant", Georgia, serif;
  font-size: clamp(1.3rem, 2.1vw, 1.75rem);
  font-weight: 600;
  line-height: 1.15;
  color: rgba(248, 255, 250, 0.96);
}

.hero-showcase-head p {
  margin: 0;
  color: rgba(220, 239, 228, 0.78);
  font-size: 0.9rem;
}

.hero-marquee {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  height: clamp(640px, 74vh, 780px);
}

.hero-marquee-column {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-marquee-column::before,
.hero-marquee-column::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 72px;
  z-index: 2;
  pointer-events: none;
}

.hero-marquee-column::before {
  top: 0;
  background: linear-gradient(to bottom, rgba(7, 24, 15, 0.86), transparent);
}

.hero-marquee-column::after {
  bottom: 0;
  background: linear-gradient(to top, rgba(7, 24, 15, 0.86), transparent);
}

.hero-marquee-track {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0.65rem;
  will-change: transform;
}

.hero-marquee-track--up {
  animation: marqueeScrollUp 26s linear infinite;
}

.hero-marquee-track--down {
  transform: translateY(-50%);
  animation: marqueeScrollDown 29s linear infinite;
}

.hero-showcase:hover .hero-marquee-track {
  animation-play-state: paused;
}

.hero-marquee-track img {
  width: 100%;
  height: 214px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
  border-radius: 0.95rem;
}

.hero-showcase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0 0.15rem 0.15rem;
}

.hero-showcase-tag {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(228, 245, 234, 0.88);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

@keyframes marqueeScrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

@keyframes marqueeScrollDown {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}

/* ═══════════════════════════════════════════════
   Page preloader
   ═══════════════════════════════════════════════ */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #071e12;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.2rem;
  transition:
    opacity 0.55s ease,
    visibility 0.55s ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-leaf {
  display: block;
  width: 44px;
  height: 44px;
  background: var(--brand-alt);
  border-radius: 0 50% 0 50%;
  transform-origin: center;
  animation: leafSpin 1.6s ease-in-out infinite;
}

.preloader-name {
  font-family: "Cormorant", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(220, 245, 230, 0.92);
}

.preloader-sub {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(191, 232, 208, 0.55);
  margin-top: -0.8rem;
}

@keyframes leafSpin {
  0% {
    transform: rotate(0deg) scale(1);
    opacity: 0.9;
  }
  50% {
    transform: rotate(180deg) scale(1.1);
    opacity: 1;
  }
  100% {
    transform: rotate(360deg) scale(1);
    opacity: 0.9;
  }
}

@media (max-width: 920px) {
  .hero--full {
    min-height: auto;
    background-position: center center;
  }

  .hero--full::before {
    background:
      radial-gradient(
        circle at 70% 18%,
        rgba(255, 255, 255, 0.16),
        transparent 24%
      ),
      radial-gradient(
        circle at 82% 78%,
        rgba(30, 122, 60, 0.14),
        transparent 24%
      );
  }

  .hero--full::after {
    background: linear-gradient(to top, rgba(7, 24, 15, 0.34), transparent 24%);
  }

  .hero--full .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 5.5rem 0 2.9rem;
    gap: 1.1rem;
  }

  .hero--full .hero-copy {
    max-width: none;
    padding: 1.2rem 1.15rem 1.3rem;
    border-radius: 1.35rem;
    background: rgba(248, 253, 250, 0.88);
    border-color: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 18px 40px rgba(7, 24, 15, 0.12);
  }

  .hero--full h1 {
    max-width: none;
    font-size: clamp(2.35rem, 10.5vw, 4rem);
    line-height: 0.98;
  }

  .hero--full .lede {
    color: var(--muted-strong);
    font-size: 1rem;
  }

  .hero-showcase {
    padding: 0.75rem;
    border-radius: 1.35rem;
    gap: 0.7rem;
  }

  .hero-showcase-head {
    padding: 0.1rem 0.1rem 0;
  }

  .hero-showcase-head p {
    font-size: 0.82rem;
  }

  .hero-marquee {
    height: 272px;
    gap: 0.45rem;
  }

  .hero-marquee-track {
    gap: 0.45rem;
    padding: 0.45rem;
  }

  .hero-marquee-track img {
    height: 118px;
    border-radius: 0.9rem;
  }

  .hero-showcase-tags {
    gap: 0.35rem;
  }
}

@media (max-width: 720px) {
  .hero--full h1 {
    font-size: clamp(2.2rem, 11vw, 3.25rem);
  }

  .hero-marquee {
    grid-template-columns: 1fr;
    height: 228px;
  }

  .hero-marquee-column:last-child {
    display: none;
  }
}

@media (max-width: 560px) {
  .hero--full .hero-grid {
    padding-top: 4.9rem;
  }

  .hero--full .hero-copy {
    border-radius: 1rem;
  }

  .hero-showcase {
    padding: 0.65rem;
    border-radius: 1rem;
  }

  .hero-marquee {
    height: 242px;
  }

  .hero-marquee-track img {
    height: 104px;
  }

  .hero-showcase-head strong {
    font-size: 1.05rem;
  }

  .hero-showcase-tag {
    font-size: 0.68rem;
  }

  .site-header .brand-lockup {
    gap: 0.65rem;
  }

  .site-header .brand-mark {
    width: 2.75rem;
  }

  .site-header .brand-subline {
    display: none;
  }

  .site-header .brand-name {
    font-size: 1.02rem;
    letter-spacing: 0.08em;
  }
}
