.container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.container-wide {
  width: 100%;
  max-width: var(--container-wide);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section-pad {
  padding-top: var(--space-32);
  padding-bottom: var(--space-32);
}

.section-pad-lg {
  padding-top: var(--space-40);
  padding-bottom: var(--space-40);
}

.section-pad-sm {
  padding-top: var(--space-20);
  padding-bottom: var(--space-20);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-ui);
  font-size: 14px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  transition: transform var(--dur-fast) var(--ease-spring), box-shadow var(--dur-fast) var(--ease-default), opacity var(--dur-fast) ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.0);
  transition: background var(--dur-fast) ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--grad-btn);
  color: var(--c-white);
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  box-shadow: 0 12px 40px rgba(185, 151, 88, 0.40);
}

.btn-outline {
  background: transparent;
  color: var(--c-white);
  border: 1.5px solid rgba(255,255,255,0.55);
}

.btn-outline:hover {
  border-color: rgba(255,255,255,0.90);
  background: rgba(255,255,255,0.08);
}

.btn-outline-dark {
  background: transparent;
  color: var(--c-primary);
  border: 1.5px solid var(--c-primary);
}

.btn-outline-dark:hover {
  background: var(--c-primary);
  color: var(--c-white);
  box-shadow: var(--shadow-primary);
}

.btn-ghost {
  background: transparent;
  color: var(--c-text);
  border: 1.5px solid var(--c-border);
}

.btn-ghost:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
}

.btn-sm {
  padding: 11px 24px;
  font-size: 12px;
}

.btn-lg {
  padding: 20px 48px;
  font-size: 15px;
}

.btn-icon {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--dur) var(--ease-default), box-shadow var(--dur) var(--ease-default), height var(--dur) var(--ease-default);
  overflow-x: hidden;
  max-width: 100vw;
}

.site-header.scrolled {
  background: var(--c-primary);
  box-shadow: 0 4px 32px rgba(41, 48, 45, 0.18);
  height: var(--header-h-scroll);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  z-index: 10;
}

.header-logo-text {
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: var(--fw-medium);
  letter-spacing: -0.02em;
  color: var(--c-white);
  line-height: 1;
}

.header-logo-text span {
  color: var(--c-accent);
}

.header-logo-mark {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--grad-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.header-logo-mark svg {
  width: 20px;
  height: 20px;
  fill: var(--c-white);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.header-nav a {
  font-family: var(--ff-ui);
  font-size: 14px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.80);
  transition: color var(--dur-fast) ease;
  position: relative;
  padding: 4px 0;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0%;
  height: 1.5px;
  background: var(--c-accent);
  transition: width var(--dur) var(--ease-expo);
}

.header-nav a:hover {
  color: var(--c-white);
}

.header-nav a:hover::after,
.header-nav a.active::after {
  width: 100%;
}

.header-nav a.active {
  color: var(--c-white);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-shrink: 0;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1100;
  padding: 0;
  background: none;
  border: none;
  border-radius: var(--radius-sm);
  transition: background var(--dur-fast) ease;
}

.burger:hover {
  background: rgba(255,255,255,0.10);
}

.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--c-white);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease-spring), opacity var(--dur-fast) ease, width var(--dur) var(--ease-default);
  transform-origin: center;
}

.burger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--c-primary);
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-h) + 32px) var(--gutter) var(--space-12);
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease-expo);
  overflow-y: auto;
  overflow-x: hidden;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-12);
}

.mobile-nav-links a {
  font-family: var(--ff-display);
  font-size: clamp(32px, 8vw, 52px);
  font-weight: var(--fw-light);
  color: var(--c-white);
  letter-spacing: -0.03em;
  line-height: 1.2;
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  transition: color var(--dur-fast) ease, padding-left var(--dur) var(--ease-spring);
  display: block;
}

.mobile-nav-links a:hover {
  color: var(--c-accent);
  padding-left: 12px;
}

.mobile-nav-footer {
  margin-top: auto;
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255,255,255,0.12);
}

.mobile-nav-contact {
  font-family: var(--ff-ui);
  font-size: 14px;
  color: rgba(255,255,255,0.60);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.mobile-nav-contact a {
  color: rgba(255,255,255,0.80);
  transition: color var(--dur-fast) ease;
}

.mobile-nav-contact a:hover {
  color: var(--c-accent);
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-primary);
  max-width: 100vw;
  overflow-x: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: -10%;
  width: 120%;
  height: 120%;
  object-fit: cover;
  object-position: center center;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-hero);
  z-index: 1;
}

.hero-overlay-grad {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(29, 38, 33, 0.65) 0%, transparent 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
  padding-top: var(--header-h);
  padding-bottom: var(--space-24);
  display: flex;
  align-items: flex-end;
}

.hero-content .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

.hero-eyebrow {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--c-accent);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--c-accent);
}

