*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
  font-size: 16px;
}

body {
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--c-text);
  background: var(--c-bg);
  position: relative;
  overflow-x: hidden;
  max-width: 100vw;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
}

section, header, footer, main, nav, aside {
  overflow-x: hidden;
  max-width: 100%;
  box-sizing: border-box;
}

.container {
  width: 100%;
  max-width: var(--w-container);
  margin: 0 auto;
  padding: 0 var(--sp-8);
}

.container--narrow {
  max-width: var(--w-narrow);
}

.container--wide {
  max-width: var(--w-wide);
}

h1, .h1 {
  font-family: var(--f-hero);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h2, .h2 {
  font-family: var(--f-hero);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

h3, .h3 {
  font-family: var(--f-sub);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

h4, .h4 {
  font-family: var(--f-sub);
  font-weight: 600;
  line-height: 1.4;
}

p {
  font-family: var(--f-body);
  font-weight: 400;
  line-height: 1.75;
  color: var(--c-text-muted);
}

.label {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-accent);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
}

.label::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--c-accent);
  flex-shrink: 0;
}

.section-pad {
  padding: var(--sp-32) 0;
}

.section-pad--lg {
  padding: var(--sp-40) 0;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.875rem 2rem;
  background: var(--grad-btn);
  color: var(--c-white);
  font-family: var(--f-ui);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--r-full);
  transition: transform var(--t-base), box-shadow var(--t-base), opacity var(--t-base);
  box-shadow: 0 4px 20px rgba(185, 151, 88, 0.30);
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(185, 151, 88, 0.42);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.875rem 2rem;
  background: transparent;
  color: var(--c-white);
  font-family: var(--f-ui);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--r-full);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  transition: background var(--t-base), border-color var(--t-base), transform var(--t-base);
  white-space: nowrap;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.8125rem 1.75rem;
  background: transparent;
  color: var(--c-primary);
  font-family: var(--f-ui);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--r-full);
  border: 1.5px solid var(--c-border-strong);
  transition: background var(--t-base), border-color var(--t-base), color var(--t-base), transform var(--t-base);
  white-space: nowrap;
}

.btn-outline:hover {
  background: var(--c-primary);
  color: var(--c-white);
  border-color: var(--c-primary);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.625rem 1.5rem;
  font-size: 0.8125rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--h-header);
  transition: background var(--t-base), box-shadow var(--t-base), backdrop-filter var(--t-base);
  overflow-x: hidden;
}

.site-header.scrolled {
  background: rgba(244, 246, 242, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--c-border), var(--sh-sm);
}

.site-header.scrolled .logo {
  color: var(--c-primary);
}

.site-header.scrolled .nav-link {
  color: var(--c-text);
}

.site-header.scrolled .nav-link::after {
  background: var(--c-primary);
}

.site-header.scrolled .burger-span {
  background: var(--c-text);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  height: var(--h-header);
}

.logo {
  font-family: var(--f-hero);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--c-white);
  transition: color var(--t-base);
  flex-shrink: 0;
  font-style: italic;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  margin-left: auto;
}

.nav-link {
  font-family: var(--f-ui);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--t-base);
  letter-spacing: 0.01em;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--c-white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link:hover {
  color: var(--c-white);
}

.header-cta {
  margin-left: var(--sp-4);
  flex-shrink: 0;
}

.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  margin-left: var(--sp-4);
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
}

.burger-span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--c-white);
  transition: transform var(--t-base), opacity var(--t-base), width var(--t-base);
  transform-origin: center;
}

.burger-btn.active .burger-span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.burger-btn.active .burger-span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger-btn.active .burger-span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: var(--c-bg-deep);
  transform: translateX(100%);
  transition: transform var(--t-slow);
  overflow-y: auto;
  overflow-x: hidden;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  padding: calc(var(--h-header-mobile) + var(--sp-8)) var(--sp-8) var(--sp-12);
  min-height: 100%;
  gap: var(--sp-8);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  flex: 1;
}

.mobile-nav-link {
  font-family: var(--f-hero);
  font-size: clamp(2rem, 6vw, 2.75rem);
  font-weight: 400;
  font-style: italic;
  color: var(--c-white);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: block;
  transition: color var(--t-base), padding-left var(--t-slow);
}

