:root {
  --bg: #ffffff;
  --bg-soft: #f5f5f1;
  --panel: rgba(255, 255, 255, 0.9);
  --panel-strong: rgba(255, 255, 255, 0.98);
  --text: #1f3a1f;
  --muted: rgba(31, 58, 31, 0.76);
  --line: rgba(31, 58, 31, 0.14);
  --accent: #f69521;
  --accent-2: #ffbf4d;
  --accent-3: #1f3a1f;
  --shadow: 0 22px 50px rgba(31, 58, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(246, 149, 33, 0.14), transparent 34%),
    radial-gradient(circle at 80% 20%, rgba(31, 58, 31, 0.09), transparent 28%),
    linear-gradient(180deg, #fffdf9 0%, #ffffff 100%);
  color: var(--text);
  font-family: "Century Gothic", CenturyGothic, "Trebuchet MS", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.7;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(31, 58, 31, 0.2);
  box-shadow: 0 10px 20px rgba(31, 58, 31, 0.15);
}

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.ambient {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  pointer-events: none;
}

.ambient-one {
  top: 4rem;
  left: -6rem;
  width: 18rem;
  height: 18rem;
  background: rgba(246, 149, 33, 0.16);
}

.ambient-two {
  top: 28rem;
  right: -8rem;
  width: 24rem;
  height: 24rem;
  background: rgba(31, 58, 31, 0.08);
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31, 58, 31, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 58, 31, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 90%);
  pointer-events: none;
}

.topbar,
.hero,
.trust-band,
.section,
.footer {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
}

.section,
.trust-band {
  scroll-margin-top: 6rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 4.95rem;
  height: 4.95rem;
  border: 1px solid rgba(31, 58, 31, 0.18);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 10px 24px rgba(31, 58, 31, 0.12);
  overflow: hidden;
}

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

.brand-text strong,
.brand-text small {
  display: block;
}

.brand-text strong {
  font-size: 1.08rem;
  letter-spacing: 0.16em;
}

.brand-text small {
  color: var(--muted);
  margin-top: 0.15rem;
  font-size: 0.88rem;
  letter-spacing: 0.16em;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.nav a {
  color: rgba(31, 58, 31, 0.88);
  font-size: 1rem;
  font-weight: 700;
}

.nav a:hover {
  color: var(--accent);
}

.nav a:focus-visible,
.contact-links a:focus-visible,
.button:focus-visible,
.footer a:focus-visible,
.brand:focus-visible {
  outline: 2px solid rgba(246, 149, 33, 0.55);
  outline-offset: 4px;
  border-radius: 999px;
}

.nav-cta {
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  background: rgba(31, 58, 31, 0.06);
  border: 1px solid rgba(31, 58, 31, 0.12);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.contact-links a {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(31, 58, 31, 0.14);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(31, 58, 31, 0.08);
}

.contact-links a:hover {
  border-color: rgba(246, 149, 33, 0.35);
  color: var(--accent-3);
}

.mobile-quick-actions {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.9fr);
  gap: 2rem;
  padding: 4.5rem 0 2.75rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.85rem;
  font-weight: 800;
}

.hero h1,
.section-heading h2,
.cta-copy h2 {
  margin: 0;
  font-family: "Century Gothic", CenturyGothic, "Trebuchet MS", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.hero h1 {
  font-size: clamp(3.3rem, 6.8vw, 6.6rem);
  max-width: 12ch;
}

.hero-title {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15em 0.28em;
}

.hero-title span {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.8em);
  animation: heroWordIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: calc(var(--i) * 0.11s);
}

.hero-lead,
.section-heading p,
.cta-copy p {
  color: var(--muted);
  font-size: 1.18rem;
  max-width: 64ch;
}

.hero-lead {
  margin: 1.4rem 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.45rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:focus-visible {
  transform: translateY(-1px);
}

@keyframes heroWordIn {
  0% {
    opacity: 0;
    transform: translateY(0.8em);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #1f3a1f, #2a4d2a);
}

.button-secondary {
  color: var(--accent-3);
  background: rgba(246, 149, 33, 0.08);
  border-color: rgba(246, 149, 33, 0.2);
}

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

.stats div,
.panel-card,
.info-card,
.process article,
.portfolio-card,
.contact-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 245, 241, 0.94));
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.stats div {
  padding: 1rem 1rem 1.1rem;
  border-radius: 1.25rem;
}

.stats dt {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.stats dd {
  margin: 0.65rem 0 0;
  color: rgba(31, 58, 31, 0.84);
  font-size: 1rem;
}

.hero-panel {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.panel-intro {
  display: grid;
  gap: 0.35rem;
  padding: 0.15rem 0.15rem 0.35rem;
}

.panel-intro span {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.82rem;
  font-weight: 800;
}

.panel-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.panel-card {
  padding: 1.25rem;
  border-radius: 1.4rem;
}

.panel-card-logo {
  display: grid;
  place-items: center;
  min-height: 12rem;
  padding: 1.15rem;
  background: rgba(255, 255, 255, 0.98);
}

.panel-card-logo img {
  width: 100%;
  height: 100%;
  max-height: 9rem;
  object-fit: contain;
}

.panel-card span,
.info-card .card-index,
.process span {
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  font-weight: 800;
}

.panel-card h2,
.panel-card h3 {
  margin: 0.8rem 0 0.55rem;
  font-family: "Century Gothic", CenturyGothic, "Trebuchet MS", Arial, sans-serif;
  line-height: 1.08;
}

.panel-card h2 {
  font-size: 2.1rem;
}

.panel-card h3 {
  font-size: 1.45rem;
}

.panel-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.image-card figcaption p {
  margin: 0.2rem 0 0;
  font-size: 0.94rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.86);
}

.image-card {
  position: relative;
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
}

.image-card figcaption,
.showcase-copy {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem 1rem 1.1rem;
  background: linear-gradient(180deg, transparent 0%, rgba(31, 58, 31, 0.76) 55%, rgba(31, 58, 31, 0.92) 100%);
  color: #ffffff;
}

.image-card figcaption h2,
.image-card figcaption h3,
.showcase-copy h3 {
  margin-bottom: 0.4rem;
}

.panel-card-large {
  min-height: 18rem;
  padding: 0;
}

.panel-card-hero {
  min-height: 19.5rem;
}

.panel-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.panel-card-accent {
  background:
    radial-gradient(circle at top left, rgba(246, 149, 33, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 245, 241, 0.94));
}

.panel-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 0.2rem;
}

.panel-strip span,
.trust-items span {
  border-radius: 999px;
  border: 1px solid rgba(31, 58, 31, 0.12);
  background: rgba(255, 255, 255, 0.86);
  padding: 0.55rem 0.8rem;
  color: rgba(31, 58, 31, 0.88);
  font-size: 0.9rem;
  font-weight: 700;
}

.trust-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 3rem;
}