.hero-headline {
  font-family: var(--ff-display);
  font-size: var(--fs-hero);
  font-weight: var(--fw-light);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tightest);
  color: var(--c-white);
  max-width: 820px;
}

.hero-headline em {
  font-style: italic;
  color: rgba(255,255,255,0.88);
}

.hero-subline {
  font-family: var(--ff-body);
  font-size: var(--fs-body-lg);
  font-weight: var(--fw-light);
  line-height: var(--lh-relaxed);
  color: rgba(255,255,255,0.72);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: scrollPulse 2.5s ease-in-out infinite;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.55), transparent);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255,255,255,0.14);
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero-stat-num {
  font-family: var(--ff-display);
  font-size: 32px;
  font-weight: var(--fw-medium);
  color: var(--c-white);
  line-height: 1;
  letter-spacing: -0.03em;
}

.hero-stat-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50);
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.45; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.90; transform: translateX(-50%) translateY(6px); }
}

.marquee-section {
  position: relative;
  padding: var(--space-10) 0;
  background: var(--c-bg-alt);
  overflow: hidden;
  max-width: 100vw;
  overflow-x: hidden;
}

.js-marquee-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  overflow: hidden;
  max-width: 100vw;
}

.js-mq-row {
  display: flex;
  width: max-content;
  white-space: nowrap;
  will-change: transform;
}

.js-mq-row.fwd {
  animation: marqueeForward 32s linear infinite;
}

.js-mq-row.rev {
  animation: marqueeReverse 28s linear infinite;
}

.mq-item {
  font-family: var(--ff-heading);
  font-size: var(--fs-marquee);
  font-weight: var(--fw-black);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--c-primary);
  opacity: 0.11;
  padding-right: clamp(24px, 4vw, 64px);
  flex-shrink: 0;
  line-height: 1.1;
}

@keyframes marqueeForward {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes marqueeReverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.value-section {
  padding-top: var(--space-40);
  padding-bottom: var(--space-40);
  background: var(--c-bg);
  overflow: hidden;
  overflow-x: hidden;
  max-width: 100vw;
}

.value-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-24);
  align-items: start;
}

.value-left {
  position: sticky;
  top: calc(var(--header-h-scroll) + 32px);
}

.value-eyebrow {
  margin-bottom: var(--space-6);
}

.value-number {
  font-family: var(--ff-display);
  font-size: clamp(100px, 14vw, 200px);
  font-weight: var(--fw-light);
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--c-primary);
  opacity: 0.12;
  margin-bottom: var(--space-6);
  display: block;
}

.value-headline {
  font-family: var(--ff-display);
  font-size: var(--fs-h1);
  font-weight: var(--fw-light);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tightest);
  color: var(--c-primary);
  margin-bottom: var(--space-6);
}

.value-headline em {
  font-style: italic;
}

.value-divider {
  width: 48px;
  height: 2px;
  background: var(--grad-btn);
  margin-bottom: var(--space-8);
  border-radius: 2px;
}

.value-right {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
  padding-top: var(--space-6);
}

.value-block {
  padding-top: var(--space-6);
  border-top: 1px solid var(--c-border);
}

.value-block-num {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--c-accent);
  margin-bottom: var(--space-3);
  display: block;
}

.value-block-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  color: var(--c-primary);
  margin-bottom: var(--space-3);
  line-height: var(--lh-snug);
}

.value-block-text {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  line-height: var(--lh-relaxed);
  color: var(--c-text-muted);
}

.value-keyword {
  margin-top: var(--space-12);
  padding: var(--space-6) var(--space-8);
  background: linear-gradient(135deg, rgba(77,107,91,0.06), rgba(77,107,91,0.02));
  border: 1px solid var(--c-border);
  border-left: 3px solid var(--c-accent);
  border-radius: var(--radius-md);
}

.value-keyword p {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  font-weight: var(--fw-medium);
  color: var(--c-primary);
  line-height: var(--lh-normal);
  font-style: italic;
}

.signature-section {
  position: relative;
  overflow: hidden;
  max-width: 100vw;
  overflow-x: hidden;
  background: var(--c-bg-alt);
}

.signature-inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  min-height: 680px;
}

.signature-image-wrap {
  position: relative;
  overflow: hidden;
}

.signature-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s var(--ease-default);
}

.signature-image-wrap:hover img {
  transform: scale(1.03);
}

.signature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(29,38,33,0.12) 0%, transparent 80%);
}

.signature-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-20) var(--space-16);
  background: var(--c-primary);
  position: relative;
}

.signature-content::before {
  content: '';
  position: absolute;
  top: var(--space-8);
  left: var(--space-8);
  right: var(--space-8);
  bottom: var(--space-8);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  pointer-events: none;
}

.signature-eyebrow {
  color: var(--c-accent);
  margin-bottom: var(--space-6);
}

.signature-headline {
  font-family: var(--ff-display);
  font-size: var(--fs-h2);
  font-weight: var(--fw-light);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-tightest);
  color: var(--c-white);
  margin-bottom: var(--space-6);
}