.mobile-nav-link:hover {
  color: var(--c-accent-light);
  padding-left: var(--sp-4);
}

.mobile-menu-footer {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  padding-top: var(--sp-8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-footer a {
  font-family: var(--f-ui);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--t-base);
}

.mobile-menu-footer a:hover {
  color: var(--c-white);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -8% 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(22, 32, 27, 0.45) 0%, rgba(22, 32, 27, 0.72) 60%, rgba(22, 32, 27, 0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: var(--sp-24);
  padding-top: calc(var(--h-header) + var(--sp-16));
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 0.375rem 1rem;
  border: 1px solid rgba(185, 151, 88, 0.5);
  border-radius: var(--r-full);
  font-family: var(--f-mono);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-accent-light);
  margin-bottom: var(--sp-8);
}

.hero-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  font-size: clamp(3rem, 6.5vw, 7rem);
  color: var(--c-white);
  max-width: 840px;
  margin-bottom: var(--sp-6);
  font-style: italic;
}

.hero-sub {
  font-family: var(--f-body);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
  margin-bottom: var(--sp-10);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.hero-stats {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: var(--sp-6) 0;
  margin-top: var(--sp-16);
}

.hero-stats-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-16);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-stat-num {
  font-family: var(--f-mono);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--c-accent-light);
  line-height: 1;
}

.hero-stat-label {
  font-family: var(--f-ui);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.06em;
}

.hero-scroll {
  position: absolute;
  bottom: var(--sp-10);
  right: var(--sp-8);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.hero-scroll-text {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.15em;
  writing-mode: vertical-rl;
}

.value-prop {
  background: var(--c-bg);
  padding: var(--sp-32) 0;
}

.vp-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: start;
  margin-bottom: var(--sp-20);
}

.vp-header-left {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.vp-title {
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  color: var(--c-text);
}

.vp-header-right {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  padding-top: var(--sp-5);
}

.vp-desc {
  font-size: 1.0625rem;
  color: var(--c-text-muted);
  max-width: 480px;
}

.vp-badges {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

.badge-gov {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.5rem 1rem;
  background: rgba(77, 107, 91, 0.08);
  border: 1px solid var(--c-border-strong);
  border-radius: var(--r-md);
  font-family: var(--f-mono);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--c-primary);
}

.badge-gov svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.vp-editorial {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--c-border);
  border-left: 1px solid var(--c-border);
}

.vp-col {
  padding: var(--sp-10) var(--sp-8);
  border-right: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.vp-col-num {
  font-family: var(--f-mono);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--c-accent);
  line-height: 1;
  letter-spacing: -0.02em;
}

.vp-col-num span {
  font-size: 1.25rem;
  vertical-align: top;
}

.vp-col-label {
  font-family: var(--f-sub);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: 0.01em;
}

.vp-col-text {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  line-height: 1.65;
}

.vp-cta-line {
  margin-top: var(--sp-12);
  padding: var(--sp-8) var(--sp-10);
  background: var(--c-bg-deep);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
}

.vp-cta-text {
  font-family: var(--f-hero);
  font-style: italic;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--c-white);
  max-width: 680px;
  line-height: 1.4;
}

.js-marquee-wrap {
  overflow: hidden;
  max-width: 100vw;
  padding: var(--sp-8) 0;
  background: var(--c-bg-alt);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  position: relative;
}

.js-mq-row {
  display: flex;
  white-space: nowrap;
  user-select: none;
  gap: 0;
}

.js-mq-row.fwd {
  animation: marquee-fwd 38s linear infinite;
  margin-bottom: var(--sp-2);
}

.js-mq-row.rev {
  animation: marquee-rev 42s linear infinite;
}

