.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

.container-narrow {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

.container-wide {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

.section {
  padding: clamp(72px, 10vw, 140px) 0;
  overflow-x: hidden;
}

.section-sm { padding: clamp(48px, 7vw, 96px) 0; overflow-x: hidden; }
.section-lg { padding: clamp(96px, 14vw, 180px) 0; overflow-x: hidden; }

.section-header {
  margin-bottom: clamp(48px, 7vw, 88px);
}

.section-header-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(48px, 7vw, 88px);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--c-accent);
  flex-shrink: 0;
}

.section-label-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.section-label-center::before,
.section-label-center::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--c-accent);
  flex-shrink: 0;
}

.section-h2 {
  font-size: clamp(36px, 5vw, 68px);
  margin-bottom: 20px;
}

.section-sub {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--c-muted);
  max-width: 560px;
  line-height: 1.72;
}

.section-sub-center {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--c-muted);
  max-width: 560px;
  line-height: 1.72;
  text-align: center;
  margin: 0 auto;
}

.bg-light { background: var(--c-bg); }
.bg-alt { background: var(--c-bg-alt); }
.bg-contrast { background: var(--c-bg-contrast); }
.bg-dark { background: var(--c-text); }
.bg-primary { background: var(--c-primary); }

header,
section,
footer {
  overflow-x: hidden;
  max-width: 100%;
  box-sizing: border-box;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: 72px;
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease-smooth),
              box-shadow 0.4s var(--ease-smooth),
              backdrop-filter 0.4s var(--ease-smooth);
}

.site-header.is-transparent {
  background: transparent;
}

.site-header.is-scrolled {
  background: rgba(66,101,86,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 32px rgba(42,74,58,0.22);
}

.site-header.is-solid {
  background: var(--c-primary);
}

.header-inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-logo .logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--grad-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 600;
  color: #1c1508;
  flex-shrink: 0;
}

.header-logo .logo-text {
  font-family: var(--ff-display);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--c-white);
  letter-spacing: -0.01em;
}

.header-logo .logo-text span {
  color: var(--c-accent);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.header-nav a {
  font-family: var(--ff-ui);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.01em;
  position: relative;
  padding-bottom: 2px;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--c-accent);
  transition: width 0.3s var(--ease-out);
}

.header-nav a:hover {
  color: var(--c-white);
}

.header-nav a:hover::after { width: 100%; }

.header-cta {
  flex-shrink: 0;
}

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-md);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s var(--ease-smooth);
}

.nav-burger:hover { background: rgba(255,255,255,0.16); }

.nav-burger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--c-white);
  border-radius: 2px;
  transition: transform 0.35s var(--ease-out), opacity 0.2s var(--ease-smooth), width 0.3s var(--ease-smooth);
}

.nav-burger.is-active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-burger.is-active span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.nav-burger.is-active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 850;
  background: rgba(30,50,40,0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.35s var(--ease-smooth);
  pointer-events: none;
}

.nav-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.nav-mobile {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 90vw);
  z-index: 870;
  background: var(--c-primary);
  padding: 100px 36px 48px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease-out);
  overflow-y: auto;
}

.nav-mobile.is-open { transform: translateX(0); }

.nav-mobile a {
  font-family: var(--ff-ui);
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: block;
  transition: color 0.2s var(--ease-smooth), padding-left 0.2s var(--ease-smooth);
}

.nav-mobile a:hover {
  color: var(--c-accent);
  padding-left: 8px;
}

.nav-mobile-cta {
  margin-top: 24px;
}