.signature-headline em {
  font-style: italic;
  color: rgba(255,255,255,0.75);
}

.signature-text {
  font-family: var(--ff-body);
  font-size: var(--fs-body-lg);
  line-height: var(--lh-relaxed);
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--space-8);
}

.signature-quote {
  font-family: var(--ff-display);
  font-size: 22px;
  font-style: italic;
  font-weight: var(--fw-light);
  color: var(--c-accent);
  line-height: var(--lh-snug);
  padding-left: var(--space-6);
  border-left: 2px solid var(--c-accent);
  margin-top: var(--space-8);
}

.portfolio-section {
  padding-top: var(--space-40);
  padding-bottom: var(--space-40);
  background: var(--c-bg);
  overflow: hidden;
  overflow-x: hidden;
  max-width: 100vw;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-8);
  margin-bottom: var(--space-16);
  flex-wrap: wrap;
}

.section-headline {
  font-family: var(--ff-heading);
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--c-primary);
}

.section-subtext {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  line-height: var(--lh-relaxed);
  color: var(--c-text-muted);
  max-width: 380px;
}

.portfolio-featured {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.portfolio-grid-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  background: var(--c-primary);
}

.portfolio-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-default), filter 0.5s ease;
  display: block;
}

.portfolio-card:hover .portfolio-card-img {
  transform: scale(1.06);
  filter: brightness(0.88);
}

.portfolio-card-featured {
  height: 560px;
}

.portfolio-card-secondary {
  height: 560px;
}

.portfolio-card-small {
  height: 280px;
}

.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(29,38,33,0.82) 0%, rgba(29,38,33,0.05) 60%);
  z-index: 1;
  transition: background 0.5s ease;
}

.portfolio-card:hover .portfolio-card-overlay {
  background: linear-gradient(to top, rgba(29,38,33,0.88) 0%, rgba(29,38,33,0.12) 55%);
}

.portfolio-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-8);
  z-index: 2;
  transition: transform var(--dur) var(--ease-default);
}

.portfolio-card-tag {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent);
  display: block;
  margin-bottom: var(--space-2);
}

.portfolio-card-title {
  font-family: var(--ff-display);
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: var(--fw-medium);
  color: var(--c-white);
  line-height: var(--lh-snug);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-2);
}

.portfolio-card-small .portfolio-card-title {
  font-size: clamp(16px, 1.8vw, 22px);
}

.portfolio-card-desc {
  font-family: var(--ff-body);
  font-size: 14px;
  color: rgba(255,255,255,0.68);
  line-height: var(--lh-snug);
  max-width: 320px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--dur) var(--ease-default), transform var(--dur) var(--ease-default);
}

.portfolio-card:hover .portfolio-card-desc {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--grad-btn);
  margin-top: var(--space-4);
  opacity: 0;
  transform: translateY(8px) scale(0.8);
  transition: opacity var(--dur) var(--ease-default), transform var(--dur) var(--ease-spring);
}

.portfolio-card:hover .portfolio-card-arrow {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.portfolio-card-arrow svg {
  width: 14px;
  height: 14px;
  fill: var(--c-white);
}

.insight-section {
  position: relative;
  background: var(--c-primary);
  padding-top: var(--space-40);
  padding-bottom: var(--space-40);
  overflow: hidden;
  overflow-x: hidden;
  max-width: 100vw;
}

.insight-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: var(--radius-full);
  background: rgba(142, 165, 145, 0.08);
  pointer-events: none;
}

.insight-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-24);
  align-items: start;
}

.insight-left {
  position: sticky;
  top: calc(var(--header-h-scroll) + 32px);
}

.insight-eyebrow {
  color: var(--c-accent) !important;
  margin-bottom: var(--space-6);
}

.insight-headline {
  font-family: var(--ff-display);
  font-size: var(--fs-h2);
  font-weight: var(--fw-light);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-tightest);
  color: var(--c-white);
  margin-bottom: var(--space-8);
  font-style: italic;
}

.insight-quote {
  font-family: var(--ff-display);
  font-size: 20px;
  font-style: italic;
  font-weight: var(--fw-light);
  color: rgba(255,255,255,0.50);
  line-height: var(--lh-relaxed);
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: var(--space-6);
}

.insight-right {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.insight-paragraph {
  font-family: var(--ff-body);
  font-size: var(--fs-body-lg);
  line-height: var(--lh-relaxed);
  color: rgba(255,255,255,0.68);
}

.insight-paragraph strong {
  color: rgba(255,255,255,0.92);
  font-weight: var(--fw-medium);
}

.insight-pull {
  padding: var(--space-8);
  border-left: 2px solid var(--c-accent);
  background: rgba(185,151,88,0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.insight-pull p {
  font-family: var(--ff-display);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: var(--fw-light);
  font-style: italic;
  color: var(--c-white);
  line-height: var(--lh-snug);
}

.services-section {
  padding-top: var(--space-40);
  padding-bottom: var(--space-40);
  background: var(--grad-bg);
  overflow: hidden;
  overflow-x: hidden;
  max-width: 100vw;
}

.services-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--space-12);
}

.services-table-head {
  display: grid;
  grid-template-columns: 2fr 3fr 1fr 1fr;
  gap: var(--space-6);
  padding: var(--space-4) var(--space-6);
  border-bottom: 1.5px solid var(--c-primary);
  margin-bottom: var(--space-4);
}

.services-table-head span {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-text-muted);
}