.trust-band p {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(31, 58, 31, 0.88);
  font-size: 0.92rem;
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.section {
  padding: 4rem 0;
}

.section-alt {
  padding-top: 1.5rem;
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 1.8rem;
}

.why-section {
  padding-top: 1rem;
}

.why-grid .info-card {
  min-height: 14rem;
}

.proof-section {
  padding-top: 1rem;
}

.proof-grid .info-card {
  min-height: 14rem;
}

.clients-section {
  padding-top: 1rem;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.partner-card {
  display: grid;
  gap: 0.75rem;
  justify-items: center;
  min-height: 10rem;
  border-radius: 1.35rem;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(246, 149, 33, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 245, 241, 0.94));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  padding: 1rem;
  text-align: center;
}

.partner-card img {
  width: 100%;
  height: 6rem;
  object-fit: contain;
  display: block;
}

.partner-card figcaption {
  font-size: 0.92rem;
  line-height: 1.35;
  color: rgba(31, 58, 31, 0.88);
  font-weight: 700;
}

.about-section {
  padding-top: 1rem;
}

.about-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.about-feature {
  min-height: 12rem;
  border-radius: 1.35rem;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(31, 58, 31, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 245, 241, 0.94));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  padding: 1.25rem;
}

.about-feature span {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.9rem;
  font-weight: 800;
}

.about-feature p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.about-feature-wide {
  grid-column: span 2;
}

.section-heading h2,
.cta-copy h2 {
  font-size: clamp(2.8rem, 5vw, 5.6rem);
  margin-bottom: 0.9rem;
}

.section-heading p:last-child,
.cta-copy p:last-child {
  margin-bottom: 0;
}

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

.info-card {
  padding: 1.35rem;
  border-radius: 1.35rem;
  min-height: 12rem;
}

.info-card h3,
.process h3,
.portfolio-card h3 {
  margin: 0.7rem 0 0.6rem;
  font-family: "Century Gothic", CenturyGothic, "Trebuchet MS", Arial, sans-serif;
  font-size: 2rem;
  line-height: 1.08;
}

