*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background-color: var(--c-bg);
  position: relative;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

section, header, footer {
  overflow-x: hidden;
  max-width: 100%;
  box-sizing: border-box;
}

.container {
  width: 100%;
  max-width: var(--w-max);
  margin: 0 auto;
  padding: 0 var(--w-pad);
}

.container--sm {
  max-width: var(--w-sm);
}

.container--xs {
  max-width: var(--w-xs);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-head);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--c-text);
}

.h-display {
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.0;
}

.h-xl {
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 300;
  letter-spacing: -0.025em;
}

.h-lg {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.h-md {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 400;
}

.h-sm {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 500;
}

.body-lg {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.7;
}

.body-base {
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.65;
}

.body-sm {
  font-size: 13px;
  line-height: 1.6;
}

.label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--c-accent);
}

.accent-text {
  font-family: var(--f-accent);
  font-style: italic;
}

.ui-text {
  font-family: var(--f-ui);
}

.text-center { text-align: center; }
.text-muted { color: var(--c-text-muted); }
.text-white { color: var(--c-white); }
.text-accent { color: var(--c-accent); }
.text-primary { color: var(--c-primary); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-ui);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--r-full);
  transition: var(--t-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity var(--t-fast);
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: var(--grad-btn);
  color: var(--c-text);
  box-shadow: 0 4px 20px rgba(191,165,106,0.30);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(191,165,106,0.40);
}

.btn-outline {
  border: 1.5px solid var(--c-white);
  color: var(--c-white);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.10);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--c-primary);
  color: var(--c-white);
  box-shadow: var(--sh-md);
}

.btn-dark:hover {
  background: #3a5a4b;
  transform: translateY(-2px);
  box-shadow: var(--sh-hover);
}

.btn-ghost {
  border: 1.5px solid var(--c-primary);
  color: var(--c-primary);
  background: transparent;
}

.btn-ghost:hover {
  background: var(--c-primary);
  color: var(--c-white);
}

.btn-arrow {
  gap: 12px;
}

.btn-arrow svg {
  transition: transform var(--t-fast);
}

.btn-arrow:hover svg {
  transform: translateX(4px);
}

.divider {
  width: 48px;
  height: 2px;
  background: var(--c-accent);
  border: none;
  display: block;
  margin: 16px 0;
}

.divider--center {
  margin: 16px auto;
}

.tag {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--r-full);
  border: 1px solid rgba(191,165,106,0.35);
  color: var(--c-accent);
  background: rgba(191,165,106,0.07);
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--t-slow), transform var(--t-slow);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity var(--t-slow), transform var(--t-slow);
}

.reveal--left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal--right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity var(--t-slow), transform var(--t-slow);
}

.reveal--right.visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--t-slow), transform var(--t-slow);
}

.stagger > *.visible {
  opacity: 1;
  transform: translateY(0);
}

.anim-underline {
  position: relative;
  display: inline;
}

.anim-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: var(--c-accent);
  transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.anim-underline.drawn::after {
  width: 100%;
}

#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--hdr-h);
  background: rgba(241, 245, 240, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(66, 101, 86, 0.10);
  transition: box-shadow var(--t-base), background var(--t-base);
}

#site-header.scrolled {
  box-shadow: 0 2px 24px rgba(41, 49, 45, 0.09);
  background: rgba(241, 245, 240, 0.97);
}

.hdr-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--hdr-h);
  gap: 24px;
}

.hdr-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.hdr-logo-mark {
  width: 34px;
  height: 34px;
  background: var(--grad-depth);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hdr-logo-mark svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--c-white);
  stroke-width: 1.5;
}

.hdr-logo-text {
  font-family: var(--f-head);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--c-primary);
}

.hdr-logo-text span {
  color: var(--c-accent);
}

.hdr-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.hdr-nav a {
  font-family: var(--f-ui);
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text);
  padding: 8px 14px;
  border-radius: var(--r-md);
  transition: var(--t-fast);
  white-space: nowrap;
}