.service-row {
  display: grid;
  grid-template-columns: 2fr 3fr 1fr 1fr;
  gap: var(--space-6);
  align-items: center;
  padding: var(--space-6);
  border-bottom: 1px solid var(--c-border);
  transition: background var(--dur-fast) ease, transform var(--dur-fast) ease;
  border-radius: var(--radius-sm);
}

.service-row:hover {
  background: rgba(77,107,91,0.04);
  transform: translateX(4px);
}

.service-row-num {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--c-accent);
  display: block;
  margin-bottom: 4px;
}

.service-row-name {
  font-family: var(--ff-heading);
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  color: var(--c-primary);
  line-height: 1.2;
  margin-bottom: 4px;
}

.service-row-sub {
  font-family: var(--ff-ui);
  font-size: 12px;
  color: var(--c-text-muted);
  letter-spacing: 0.04em;
}

.service-row-desc {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  line-height: var(--lh-relaxed);
  color: var(--c-text-muted);
}

.service-row-duration {
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--c-text);
  font-weight: var(--fw-medium);
}

.service-row-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-ui);
  font-size: 12px;
  font-weight: var(--fw-medium);
  color: var(--c-accent);
  background: rgba(185,151,88,0.10);
  border: 1px solid var(--c-border-accent);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.timeline-section {
  padding-top: var(--space-40);
  padding-bottom: var(--space-40);
  background: var(--c-bg);
  overflow: hidden;
  overflow-x: hidden;
  max-width: 100vw;
}

.timeline-wrapper {
  position: relative;
  margin-top: var(--space-16);
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--c-secondary) 10%, var(--c-secondary) 90%, transparent);
  transform: translateX(-50%);
}

.timeline-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: start;
  gap: var(--space-8);
}

.timeline-item:nth-child(odd) .timeline-item-content-right {
  display: none;
}

.timeline-item:nth-child(even) .timeline-item-content-left {
  display: none;
}

.timeline-item:nth-child(odd) .timeline-item-content-left {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-item-content-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.timeline-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.timeline-dot {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--c-bg);
  border: 2px solid var(--c-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--dur) ease, background var(--dur) ease;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.timeline-dot-num {
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: var(--fw-medium);
  color: var(--c-primary);
  transition: color var(--dur) ease;
}

.timeline-item.active .timeline-dot,
.timeline-dot:hover {
  background: var(--c-primary);
  border-color: var(--c-primary);
}

.timeline-item.active .timeline-dot-num,
.timeline-dot:hover .timeline-dot-num {
  color: var(--c-white);
}

.timeline-item-step {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: var(--space-2);
}

.timeline-item-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  color: var(--c-primary);
  line-height: var(--lh-snug);
  margin-bottom: var(--space-3);
}

.timeline-item-text {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  line-height: var(--lh-relaxed);
  color: var(--c-text-muted);
  max-width: 360px;
}

.timeline-item:nth-child(odd) .timeline-item-text {
  margin-left: auto;
}

.social-section {
  padding-top: var(--space-40);
  padding-bottom: var(--space-40);
  background: var(--grad-bg);
  overflow: hidden;
  overflow-x: hidden;
  max-width: 100vw;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-20);
  padding: var(--space-8) 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.stat-item {
  text-align: center;
  padding: var(--space-5);
}

.stat-num {
  font-family: var(--ff-display);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: var(--fw-light);
  color: var(--c-primary);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 6px;
  display: block;
}

.stat-suffix {
  color: var(--c-accent);
}

.stat-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-text-muted);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-4);
  align-items: start;
}

.testimonial-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-border-light);
  transition: transform var(--dur) var(--ease-spring), box-shadow var(--dur) ease;
  overflow: hidden;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-card-featured {
  padding: var(--space-10);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-5);
}

.testimonial-stars span {
  font-size: 14px;
  color: var(--c-accent);
}

.testimonial-quote-mark {
  font-family: var(--ff-display);
  font-size: 80px;
  line-height: 0.6;
  color: var(--c-secondary);
  opacity: 0.30;
  margin-bottom: var(--space-3);
  display: block;
}

.testimonial-text {
  font-family: var(--ff-body);
  font-size: var(--fs-body-lg);
  line-height: var(--lh-relaxed);
  color: var(--c-text);
  margin-bottom: var(--space-6);
}

