:root {
  --green: #1b8000;
  --green-dark: #146200;
  --green-soft: #eaf5e5;
  --ink: #0d0d0d;
  --muted: #696966;
  --line: rgba(13, 13, 13, 0.1);
  --paper: #f7f6f2;
  --white: #fff;
  --max: 1180px;
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 52px);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.brand img { width: clamp(150px, 18vw, 210px); }
.site-nav { display: flex; align-items: center; gap: 30px; font-size: 14px; }
.site-nav a { text-decoration: none; color: var(--ink); opacity: 0.84; transition: opacity .2s ease, transform .2s ease; }
.site-nav a:hover { opacity: 1; transform: translateY(-1px); }
.nav-pill { padding: 10px 20px; border-radius: 999px; background: var(--green); color: var(--white) !important; opacity: 1 !important; }
.menu-button { display: none; background: none; border: 0; padding: 8px; }
.menu-button span:not(.sr-only) { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; }

.section { padding: clamp(72px, 9vw, 128px) clamp(20px, 4vw, 52px); }
.container { width: min(100%, var(--max)); margin: 0 auto; }
.section-dark { background: var(--green); color: var(--white); position: relative; overflow: hidden; }
.eyebrow { margin: 0 0 22px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: currentColor; opacity: .58; }
h1, h2, h3 { margin: 0; letter-spacing: -.03em; font-weight: 400; }
h1, h2 { font-family: "DM Serif Display", Georgia, serif; line-height: 1.02; }
h1 { font-size: clamp(54px, 8vw, 106px); max-width: 780px; }
h1 em { color: rgba(255,255,255,.65); }
h2 { font-size: clamp(38px, 5vw, 68px); }
h3 { font-family: "DM Serif Display", Georgia, serif; font-size: clamp(28px, 3vw, 38px); }
p { font-size: 17px; line-height: 1.65; color: var(--muted); }
.section-dark p { color: rgba(255,255,255,.72); }
.lead { font-size: clamp(18px, 2vw, 22px); max-width: 600px; margin: 28px 0 0; }

