.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

.container--narrow { max-width: 900px; }
.container--wide { max-width: 1440px; }

.js-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-stagger-child {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.js-stagger-child.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 28px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(241, 245, 240, 0.96);
  padding: 16px 0;
  box-shadow: 0 1px 0 rgba(66,101,86,0.1), 0 4px 20px rgba(41,49,45,0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1;
  flex-shrink: 0;
}

.logo span { color: var(--primary); }

.site-header--hero .logo { color: #fff; }
.site-header--hero .logo span { color: var(--accent); }
.site-header--hero.is-scrolled .logo { color: var(--text); }
.site-header--hero.is-scrolled .logo span { color: var(--primary); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.site-nav a {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.03em;
  position: relative;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.35s var(--ease);
}

.site-nav a:hover::after,
.site-nav a.is-active::after { width: 100%; }

.site-header--hero .site-nav a { color: rgba(255,255,255,0.88); }
.site-header--hero.is-scrolled .site-nav a { color: var(--text); }

.header-cta { display: flex; align-items: center; gap: 12px; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  flex-shrink: 0;
}

.burger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease), width 0.35s var(--ease);
  pointer-events: none;
}

.site-header--hero .burger-line { background: #fff; }
.site-header--hero.is-scrolled .burger-line { background: var(--text); }

.burger.is-active .burger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-active .burger-line:nth-child(2) { opacity: 0; width: 0; }
.burger.is-active .burger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(241, 245, 240, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-16px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.nav-mobile.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-mobile a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--text);
  font-weight: 400;
}

.nav-mobile a:hover { color: var(--primary); }

.nav-mobile .btn {
  margin-top: 8px;
  font-size: 1rem;
  padding: 16px 40px;
}

.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(52px, 9vw, 110px);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  transform-origin: center top;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(41,49,45,0.60) 0%, rgba(66,101,86,0.42) 45%, rgba(66,101,86,0.18) 80%, transparent 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero__title {
  color: #fff;
  margin-bottom: 22px;
  font-size: clamp(3.4rem, 8.5vw, 7.5rem);
  line-height: 1.02;
}

.hero__title em {
  font-style: italic;
  color: var(--accent);
}

.hero__subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: rgba(255,255,255,0.78);
  margin-bottom: 44px;
  letter-spacing: 0.1em;
  font-family: var(--font-accent);
  font-style: italic;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: clamp(28px, 4vw, 48px);
  right: clamp(20px, 4vw, 60px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero__scroll-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero__scroll-line {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,0.25);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 1px;
  height: 100%;
  background: rgba(255,255,255,0.75);
  animation: scrollLine 2.2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  100% { top: 100%; }
}

.value-prop {
  padding: var(--section-y) 0;
  background: var(--bg);
}

.value-prop__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: end;
  padding-bottom: clamp(40px, 5vw, 64px);
  border-bottom: 1px solid var(--border);
  margin-bottom: clamp(40px, 5vw, 64px);
}

.value-prop__top h2 {
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  line-height: 1.05;
}

.value-prop__top h2 em { font-style: italic; color: var(--primary); }

.value-prop__intro {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--text-light);
  line-height: 1.75;
}

.value-prop__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  margin-bottom: clamp(40px, 5vw, 64px);
}

.value-prop__col p {
  margin-bottom: 20px;
  color: var(--text-light);
  font-size: clamp(0.94rem, 1.1vw, 1.05rem);
}

.value-prop__col p:last-child { margin-bottom: 0; }

.value-prop__col--large p {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  color: var(--text);
  line-height: 1.7;
}

.value-prop__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.value-prop__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  padding-top: clamp(32px, 5vw, 56px);
}

.stat-item {
  padding: 0 clamp(16px, 2.5vw, 40px);
  border-right: 1px solid var(--border);
  text-align: center;
}

.stat-item:first-child { padding-left: 0; text-align: left; }
.stat-item:last-child { border-right: none; }

.stat-item__num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  color: var(--primary);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
  font-weight: 400;
}

.stat-item__suffix {
  font-size: 0.45em;
  vertical-align: super;
  font-family: var(--font-body);
  font-weight: 600;
}

.stat-item__label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.marquee-section {
  padding: clamp(28px, 4vw, 48px) 0;
  background: var(--primary);
  overflow: hidden;
  max-width: 100vw;
}