.testimonial-card-small .testimonial-text {
  font-size: var(--fs-body);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-author-avatar {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: var(--c-secondary);
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
  font-size: 16px;
  font-weight: var(--fw-bold);
  color: var(--c-white);
}

.testimonial-author-name {
  font-family: var(--ff-ui);
  font-size: 14px;
  font-weight: var(--fw-medium);
  color: var(--c-text);
  display: block;
}

.testimonial-author-city {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  color: var(--c-text-muted);
  display: block;
}

.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-12);
  margin-top: var(--space-16);
  padding-top: var(--space-8);
  border-top: 1px solid var(--c-border);
  flex-wrap: wrap;
}

.logo-partner {
  font-family: var(--ff-heading);
  font-size: 14px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  opacity: 0.45;
  transition: opacity var(--dur-fast) ease;
}

.logo-partner:hover {
  opacity: 0.80;
}

.cta-section {
  position: relative;
  padding-top: var(--space-40);
  padding-bottom: var(--space-40);
  background: var(--c-bg-contrast);
  overflow: hidden;
  overflow-x: hidden;
  max-width: 100vw;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/images/hero.jpg') center/cover no-repeat;
  opacity: 0.12;
  mix-blend-mode: overlay;
}

.cta-eyebrow {
  margin-bottom: var(--space-5);
  color: var(--c-accent) !important;
}

.cta-headline {
  font-family: var(--ff-display);
  font-size: var(--fs-h1);
  font-weight: var(--fw-light);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tightest);
  color: var(--c-white);
  margin-bottom: var(--space-5);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.cta-headline em {
  font-style: italic;
}

.cta-subtext {
  font-family: var(--ff-body);
  font-size: var(--fs-body-lg);
  color: rgba(255,255,255,0.62);
  line-height: var(--lh-relaxed);
  max-width: 520px;
  margin: 0 auto var(--space-10);
}

.cta-keyword {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  color: rgba(255,255,255,0.50);
  margin-top: var(--space-8);
  font-style: italic;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.contact-mini-section {
  padding-top: var(--space-32);
  padding-bottom: var(--space-32);
  background: var(--c-bg);
  overflow: hidden;
  overflow-x: hidden;
  max-width: 100vw;
}

.contact-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-24);
  align-items: start;
}

.contact-mini-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.contact-mini-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  color: var(--c-primary);
  line-height: var(--lh-snug);
  margin-bottom: var(--space-4);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(77,107,91,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--c-primary);
  fill: none;
  stroke-width: 1.5;
}

.contact-info-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  display: block;
  margin-bottom: 3px;
}

.contact-info-value {
  font-family: var(--ff-ui);
  font-size: var(--fs-body);
  font-weight: var(--fw-medium);
  color: var(--c-text);
  transition: color var(--dur-fast) ease;
}

.contact-info-value a {
  transition: color var(--dur-fast) ease;
}

.contact-info-value a:hover {
  color: var(--c-primary);
}

.contact-form-wrap {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: var(--space-10);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-border-light);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.form-label {
  font-family: var(--ff-ui);
  font-size: 13px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.03em;
  color: var(--c-text);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-md);
  background: var(--c-bg);
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  color: var(--c-text);
  transition: border-color var(--dur-fast) ease, box-shadow var(--dur-fast) ease, background var(--dur-fast) ease;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(77,107,91,0.12);
  background: var(--c-white);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--c-text-faint);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.site-footer {
  background: var(--c-text);
  padding-top: var(--space-24);
  padding-bottom: var(--space-8);
  overflow: hidden;
  overflow-x: hidden;
  max-width: 100vw;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-12);
  padding-bottom: var(--space-16);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: var(--space-8);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.footer-logo-text {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: var(--fw-medium);
  letter-spacing: -0.02em;
  color: var(--c-white);
  line-height: 1;
}

.footer-logo-text span {
  color: var(--c-accent);
}

.footer-desc {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  line-height: var(--lh-relaxed);
  color: rgba(255,255,255,0.48);
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-2);
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--dur-fast) ease, background var(--dur-fast) ease;
}

.footer-social-link:hover {
  border-color: var(--c-accent);
  background: rgba(185,151,88,0.12);
}

.footer-social-link svg {
  width: 14px;
  height: 14px;
  fill: rgba(255,255,255,0.60);
  transition: fill var(--dur-fast) ease;
}

.footer-social-link:hover svg {
  fill: var(--c-accent);
}

.footer-col-title {
  font-family: var(--ff-ui);
  font-size: 12px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  margin-bottom: var(--space-5);
  display: block;
}

.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-nav-links a {
  font-family: var(--ff-ui);
  font-size: 14px;
  color: rgba(255,255,255,0.60);
  transition: color var(--dur-fast) ease;
  display: inline-block;
}

.footer-nav-links a:hover {
  color: var(--c-white);
}

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: var(--space-4);
}

.footer-contact-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.30);
}