.mq-item {
  font-family: var(--f-hero);
  font-size: clamp(20px, 3vw, 38px);
  font-style: italic;
  text-transform: uppercase;
  color: var(--c-primary);
  opacity: 0.12;
  padding: 0 var(--sp-6);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.mq-sep {
  font-family: var(--f-mono);
  font-size: clamp(12px, 2vw, 22px);
  color: var(--c-accent);
  opacity: 0.18;
  padding: 0 var(--sp-3);
  flex-shrink: 0;
  align-self: center;
}

@keyframes marquee-fwd {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes marquee-rev {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.signature-moment {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.signature-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.signature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(22, 32, 27, 0.80) 0%, rgba(22, 32, 27, 0.45) 60%, rgba(22, 32, 27, 0.20) 100%);
}

.signature-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.signature-quote {
  font-family: var(--f-hero);
  font-style: italic;
  font-size: clamp(1.875rem, 3.5vw, 3rem);
  color: var(--c-white);
  line-height: 1.2;
  margin-bottom: var(--sp-8);
  position: relative;
  padding-left: var(--sp-8);
}

.signature-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -0.1em;
  font-size: 3em;
  color: var(--c-accent);
  opacity: 0.6;
  line-height: 1;
}

.signature-attr {
  font-family: var(--f-ui);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.06em;
  padding-left: var(--sp-8);
  margin-bottom: var(--sp-16);
}

.signature-stats {
  display: flex;
  gap: var(--sp-12);
  padding-left: var(--sp-8);
  border-left: 1px solid rgba(185, 151, 88, 0.4);
}

.sig-stat-val {
  font-family: var(--f-mono);
  font-size: 1.375rem;
  color: var(--c-accent-light);
  display: block;
  line-height: 1;
  margin-bottom: var(--sp-1);
}

.sig-stat-label {
  font-family: var(--f-ui);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.08em;
}

.showcase {
  padding: var(--sp-32) 0;
  background: var(--c-bg);
}

.showcase-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-8);
  margin-bottom: var(--sp-16);
}

.showcase-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--c-text);
  max-width: 480px;
}

.showcase-link {
  font-family: var(--f-ui);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-primary);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  position: relative;
  padding-bottom: 2px;
  white-space: nowrap;
}

.showcase-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--c-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow);
}

.showcase-link:hover::after {
  transform: scaleX(1);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto;
  gap: var(--sp-4);
}

.showcase-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--c-bg-dark);
}

.showcase-card:first-child {
  grid-row: span 2;
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slower);
  min-height: 320px;
}

.showcase-card:first-child img {
  min-height: 560px;
}

.showcase-card:hover img {
  transform: scale(1.04);
}

.showcase-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22, 32, 27, 0.80) 0%, rgba(22, 32, 27, 0.20) 55%, transparent 100%);
  transition: opacity var(--t-base);
}

.showcase-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sp-6);
  transform: translateY(var(--sp-4));
  transition: transform var(--t-slow);
}

.showcase-card:hover .showcase-card-body {
  transform: translateY(0);
}

.showcase-card-tag {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-accent-light);
  margin-bottom: var(--sp-2);
}

.showcase-card-title {
  font-family: var(--f-hero);
  font-style: italic;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--c-white);
  line-height: 1.2;
  margin-bottom: var(--sp-2);
}

.showcase-card-desc {
  font-family: var(--f-body);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
  opacity: 0;
  transition: opacity var(--t-slow) 0.05s;
}

.showcase-card:hover .showcase-card-desc {
  opacity: 1;
}

.insight {
  padding: var(--sp-32) 0;
  background: var(--c-bg-deep);
  overflow: hidden;
}

.insight-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--sp-20);
  align-items: start;
}

.insight-left {
  position: sticky;
  top: calc(var(--h-header) + var(--sp-8));
}

.insight-pullquote {
  font-family: var(--f-hero);
  font-style: italic;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--c-white);
  line-height: 1.25;
  margin-bottom: var(--sp-8);
}

.insight-pullquote-accent {
  color: var(--c-accent-light);
}

.insight-meta {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.insight-meta-label {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-accent);
}

.insight-meta-val {
  font-family: var(--f-ui);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
}

.insight-right {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
}

.insight-paragraph {
  font-family: var(--f-body);
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
}

.insight-highlight {
  padding: var(--sp-6) var(--sp-8);
  border-left: 3px solid var(--c-accent);
  background: rgba(185, 151, 88, 0.07);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}

.insight-highlight p {
  font-family: var(--f-sub);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--c-accent-light);
  line-height: 1.55;
}

.services-block {
  padding: var(--sp-32) 0;
  background: var(--c-bg);
}

.services-header {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-bottom: var(--sp-16);
  max-width: 580px;
}

.services-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--c-text);
}