.hero {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #2d4a3c;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--grad-hero);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.6;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(160deg,
    rgba(30,50,38,0.88) 0%,
    rgba(66,101,86,0.72) 45%,
    rgba(93,114,102,0.50) 75%,
    rgba(220,229,221,0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 72px;
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-h1 {
  font-size: clamp(52px, 7.5vw, 108px);
  color: var(--c-white);
  max-width: 820px;
  margin-bottom: 28px;
  line-height: 1.02;
}

.hero-h1 em {
  font-style: italic;
  color: var(--c-accent);
}

.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(255,255,255,0.76);
  max-width: 520px;
  margin-bottom: 48px;
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-bottom {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll-label {
  font-family: var(--ff-mono);
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  writing-mode: vertical-rl;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.45), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 32px clamp(20px, 5vw, 80px);
  background: linear-gradient(to top, rgba(30,50,38,0.7) 0%, transparent 100%);
  display: flex;
  gap: 48px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat-num {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--c-white);
  letter-spacing: -0.02em;
  line-height: 1;
}

.hero-stat-label {
  font-family: var(--ff-mono);
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.value-prop {
  background: var(--c-bg);
}

.value-prop-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}

.value-prop-left {
  position: sticky;
  top: 120px;
}

.value-prop-left .gn-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(191,165,106,0.12);
  border: 1px solid rgba(191,165,106,0.3);
  border-radius: var(--r-full);
  margin-bottom: 28px;
}

.value-prop-left .gn-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

.value-prop-left .gn-badge span {
  font-family: var(--ff-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-accent);
}

.value-prop-h2 {
  font-size: clamp(36px, 4.5vw, 62px);
  margin-bottom: 24px;
  line-height: 1.06;
}

.value-prop-body {
  font-size: 1.0625rem;
  color: var(--c-muted);
  line-height: 1.75;
  margin-bottom: 32px;
}

.value-prop-body strong {
  color: var(--c-text);
  font-weight: 600;
}

.value-prop-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 16px;
}

.vp-card {
  padding: 32px;
  background: var(--c-white);
  border-radius: var(--r-lg);
  border: 1px solid rgba(66,101,86,0.08);
  box-shadow: var(--sh-card);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.vp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-card-hover);
}

.vp-card-num {
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  color: var(--c-accent);
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.vp-card-title {
  font-family: var(--ff-display);
  font-size: 1.375rem;
  margin-bottom: 12px;
  color: var(--c-text);
}

.vp-card-body {
  font-size: 0.9375rem;
  color: var(--c-muted);
  line-height: 1.7;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 56px;
}

.stat-item {
  padding: 28px;
  background: var(--c-white);
  text-align: center;
}

.stat-item:first-child { border-radius: var(--r-lg) 0 0 var(--r-lg); }
.stat-item:last-child { border-radius: 0 var(--r-lg) var(--r-lg) 0; }

.stat-num {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500;
  color: var(--c-primary);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-num-suffix {
  font-size: 0.65em;
  color: var(--c-accent);
}

.stat-label {
  font-family: var(--ff-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-muted);
}

.signature {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.signature-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--grad-nature);
}

.signature-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: multiply;
  opacity: 0.45;
}

.signature-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(30,50,38,0.92) 0%, rgba(66,101,86,0.78) 100%);
}

.signature-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.signature-quote {
  font-family: var(--ff-display);
  font-size: clamp(28px, 4vw, 56px);
  font-style: italic;
  color: var(--c-white);
  line-height: 1.15;
  margin-bottom: 32px;
}

.signature-quote::before {
  content: '"';
  font-size: 1.2em;
  color: var(--c-accent);
  display: block;
  line-height: 0.8;
  margin-bottom: 16px;
}

.signature-attribution {
  font-family: var(--ff-ui);
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.62);
  letter-spacing: 0.02em;
}

.signature-badges {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.portfolio-section { background: var(--c-bg-alt); }

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.portfolio-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  cursor: pointer;
  background: var(--c-bg-contrast);
}

.portfolio-card:first-child {
  grid-row: 1 / 3;
}

.portfolio-card-img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s var(--ease-out);
  display: block;
}

.portfolio-card:first-child .portfolio-card-img {
  min-height: 560px;
}

.portfolio-card:hover .portfolio-card-img {
  transform: scale(1.04);
}

.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,40,30,0.88) 0%, transparent 55%);
  transition: background 0.4s var(--ease-smooth);
}

.portfolio-card:hover .portfolio-card-overlay {
  background: linear-gradient(to top, rgba(20,40,30,0.92) 0%, rgba(20,40,30,0.2) 100%);
}

.portfolio-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 32px;
}