.hdr-nav a:hover,
.hdr-nav a.active {
  color: var(--c-primary);
  background: rgba(66, 101, 86, 0.08);
}

.hdr-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.hdr-actions .btn {
  padding: 10px 22px;
  font-size: 13px;
}

#burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: transparent;
  border: 1.5px solid rgba(66,101,86,0.2);
  transition: var(--t-fast);
  z-index: 1100;
  flex-shrink: 0;
}

#burger-btn:hover {
  background: rgba(66,101,86,0.08);
  border-color: rgba(66,101,86,0.35);
}

.burger-line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--c-primary);
  border-radius: 2px;
  transition: var(--t-base);
  transform-origin: center;
}

#burger-btn.active .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

#burger-btn.active .burger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

#burger-btn.active .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

#mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: rgba(241, 245, 240, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: calc(var(--hdr-h) + 24px) 32px 48px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
  transform: translateX(100%);
  transition: transform var(--t-base);
  overflow-y: auto;
}

#mobile-nav.open {
  transform: translateX(0);
}

#mobile-nav a {
  font-family: var(--f-head);
  font-size: clamp(28px, 7vw, 48px);
  font-weight: 300;
  color: var(--c-text);
  padding: 10px 0;
  border-bottom: 1px solid rgba(66,101,86,0.1);
  width: 100%;
  transition: color var(--t-fast), padding-left var(--t-fast);
}

#mobile-nav a:hover {
  color: var(--c-primary);
  padding-left: 12px;
}

.mobile-nav-bottom {
  margin-top: auto;
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.mobile-nav-bottom .btn {
  justify-content: center;
  width: 100%;
}

.mobile-nav-contact {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--c-text-muted);
  margin-top: 12px;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-hero-overlay);
  z-index: 1;
}

.parallax-wrap {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.parallax-img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--hdr-h);
  width: 100%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  min-height: 100svh;
  padding-bottom: clamp(64px, 8vh, 100px);
  padding-top: calc(var(--hdr-h) + 48px);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-eyebrow-line {
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,0.5);
  display: block;
}

.hero-title {
  font-family: var(--f-head);
  font-size: clamp(52px, 9vw, 120px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--c-white);
  margin-bottom: 28px;
  max-width: 820px;
}

.hero-title em {
  font-style: italic;
  color: rgba(255,255,255,0.75);
}

.hero-desc {
  font-family: var(--f-body);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7;
  color: rgba(255,255,255,0.80);
  max-width: 520px;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.6;
}

.hero-scroll span {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-white);
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: var(--c-white);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}

.hero-stats {
  position: absolute;
  bottom: 36px;
  right: var(--w-pad);
  z-index: 2;
  display: flex;
  gap: 32px;
}

.hero-stat {
  text-align: right;
}

.hero-stat-num {
  font-family: var(--f-mono);
  font-size: 28px;
  font-weight: 400;
  color: var(--c-white);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.section {
  padding: var(--sec-pad-v) 0;
}

.section--sm {
  padding: var(--sec-pad-v-sm) 0;
}

.section--contrast {
  background: var(--c-contrast);
}

.section--dark {
  background: var(--c-primary);
}

.section--bg2 {
  background: var(--c-bg2);
}

.section--depth {
  background: var(--grad-depth);
}

.sec-header {
  margin-bottom: clamp(40px, 5vw, 72px);
}

.sec-header--center {
  text-align: center;
}

.vp-section {
  padding: var(--sec-pad-v) 0;
  background: var(--c-bg);
}

.vp-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: start;
}

.vp-left {
  position: sticky;
  top: calc(var(--hdr-h) + 40px);
}

.vp-number {
  font-family: var(--f-mono);
  font-size: clamp(72px, 10vw, 140px);
  font-weight: 300;
  color: rgba(66,101,86,0.08);
  line-height: 1;
  margin-bottom: -20px;
  letter-spacing: -0.04em;
}

.vp-heading {
  font-family: var(--f-head);
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--c-text);
  margin-bottom: 28px;
}