.info-card p:last-child,
.process p,
.portfolio-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.process article {
  padding: 1.35rem;
  border-radius: 1.3rem;
  min-height: 15rem;
}

.process h3 {
  font-size: 2.4rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.portfolio-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1.45rem;
  min-height: 100%;
}

.portfolio-card img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  display: block;
}

.portfolio-card-wide {
  grid-column: span 2;
}

.portfolio-card-tall {
  grid-row: span 2;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand img {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.92);
  object-fit: contain;
  box-shadow: 0 6px 16px rgba(31, 58, 31, 0.12);
}

.showcase-copy {
  position: static;
  padding: 1.1rem 1.15rem 1.25rem;
  background: rgba(255, 255, 255, 0.98);
  color: var(--text);
  border-top: 1px solid var(--line);
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.5rem;
  align-items: start;
  padding-top: 1.5rem;
  padding-bottom: 1rem;
}

.cta-copy {
  position: sticky;
  top: 1.5rem;
  align-self: start;
}

.contact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.contact-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 2.6rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(31, 58, 31, 0.14);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  box-shadow: 0 8px 18px rgba(31, 58, 31, 0.08);
  font-size: 0.95rem;
  font-weight: 700;
}

.contact-panel {
  display: grid;
  gap: 1rem;
}

.contact-card-head {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0.35rem;
}

.contact-card-head h3 {
  margin: 0;
  font-family: "Century Gothic", CenturyGothic, "Trebuchet MS", Arial, sans-serif;
  font-size: 2rem;
  line-height: 1.06;
  color: var(--text);
}

.contact-card {
  border-radius: 1.8rem;
  padding: 1.65rem;
  display: grid;
  gap: 1rem;
  background:
    radial-gradient(circle at top right, rgba(246, 149, 33, 0.14), transparent 28%),
    radial-gradient(circle at bottom left, rgba(31, 58, 31, 0.06), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(245, 245, 241, 0.96));
  border: 1px solid rgba(31, 58, 31, 0.12);
  box-shadow: 0 18px 40px rgba(31, 58, 31, 0.14);
}

.contact-card label {
  display: grid;
  gap: 0.5rem;
}