.services-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.services-table thead th {
  padding: var(--sp-6) var(--sp-8);
  background: var(--c-bg-alt);
  font-family: var(--f-sub);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--c-text);
  text-align: left;
  border-bottom: 1px solid var(--c-border);
}

.services-table thead th:not(:first-child) {
  text-align: center;
}

.th-featured {
  background: var(--c-primary) !important;
  color: var(--c-white) !important;
  position: relative;
}

.th-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: var(--c-accent);
  color: var(--c-white);
  font-size: 0.65rem;
  font-family: var(--f-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--r-full);
  margin-left: var(--sp-2);
  vertical-align: middle;
}

.services-table tbody td {
  padding: var(--sp-5) var(--sp-8);
  border-bottom: 1px solid var(--c-border);
  font-family: var(--f-body);
  font-size: 0.9375rem;
  color: var(--c-text-muted);
  vertical-align: middle;
}

.services-table tbody td:not(:first-child) {
  text-align: center;
}

.services-table tbody td:first-child {
  font-family: var(--f-ui);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-text);
  letter-spacing: 0.01em;
}

.services-table tbody td.featured-col {
  background: rgba(77, 107, 91, 0.04);
}

.services-table tbody tr:last-child td {
  border-bottom: none;
}

.services-table tfoot td {
  padding: var(--sp-6) var(--sp-8);
  background: var(--c-bg-alt);
  border-top: 1px solid var(--c-border);
  text-align: center;
  font-family: var(--f-sub);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--c-text);
}

.services-table tfoot td:first-child {
  text-align: left;
  font-family: var(--f-mono);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--c-text-subtle);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.services-table tfoot td.featured-col {
  background: rgba(77, 107, 91, 0.06);
}

.check-icon {
  color: var(--c-primary);
  font-size: 1rem;
}

.cross-icon {
  color: var(--c-text-subtle);
  font-size: 0.875rem;
}

.timeline-section {
  padding: var(--sp-32) 0;
  background: var(--grad-bg);
}

.timeline-header {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-bottom: var(--sp-20);
  max-width: 580px;
}

.timeline-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--c-text);
}

.timeline-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-list::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--c-border-strong);
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: start;
  gap: 0;
  padding: var(--sp-10) 0;
}

.timeline-item:nth-child(odd) .timeline-body {
  grid-column: 1;
  text-align: right;
  padding-right: var(--sp-12);
}

.timeline-item:nth-child(odd) .timeline-center {
  grid-column: 2;
}

.timeline-item:nth-child(odd) .timeline-empty {
  grid-column: 3;
}

.timeline-item:nth-child(even) .timeline-empty {
  grid-column: 1;
}

.timeline-item:nth-child(even) .timeline-center {
  grid-column: 2;
}

.timeline-item:nth-child(even) .timeline-body {
  grid-column: 3;
  text-align: left;
  padding-left: var(--sp-12);
}

.timeline-center {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: var(--sp-2);
  position: relative;
}

.timeline-node {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-bg);
  border: 2px solid var(--c-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-mono);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--c-accent);
  z-index: 1;
  position: relative;
  transition: background var(--t-base), color var(--t-base);
  flex-shrink: 0;
}

.timeline-item:hover .timeline-node {
  background: var(--c-accent);
  color: var(--c-white);
}

.timeline-body {
  padding-top: var(--sp-1);
}

.timeline-step {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: var(--sp-2);
}

.timeline-name {
  font-family: var(--f-hero);
  font-style: italic;
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  color: var(--c-text);
  margin-bottom: var(--sp-3);
  line-height: 1.2;
}

.timeline-desc {
  font-size: 0.9375rem;
  color: var(--c-text-muted);
  line-height: 1.65;
  max-width: 360px;
}

.timeline-item:nth-child(odd) .timeline-desc {
  margin-left: auto;
}

.social-proof {
  padding: var(--sp-32) 0;
  background: var(--c-bg);
}

.sp-header {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-bottom: var(--sp-16);
}

.sp-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--c-text);
  max-width: 480px;
}

.sp-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: var(--sp-4);
  margin-bottom: var(--sp-16);
}

.testimonial-card {
  padding: var(--sp-8);
  background: var(--c-bg-alt);
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  transition: box-shadow var(--t-base), transform var(--t-base);
}