.vp-heading em {
  font-style: italic;
  color: var(--c-primary);
}

.vp-lead {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.75;
  color: var(--c-text-muted);
  margin-bottom: 32px;
}

.vp-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.vp-block {
  border-left: 2px solid rgba(66,101,86,0.15);
  padding-left: 28px;
}

.vp-block-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 10px;
}

.vp-block-text {
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.7;
  color: var(--c-text-muted);
}

.vp-pullquote {
  background: var(--c-primary);
  border-radius: var(--r-lg);
  padding: 36px 40px;
  color: var(--c-white);
  margin-top: 8px;
}

.vp-pullquote-text {
  font-family: var(--f-accent);
  font-size: clamp(19px, 2vw, 24px);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 16px;
}

.vp-pullquote-attr {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.6;
}

.signature-section {
  position: relative;
  padding: 0;
  overflow: hidden;
  min-height: clamp(400px, 55vw, 700px);
}

.signature-img {
  width: 100%;
  height: 100%;
  min-height: clamp(400px, 55vw, 700px);
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.signature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(66,101,86,0.85) 0%, rgba(66,101,86,0.55) 50%, rgba(66,101,86,0.15) 100%);
  display: flex;
  align-items: center;
}

.signature-content {
  max-width: 600px;
  padding: var(--sec-pad-v) var(--w-pad);
}

.signature-quote {
  font-family: var(--f-head);
  font-size: clamp(26px, 3.5vw, 50px);
  font-weight: 300;
  font-style: italic;
  color: var(--c-white);
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.signature-line {
  width: 56px;
  height: 2px;
  background: var(--c-accent);
  margin-bottom: 20px;
}

.signature-caption {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.js-marquee-wrap {
  overflow: hidden;
  max-width: 100vw;
  padding: 48px 0;
  background: var(--c-contrast);
  position: relative;
}

.js-mq-row {
  display: flex;
  white-space: nowrap;
  will-change: transform;
}

.js-mq-row.fwd {
  animation: mq-fwd 35s linear infinite;
  margin-bottom: 16px;
}

.js-mq-row.rev {
  animation: mq-rev 35s 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 {
  font-family: var(--f-ui);
  font-size: clamp(20px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-white);
  opacity: 0.12;
  padding: 0 2.5rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.mq-item::after {
  content: '·';
  opacity: 1;
}

.portfolio-section {
  padding: var(--sec-pad-v) 0;
  background: var(--c-bg);
}

.portfolio-showcase {
  display: flex;
  flex-direction: column;
  gap: clamp(64px, 8vw, 100px);
}

.portfolio-entry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}

.portfolio-entry:nth-child(even) {
  direction: rtl;
}

.portfolio-entry:nth-child(even) > * {
  direction: ltr;
}

.portfolio-img-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.portfolio-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-img-wrap:hover img {
  transform: scale(1.04);
}

.portfolio-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(41,49,45,0.65) 0%, transparent 100%);
}

.portfolio-img-tag {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  background: rgba(66,101,86,0.6);
  padding: 4px 10px;
  border-radius: var(--r-full);
}

.portfolio-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.portfolio-index {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-accent);
}

.portfolio-title {
  font-family: var(--f-head);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--c-text);
}

.portfolio-desc {
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.7;
  color: var(--c-text-muted);
}

.portfolio-meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.portfolio-meta-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.portfolio-meta-val {
  font-family: var(--f-mono);
  font-size: 18px;
  font-weight: 400;
  color: var(--c-primary);
}

.portfolio-meta-label {
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-muted);
}

.insight-section {
  padding: var(--sec-pad-v) 0;
  background: var(--c-bg2);
}

.insight-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: clamp(48px, 6vw, 88px);
  align-items: start;
}

.insight-main {}

.insight-title {
  font-family: var(--f-head);
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--c-text);
  margin-bottom: 32px;
}

.insight-title em {
  font-style: italic;
  color: var(--c-primary);
}