.portfolio-card-region {
  font-family: var(--ff-mono);
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 10px;
}

.portfolio-card-title {
  font-family: var(--ff-display);
  font-size: clamp(20px, 2.5vw, 30px);
  color: var(--c-white);
  margin-bottom: 8px;
  line-height: 1.1;
}

.portfolio-card-sub {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
}

.portfolio-card-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s var(--ease-smooth), transform 0.3s var(--ease-out);
}

.portfolio-card:hover .portfolio-card-arrow {
  opacity: 1;
  transform: translateY(0);
}

.insight-section { background: var(--c-bg-contrast); }

.insight-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}

.insight-sticky {
  position: sticky;
  top: 120px;
}

.insight-h2 {
  font-size: clamp(32px, 4vw, 56px);
  color: var(--c-white);
  margin-bottom: 24px;
  line-height: 1.08;
}

.insight-lead {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.72;
  margin-bottom: 36px;
}

.insight-body {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.insight-para {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.78;
}

.insight-pullquote {
  padding: 32px 36px;
  border-left: 3px solid var(--c-accent);
  background: rgba(66,101,86,0.4);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
}

.insight-pullquote p {
  font-family: var(--ff-display);
  font-size: clamp(18px, 2.5vw, 26px);
  font-style: italic;
  color: var(--c-white);
  line-height: 1.35;
}

.js-marquee-wrap {
  overflow: hidden;
  max-width: 100vw;
  padding: 0;
  background: var(--c-primary);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.js-mq-row {
  display: flex;
  white-space: nowrap;
  will-change: transform;
  font-family: var(--ff-display);
  font-size: clamp(20px, 3vw, 38px);
  text-transform: uppercase;
  color: var(--c-white);
  opacity: 0.12;
  letter-spacing: 0.06em;
  padding: 24px 0;
}

.js-mq-row.fwd { animation: mq-fwd 38s linear infinite; }
.js-mq-row.rev { animation: mq-rev 38s linear infinite; }

@keyframes mq-fwd {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes mq-rev {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.mq-item {
  padding: 0 clamp(16px, 2vw, 28px);
  display: inline-block;
}

.services-section { background: var(--c-bg); }

.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-row {
  display: grid;
  grid-template-columns: 64px 2fr 3fr auto;
  align-items: center;
  gap: 32px;
  padding: 32px 36px;
  background: var(--c-white);
  border-radius: var(--r-lg);
  margin-bottom: 3px;
  border: 1px solid rgba(66,101,86,0.06);
  transition: transform 0.4s var(--ease-out),
              box-shadow 0.4s var(--ease-out),
              background 0.3s var(--ease-smooth);
  cursor: pointer;
}

.service-row:hover {
  transform: translateX(8px);
  box-shadow: var(--sh-card-hover);
  background: #fafdf9;
}

.service-num {
  font-family: var(--ff-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  color: var(--c-accent);
  text-align: right;
}

.service-name {
  font-family: var(--ff-display);
  font-size: clamp(18px, 2.2vw, 26px);
  color: var(--c-text);
}

.service-desc {
  font-size: 0.9375rem;
  color: var(--c-muted);
  line-height: 1.65;
}

.service-arrow {
  width: 36px;
  height: 36px;
  background: rgba(66,101,86,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  transition: background 0.3s var(--ease-smooth), color 0.3s var(--ease-smooth), transform 0.3s var(--ease-spring);
}

.service-row:hover .service-arrow {
  background: var(--c-primary);
  color: var(--c-white);
  transform: rotate(45deg);
}

.timeline-section { background: var(--c-bg-alt); }

.timeline {
  position: relative;
  max-width: 840px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 32px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--c-accent) 10%, var(--c-accent) 90%, transparent);
}

.timeline-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 32px;
  margin-bottom: 56px;
  align-items: start;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding-top: 4px;
}

.timeline-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--c-white);
  border: 2px solid var(--c-accent);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: background 0.3s var(--ease-smooth), transform 0.3s var(--ease-spring);
}

.timeline-item:hover .timeline-dot {
  background: var(--c-accent);
  transform: scale(1.3);
}

.timeline-step {
  font-family: var(--ff-mono);
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  color: var(--c-accent);
  margin-top: 8px;
  text-align: center;
}

.timeline-body {
  padding-top: 0;
}

.timeline-title {
  font-family: var(--ff-display);
  font-size: clamp(20px, 2.5vw, 30px);
  margin-bottom: 12px;
  color: var(--c-text);
}

.timeline-text {
  font-size: 0.9375rem;
  color: var(--c-muted);
  line-height: 1.72;
}

.proof-section { background: var(--c-bg); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

.testimonial-card {
  padding: 36px;
  background: var(--c-white);
  border-radius: var(--r-xl);
  border: 1px solid rgba(66,101,86,0.07);
  box-shadow: var(--sh-card);
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-card-hover);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--c-accent);
  font-size: 0.875rem;
}