.footer-contact-value {
  font-family: var(--ff-ui);
  font-size: 14px;
  color: rgba(255,255,255,0.62);
  transition: color var(--dur-fast) ease;
}

.footer-contact-value a {
  transition: color var(--dur-fast) ease;
}

.footer-contact-value a:hover {
  color: var(--c-accent);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.footer-copyright {
  font-family: var(--ff-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.04em;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.30);
  transition: color var(--dur-fast) ease;
  letter-spacing: 0.04em;
}

.footer-legal-links a:hover {
  color: rgba(255,255,255,0.65);
}

.page-hero {
  position: relative;
  padding-top: calc(var(--header-h) + var(--space-20));
  padding-bottom: var(--space-20);
  background: var(--c-primary);
  overflow: hidden;
  overflow-x: hidden;
  max-width: 100vw;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.30;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-eyebrow {
  color: var(--c-accent) !important;
  margin-bottom: var(--space-4);
}

.page-hero-headline {
  font-family: var(--ff-display);
  font-size: var(--fs-h1);
  font-weight: var(--fw-light);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tightest);
  color: var(--c-white);
  max-width: 700px;
}

.page-hero-subtext {
  font-family: var(--ff-body);
  font-size: var(--fs-body-lg);
  color: rgba(255,255,255,0.62);
  line-height: var(--lh-relaxed);
  max-width: 520px;
  margin-top: var(--space-5);
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
}

.page-breadcrumb a,
.page-breadcrumb span {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color var(--dur-fast) ease;
}

.page-breadcrumb a:hover {
  color: var(--c-accent);
}

.page-breadcrumb .sep {
  color: rgba(255,255,255,0.25);
  font-size: 10px;
}

.page-breadcrumb .current {
  color: rgba(255,255,255,0.70);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--c-border);
}

.faq-item {
  border-bottom: 1px solid var(--c-border);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding: var(--space-6) 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: color var(--dur-fast) ease;
}

.faq-question-text {
  font-family: var(--ff-heading);
  font-size: var(--fs-h4);
  font-weight: var(--fw-medium);
  color: var(--c-primary);
  line-height: var(--lh-snug);
  transition: color var(--dur-fast) ease;
}

.faq-item.open .faq-question-text {
  color: var(--c-accent);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--dur-fast) ease, border-color var(--dur-fast) ease, transform var(--dur) var(--ease-spring);
}

.faq-item.open .faq-icon {
  background: var(--c-accent);
  border-color: var(--c-accent);
  transform: rotate(45deg);
}

.faq-icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--c-text);
  fill: none;
  stroke-width: 2;
  transition: stroke var(--dur-fast) ease;
}

.faq-item.open .faq-icon svg {
  stroke: var(--c-white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s var(--ease-expo);
}

.faq-item.open .faq-answer {
  max-height: 600px;
}

.faq-answer-inner {
  padding: 0 0 var(--space-6) 0;
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  line-height: var(--lh-relaxed);
  color: var(--c-text-muted);
  max-width: 680px;
}

.about-mission {
  padding-top: var(--space-40);
  padding-bottom: var(--space-40);
  background: var(--c-bg);
  overflow: hidden;
  overflow-x: hidden;
  max-width: 100vw;
}

.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-20);
  align-items: center;
}

.about-mission-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.about-mission-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.8s var(--ease-default);
}

.about-mission-img:hover img {
  transform: scale(1.03);
}

.about-mission-img-badge {
  position: absolute;
  bottom: var(--space-6);
  right: var(--space-6);
  background: var(--c-white);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-mission-img-badge-num {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: var(--fw-medium);
  color: var(--c-primary);
  line-height: 1;
}

.about-mission-img-badge-text {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-text-muted);
}

.about-mission-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
}

.about-value-card {
  padding: var(--space-8);
  background: var(--c-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border-light);
  box-shadow: var(--shadow-xs);
  transition: transform var(--dur) var(--ease-spring), box-shadow var(--dur) ease;
}

.about-value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.about-value-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(77,107,91,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}

.about-value-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--c-primary);
  fill: none;
  stroke-width: 1.5;
}

.about-value-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-h5);
  font-weight: var(--fw-bold);
  color: var(--c-primary);
  margin-bottom: var(--space-2);
}

.about-value-text {
  font-family: var(--ff-body);
  font-size: var(--fs-body-sm);
  line-height: var(--lh-relaxed);
  color: var(--c-text-muted);
}

.services-detail-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  margin-top: var(--space-12);
}

.service-detail-item {
  display: grid;
  grid-template-columns: 80px 1fr 200px;
  gap: var(--space-8);
  align-items: start;
  padding: var(--space-8) 0;
  border-bottom: 1px solid var(--c-border);
  transition: background var(--dur-fast) ease;
}

.service-detail-num {
  font-family: var(--ff-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: var(--fw-light);
  color: var(--c-primary);
  opacity: 0.15;
  line-height: 1;
  letter-spacing: -0.04em;
}

.service-detail-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.service-detail-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  color: var(--c-primary);
  line-height: var(--lh-snug);
}