.js-marquee-wrap {
  overflow: hidden;
  max-width: 100vw;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.js-mq-row {
  display: flex;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 38px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.12);
  user-select: none;
  will-change: transform;
}

.js-mq-row.fwd { animation: mq-fwd 32s linear infinite; }
.js-mq-row.rev { animation: mq-rev 28s linear infinite; }

@keyframes mq-fwd {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes mq-rev {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.mq-item { padding: 0 clamp(18px, 2.5vw, 44px); flex-shrink: 0; }
.mq-sep { color: var(--accent); opacity: 0.35; margin: 0 4px; }

.signature {
  position: relative;
  overflow: hidden;
  height: clamp(500px, 68vh, 820px);
  display: flex;
  align-items: center;
}

.signature__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 115%;
  object-fit: cover;
}

.signature__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, rgba(41,49,45,0.78) 0%, rgba(41,49,45,0.48) 55%, rgba(66,101,86,0.22) 100%);
}

.signature__content {
  position: relative;
  z-index: 2;
  max-width: 580px;
}

.signature__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--accent);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.signature__title {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 24px;
}

.signature__title em { color: var(--accent); font-style: italic; }

.signature__quote {
  font-family: var(--font-accent);
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  font-style: italic;
  color: rgba(255,255,255,0.82);
  line-height: 1.5;
  margin-bottom: 36px;
}

.signature__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.portfolio-showcase {
  padding: var(--section-y) 0;
  background: var(--bg);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(36px, 5vw, 60px);
}

.section-header h2 { flex: 1; }
.section-header__right { flex-shrink: 0; }

.portfolio-showcase__layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  height: 600px;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  background: var(--primary);
}

.portfolio-card--featured { grid-row: 1 / 3; }

.portfolio-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.portfolio-card:hover .portfolio-card__img { transform: scale(1.05); }

.portfolio-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(41,49,45,0.85) 0%, rgba(41,49,45,0.2) 50%, transparent 100%);
}

.portfolio-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(20px, 2.8vw, 32px);
}

.portfolio-card__region {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  color: var(--accent);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.portfolio-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  color: #fff;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 10px;
}

.portfolio-card--small .portfolio-card__title {
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
}

.portfolio-card__desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), opacity 0.4s var(--ease);
  opacity: 0;
}

.portfolio-card:hover .portfolio-card__desc {
  max-height: 80px;
  opacity: 1;
}

.portfolio-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 14px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.portfolio-card:hover .portfolio-card__link { opacity: 1; transform: translateY(0); }
.portfolio-card__link::after { content: '→'; }

.insight {
  padding: var(--section-y) 0;
  background: var(--bg-contrast);
}

.insight__inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
}

.insight__aside {
  position: sticky;
  top: 120px;
}

.insight__aside h2 {
  color: #fff;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  margin-bottom: 20px;
  line-height: 1.1;
}

.insight__aside h2 em { color: var(--accent); font-style: italic; }

.insight__aside > p {
  color: rgba(255,255,255,0.65);
  font-size: clamp(0.92rem, 1.2vw, 1.05rem);
  line-height: 1.8;
  margin-bottom: 32px;
}

.insight__content p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 22px;
  font-size: clamp(0.94rem, 1.15vw, 1.06rem);
  line-height: 1.85;
}

.insight__content p:last-child { margin-bottom: 0; }

.insight__content strong {
  color: rgba(255,255,255,0.95);
  font-weight: 600;
}

.insight__pull {
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin: 28px 0;
}

.insight__pull p {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.65rem) !important;
  color: rgba(255,255,255,0.9) !important;
  line-height: 1.5 !important;
  margin-bottom: 0 !important;
}

.services-home {
  padding: var(--section-y) 0;
  background: var(--grad-bg);
}

.services-home__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(36px, 5vw, 64px);
}

.services-home__desc {
  color: var(--text-light);
  font-size: clamp(0.94rem, 1.2vw, 1.1rem);
  line-height: 1.75;
}

.services-table {
  width: 100%;
  border-collapse: collapse;
}

.services-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.3s var(--ease), padding-left 0.3s var(--ease);
}

.services-table tbody tr:first-child { border-top: 1px solid var(--border); }
.services-table tbody tr:last-child { border-bottom: none; }

.services-table tbody tr:hover { background: rgba(66, 101, 86, 0.04); }