.testimonial-text {
  font-family: var(--ff-display);
  font-size: clamp(16px, 2vw, 20px);
  font-style: italic;
  color: var(--c-text);
  line-height: 1.5;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(66,101,86,0.08);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-nature);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1.125rem;
  color: var(--c-white);
  flex-shrink: 0;
}

.testimonial-name {
  font-family: var(--ff-ui);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--c-text);
}

.testimonial-location {
  font-family: var(--ff-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  color: var(--c-muted);
  text-transform: uppercase;
}

.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 64px);
  flex-wrap: wrap;
  padding: 36px 0;
  border-top: 1px solid rgba(66,101,86,0.1);
  border-bottom: 1px solid rgba(66,101,86,0.1);
}

.logo-partner {
  font-family: var(--ff-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(66,101,86,0.35);
  transition: color 0.2s var(--ease-smooth);
}

.logo-partner:hover { color: rgba(66,101,86,0.7); }

.cta-section {
  background: var(--grad-nature);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -20%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.cta-eyebrow {
  margin-bottom: 24px;
}

.cta-h2 {
  font-size: clamp(32px, 5vw, 68px);
  color: var(--c-white);
  margin-bottom: 20px;
  line-height: 1.06;
}

.cta-sub {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(255,255,255,0.72);
  margin-bottom: 48px;
  line-height: 1.68;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-strip {
  background: var(--c-bg-alt);
}

.contact-strip-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  padding: clamp(36px, 6vw, 72px) 0;
}

.contact-strip-text .title {
  font-family: var(--ff-display);
  font-size: clamp(24px, 3.5vw, 44px);
  margin-bottom: 12px;
}

.contact-strip-text .sub {
  font-size: 1rem;
  color: var(--c-muted);
}

.site-footer {
  background: var(--c-text);
  color: rgba(255,255,255,0.72);
  padding: clamp(64px, 9vw, 112px) 0 0;
  overflow-x: hidden;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  margin-bottom: 64px;
}

.footer-brand .logo-text {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--c-white);
  margin-bottom: 16px;
  display: block;
}

.footer-brand .logo-text span { color: var(--c-accent); }

.footer-tagline {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
  line-height: 1.5;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.62);
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--c-accent);
}

.footer-col-title {
  font-family: var(--ff-ui);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s var(--ease-smooth), padding-left 0.2s var(--ease-smooth);
}

.footer-nav a:hover {
  color: var(--c-accent);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy {
  font-family: var(--ff-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.3);
}

.footer-legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-family: var(--ff-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}

.footer-legal a:hover { color: rgba(255,255,255,0.65); }

.page-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--c-primary);
  padding-bottom: clamp(48px, 7vw, 88px);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.3;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(160deg, rgba(30,50,38,0.9) 0%, rgba(66,101,86,0.75) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
}

.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-family: var(--ff-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.page-hero-breadcrumb a { transition: color 0.2s; }
.page-hero-breadcrumb a:hover { color: var(--c-accent); }
.page-hero-breadcrumb span { color: var(--c-accent); }

.page-hero-h1 {
  font-size: clamp(40px, 6vw, 84px);
  color: var(--c-white);
  max-width: 700px;
  margin-bottom: 20px;
}

.page-hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  line-height: 1.7;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: var(--ff-ui);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--c-text);
  letter-spacing: 0.02em;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: var(--c-white);
  border: 1.5px solid rgba(66,101,86,0.18);
  border-radius: var(--r-md);
  font-family: var(--ff-body);
  font-size: 0.9375rem;
  color: var(--c-text);
  transition: border-color 0.2s var(--ease-smooth), box-shadow 0.2s var(--ease-smooth);
  outline: none;
}