.hero { min-height: 100svh; display: flex; align-items: center; padding-top: 120px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr); gap: clamp(48px, 7vw, 96px); align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.hero-mark { position: relative; aspect-ratio: 1; min-width: 280px; }
.ring { position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; }
.r2 { inset: 18%; border-color: rgba(255,255,255,.24); }
.r3 { inset: 36%; border-color: rgba(255,255,255,.3); }
.seed { position: absolute; width: 18px; height: 18px; border-radius: 999px; background: #fff; left: 50%; top: 50%; transform: translate(-50%, -50%); box-shadow: 0 0 48px rgba(255,255,255,.45); }
.orb { position: absolute; border: 1px solid rgba(255,255,255,.11); border-radius: 999px; pointer-events: none; }
.orb-one { width: 620px; height: 620px; left: -260px; bottom: -180px; }
.orb-two { width: 760px; height: 760px; right: -360px; top: -300px; }
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.actions.centre { justify-content: center; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 14px 24px; border-radius: 999px; text-decoration: none; font-size: 14px; font-weight: 700; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-light { background: var(--white); color: var(--green); }
.button-outline-light { border: 1px solid rgba(255,255,255,.35); color: var(--white); }
.button-dark { background: var(--ink); color: var(--white); }
.button-outline-dark { border: 1px solid var(--line); color: var(--ink); }
.button-dark:hover, .button-light:hover { box-shadow: 0 16px 36px rgba(0,0,0,.18); }

.intro { background: var(--paper); }
.split { display: grid; grid-template-columns: .7fr 1.1fr .9fr; gap: clamp(28px, 5vw, 72px); align-items: start; }
.split h2 { margin-top: -10px; }
.split p:last-child { margin-top: 0; }
.section-head { margin-bottom: 48px; max-width: 820px; }
.section-head.narrow { max-width: 900px; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.service-card { position: relative; min-height: 390px; padding: clamp(32px, 4vw, 52px); background: var(--white); border: 1px solid var(--line); overflow: hidden; transition: color .25s ease, background .25s ease, transform .25s ease; }
.service-card::after { content: ""; position: absolute; width: 180px; height: 180px; border: 1px solid rgba(27,128,0,.16); border-radius: 50%; right: -70px; bottom: -70px; transition: border-color .25s ease; }
.service-card:hover { background: var(--green); color: var(--white); transform: translateY(-4px); }
.service-card:hover p, .service-card:hover span, .service-card:hover a { color: rgba(255,255,255,.78); }
.service-card:hover::after { border-color: rgba(255,255,255,.2); }
.service-card span { display: block; margin-bottom: 72px; font-size: 12px; font-weight: 700; letter-spacing: .12em; color: var(--muted); }
.service-card p { margin: 20px 0 34px; font-size: 15px; }
.service-card a { position: relative; z-index: 1; font-size: 14px; font-weight: 700; color: var(--green); text-decoration: none; }

.experience { background: var(--white); }
.logo-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.logo-grid div { min-height: 132px; display: flex; align-items: center; justify-content: center; padding: 34px 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(247,246,242,.45); }
.logo-grid img { max-width: 160px; max-height: 58px; object-fit: contain; filter: grayscale(1); opacity: .76; transition: filter .2s ease, opacity .2s ease, transform .2s ease; }
.logo-grid div:hover img { filter: grayscale(0); opacity: 1; transform: scale(1.03); }
.approach { background: var(--ink); }
.approach::before { content: ""; position: absolute; width: 680px; height: 680px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; left: -220px; top: -140px; }
.contact { background: var(--paper); }
.contact-card { max-width: 820px; text-align: center; padding: clamp(42px, 6vw, 80px); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 30px 80px rgba(0,0,0,.05); }
.contact-card p { max-width: 560px; margin: 22px auto 0; }
.site-footer { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 34px clamp(20px, 4vw, 52px); background: var(--ink); color: rgba(255,255,255,.48); }
.site-footer img { width: 165px; opacity: .9; }
.site-footer p { margin: 0; font-size: 13px; color: rgba(255,255,255,.48); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 920px) {
  .menu-button { display: block; }
  .site-nav { position: fixed; top: 69px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; padding: 22px; background: rgba(255,255,255,.97); border-bottom: 1px solid var(--line); box-shadow: 0 20px 40px rgba(0,0,0,.08); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px 0; }
  .nav-pill { text-align: center; padding: 12px 18px !important; }
  .hero-grid, .split { grid-template-columns: 1fr; }
  .hero-mark { display: none; }
  .card-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .service-card span { margin-bottom: 46px; }
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .site-header { padding: 15px 18px; }
  .brand img { width: 150px; }
  .hero { min-height: 88svh; padding-top: 110px; }
  h1 { font-size: clamp(48px, 15vw, 70px); }
  .lead { font-size: 18px; }
  .actions, .actions.centre { flex-direction: column; }
  .button { width: 100%; }
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-grid div { min-height: 108px; padding: 24px 18px; }
  .logo-grid img { max-width: 128px; max-height: 46px; }
  .site-footer { flex-direction: column; text-align: center; }
}

/* Responsive refinements */
:root {
  --gutter: clamp(22px, 5vw, 64px);
}

.section {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.site-header,
.site-footer {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

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

.hero {
  min-height: 100svh;
}

@media (max-width: 1100px) {
  :root {
    --gutter: clamp(28px, 6vw, 56px);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(220px, .55fr);
    gap: 48px;
  }

  h1 {
    font-size: clamp(56px, 8vw, 86px);
  }

  h2 {
    font-size: clamp(38px, 5.7vw, 58px);
  }

  .split {
    grid-template-columns: 1fr 1.4fr;
  }

  .split > p:last-child,
  .split > div {
    grid-column: 2;
  }

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

  .service-card {
    padding: 34px 28px;
  }
}

@media (max-width: 920px) {
  :root {
    --gutter: clamp(24px, 6vw, 44px);
  }

  .section {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .hero {
    min-height: auto;
    padding-top: 132px;
    padding-bottom: 96px;
  }

  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .split > p:last-child,
  .split > div {
    grid-column: auto;
  }

  .section-head {
    margin-bottom: 36px;
  }

  .lead,
  p {
    max-width: 680px;
  }

  .card-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-card {
    border-radius: 22px;
    min-height: auto;
    padding: 36px 32px;
  }

  .service-card span {
    margin-bottom: 34px;
  }

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

  .logo-grid div {
    min-height: 118px;
    padding: 30px 24px;
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 24px;
    --radius: 22px;
  }

  .site-header {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .brand img {
    width: 148px;
  }

  .site-nav {
    top: 61px;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .hero {
    padding-top: 118px;
    padding-bottom: 76px;
  }

  h1 {
    font-size: clamp(46px, 13vw, 64px);
    line-height: 1.03;
  }

  h2 {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1.08;
  }

  h3 {
    font-size: 30px;
  }

  .eyebrow {
    margin-bottom: 18px;
  }

  .lead,
  p {
    font-size: 16px;
    line-height: 1.6;
  }

  .lead {
    margin-top: 24px;
  }

  .actions,
  .actions.centre {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
    min-height: 50px;
  }

  .service-card {
    padding: 32px 26px;
  }

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

  .logo-grid div {
    min-height: 104px;
    padding: 24px 18px;
  }

  .logo-grid img {
    max-width: 122px;
    max-height: 44px;
  }

  .contact-card {
    padding: 36px 24px;
  }

  .orb-one {
    width: 440px;
    height: 440px;
    left: -280px;
    bottom: -160px;
  }

  .orb-two {
    width: 520px;
    height: 520px;
    right: -360px;
    top: -260px;
  }
}

@media (max-width: 420px) {
  :root {
    --gutter: 20px;
  }

  .brand img {
    width: 138px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 54px);
  }

  h2 {
    font-size: clamp(32px, 10vw, 42px);
  }

  .hero {
    padding-top: 110px;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .service-card {
    padding: 30px 22px;
  }

  .logo-grid div {
    min-height: 96px;
    padding: 22px 14px;
  }

  .logo-grid img {
    max-width: 108px;
    max-height: 40px;
  }

  .contact-card {
    padding: 32px 20px;
  }
}


/* Mobile spacing fix for hero / first panel */
@media (max-width: 768px) {
  .hero,
  .hero-content,
  .hero-text,
  .section,
  .container {
    padding-left: 24px !important;
    padding-right: 24px !important;
    box-sizing: border-box;
  }

  h1,
  .hero h1,
  .hero-copy,
  .hero p {
    max-width: 100%;
    word-wrap: break-word;
  }
}


/* Client logo simplification */
.client-logo,
.logo-item img,
.clients-grid img {
  max-width: 88% !important;
  max-height: 88% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
  transition: none !important;
}

/* Remove hover effects */
.client-logo:hover,
.logo-item:hover img,
.clients-grid img:hover {
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
}

/* Give logos cleaner centered layout */
.logo-item,
.client-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}


/* Larger floating client logos without matrix boxes */
.clients-grid,
.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 48px;
  align-items: center;
}

.logo-item,
.client-logo-card {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.client-logo,
.logo-item img,
.clients-grid img {
  max-width: 100% !important;
  max-height: 140px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
}


/* === Client logo section redesign, clean static presentation === */

/* Remove the boxed matrix/card appearance */
.experience .logos-grid,
.experience .clients-grid,
.logos-grid,
.clients-grid,
.logo-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  column-gap: clamp(48px, 7vw, 120px) !important;
  row-gap: clamp(48px, 6vw, 96px) !important;
  align-items: center !important;
  justify-items: center !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: clamp(24px, 4vw, 56px) 0 !important;
}

/* Kill all tile/card styling */
.logo-cell,
.logo-item,
.client-logo-card,
.client-logo,
.experience .logo-cell,
.experience .logo-item {
  background: transparent !important;
  border: 0 !important;
  border-right: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
  width: 100% !important;
  min-height: clamp(90px, 10vw, 150px) !important;
  height: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: visible !important;
}

/* Make logos materially larger and always visible */
.logo-cell img,
.logo-item img,
.client-logo img,
.client-logo,
.clients-grid img,
.logos-grid img,
.logo-grid img,
.experience img {
  display: block !important;
  width: auto !important;
  height: auto !important;
  max-width: min(260px, 82%) !important;
  max-height: clamp(72px, 8vw, 120px) !important;
  object-fit: contain !important;
  opacity: 1 !important;
  visibility: visible !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  transform: none !important;
  transition: none !important;
}

/* Remove hover/colour reveal behaviour */
.logo-cell:hover,
.logo-item:hover,
.client-logo-card:hover,
.client-logo:hover,
.logo-cell:hover img,
.logo-item:hover img,
.client-logo-card:hover img,
.client-logo:hover img,
.clients-grid img:hover,
.logos-grid img:hover,
.logo-grid img:hover {
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* Remove pseudo-elements that may be creating tile overlays */
.logo-cell::before,
.logo-cell::after,
.logo-item::before,
.logo-item::after,
.client-logo-card::before,
.client-logo-card::after,
.client-logo::before,
.client-logo::after {
  content: none !important;
  display: none !important;
}

/* Responsive logo sizing */
@media (max-width: 900px) {
  .experience .logos-grid,
  .experience .clients-grid,
  .logos-grid,
  .clients-grid,
  .logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    column-gap: 44px !important;
    row-gap: 56px !important;
  }

  .logo-cell,
  .logo-item,
  .client-logo-card,
  .client-logo {
    min-height: 112px !important;
  }

  .logo-cell img,
  .logo-item img,
  .client-logo img,
  .client-logo,
  .clients-grid img,
  .logos-grid img,
  .logo-grid img,
  .experience img {
    max-width: min(220px, 88%) !important;
    max-height: 100px !important;
  }
}

@media (max-width: 560px) {
  .experience .logos-grid,
  .experience .clients-grid,
  .logos-grid,
  .clients-grid,
  .logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    column-gap: 32px !important;
    row-gap: 44px !important;
  }

  .logo-cell,
  .logo-item,
  .client-logo-card,
  .client-logo {
    min-height: 92px !important;
  }

  .logo-cell img,
  .logo-item img,
  .client-logo img,
  .client-logo,
  .clients-grid img,
  .logos-grid img,
  .logo-grid img,
  .experience img {
    max-width: min(180px, 92%) !important;
    max-height: 86px !important;
  }
}


/* Remove ALL logo background boxes/squares */
.logo-item,
.logo-cell,
.client-logo,
.client-logo-card,
.clients-grid > *,
.logos-grid > *,
.logo-grid > * {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

/* Remove background/padding directly on images */
.logo-item img,
.logo-cell img,
.client-logo img,
.clients-grid img,
.logos-grid img,
.logo-grid img {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

/* Kill any pseudo-element overlays */
.logo-item::before,
.logo-item::after,
.logo-cell::before,
.logo-cell::after,
.client-logo::before,
.client-logo::after,
.client-logo-card::before,
.client-logo-card::after {
  display: none !important;
  content: none !important;
}


/* Client logo section, light grey panel + larger logos */
.experience,
#experience,
.clients,
.logos-section {
  background: #e6e6e6 !important;
}

.experience .section-inner,
#experience .section-inner {
  background: transparent !important;
}

.experience .logos-grid,
.experience .clients-grid,
.logos-grid,
.clients-grid,
.logo-grid {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding-top: clamp(40px, 5vw, 72px) !important;
  padding-bottom: clamp(48px, 6vw, 88px) !important;
  column-gap: clamp(56px, 8vw, 136px) !important;
  row-gap: clamp(56px, 7vw, 108px) !important;
}

/* Make client logos larger while keeping them static and unboxed */
.logo-cell,
.logo-item,
.client-logo,
.client-logo-card,
.clients-grid > *,
.logos-grid > *,
.logo-grid > * {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
  min-height: clamp(130px, 12vw, 190px) !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.logo-cell img,
.logo-item img,
.client-logo img,
.clients-grid img,
.logos-grid img,
.logo-grid img,
.experience img {
  max-width: min(340px, 96%) !important;
  max-height: clamp(105px, 10vw, 165px) !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
  transition: none !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

/* Keep logos static, no hover behaviour */
.logo-cell:hover,
.logo-item:hover,
.client-logo:hover,
.client-logo-card:hover,
.logo-cell:hover img,
.logo-item:hover img,
.client-logo:hover img,
.client-logo-card:hover img,
.clients-grid img:hover,
.logos-grid img:hover,
.logo-grid img:hover {
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* Mobile logo sizing */
@media (max-width: 900px) {
  .logo-cell,
  .logo-item,
  .client-logo,
  .client-logo-card,
  .clients-grid > *,
  .logos-grid > *,
  .logo-grid > * {
    min-height: 130px !important;
  }

  .logo-cell img,
  .logo-item img,
  .client-logo img,
  .clients-grid img,
  .logos-grid img,
  .logo-grid img,
  .experience img {
    max-width: min(280px, 96%) !important;
    max-height: 125px !important;
  }
}

@media (max-width: 560px) {
  .experience,
  #experience,
  .clients,
  .logos-section {
    background: #e6e6e6 !important;
  }

  .logo-cell,
  .logo-item,
  .client-logo,
  .client-logo-card,
  .clients-grid > *,
  .logos-grid > *,
  .logo-grid > * {
    min-height: 110px !important;
  }

  .logo-cell img,
  .logo-item img,
  .client-logo img,
  .clients-grid img,
  .logos-grid img,
  .logo-grid img,
  .experience img {
    max-width: min(220px, 98%) !important;
    max-height: 105px !important;
  }
}


/* Desktop email CTA click fix */
.cta,
#contact,
.cta-inner,
.cta-actions {
  position: relative;
  z-index: 5;
}

.cta a,
#contact a,
.btn-dark,
.btn-ghost-dark {
  position: relative;
  z-index: 20;
  pointer-events: auto;
}

/* Decorative/background elements must not intercept desktop clicks */
.cta::before,
.cta::after,
#contact::before,
#contact::after,
.circle,
.circle-large,
.bg-circle,
.decorative-circle,
.hero-circles,
.hero-circle-comp,
.svc-circle {
  pointer-events: none !important;
}


/* Stronger desktop mailto click target fix */
.contact,
#contact,
.contact-card,
.actions,
.actions.centre,
.button,
.button-dark,
.button-outline-dark {
  position: relative !important;
}

.contact,
#contact,
.contact-card,
.actions,
.actions.centre {
  z-index: 10 !important;
}

.button,
.button-dark,
.button-outline-dark,
a[href^="mailto:"] {
  z-index: 999 !important;
  pointer-events: auto !important;
  cursor: pointer !important;
}

/* Prevent decorative or reveal layers from intercepting CTA clicks */
.reveal::before,
.reveal::after,
.section::before,
.section::after,
.container::before,
.container::after,
.contact-card::before,
.contact-card::after {
  pointer-events: none !important;
}


/* Contact form section */
.contact-form-panel {
  background: #0b0b0b;
  color: white;
  padding: clamp(72px, 10vw, 140px) 24px;
}

.contact-form-panel .container {
  max-width: 920px;
  margin: 0 auto;
}

.section-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #00b140;
  margin-bottom: 18px;
}

.contact-form-panel h2 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.95;
  margin: 0 0 24px;
  color: white;
}

.contact-intro {
  max-width: 720px;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  margin-bottom: 48px;
}

.contact-form {
  width: 100%;
}

.hidden-field {
  display: none;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: white;
  padding: 18px 20px;
  border-radius: 16px;
  font-size: 16px;
  font-family: inherit;
  box-sizing: border-box;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.45);
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
  margin-bottom: 24px;
}

.contact-form .button {
  min-width: 220px;
}

@media (max-width: 768px) {

  .contact-form-panel {
    padding-left: 24px;
    padding-right: 24px;
  }

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

  .contact-form-panel h2 {
    line-height: 1.02;
  }

  .contact-form .button {
    width: 100%;
  }
}