.services-table td {
  padding: clamp(18px, 3vw, 30px) clamp(10px, 1.5vw, 20px);
  vertical-align: middle;
}

.services-table__num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-light);
  width: 52px;
  padding-left: 0;
  letter-spacing: 0.08em;
}

.services-table__title {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.services-table__title small {
  display: block;
  font-size: 0.84em;
  font-weight: 400;
  color: var(--text-light);
  margin-top: 3px;
  line-height: 1.5;
}

.services-table__duration {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--accent-2);
  text-align: center;
  white-space: nowrap;
  padding-right: 0;
}

.services-table__action {
  text-align: right;
  padding-right: 0;
  white-space: nowrap;
}

.timeline {
  padding: var(--section-y) 0;
  background: var(--bg);
}

.timeline__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto clamp(48px, 7vw, 88px);
}

.timeline__header h2 { margin-bottom: 16px; }
.timeline__header p { color: var(--text-light); }

.timeline__track {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.timeline__track::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--border);
}

.timeline__item {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  gap: 0;
  margin-bottom: clamp(36px, 5vw, 56px);
  align-items: start;
}

.timeline__item:last-child { margin-bottom: 0; }

.timeline__left { padding-right: 40px; text-align: right; }
.timeline__right { padding-left: 40px; }

.timeline__dot-col {
  display: flex;
  justify-content: center;
  padding-top: 5px;
  position: relative;
  z-index: 1;
}

.timeline__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--accent);
  flex-shrink: 0;
}

.timeline__step {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.timeline__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.9rem);
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--text);
}

.timeline__desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.75;
}

.social-proof {
  padding: var(--section-y) 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.social-proof__header {
  text-align: center;
  margin-bottom: clamp(44px, 6vw, 72px);
}

.social-proof__header h2 { margin-bottom: 12px; }
.social-proof__header p { color: var(--text-light); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
  margin-bottom: clamp(48px, 6vw, 72px);
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: clamp(24px, 3vw, 36px);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.star-icon {
  width: 14px;
  height: 14px;
  fill: var(--accent);
}

.testimonial-card__text {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  line-height: 1.72;
  color: var(--text);
  margin-bottom: 24px;
}

.testimonial-card__author { display: flex; align-items: center; gap: 12px; }

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-depth);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
  font-weight: 400;
}

.testimonial-card__name {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  display: block;
}

.testimonial-card__location {
  font-size: 0.76rem;
  color: var(--text-light);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  display: block;
  margin-top: 2px;
}

.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(28px, 4vw, 48px) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.logo-partner {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.4vw, 1.25rem);
  color: var(--text-light);
  opacity: 0.45;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: opacity 0.3s var(--ease);
}

.logo-partner:hover { opacity: 0.75; }

.cta-section {
  padding: var(--section-y) 0;
  background: var(--grad-depth);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -25%;
  width: 80vw;
  height: 80vw;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}

.cta-section__inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-section__inner h2 {
  color: #fff;
  margin-bottom: 18px;
}

.cta-section__inner h2 em { color: var(--accent); font-style: italic; }

.cta-section__inner > p {
  color: rgba(255,255,255,0.72);
  font-size: clamp(0.98rem, 1.4vw, 1.12rem);
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-section {
  padding: var(--section-y) 0;
  background: var(--bg);
}

.contact-section__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}

.contact-section__info h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  margin-bottom: 18px;
}

.contact-section__info > p {
  color: var(--text-light);
  margin-bottom: 40px;
  font-size: clamp(0.94rem, 1.2vw, 1.08rem);
  line-height: 1.78;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-detail__icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(66, 101, 86, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-detail__label {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  color: var(--text-light);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 4px;
  display: block;
}

.contact-detail__value {
  font-size: 0.94rem;
  color: var(--text);
  font-weight: 500;
}

.form { display: flex; flex-direction: column; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 7px; }

.form-label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(66, 101, 86, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(41, 49, 45, 0.32); }

.form-textarea { resize: vertical; min-height: 140px; }

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form-consent input[type="checkbox"] {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--primary);
  cursor: pointer;
}

.form-consent p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.65;
}

.form-consent a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }

.site-footer {
  background: var(--text);
  padding: clamp(56px, 7vw, 88px) 0 0;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: clamp(40px, 5vw, 56px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand .logo {
  color: #fff;
  display: block;
  margin-bottom: 16px;
}

.footer-brand .logo span { color: var(--accent); }

.footer-brand > p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.50);
  margin-bottom: 28px;
  line-height: 1.72;
  max-width: 300px;
}

.footer-social { display: flex; gap: 10px; }

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.footer-social a:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.18);
}

.footer-social svg { width: 15px; height: 15px; fill: rgba(255,255,255,0.65); }

.footer-col__title {
  color: rgba(255,255,255,0.38);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: var(--font-ui);
  font-weight: 700;
}

.footer-col ul li { margin-bottom: 12px; }

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.60);
  transition: color 0.3s var(--ease);
}

.footer-col ul li a:hover { color: #fff; }

.site-footer__bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer__copy {
  font-family: var(--font-mono);
  font-size: 0.70rem;
  color: rgba(255,255,255,0.30);
  letter-spacing: 0.06em;
}

.site-footer__legal { display: flex; gap: 20px; flex-wrap: wrap; }

.site-footer__legal a {
  font-family: var(--font-ui);
  font-size: 0.76rem;
  color: rgba(255,255,255,0.38);
  transition: color 0.3s var(--ease);
}

.site-footer__legal a:hover { color: rgba(255,255,255,0.70); }

.page-hero {
  position: relative;
  height: clamp(380px, 48vh, 560px);
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(48px, 6vw, 80px);
  overflow: hidden;
  background: var(--grad-depth);
  margin-top: 0;
}

.page-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 115%;
  object-fit: cover;
  opacity: 0.50;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(41,49,45,0.72) 0%, rgba(66,101,86,0.55) 55%, rgba(66,101,86,0.32) 100%);
}

.page-hero__content { position: relative; z-index: 2; }
.page-hero__content .label { color: rgba(191,165,106,0.88); }
.page-hero__content h1 { color: #fff; font-size: clamp(2.8rem, 6.5vw, 5.5rem); }
.page-hero__content p {
  color: rgba(255,255,255,0.72);
  font-size: clamp(0.98rem, 1.4vw, 1.15rem);
  margin-top: 16px;
  max-width: 560px;
  line-height: 1.75;
}

.section-padding { padding: var(--section-y) 0; }
.section-padding--sm { padding: clamp(40px, 5vw, 72px) 0; }
.bg-white { background: #fff; }
.bg-contrast { background: var(--bg-contrast); }

.about-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}

.about-story__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about-story__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.about-story__img-wrap:hover img { transform: scale(1.04); }

.about-story__text h2 { margin-bottom: 24px; }
.about-story__text p { color: var(--text-light); margin-bottom: 18px; line-height: 1.8; }
.about-story__text p:last-of-type { margin-bottom: 0; }

.cert-list { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }

.cert-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(66, 101, 86, 0.06);
  border: 1px solid rgba(66, 101, 86, 0.12);
  border-radius: var(--radius-md);
}

.cert-item__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.cert-item__text {
  font-family: var(--font-ui);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.4;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.5vw, 32px);
}

.value-card {
  padding: clamp(26px, 3.2vw, 40px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.value-card__num {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.value-card h3 { font-size: clamp(1.2rem, 2vw, 1.7rem); margin-bottom: 12px; }
.value-card p { font-size: 0.91rem; color: var(--text-light); line-height: 1.75; }

.services-list { display: flex; flex-direction: column; }

.service-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 3.5vw, 40px) 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.3s var(--ease), padding-left 0.3s var(--ease);
}

.service-item:first-child { border-top: 1px solid var(--border); }
.service-item:hover { padding-left: 16px; background: rgba(66,101,86,0.03); }

.service-item__num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
}

.service-item__body h3 {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 700;
  margin-bottom: 7px;
  color: var(--text);
}

.service-item__body p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

.service-item__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
}

.service-item__duration {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--accent-2);
  white-space: nowrap;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
}

.portfolio-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--primary);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.portfolio-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.portfolio-item__img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.portfolio-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.portfolio-item:hover .portfolio-item__img { transform: scale(1.06); }

.portfolio-item__body {
  padding: clamp(18px, 2.5vw, 28px);
  background: #fff;
}