.form-control:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(66,101,86,0.1);
}

.form-control::placeholder { color: rgba(41,49,45,0.38); }

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

.faq-list { display: flex; flex-direction: column; gap: 2px; }

.faq-item {
  background: var(--c-white);
  border-radius: var(--r-md);
  border: 1px solid rgba(66,101,86,0.08);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--ff-ui);
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-text);
  transition: color 0.2s var(--ease-smooth);
}

.faq-question:hover { color: var(--c-primary); }

.faq-icon {
  width: 28px;
  height: 28px;
  background: rgba(66,101,86,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s var(--ease-smooth), transform 0.35s var(--ease-spring);
  color: var(--c-primary);
}

.faq-item.is-open .faq-icon {
  background: var(--c-primary);
  color: var(--c-white);
  transform: rotate(45deg);
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.4s var(--ease-out);
}

.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 0.9375rem;
  color: var(--c-muted);
  line-height: 1.72;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-out),
              transform 0.75s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.75s var(--ease-out),
              transform 0.75s var(--ease-out);
}

.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.75s var(--ease-out),
              transform 0.75s var(--ease-out);
}

.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.75s var(--ease-out),
              transform 0.75s var(--ease-out);
}

.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

.d1 { transition-delay: 0.08s !important; }
.d2 { transition-delay: 0.16s !important; }
.d3 { transition-delay: 0.24s !important; }
.d4 { transition-delay: 0.32s !important; }
.d5 { transition-delay: 0.40s !important; }
.d6 { transition-delay: 0.48s !important; }

.legal-content {
  max-width: 820px;
  margin: 0 auto;
}

.legal-content h2 {
  font-family: var(--ff-ui);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--c-text);
  margin: 48px 0 16px;
  letter-spacing: -0.01em;
}

.legal-content h3 {
  font-family: var(--ff-ui);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--c-text);
  margin: 32px 0 12px;
}

.legal-content p {
  font-size: 0.9375rem;
  color: rgba(41,49,45,0.78);
  line-height: 1.78;
  margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content li {
  font-size: 0.9375rem;
  color: rgba(41,49,45,0.78);
  line-height: 1.72;
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--c-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-intro {
  padding: 28px 32px;
  background: rgba(66,101,86,0.06);
  border-radius: var(--r-lg);
  border-left: 3px solid var(--c-accent);
  margin-bottom: 40px;
}

.legal-intro p {
  font-size: 0.9375rem;
  color: var(--c-muted);
  margin: 0;
  line-height: 1.72;
}

.services-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-xl);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.value-card {
  padding: 36px 28px;
  background: var(--c-white);
  border-radius: var(--r-xl);
  border: 1px solid rgba(66,101,86,0.07);
  box-shadow: var(--sh-card);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-card-hover);
}

.value-icon {
  width: 48px;
  height: 48px;
  background: rgba(66,101,86,0.08);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  margin-bottom: 20px;
}

.value-title {
  font-family: var(--ff-display);
  font-size: 1.375rem;
  margin-bottom: 12px;
}

.value-text {
  font-size: 0.9375rem;
  color: var(--c-muted);
  line-height: 1.7;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}

.about-image-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.about-image-wrap:hover img { transform: scale(1.04); }

.about-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(30,50,38,0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-lg);
  padding: 16px 20px;
  color: var(--c-white);
}

.about-image-badge .badge-num {
  font-family: var(--ff-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--c-accent);
  line-height: 1;
}

.about-image-badge .badge-text {
  font-family: var(--ff-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

.services-grid-full {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-full-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  background: var(--c-white);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(66,101,86,0.07);
  box-shadow: var(--sh-card);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.service-full-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-card-hover);
}

.service-full-img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  background: var(--grad-nature);
}