.contact-card span {
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 800;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  border: 1px solid rgba(31, 58, 31, 0.16);
  border-radius: 1rem;
  padding: 1rem 1.05rem;
  color: var(--text);
  background: #ffffff;
  resize: vertical;
  font-size: 1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.contact-card input::placeholder,
.contact-card textarea::placeholder {
  color: rgba(31, 58, 31, 0.42);
}

.contact-card input:focus,
.contact-card textarea:focus {
  outline: 2px solid rgba(246, 149, 33, 0.35);
  outline-offset: 2px;
  border-color: rgba(246, 149, 33, 0.45);
}

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

.form-message {
  margin: 0;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  font-size: 1rem;
  line-height: 1.5;
  border: 1px solid transparent;
}

.form-success {
  color: #184d22;
  background: rgba(31, 58, 31, 0.08);
  border-color: rgba(31, 58, 31, 0.2);
}

.form-error {
  color: #8b2b14;
  background: rgba(246, 149, 33, 0.12);
  border-color: rgba(246, 149, 33, 0.3);
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-details article {
  border-radius: 1.35rem;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(246, 149, 33, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 245, 241, 0.94));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  padding: 1rem 1.1rem;
}

.contact-details article:last-child {
  grid-column: 1 / -1;
}

.contact-social p {
  line-height: 1.55;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.social-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(31, 58, 31, 0.14);
  background: rgba(255, 255, 255, 0.92);
  color: var(--accent-3);
  box-shadow: 0 8px 18px rgba(31, 58, 31, 0.08);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.social-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: currentColor;
}

.social-icon:hover {
  transform: translateY(-2px);
  border-color: rgba(246, 149, 33, 0.35);
  color: var(--accent);
  background: rgba(255, 255, 255, 1);
}

.social-icon:focus-visible {
  outline: 2px solid rgba(246, 149, 33, 0.45);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-details span {
  display: inline-block;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
}

.contact-details p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.contact-details p + p {
  margin-top: 0.25rem;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0 2.5rem;
  color: rgba(31, 58, 31, 0.72);
  font-size: 0.98rem;
}

.footer p {
  margin: 0;
}

.footer a {
  color: var(--accent-3);
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(31, 58, 31, 0.16);
  background: rgba(255, 255, 255, 0.95);
  color: var(--accent-3);
  box-shadow: 0 14px 26px rgba(31, 58, 31, 0.16);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.back-to-top:hover {
  border-color: rgba(246, 149, 33, 0.35);
  color: var(--accent);
}

@media (max-width: 1060px) {
  .hero,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .stats,
  .card-grid,
  .partner-grid,
  .about-layout,
  .contact-details,
  .process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-card-wide,
  .portfolio-card-tall {
    grid-column: span 1;
    grid-row: auto;
  }

  .cta-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .topbar,
  .hero,
  .trust-band,
  .section,
  .footer {
    width: min(100%, calc(100% - 1.25rem));
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.9rem 0 0.65rem;
  }

  .brand {
    gap: 0.7rem;
  }

  .brand-mark {
    width: 4rem;
    height: 4rem;
  }

  .nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.8rem;
    padding: 0.7rem 0.85rem;
    border-radius: 0.95rem;
    border: 1px solid rgba(31, 58, 31, 0.12);
    background: rgba(255, 255, 255, 0.88);
    font-size: 0.92rem;
    box-shadow: 0 8px 18px rgba(31, 58, 31, 0.06);
  }

  .nav-cta {
    grid-column: span 2;
    background: linear-gradient(135deg, #1f3a1f, #2a4d2a);
    border-color: transparent;
    color: #ffffff;
  }

  .hero {
    padding-top: 1.5rem;
  }

  .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    margin-bottom: 0.8rem;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 10vw, 3.45rem);
    max-width: 100%;
  }

  .hero-lead,
  .section-heading p,
  .cta-copy p {
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions {
    margin: 1.25rem 0;
    gap: 0.65rem;
  }

  .button {
    width: 100%;
  }

  .stats {
    gap: 0.75rem;
    margin-top: 1.25rem;
  }

  .stats div {
    padding: 0.9rem 0.95rem 1rem;
  }

  .panel-card-large {
    min-height: 15rem;
  }

  .panel-row {
    gap: 0.75rem;
  }

  .stats,
  .card-grid,
  .partner-grid,
  .about-layout,
  .contact-details,
  .process,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .about-feature-wide {
    grid-column: auto;
  }

  .portfolio-card-wide,
  .portfolio-card-tall {
    grid-column: auto;
    grid-row: auto;
  }

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

  .hero-title {
    gap: 0.12em 0.2em;
  }

  .panel-row,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .contact-chips {
    gap: 0.55rem;
  }

  .contact-links a,
  .contact-chips span {
    width: 100%;
    justify-content: center;
    min-height: 2.75rem;
  }

  .contact-card {
    padding: 1.15rem;
    gap: 0.85rem;
  }

  .contact-card-head h3 {
    font-size: 1.5rem;
  }

  .contact-card input,
  .contact-card textarea {
    padding: 0.9rem 0.95rem;
  }

  .trust-band {
    align-items: flex-start;
    padding: 0.5rem 0 2rem;
  }

  .trust-band p {
    font-size: 0.8rem;
    letter-spacing: 0.05em;
  }

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

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

  .section {
    padding: 2.8rem 0;
  }

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

  .section-heading h2,
  .cta-copy h2 {
    font-size: clamp(2rem, 9vw, 3rem);
    margin-bottom: 0.7rem;
  }

  .info-card,
  .process article,
  .portfolio-card,
  .contact-card,
  .about-feature {
    border-radius: 1.1rem;
  }

  .info-card,
  .process article {
    min-height: auto;
    padding: 1rem;
  }

  .info-card h3,
  .process h3,
  .portfolio-card h3 {
    font-size: 1.45rem;
  }

  .portfolio-card img {
    height: 12rem;
  }

  .cta-section {
    gap: 1rem;
    padding-top: 1rem;
  }

  .cta-copy {
    position: static;
  }

  .footer {
    padding-bottom: 5.75rem;
  }

  .footer-links {
    gap: 0.55rem;
  }

  .mobile-quick-actions {
    position: fixed;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 1.15rem;
    border: 1px solid rgba(31, 58, 31, 0.12);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 36px rgba(31, 58, 31, 0.18);
    backdrop-filter: blur(16px);
  }

  .mobile-quick-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.9rem;
    padding: 0.7rem 0.55rem;
    border-radius: 0.9rem;
    background: linear-gradient(135deg, rgba(31, 58, 31, 0.96), rgba(42, 77, 42, 0.96));
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(31, 58, 31, 0.16);
  }

  .back-to-top {
    right: 0.75rem;
    bottom: 4.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-title span {
    animation: none;
    opacity: 1;
    transform: none;
    filter: none;
  }
}