.insight-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.insight-body p {
  font-size: clamp(14px, 1.15vw, 16px);
  line-height: 1.8;
  color: var(--c-text-muted);
}

.insight-highlight {
  font-family: var(--f-accent);
  font-size: clamp(18px, 2vw, 24px);
  font-style: italic;
  color: var(--c-primary);
  border-left: 3px solid var(--c-accent);
  padding-left: 24px;
  margin: 8px 0;
  line-height: 1.55;
}

.insight-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: calc(var(--hdr-h) + 40px);
}

.insight-card {
  background: var(--c-white);
  border: 1px solid rgba(66,101,86,0.12);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--sh-card);
}

.insight-card-num {
  font-family: var(--f-mono);
  font-size: 36px;
  font-weight: 300;
  color: var(--c-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.insight-card-label {
  font-family: var(--f-ui);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text-muted);
}

.insight-badge {
  background: var(--c-primary);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  color: var(--c-white);
}

.insight-badge-text {
  font-family: var(--f-accent);
  font-size: clamp(15px, 1.6vw, 18px);
  font-style: italic;
  line-height: 1.55;
  opacity: 0.9;
}

.services-section {
  padding: var(--sec-pad-v) 0;
  background: var(--c-bg);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(66,101,86,0.12);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-white);
}

.service-row {
  display: grid;
  grid-template-columns: 56px 2fr 1fr 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 28px 32px;
  border-bottom: 1px solid rgba(66,101,86,0.08);
  transition: background var(--t-fast), transform var(--t-fast);
  cursor: default;
}

.service-row:last-child {
  border-bottom: none;
}

.service-row:hover {
  background: rgba(66,101,86,0.03);
}

.service-num {
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 400;
  color: var(--c-accent);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.service-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.service-name {
  font-family: var(--f-head);
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: 400;
  color: var(--c-text);
  letter-spacing: -0.01em;
}

.service-sub {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.4;
}

.service-duration {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--c-primary);
  letter-spacing: 0.04em;
}

.service-region {
  font-family: var(--f-accent);
  font-size: 14px;
  font-style: italic;
  color: var(--c-text-muted);
}

.service-badge {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--r-full);
  background: rgba(191,165,106,0.12);
  color: var(--c-accent);
  border: 1px solid rgba(191,165,106,0.28);
  white-space: nowrap;
}

.services-note {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 32px;
  background: var(--c-primary);
  border-radius: var(--r-lg);
  color: var(--c-white);
}

.services-note-text {
  font-family: var(--f-accent);
  font-size: clamp(14px, 1.4vw, 17px);
  font-style: italic;
  line-height: 1.55;
  flex: 1;
}

.timeline-section {
  padding: var(--sec-pad-v) 0;
  background: var(--c-bg2);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(66,101,86,0.18);
}

.timeline-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
  padding-bottom: 48px;
  position: relative;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-white);
  border: 2px solid rgba(66,101,86,0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: var(--t-base);
}

.timeline-item:hover .timeline-marker {
  background: var(--c-primary);
  border-color: var(--c-primary);
}

.timeline-marker-num {
  font-family: var(--f-mono);
  font-size: 14px;
  font-weight: 400;
  color: var(--c-primary);
  transition: color var(--t-fast);
}

.timeline-item:hover .timeline-marker-num {
  color: var(--c-white);
}

.timeline-body {
  padding-top: 12px;
}

.timeline-step-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 8px;
}

.timeline-step-title {
  font-family: var(--f-head);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 400;
  color: var(--c-text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.timeline-step-text {
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.7;
  color: var(--c-text-muted);
}

.social-section {
  padding: var(--sec-pad-v) 0;
  background: var(--c-bg);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--c-white);
  border: 1px solid rgba(66,101,86,0.10);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: var(--sh-card);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-hover);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
}

.testimonial-stars span {
  color: var(--c-accent);
  font-size: 14px;
}