@media (hover: hover) and (pointer: fine) {
  .testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-lg);
  }
}

.testimonial-stars {
  display: flex;
  gap: 3px;
}

.star {
  color: var(--c-accent);
  font-size: 0.875rem;
}

.testimonial-text {
  font-family: var(--f-hero);
  font-style: italic;
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  color: var(--c-text);
  line-height: 1.5;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--c-border);
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad-natural);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-sub);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--c-white);
  flex-shrink: 0;
}

.author-name {
  font-family: var(--f-sub);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--c-text);
  display: block;
}

.author-loc {
  font-family: var(--f-ui);
  font-size: 0.75rem;
  color: var(--c-text-subtle);
  display: block;
}

.partner-logos {
  border-top: 1px solid var(--c-border);
  padding-top: var(--sp-10);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

.partner-label {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-subtle);
  margin-right: var(--sp-6);
  flex-shrink: 0;
}

.partner-badge {
  padding: 0.4rem 0.9rem;
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  font-family: var(--f-ui);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--c-text-muted);
  transition: border-color var(--t-base), color var(--t-base);
}

.partner-badge:hover {
  border-color: var(--c-primary);
  color: var(--c-primary);
}

.cta-block {
  padding: var(--sp-32) 0;
  background: var(--c-primary);
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -15%;
  width: 70vw;
  height: 70vw;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.cta-block::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-6);
  max-width: 760px;
  margin: 0 auto;
}

.cta-tag {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent-light);
}

.cta-title {
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  color: var(--c-white);
  font-style: italic;
}

.cta-sub {
  font-family: var(--f-body);
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--sp-4);
}

.contact-strip {
  padding: var(--sp-32) 0;
  background: var(--c-bg-alt);
}

.contact-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: start;
}

.contact-strip-left {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.contact-strip-title {
  font-size: clamp(1.875rem, 3vw, 2.75rem);
  color: var(--c-text);
}

.contact-strip-desc {
  font-size: 1.0625rem;
  color: var(--c-text-muted);
  max-width: 420px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-top: var(--sp-4);
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
}

.contact-detail-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--c-primary);
}

.contact-detail-icon svg {
  width: 16px;
  height: 16px;
}

.contact-detail-label {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-subtle);
  display: block;
  margin-bottom: 2px;
}

.contact-detail-val {
  font-family: var(--f-ui);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--c-text);
}

.contact-form-wrap {
  background: var(--c-white);
  padding: var(--sp-8);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
}

.form-title {
  font-family: var(--f-sub);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: var(--sp-6);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  margin-bottom: var(--sp-4);
}

.form-label {
  font-family: var(--f-ui);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--c-text);
  letter-spacing: 0.02em;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  font-family: var(--f-body);
  font-size: 0.9375rem;
  color: var(--c-text);
  background: var(--c-bg);
  transition: border-color var(--t-base), box-shadow var(--t-base);
  outline: none;
}

.form-input:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(77, 107, 91, 0.1);
  background: var(--c-white);
}

.form-input::placeholder {
  color: var(--c-text-subtle);
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

.site-footer {
  background: var(--c-bg-deep);
  padding: var(--sp-20) 0 var(--sp-8);
  overflow-x: hidden;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--sp-12);
  padding-bottom: var(--sp-16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: var(--sp-8);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.footer-logo {
  font-family: var(--f-hero);
  font-style: italic;
  font-size: 1.75rem;
  color: var(--c-white);
  text-decoration: none;
  font-weight: 400;
}

.footer-brand-desc {
  font-family: var(--f-body);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  max-width: 280px;
}

.footer-badges {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-top: var(--sp-2);
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-accent-light);
  opacity: 0.7;
}

.footer-col-title {
  font-family: var(--f-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: var(--sp-4);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-link {
  font-family: var(--f-ui);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--t-base);
}

.footer-link:hover {
  color: var(--c-white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
  flex-wrap: wrap;
}

.footer-copy {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.04em;
}

.footer-legal {
  display: flex;
  gap: var(--sp-6);
  flex-wrap: wrap;
}

.footer-legal-link {
  font-family: var(--f-ui);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--t-base);
}

.footer-legal-link:hover {
  color: rgba(255, 255, 255, 0.7);
}

.page-hero {
  padding: calc(var(--h-header) + var(--sp-20)) 0 var(--sp-20);
  background: var(--c-primary);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--w-narrow);
}

.page-hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--c-white);
  font-style: italic;
  margin-bottom: var(--sp-5);
}