.service-detail-desc {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  line-height: var(--lh-relaxed);
  color: var(--c-text-muted);
  max-width: 560px;
}

.service-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-2);
}

.service-tag {
  font-family: var(--ff-ui);
  font-size: 12px;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  background: rgba(77,107,91,0.08);
  color: var(--c-primary);
  font-weight: var(--fw-medium);
}

.service-detail-meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: flex-end;
  text-align: right;
}

.service-detail-duration {
  font-family: var(--ff-mono);
  font-size: 13px;
  font-weight: var(--fw-medium);
  color: var(--c-text);
}

.service-detail-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--ff-ui);
  font-size: 12px;
  font-weight: var(--fw-medium);
  color: var(--c-accent);
  background: rgba(185,151,88,0.10);
  border: 1px solid var(--c-border-accent);
  padding: 5px 14px;
  border-radius: var(--radius-full);
}

.portfolio-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
}

.portfolio-dest-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--c-white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-border-light);
  transition: transform var(--dur) var(--ease-spring), box-shadow var(--dur) ease;
}

.portfolio-dest-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.portfolio-dest-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.8s var(--ease-default);
}

.portfolio-dest-card:hover .portfolio-dest-img {
  transform: scale(1.05);
}

.portfolio-dest-body {
  padding: var(--space-6);
}

.portfolio-dest-region {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent);
  display: block;
  margin-bottom: var(--space-2);
}

.portfolio-dest-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  color: var(--c-primary);
  margin-bottom: var(--space-3);
  line-height: var(--lh-snug);
}

.portfolio-dest-text {
  font-family: var(--ff-body);
  font-size: var(--fs-body-sm);
  line-height: var(--lh-relaxed);
  color: var(--c-text-muted);
  margin-bottom: var(--space-5);
}

.portfolio-dest-link {
  font-family: var(--ff-ui);
  font-size: 13px;
  font-weight: var(--fw-medium);
  color: var(--c-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--dur-fast) var(--ease-spring), color var(--dur-fast) ease;
}

.portfolio-dest-link:hover {
  color: var(--c-accent);
  gap: 10px;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-20);
  align-items: start;
}

.contact-page-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.contact-info-block {
  padding: var(--space-8);
  background: var(--c-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border-light);
  box-shadow: var(--shadow-xs);
}

.contact-info-block-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-h5);
  font-weight: var(--fw-bold);
  color: var(--c-primary);
  margin-bottom: var(--space-5);
}

.contact-map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: var(--space-6);
  border: 1px solid var(--c-border);
}

.contact-map-wrap iframe {
  display: block;
  width: 100%;
  border: none;
}

.contact-form-page {
  background: var(--c-white);
  border-radius: var(--radius-xl);
  padding: var(--space-12);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--c-border-light);
}

.contact-form-page-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  color: var(--c-primary);
  margin-bottom: var(--space-3);
}

.contact-form-page-sub {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  color: var(--c-text-muted);
  margin-bottom: var(--space-8);
  line-height: var(--lh-relaxed);
}

.thanks-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--grad-bg);
  text-align: center;
  padding: var(--space-16) var(--gutter);
  overflow: hidden;
  overflow-x: hidden;
  max-width: 100vw;
}

.thanks-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  background: rgba(77,107,91,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-8);
  animation: thanksPop 0.8s var(--ease-spring) both;
}

@keyframes thanksPop {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.thanks-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--c-primary);
  fill: none;
  stroke-width: 2;
}

.thanks-headline {
  font-family: var(--ff-display);
  font-size: var(--fs-h1);
  font-weight: var(--fw-light);
  letter-spacing: var(--ls-tightest);
  color: var(--c-primary);
  margin-bottom: var(--space-5);
}

.thanks-text {
  font-family: var(--ff-body);
  font-size: var(--fs-body-lg);
  color: var(--c-text-muted);
  line-height: var(--lh-relaxed);
  max-width: 480px;
  margin: 0 auto var(--space-10);
}

.thanks-divider {
  width: 60px;
  height: 2px;
  background: var(--grad-btn);
  border-radius: 2px;
  margin: 0 auto var(--space-8);
}

.legal-page {
  background: var(--c-bg);
  overflow: hidden;
  overflow-x: hidden;
  max-width: 100vw;
}

.legal-body {
  padding-top: var(--space-16);
  padding-bottom: var(--space-32);
}

.legal-body h2 {
  font-family: var(--ff-heading);
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  color: var(--c-primary);
  margin-top: var(--space-12);
  margin-bottom: var(--space-5);
  line-height: var(--lh-snug);
}

.legal-body h3 {
  font-family: var(--ff-heading);
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  color: var(--c-text);
  margin-top: var(--space-8);
  margin-bottom: var(--space-4);
  line-height: var(--lh-snug);
}