.testimonial-text {
  font-family: var(--f-accent);
  font-size: clamp(15px, 1.4vw, 17px);
  font-style: italic;
  line-height: 1.65;
  color: var(--c-text);
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(66,101,86,0.08);
  padding-top: 20px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--grad-depth);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-head);
  font-size: 16px;
  color: var(--c-white);
  font-weight: 400;
  flex-shrink: 0;
}

.testimonial-name {
  font-family: var(--f-ui);
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 2px;
}

.testimonial-location {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.07em;
  color: var(--c-text-muted);
}

.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 56px);
  flex-wrap: wrap;
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid rgba(66,101,86,0.10);
}

.logo-partner {
  font-family: var(--f-head);
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 400;
  color: rgba(41,49,45,0.30);
  letter-spacing: 0.04em;
  transition: color var(--t-fast);
}

.logo-partner:hover {
  color: rgba(41,49,45,0.55);
}

.cta-section {
  padding: var(--sec-pad-v) 0;
  background: var(--grad-depth);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}

.cta-headline {
  font-family: var(--f-head);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--c-white);
  margin-bottom: 20px;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}

.cta-headline em {
  font-style: italic;
  opacity: 0.75;
}

.cta-subtext {
  font-family: var(--f-accent);
  font-size: clamp(16px, 1.6vw, 20px);
  font-style: italic;
  color: rgba(255,255,255,0.70);
  margin-bottom: 40px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-section {
  padding: var(--sec-pad-v) 0;
  background: var(--c-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: start;
}

.contact-form-wrap {
  background: var(--c-white);
  border: 1px solid rgba(66,101,86,0.12);
  border-radius: var(--r-xl);
  padding: clamp(32px, 4vw, 56px);
  box-shadow: var(--sh-md);
}

.form-title {
  font-family: var(--f-head);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--c-text);
  margin-bottom: 8px;
}

.form-sub {
  font-size: 14px;
  color: var(--c-text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-label {
  font-family: var(--f-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--c-text-muted);
}

.form-input,
.form-textarea {
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--c-text);
  background: var(--c-bg);
  border: 1.5px solid rgba(66,101,86,0.15);
  border-radius: var(--r-md);
  padding: 13px 16px;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
  width: 100%;
  resize: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(74, 94, 82, 0.4);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(66,101,86,0.10);
  background: var(--c-white);
}

.form-textarea {
  min-height: 120px;
}

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info-title {
  font-family: var(--f-head);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--c-text);
  margin-bottom: 8px;
}

.contact-info-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-text-muted);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(66,101,86,0.08);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--c-primary);
  fill: none;
  stroke-width: 1.7;
}

.contact-detail-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 4px;
}

.contact-detail-val {
  font-size: 15px;
  color: var(--c-text);
  font-weight: 500;
}

.contact-detail-val a {
  color: var(--c-primary);
  transition: color var(--t-fast);
}

.contact-detail-val a:hover {
  color: var(--c-accent);
}

footer {
  background: var(--c-primary);
  color: rgba(255,255,255,0.75);
  padding: clamp(56px, 7vw, 80px) 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 60px);
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 32px;
}

.footer-brand-name {
  font-family: var(--f-head);
  font-size: 26px;
  font-weight: 400;
  color: var(--c-white);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.footer-brand-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
  max-width: 260px;
}

.footer-contact-line {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.50);
  margin-bottom: 6px;
}

.footer-contact-line a {
  color: rgba(255,255,255,0.70);
  transition: color var(--t-fast);
}

.footer-contact-line a:hover {
  color: var(--c-accent);
}

.footer-col-title {
  font-family: var(--f-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color var(--t-fast), padding-left var(--t-fast);
}

.footer-links a:hover {
  color: var(--c-white);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  font-family: var(--f-mono);
  letter-spacing: 0.04em;
}

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.40);
  transition: color var(--t-fast);
}

.footer-legal a:hover {
  color: rgba(255,255,255,0.75);
}