.page-hero-sub {
  font-family: var(--f-body);
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
  line-height: 1.7;
}

.page-section {
  padding: var(--sp-24) 0;
  background: var(--c-bg);
}

.page-section--alt {
  background: var(--c-bg-alt);
}

.page-section--dark {
  background: var(--c-bg-deep);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.content-grid--reverse {
  direction: rtl;
}

.content-grid--reverse > * {
  direction: ltr;
}

.content-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.content-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slower);
}

.content-img:hover img {
  transform: scale(1.03);
}

.content-body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.content-body h2 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  color: var(--c-text);
}

.content-body p {
  font-size: 1.0625rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.dest-card {
  background: var(--c-white);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--c-border);
  transition: box-shadow var(--t-base), transform var(--t-base);
}

@media (hover: hover) and (pointer: fine) {
  .dest-card:hover {
    box-shadow: var(--sh-xl);
    transform: translateY(-6px);
  }
}

.dest-card-img {
  aspect-ratio: 3/2;
  overflow: hidden;
}

.dest-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slower);
}

.dest-card:hover .dest-card-img img {
  transform: scale(1.05);
}

.dest-card-body {
  padding: var(--sp-6);
}

.dest-card-tag {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: var(--sp-2);
}

.dest-card-title {
  font-family: var(--f-hero);
  font-style: italic;
  font-size: 1.3125rem;
  color: var(--c-text);
  margin-bottom: var(--sp-3);
}

.dest-card-desc {
  font-size: 0.9375rem;
  color: var(--c-text-muted);
  line-height: 1.65;
}

.faq-section {
  padding: var(--sp-24) 0;
  background: var(--c-bg);
}

.faq-title {
  font-size: clamp(1.875rem, 3vw, 2.75rem);
  color: var(--c-text);
  margin-bottom: var(--sp-12);
  max-width: 480px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  max-width: 760px;
}

.faq-item {
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-white);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: var(--sp-5) var(--sp-6);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  font-family: var(--f-sub);
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-text);
  transition: color var(--t-base);
}

.faq-question:hover {
  color: var(--c-primary);
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--c-border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--t-base), background var(--t-base), border-color var(--t-base);
  color: var(--c-primary);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: var(--c-white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow), padding var(--t-slow);
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 0 var(--sp-6) var(--sp-5);
  font-size: 0.9375rem;
  color: var(--c-text-muted);
  line-height: 1.7;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.value-item {
  padding: var(--sp-8);
  background: var(--c-white);
  border-radius: var(--r-xl);
  border: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transition: box-shadow var(--t-base), transform var(--t-base);
}

@media (hover: hover) and (pointer: fine) {
  .value-item:hover {
    box-shadow: var(--sh-md);
    transform: translateY(-3px);
  }
}

.value-num {
  font-family: var(--f-mono);
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--c-accent);
  line-height: 1;
}

.value-title {
  font-family: var(--f-sub);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text);
}

.value-text {
  font-size: 0.9375rem;
  line-height: 1.65;
}

.map-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  height: 400px;
  border: 1px solid var(--c-border);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--sp-16);
  align-items: start;
}

.contact-info-full {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.thanks-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-bg);
  padding: var(--sp-8);
}

.thanks-inner {
  text-align: center;
  max-width: 580px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-6);
}

.thanks-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(77, 107, 91, 0.08);
  border: 2px solid var(--c-border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
}

.thanks-icon svg {
  width: 36px;
  height: 36px;
}

.thanks-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--c-text);
  font-style: italic;
}

.thanks-sub {
  font-size: 1.0625rem;
  color: var(--c-text-muted);
  line-height: 1.7;
  max-width: 440px;
}

.legal-page {
  padding: calc(var(--h-header) + var(--sp-20)) 0 var(--sp-32);
  background: var(--c-bg);
}

.legal-header {
  margin-bottom: var(--sp-16);
  padding-bottom: var(--sp-8);
  border-bottom: 1px solid var(--c-border);
}