.service-full-body {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-full-num {
  font-family: var(--ff-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  color: var(--c-accent);
  margin-bottom: 12px;
}

.service-full-title {
  font-family: var(--ff-display);
  font-size: clamp(22px, 2.5vw, 32px);
  margin-bottom: 14px;
  color: var(--c-text);
}

.service-full-text {
  font-size: 0.9375rem;
  color: var(--c-muted);
  line-height: 1.72;
  margin-bottom: 24px;
}

.service-full-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.portfolio-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.portfolio-full-card {
  background: var(--c-text);
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.portfolio-full-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  opacity: 0.75;
  transition: opacity 0.5s var(--ease-smooth), transform 0.7s var(--ease-out);
  display: block;
  background: var(--grad-nature);
}

.portfolio-full-card:hover .portfolio-full-card-img {
  opacity: 0.55;
  transform: scale(1.04);
}

.portfolio-full-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  background: linear-gradient(to top, rgba(20,40,30,0.92) 0%, transparent 100%);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: var(--c-white);
  border-radius: var(--r-lg);
  border: 1px solid rgba(66,101,86,0.07);
  transition: box-shadow 0.3s var(--ease-smooth);
}

.contact-info-item:hover { box-shadow: var(--sh-md); }

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(66,101,86,0.08);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  flex-shrink: 0;
}

.contact-info-label {
  font-family: var(--ff-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 6px;
}

.contact-info-val {
  font-size: 0.9375rem;
  color: var(--c-text);
  font-weight: 500;
  line-height: 1.5;
}

.map-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  margin-top: 24px;
}

.map-wrap iframe {
  width: 100%;
  height: 320px;
  display: block;
  border: none;
  filter: saturate(0.7) hue-rotate(10deg);
}

.contact-form-wrap {
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--sh-lg);
  border: 1px solid rgba(66,101,86,0.07);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.thanks-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-nature);
  position: relative;
  overflow: hidden;
}

.thanks-inner {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 0 clamp(20px, 5vw, 48px);
}

.thanks-checkmark {
  width: 80px;
  height: 80px;
  background: rgba(191,165,106,0.15);
  border: 1.5px solid var(--c-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  animation: check-appear 0.6s var(--ease-spring) forwards;
}

@keyframes check-appear {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}

.thanks-h1 {
  font-size: clamp(36px, 6vw, 72px);
  color: var(--c-white);
  margin-bottom: 20px;
}

.thanks-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 48px;
}

@media (max-width: 1100px) {
  .value-prop-inner { grid-template-columns: 1fr; gap: 48px; }
  .value-prop-left { position: relative; top: auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .insight-inner { grid-template-columns: 1fr; gap: 40px; }
  .insight-sticky { position: relative; top: auto; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-card:first-child { grid-row: auto; }
}

@media (max-width: 900px) {
  .header-nav { display: none; }
  .header-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-overlay { display: block; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .service-row { grid-template-columns: 1fr auto; gap: 16px; }
  .service-num { display: none; }
  .service-desc { display: none; }
  .about-split { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .service-full-card { grid-template-columns: 1fr; }
  .service-full-img { min-height: 200px; }
  .about-values { grid-template-columns: 1fr 1fr; }
  .portfolio-masonry { grid-template-columns: 1fr 1fr; }
  .contact-strip-inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-card:first-child .portfolio-card-img { min-height: 360px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-stats { display: none; }
  .hero-h1 { font-size: clamp(40px, 11vw, 64px); }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 2px; }
  .stat-item:first-child { border-radius: var(--r-lg) var(--r-lg) 0 0; }
  .stat-item:nth-child(2) { border-radius: 0 var(--r-lg) 0 0; }
  .stat-item:nth-child(3) { border-radius: 0 0 0 var(--r-lg); }
  .stat-item:last-child { border-radius: 0 0 var(--r-lg) var(--r-lg); }
  .footer-inner { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .portfolio-masonry { grid-template-columns: 1fr; }
  .service-row { padding: 20px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; }
}

html, body {
  overflow-x: hidden !important;
  max-width: 100vw;
}