.page-hero {
  position: relative;
  padding-top: var(--hdr-h);
  min-height: clamp(320px, 40vw, 520px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(66,101,86,0.50) 0%, rgba(41,49,45,0.72) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(48px, 7vw, 88px) 0 clamp(40px, 5vw, 64px);
  width: 100%;
}

.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.page-hero-breadcrumb a {
  color: rgba(255,255,255,0.5);
  transition: color var(--t-fast);
}

.page-hero-breadcrumb a:hover {
  color: rgba(255,255,255,0.85);
}

.page-hero-title {
  font-family: var(--f-head);
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--c-white);
  line-height: 1.0;
  margin-bottom: 16px;
}

.page-hero-sub {
  font-size: clamp(14px, 1.3vw, 17px);
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  line-height: 1.65;
}

.about-mission {
  padding: var(--sec-pad-v) 0;
  background: var(--c-bg);
}

.mission-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 88px);
  align-items: center;
}

.mission-text-block {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.mission-img-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--sh-lg);
}

.mission-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}

.mission-img-wrap:hover img {
  transform: scale(1.03);
}

.values-section {
  padding: var(--sec-pad-v) 0;
  background: var(--c-bg2);
}

.values-table {
  width: 100%;
  border-collapse: collapse;
}

.values-table tr {
  border-bottom: 1px solid rgba(66,101,86,0.10);
  transition: background var(--t-fast);
}

.values-table tr:hover {
  background: rgba(66,101,86,0.04);
}

.values-table td {
  padding: 28px 16px;
  vertical-align: top;
}

.values-table td:first-child {
  width: 48px;
  padding-left: 0;
}

.values-num {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--c-accent);
  letter-spacing: 0.1em;
}

.values-name {
  font-family: var(--f-head);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  color: var(--c-text);
  padding-right: 32px;
  white-space: nowrap;
}

.values-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-text-muted);
}

.stats-band {
  padding: var(--sec-pad-v-sm) 0;
  background: var(--c-primary);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {}

.stat-num {
  font-family: var(--f-mono);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  color: var(--c-white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: var(--f-ui);
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50);
}

.faq-section {
  padding: var(--sec-pad-v) 0;
  background: var(--c-bg);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(66,101,86,0.12);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-white);
}

.faq-item {
  border-bottom: 1px solid rgba(66,101,86,0.08);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  font-family: var(--f-head);
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 400;
  color: var(--c-text);
  text-align: left;
  cursor: pointer;
  transition: background var(--t-fast);
  letter-spacing: -0.01em;
}

.faq-q:hover {
  background: rgba(66,101,86,0.03);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(66,101,86,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--t-base);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--c-primary);
  fill: none;
  stroke-width: 2;
  transition: transform var(--t-base);
}

.faq-item.active .faq-icon {
  background: var(--c-primary);
}

.faq-item.active .faq-icon svg {
  stroke: var(--c-white);
  transform: rotate(45deg);
}

.faq-a {
  padding: 0 28px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--c-text-muted);
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-a {
  padding: 0 28px 22px;
}

.map-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(66,101,86,0.12);
  box-shadow: var(--sh-md);
}

.map-wrap iframe {
  display: block;
  filter: grayscale(0.3) contrast(0.95);
}

.thanks-page {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--hdr-h) var(--w-pad) 80px;
  background: var(--grad-bg);
  text-align: center;
}

.thanks-icon {
  width: 80px;
  height: 80px;
  background: var(--grad-depth);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.thanks-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--c-white);
  fill: none;
  stroke-width: 1.5;
}

.thanks-sup {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 16px;
}

.thanks-headline {
  font-family: var(--f-head);
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--c-text);
  margin-bottom: 20px;
  line-height: 1.0;
}

.thanks-body {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7;
  color: var(--c-text-muted);
  max-width: 480px;
  margin: 0 auto 40px;
}

.legal-page {
  padding-top: var(--hdr-h);
  padding-bottom: var(--sec-pad-v);
  background: var(--c-bg);
}

.legal-header {
  padding: clamp(48px, 6vw, 80px) 0 clamp(40px, 5vw, 60px);
  border-bottom: 1px solid rgba(66,101,86,0.12);
  margin-bottom: clamp(40px, 5vw, 60px);
}