.legal-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--c-text);
  margin-bottom: var(--sp-4);
}

.legal-meta {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  color: var(--c-text-subtle);
  letter-spacing: 0.08em;
}

.legal-content {
  max-width: var(--w-narrow);
}

.legal-content h2 {
  font-family: var(--f-sub);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-text);
  margin-top: var(--sp-10);
  margin-bottom: var(--sp-4);
  line-height: 1.35;
}

.legal-content h3 {
  font-family: var(--f-sub);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text);
  margin-top: var(--sp-6);
  margin-bottom: var(--sp-3);
}

.legal-content p {
  font-size: 0.9375rem;
  color: var(--c-text-muted);
  line-height: 1.8;
  margin-bottom: var(--sp-4);
}

.legal-content ul, .legal-content ol {
  margin: var(--sp-4) 0;
  padding-left: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.legal-content ul li {
  list-style: disc;
  font-family: var(--f-body);
  font-size: 0.9375rem;
  color: var(--c-text-muted);
  line-height: 1.7;
}

.legal-content ol li {
  list-style: decimal;
  font-family: var(--f-body);
  font-size: 0.9375rem;
  color: var(--c-text-muted);
  line-height: 1.7;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--t-slower), transform var(--t-slower);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity var(--t-slower), transform var(--t-slower);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity var(--t-slower), transform var(--t-slower);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.40s; }
.reveal-d6 { transition-delay: 0.48s; }

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes draw-line {
  from { stroke-dashoffset: 1000; }
  to { stroke-dashoffset: 0; }
}

.counter-val {
  font-variant-numeric: tabular-nums;
}

@media (max-width: 1180px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-10);
  }

  .vp-editorial {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase-grid {
    grid-template-columns: 1fr 1fr;
  }

  .showcase-card:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }

  .showcase-card:first-child img {
    min-height: 420px;
  }

  .sp-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sp-grid .testimonial-card:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 1024px) {
  :root {
    --h-header: var(--h-header-mobile);
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .burger-btn {
    display: flex;
  }

  .timeline-list::before {
    left: 22px;
    transform: none;
  }

  .timeline-item {
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto;
  }

  .timeline-item:nth-child(odd) .timeline-body,
  .timeline-item:nth-child(even) .timeline-body {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
    padding-left: var(--sp-6);
    padding-right: 0;
  }

  .timeline-item:nth-child(odd) .timeline-center,
  .timeline-item:nth-child(even) .timeline-center {
    grid-column: 1;
    grid-row: 1;
    justify-content: flex-start;
  }

  .timeline-item:nth-child(odd) .timeline-empty,
  .timeline-item:nth-child(even) .timeline-empty {
    display: none;
  }

  .timeline-item:nth-child(odd) .timeline-desc {
    margin-left: 0;
  }

  .insight-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-12);
  }

  .insight-left {
    position: static;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--sp-5);
  }

  .section-pad {
    padding: var(--sp-20) 0;
  }

  .section-pad--lg {
    padding: var(--sp-24) 0;
  }

  .vp-header {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .vp-editorial {
    grid-template-columns: 1fr 1fr;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .showcase-card:first-child {
    grid-column: span 1;
  }

  .showcase-card:first-child img {
    min-height: 320px;
  }

  .services-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .sp-grid {
    grid-template-columns: 1fr;
  }

  .sp-grid .testimonial-card:first-child {
    grid-column: span 1;
  }

  .contact-strip-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-4);
  }

  .hero-stats-inner {
    gap: var(--sp-8);
    flex-wrap: wrap;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .btn-primary,
  .cta-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-3);
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .vp-cta-line {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-5);
  }

  .signature-stats {
    flex-wrap: wrap;
    gap: var(--sp-6);
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .hero-scroll {
    display: none;
  }

  .showcase-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-4);
  }

  .partner-logos {
    gap: var(--sp-2);
  }
}

@media (max-width: 480px) {
  .vp-editorial {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-tag {
    font-size: 0.65rem;
  }
}

@media (min-width: 1025px) {
  .hero-bg {
    will-change: transform;
  }
}

@media (max-width: 1024px) {
  .hero-bg {
    transform: none !important;
    inset: 0;
  }
}

html, body {
  overflow-x: hidden !important;
  max-width: 100vw;
}