.legal-body p {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  line-height: var(--lh-relaxed);
  color: var(--c-text-muted);
  margin-bottom: var(--space-4);
}

.legal-body ul,
.legal-body ol {
  list-style: disc;
  padding-left: var(--space-8);
  margin-bottom: var(--space-4);
}

.legal-body li {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  line-height: var(--lh-relaxed);
  color: var(--c-text-muted);
  margin-bottom: var(--space-2);
}

.legal-body a {
  color: var(--c-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-body a:hover {
  color: var(--c-accent);
}

.legal-update {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.10em;
  color: var(--c-text-muted);
  padding: var(--space-4) var(--space-6);
  background: rgba(77,107,91,0.06);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--c-primary);
  margin-bottom: var(--space-10);
  display: inline-block;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

[data-delay="100"] { transition-delay: 0.10s; }
[data-delay="200"] { transition-delay: 0.20s; }
[data-delay="300"] { transition-delay: 0.30s; }
[data-delay="400"] { transition-delay: 0.40s; }
[data-delay="500"] { transition-delay: 0.50s; }
[data-delay="600"] { transition-delay: 0.60s; }
[data-delay="700"] { transition-delay: 0.70s; }
[data-delay="800"] { transition-delay: 0.80s; }

.stagger-children > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.60s var(--ease-out), transform 0.60s var(--ease-out);
}

.stagger-children.active > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.stagger-children.active > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.stagger-children.active > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }
.stagger-children.active > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.35s; }
.stagger-children.active > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.45s; }
.stagger-children.active > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.55s; }

.divider {
  height: 1px;
  background: var(--c-border);
  border: none;
  margin: var(--space-16) 0;
}

.divider-accent {
  height: 2px;
  background: var(--grad-btn);
  border: none;
  border-radius: 2px;
  margin: var(--space-16) 0;
  width: 80px;
}

.text-balance { text-wrap: balance; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .footer-grid > *:last-child {
    grid-column: 1 / -1;
  }
  .portfolio-grid-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .header-nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .header-actions .btn {
    display: none;
  }
  .value-inner {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }
  .value-left {
    position: static;
  }
  .signature-inner {
    grid-template-columns: 1fr;
  }
  .signature-image-wrap {
    height: 380px;
  }
  .insight-inner {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
  .insight-left {
    position: static;
  }
  .services-table-head,
  .service-row {
    grid-template-columns: 1fr 2fr 1fr;
  }
  .services-table-head span:last-child,
  .service-row > *:last-child {
    display: none;
  }
  .timeline-line { display: none; }
  .timeline-item {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  .timeline-item:nth-child(odd) .timeline-item-content-right,
  .timeline-item:nth-child(even) .timeline-item-content-left {
    display: none;
  }
  .timeline-item:nth-child(odd) .timeline-item-content-left,
  .timeline-item:nth-child(even) .timeline-item-content-right {
    display: flex;
    align-items: flex-start;
    text-align: left;
  }
  .timeline-item:nth-child(odd) .timeline-item-text {
    margin-left: 0;
  }
  .timeline-center {
    display: none;
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-mission-grid {
    grid-template-columns: 1fr;
  }
  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-detail-item {
    grid-template-columns: 60px 1fr;
  }
  .service-detail-meta {
    display: none;
  }
  .portfolio-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-page-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-featured {
    grid-template-columns: 1fr;
  }
  .portfolio-card-featured,
  .portfolio-card-secondary {
    height: 420px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 68px;
    --header-h-scroll: 60px;
  }
  .portfolio-grid-row {
    grid-template-columns: 1fr;
  }
  .portfolio-card-small {
    height: 260px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
  .footer-grid > *:first-child {
    grid-column: 1 / -1;
  }
  .contact-mini-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .about-values-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-page-grid {
    grid-template-columns: 1fr;
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-stats {
    gap: var(--space-6);
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .services-table-head {
    display: none;
  }
  .service-row {
    grid-template-columns: 1fr;
    gap: var(--space-2);
    padding: var(--space-5) 0;
  }
  .service-row-desc,
  .service-row-duration {
    display: none;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
  }
  .footer-legal-links {
    gap: var(--space-4);
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-form-page {
    padding: var(--space-8);
  }
  .contact-form-wrap {
    padding: var(--space-6);
  }
  .testimonial-card {
    padding: var(--space-6);
  }
  .about-value-card {
    padding: var(--space-6);
  }
  .logos-row {
    gap: var(--space-6);
  }
}

@media (min-width: 1025px) {
  .hero-img {
    transition: transform 0.1s linear;
  }
}

@media (max-width: 1024px) {
  .hero-img {
    transform: none !important;
    inset: 0;
    width: 100%;
    height: 100%;
  }
}

@media (hover: hover) and (pointer: fine) {
  .portfolio-card:hover .portfolio-card-img {
    transform: scale(1.06);
  }
}

html, body {
  overflow-x: hidden !important;
  max-width: 100vw;
}