.legal-date {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 12px;
}

.legal-title {
  font-family: var(--f-head);
  font-size: clamp(30px, 5vw, 60px);
  font-weight: 300;
  letter-spacing: -0.025em;
  color: var(--c-text);
  margin-bottom: 16px;
}

.legal-intro {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.7;
  color: var(--c-text-muted);
  max-width: 680px;
}

.legal-content {
  max-width: 820px;
}

.legal-content h2 {
  font-family: var(--f-head);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  color: var(--c-text);
  margin: 40px 0 16px;
  letter-spacing: -0.015em;
}

.legal-content h3 {
  font-family: var(--f-head);
  font-size: clamp(16px, 1.8vw, 21px);
  font-weight: 400;
  color: var(--c-text);
  margin: 28px 0 12px;
}

.legal-content p {
  font-size: clamp(13px, 1.1vw, 15px);
  line-height: 1.8;
  color: var(--c-text-muted);
  margin-bottom: 14px;
}

.legal-content ul,
.legal-content ol {
  padding-left: 20px;
  margin-bottom: 14px;
  list-style: disc;
}

.legal-content ol {
  list-style: decimal;
}

.legal-content li {
  font-size: clamp(13px, 1.1vw, 15px);
  line-height: 1.8;
  color: var(--c-text-muted);
  margin-bottom: 6px;
}

.legal-content a {
  color: var(--c-primary);
  text-decoration: underline;
}

.legal-content strong {
  color: var(--c-text);
  font-weight: 600;
}

.portfolio-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.portfolio-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-white);
  box-shadow: var(--sh-card);
  transition: transform var(--t-base), box-shadow var(--t-base);
  border: 1px solid rgba(66,101,86,0.08);
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-hover);
}

.portfolio-card-img {
  aspect-ratio: 3/2;
  overflow: hidden;
}

.portfolio-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.portfolio-card:hover .portfolio-card-img img {
  transform: scale(1.06);
}

.portfolio-card-body {
  padding: 22px 24px 24px;
}

.portfolio-card-region {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 8px;
}

.portfolio-card-title {
  font-family: var(--f-head);
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 400;
  color: var(--c-text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.portfolio-card-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--c-text-muted);
}

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .hero-stats {
    display: none;
  }
}

@media (max-width: 900px) {
  .vp-editorial {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .vp-left {
    position: static;
  }
  .portfolio-entry {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .portfolio-entry:nth-child(even) {
    direction: ltr;
  }
  .insight-grid {
    grid-template-columns: 1fr;
  }
  .insight-sidebar {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .insight-card {
    flex: 1;
    min-width: 180px;
  }
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .mission-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .service-row {
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }
  .service-duration,
  .service-region,
  .service-badge {
    display: none;
  }
  .portfolio-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --hdr-h: 68px;
  }
  #burger-btn {
    display: flex;
  }
  #mobile-nav {
    display: flex;
  }
  .hdr-nav,
  .hdr-actions {
    display: none;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-brand-desc {
    max-width: 100%;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .social-grid {
    grid-template-columns: 1fr;
  }
  .values-name {
    white-space: normal;
  }
  .values-table td {
    padding: 20px 8px;
  }
}

@media (max-width: 540px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-actions .btn {
    width: auto;
    min-width: 200px;
  }
  .cta-actions .btn {
    width: 100%;
    max-width: 340px;
  }
  .portfolio-page-grid {
    grid-template-columns: 1fr;
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .logos-row {
    gap: 20px;
  }
}

@media (min-width: 1025px) {
  .parallax-img {
    will-change: transform;
  }
}

@media (max-width: 1024px) {
  .parallax-img {
    height: 100%;
    transform: none !important;
  }
}

.responsive-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}

.stories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 40px);
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .responsive-split {
    grid-template-columns: 1fr !important;
  }
  .stories-grid {
    grid-template-columns: 1fr !important;
  }
}

html, body {
  overflow-x: hidden !important;
  max-width: 100vw;
}