.portfolio-item__region {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  color: var(--accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.portfolio-item__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 400;
  margin-bottom: 10px;
}

.portfolio-item__desc { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }

.contact-map {
  height: 420px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 40px;
}

.contact-map iframe { width: 100%; height: 100%; border: none; display: block; }

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--section-y) 0;
}

.legal-content h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); margin-bottom: 12px; }

.legal-meta {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--text-light);
  letter-spacing: 0.06em;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.legal-content h2 {
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  margin: 44px 0 14px;
  color: var(--text);
}

.legal-content h3 {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  font-weight: 600;
  margin: 28px 0 10px;
  color: var(--text);
}

.legal-content p { margin-bottom: 15px; font-size: 0.94rem; color: var(--text-light); line-height: 1.82; }

.legal-content ul { margin: 0 0 16px; padding-left: 20px; }
.legal-content ul li { list-style: disc; font-size: 0.94rem; color: var(--text-light); line-height: 1.8; margin-bottom: 6px; }

.legal-content ol { counter-reset: legal; margin: 0 0 16px; }
.legal-content ol li { counter-increment: legal; padding-left: 30px; position: relative; font-size: 0.94rem; color: var(--text-light); line-height: 1.8; margin-bottom: 6px; }
.legal-content ol li::before { content: counter(legal) '.'; position: absolute; left: 0; font-weight: 700; color: var(--primary); }

.legal-content strong { color: var(--text); font-weight: 600; }
.legal-content a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }

.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  user-select: none;
}

.faq-question h4 { font-size: clamp(0.98rem, 1.4vw, 1.15rem); font-weight: 600; color: var(--text); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.faq-icon svg { width: 12px; height: 12px; stroke: var(--text); stroke-width: 2; fill: none; transition: stroke 0.3s var(--ease); }

.faq-item.is-open .faq-icon { transform: rotate(45deg); background: var(--primary); border-color: var(--primary); }
.faq-item.is-open .faq-icon svg { stroke: #fff; }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.faq-answer-inner { padding: 0 0 22px; }
.faq-answer-inner p { font-size: 0.94rem; color: var(--text-light); line-height: 1.82; }

.thankyou {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-bg);
  padding: 40px 20px;
}

.thankyou__inner {
  text-align: center;
  max-width: 520px;
}

.thankyou__icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(66,101,86,0.1);
  border: 1px solid rgba(66,101,86,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.thankyou__icon svg {
  width: 38px;
  height: 38px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thankyou__inner h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); margin-bottom: 16px; }

.thankyou__inner > p {
  color: var(--text-light);
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  margin-bottom: 40px;
  line-height: 1.78;
}

@media (max-width: 1100px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .value-prop__stats { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding: 24px 0; text-align: left; }
  .stat-item:nth-child(even) { border-bottom: none; }
  .stat-item:first-child { padding-left: 0; }
}

@media (max-width: 960px) {
  .burger { display: flex; }
  .site-nav { display: none; }
  .header-cta .btn { display: none; }

  .value-prop__top { grid-template-columns: 1fr; }
  .value-prop__body { grid-template-columns: 1fr; }
  .services-home__header { grid-template-columns: 1fr; }
  .insight__inner { grid-template-columns: 1fr; }
  .insight__aside { position: static; }
  .contact-section__inner { grid-template-columns: 1fr; gap: 48px; }
  .about-story__grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }

  .portfolio-showcase__layout {
    grid-template-columns: 1fr;
    height: auto;
  }
  .portfolio-card--featured { grid-row: auto; min-height: 400px; }
  .portfolio-card--small { min-height: 250px; }

  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .section-header { flex-direction: column; align-items: flex-start; }

  .timeline__track::before { left: 20px; transform: none; }
  .timeline__item { grid-template-columns: 44px 1fr; }
  .timeline__dot-col { grid-column: 1; }
  .timeline__left { display: none; }
  .timeline__right { grid-column: 2; padding-left: 0; }
}

@media (max-width: 640px) {
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .cta-actions { flex-direction: column; }
  .logo-partner { font-size: 0.85rem; }
  .services-table td { padding: 16px 8px; }
  .services-table__duration { display: none; }
  .service-item { grid-template-columns: 44px 1fr; }
  .service-item__meta { display: none; }
  .signature__actions { flex-direction: column; }
  .value-prop__stats { grid-template-columns: 1fr 1fr; }
}

html, body {
  overflow-x: hidden !important;
  max-width: 100vw;
}
