.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

section, header, footer {
  overflow-x: hidden;
  max-width: 100%;
  box-sizing: border-box;
}

.section { padding: 7rem 0; }
.section--sm { padding: 4rem 0; }
.section--lg { padding: 10rem 0; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.4s var(--ease);
}

.site-header.scrolled {
  background: rgba(246, 245, 240, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--c-border-alt);
  padding: 1rem 0;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--c-white);
  letter-spacing: -0.03em;
  line-height: 1;
  transition: color 0.3s var(--ease);
  flex-shrink: 0;
}

.logo span { color: var(--c-accent); }
.logo a { color: inherit; }

.site-header.scrolled .logo { color: var(--c-text); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.25s var(--ease);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--c-accent);
  transition: width 0.35s var(--ease);
}

.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--c-white); }

.site-header.scrolled .nav-links a { color: var(--c-text-muted); }
.site-header.scrolled .nav-links a:hover { color: var(--c-primary); }

.nav-cta {
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.5625rem 1.375rem;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: var(--c-white);
  transition: all 0.3s var(--ease);
  display: inline-flex;
  align-items: center;
}

.nav-cta:hover {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: var(--c-white);
}

.site-header.scrolled .nav-cta { border-color: var(--c-accent); color: var(--c-accent); }
.site-header.scrolled .nav-cta:hover { background: var(--c-accent); color: var(--c-white); }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0.625rem;
  cursor: pointer;
  z-index: 1100;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}

.burger:hover { background: rgba(255, 255, 255, 0.08); }
.site-header.scrolled .burger:hover { background: rgba(42, 48, 46, 0.06); }

.burger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  transform-origin: center;
}

.site-header.scrolled .burger span { background: var(--c-text); }

.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { transform: scaleX(0); opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(246, 245, 240, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.mobile-menu.open { opacity: 1; pointer-events: all; }

.mobile-nav-links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav-links a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 3.25rem);
  font-weight: 600;
  color: var(--c-text);
  display: block;
  padding: 0.5rem 2rem;
  letter-spacing: -0.02em;
  transition: color 0.25s var(--ease);
}

.mobile-nav-links a:hover { color: var(--c-primary); }

.mobile-nav-btn { margin-top: 2rem; }

.mobile-menu-foot {
  position: absolute;
  bottom: 2.5rem;
  text-align: center;
}

.mobile-menu-foot p {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-muted);
}

.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  object-position: center 30%;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(42,48,46,0.06) 0%, rgba(42,48,46,0.2) 30%, rgba(42,48,46,0.74) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 5rem;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-secondary);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--c-secondary);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 880px;
  margin-bottom: 1.75rem;
}

.hero-title em {
  font-style: italic;
  color: rgba(164, 179, 162, 0.9);
}

.hero-desc {
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 1.25vw, 1.0625rem);
  color: rgba(255, 255, 255, 0.72);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.25rem;
  right: 2.5rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.65);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { top: -100%; }
  100% { top: 100%; }
}

.hero-scroll-text {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  writing-mode: vertical-rl;
}

.value-section { background: var(--c-bg); }

.vp-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 7rem;
  align-items: start;
}

.vp-left .section-label { margin-bottom: 1.5rem; }
.vp-left h2 { line-height: 1.12; }

.vp-intro {
  font-size: 1.0625rem;
  line-height: 1.82;
  color: var(--c-text-muted);
  margin-bottom: 1.5rem;
}

.vp-body {
  font-size: 0.9375rem;
  line-height: 1.82;
  color: var(--c-text-muted);
  margin-bottom: 1.25rem;
}

.vp-badges {
  margin-top: 2.5rem;
  border: 1px solid var(--c-border-alt);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--c-bg-alt);
}

.vp-badge {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.125rem 1.375rem;
  border-bottom: 1px solid var(--c-border-alt);
  transition: background 0.25s;
}

.vp-badge:last-child { border-bottom: none; }
.vp-badge:hover { background: rgba(74, 111, 99, 0.04); }

.vp-dot {
  width: 7px;
  height: 7px;
  min-width: 7px;
  border-radius: 50%;
  background: var(--c-accent);
  margin-top: 0.4375rem;
}

.vp-badge-text {
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--c-text);
  line-height: 1.55;
}

.signature-section {
  background: var(--c-text);
  overflow: hidden;
}

.sig-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 640px;
}

.sig-visual { position: relative; overflow: hidden; }

.sig-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.sig-visual:hover img { transform: scale(1.04); }

.sig-content {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sig-content .label { color: var(--c-secondary); opacity: 0.75; margin-bottom: 1.5rem; }

.sig-content h2 {
  color: var(--c-white);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.sig-content p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9375rem;
  line-height: 1.82;
  margin-bottom: 1rem;
}

.sig-quote {
  margin-top: 2rem;
  padding: 1.5rem;
  border-left: 2px solid var(--c-accent);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.sig-quote p {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.62;
  margin: 0;
}

.sig-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sig-stat-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--c-accent);
  line-height: 1;
  display: block;
}

.sig-stat-lbl {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  display: block;
  margin-top: 0.375rem;
}

.showcase-section { background: var(--c-bg-alt); }

.showcase-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  gap: 2rem;
}

.showcase-top h2 { max-width: 480px; }

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 420px 300px;
  gap: 1.25rem;
}

.showcase-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.showcase-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
.showcase-item:nth-child(2) { grid-column: 3; grid-row: 1; }

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
  display: block;
}

.showcase-item:hover img { transform: scale(1.07); }

.showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42,48,46,0.88) 0%, rgba(42,48,46,0.06) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  transition: background 0.4s var(--ease);
}

.showcase-cat {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-secondary);
  margin-bottom: 0.375rem;
}

.showcase-name {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--c-white);
  line-height: 1.2;
}

.showcase-arrow {
  margin-top: 0.625rem;
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  color: var(--c-accent);
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.35s var(--ease);
}

.showcase-item:hover .showcase-arrow { opacity: 1; transform: translateY(0); }

.marquee-section {
  overflow: hidden;
  max-width: 100vw;
  padding: 2.5rem 0;
  background: var(--c-bg);
  border-top: 1px solid var(--c-border-alt);
  border-bottom: 1px solid var(--c-border-alt);
}

.js-marquee-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  overflow: hidden;
  max-width: 100vw;
}

.js-mq-row { display: flex; overflow: hidden; width: 100%; }

.mq-track {
  display: flex;
  white-space: nowrap;
  will-change: transform;
  animation: mq-fwd 35s linear infinite;
}

.js-mq-row.rev .mq-track { animation: mq-rev 35s linear infinite; }

.mq-word {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 38px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--c-text);
  opacity: 0.1;
  padding: 0 1.25rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.mq-sep { color: var(--c-accent); opacity: 0.18; padding: 0 0.5rem; }

@keyframes mq-fwd { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes mq-rev { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.insight-section { background: var(--c-bg); }

.insight-grid {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 7rem;
  align-items: start;
}

.insight-sticky {
  position: sticky;
  top: 8rem;
}

.insight-sticky .section-label { margin-bottom: 1.25rem; }

.insight-sticky h2 {
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.insight-sticky p { font-size: 0.9375rem; line-height: 1.82; }

.good-news-box {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-sm);
  background: rgba(74, 111, 99, 0.07);
  border: 1px solid rgba(74, 111, 99, 0.16);
}

.good-news-box p {
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--c-primary);
  line-height: 1.55;
}

.insight-article {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--c-border-alt);
}

.insight-article:first-child { padding-top: 0; }
.insight-article:last-child { border-bottom: none; padding-bottom: 0; }

.ia-idx {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 0.75rem;
}

.ia-heading {
  font-family: var(--font-sub);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 0.875rem;
  line-height: 1.35;
}

.ia-body { font-size: 0.9375rem; line-height: 1.82; color: var(--c-text-muted); }

.services-section {
  background: var(--c-primary);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.025);
  pointer-events: none;
}

.services-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  pointer-events: none;
}

.svc-head { margin-bottom: 4rem; }
.svc-head .label { color: rgba(164, 179, 162, 0.75); margin-bottom: 0.875rem; }
.svc-head h2 { color: var(--c-white); margin-bottom: 0.75rem; }
.svc-head p { color: rgba(255, 255, 255, 0.55); font-size: 0.9375rem; max-width: 520px; }

.svc-table { width: 100%; border-collapse: collapse; position: relative; z-index: 1; }

.svc-table thead th {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  text-align: left;
  padding-bottom: 1rem;
  padding-right: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.svc-table thead th:last-child { text-align: right; padding-right: 0; }

.svc-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s;
}

.svc-table tbody tr:last-child { border-bottom: none; }
.svc-table tbody tr:hover { background: rgba(255, 255, 255, 0.035); }

.svc-table td { padding: 1.75rem 2rem 1.75rem 0; vertical-align: top; }
.svc-table td:last-child { text-align: right; padding-right: 0; }

.svc-name {
  font-family: var(--font-sub);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 0.375rem;
  line-height: 1.3;
}

.svc-desc { font-size: 0.875rem; color: rgba(255, 255, 255, 0.5); line-height: 1.72; max-width: 380px; }

.svc-badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-accent);
  border: 1px solid rgba(184, 141, 77, 0.3);
  border-radius: var(--radius-xs);
  padding: 0.25rem 0.625rem;
  white-space: nowrap;
}

.timeline-section { background: var(--c-bg-alt); }

.tl-grid {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 7rem;
  align-items: start;
}

.tl-left {
  position: sticky;
  top: 8rem;
}

.tl-left .section-label { margin-bottom: 1.25rem; }
.tl-left h2 { font-size: clamp(1.75rem, 2.5vw, 2.5rem); margin-bottom: 1.25rem; }
.tl-left p { font-size: 0.9375rem; line-height: 1.82; }

.tl-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.5rem;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--c-border-alt);
  transition: transform 0.3s var(--ease);
}

.tl-step:first-child { padding-top: 0; }
.tl-step:last-child { border-bottom: none; padding-bottom: 0; }
.tl-step:hover { transform: translateX(4px); }

.tl-num {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--c-accent);
  padding-top: 0.125rem;
}

.tl-title {
  font-family: var(--font-sub);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 0.625rem;
  line-height: 1.35;
}

.tl-body { font-size: 0.9375rem; line-height: 1.82; color: var(--c-text-muted); }

.proof-section { background: var(--c-bg); }

.proof-head {
  text-align: center;
  margin-bottom: 4rem;
}

.proof-head .section-label { justify-content: center; }
.proof-head .section-label::before { display: none; }
.proof-head h2 { margin-top: 0.75rem; }

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.t-card {
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border-alt);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all 0.4s var(--ease);
}

.t-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--c-secondary);
}

.t-stars { display: flex; gap: 0.25rem; margin-bottom: 1.125rem; }
.t-star { font-size: 0.875rem; color: var(--c-accent); }

.t-text {
  font-size: 0.9375rem;
  line-height: 1.78;
  color: var(--c-text-muted);
  font-style: italic;
  margin-bottom: 1.75rem;
}

.t-author { display: flex; align-items: center; gap: 0.875rem; }

.t-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--grad-nature);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-white);
  flex-shrink: 0;
}

.t-name {
  font-family: var(--font-sub);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.3;
}

.t-from {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-top: 0.125rem;
}

.partner-strip { padding-top: 3.5rem; border-top: 1px solid var(--c-border-alt); }

.partner-label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  text-align: center;
  margin-bottom: 1.75rem;
}

.partners { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }

.partner-item {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--c-text-muted);
  opacity: 0.45;
  transition: opacity 0.3s;
  white-space: nowrap;
}

.partner-item:hover { opacity: 0.75; }

.cta-section {
  background: var(--grad-nature);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/images/hero.jpg') center 40% / cover no-repeat;
  opacity: 0.12;
  z-index: 0;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 8rem 0;
}

.cta-inner .label { color: var(--c-secondary); margin-bottom: 1.25rem; }

.cta-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  padding: 0.375rem 1rem;
  margin-bottom: 1.5rem;
}

.cta-inner h2 {
  color: var(--c-white);
  font-size: clamp(2rem, 5vw, 4rem);
  max-width: 820px;
  margin: 0 auto 1.5rem;
  line-height: 1.08;
}

.cta-sub {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.0625rem;
  max-width: 540px;
  margin: 0 auto 0.75rem;
  line-height: 1.72;
}

.cta-highlight {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-accent);
  margin-bottom: 2.5rem;
  display: block;
}

.cta-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }

.contact-section { background: var(--c-bg-alt); }

.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 6rem;
  align-items: start;
}

.contact-left .section-label { margin-bottom: 1.25rem; }
.contact-left h2 { font-size: clamp(1.75rem, 2.5vw, 2.5rem); margin-bottom: 1.25rem; }
.contact-left p { font-size: 0.9375rem; line-height: 1.82; margin-bottom: 2.5rem; }

.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }

.ci-item { display: flex; align-items: flex-start; gap: 1rem; }

.ci-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: var(--radius-sm);
  background: var(--c-bg);
  border: 1px solid var(--c-border-alt);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ci-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--c-primary);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ci-lbl {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-bottom: 0.25rem;
}

.ci-val {
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--c-text);
}

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.f-group { display: flex; flex-direction: column; gap: 0.5rem; }

.f-group label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-muted);
}

.f-group input,
.f-group textarea,
.f-group select {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--c-text);
  background: var(--c-bg);
  border: 1.5px solid var(--c-border-alt);
  border-radius: var(--radius-sm);
  padding: 0.875rem 1.125rem;
  width: 100%;
  outline: none;
  transition: border-color 0.3s var(--ease);
  appearance: none;
}

.f-group input::placeholder,
.f-group textarea::placeholder { color: var(--c-secondary); opacity: 0.7; }

.f-group input:focus,
.f-group textarea:focus,
.f-group select:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(74, 111, 99, 0.08);
}

.f-group textarea { resize: vertical; min-height: 140px; }

.site-footer { background: var(--c-text); overflow-x: hidden; }

.footer-main {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 5rem 0 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.f-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-white);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  display: block;
}

.f-logo span { color: var(--c-accent); }

.f-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.75;
  max-width: 260px;
  margin-bottom: 2rem;
}

.f-col-title {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 1.25rem;
}

.f-nav { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }

.f-nav a {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.25s;
}

.f-nav a:hover { color: var(--c-accent); }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.f-copy {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.22);
}

.f-legal { display: flex; gap: 1.75rem; flex-wrap: wrap; }

.f-legal a {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.22);
  transition: color 0.25s;
}

.f-legal a:hover { color: rgba(255, 255, 255, 0.5); }

.page-hero {
  padding: 9rem 0 5rem;
  background: var(--grad-nature);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/about.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.page-hero .container { position: relative; z-index: 1; }
.page-hero .label { color: rgba(164, 179, 162, 0.75); margin-bottom: 1rem; }
.page-hero h1 { color: var(--c-white); max-width: 700px; margin-bottom: 1.25rem; }
.page-hero .ph-desc { color: rgba(255, 255, 255, 0.62); font-size: 1.0625rem; max-width: 520px; line-height: 1.7; }

.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--c-border-alt); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-sub);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--c-text);
  transition: color 0.25s;
}

.faq-q:hover { color: var(--c-primary); }

.faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--c-border-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
  position: relative;
}

.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 1.5px;
  background: var(--c-text-muted);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.faq-icon::after { transform: rotate(90deg); }

.faq-item.active .faq-icon { background: var(--c-primary); border-color: var(--c-primary); }
.faq-item.active .faq-icon::before, .faq-item.active .faq-icon::after { background: var(--c-white); }
.faq-item.active .faq-icon::after { transform: rotate(0deg); opacity: 0; }

.faq-a { overflow: hidden; max-height: 0; transition: max-height 0.45s var(--ease-out); }
.faq-item.active .faq-a { max-height: 600px; }
.faq-a-inner { padding-bottom: 1.5rem; }
.faq-a-inner p { font-size: 0.9375rem; line-height: 1.82; }

.legal-section { padding: 5rem 0 7rem; }
.legal-content { max-width: 780px; }

.legal-content h2 { font-size: 1.5rem; margin: 3rem 0 1rem; font-weight: 600; }
.legal-content h3 { font-size: 1.0625rem; margin: 2rem 0 0.75rem; font-family: var(--font-sub); font-weight: 700; }
.legal-content p { font-size: 0.9375rem; line-height: 1.82; margin-bottom: 1rem; }
.legal-content ul, .legal-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content li { font-size: 0.9375rem; line-height: 1.82; color: var(--c-text-muted); margin-bottom: 0.375rem; }
.legal-date { font-family: var(--font-mono); font-size: 0.6875rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-text-muted); margin-bottom: 3rem; display: block; }

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-visual { position: relative; border-radius: var(--radius-lg); overflow: hidden; height: 580px; }
.about-visual img { width: 100%; height: 100%; object-fit: cover; }

.avb {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  padding: 1.25rem 1.5rem;
  background: rgba(246, 245, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
}

.avb-stat { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--c-primary); line-height: 1; }
.avb-lbl { font-family: var(--font-mono); font-size: 0.625rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-text-muted); margin-top: 0.25rem; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.val-card {
  padding: 2rem;
  background: var(--c-bg);
  border: 1px solid var(--c-border-alt);
  border-radius: var(--radius-md);
  transition: all 0.4s var(--ease);
}

.val-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--c-secondary); }
.val-num { font-family: var(--font-mono); font-size: 0.625rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-accent); margin-bottom: 1.25rem; }
.val-title { font-family: var(--font-sub); font-size: 1.0625rem; font-weight: 700; color: var(--c-text); margin-bottom: 0.75rem; }
.val-text { font-size: 0.9rem; line-height: 1.75; color: var(--c-text-muted); }

.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.p-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border-alt);
  transition: all 0.4s var(--ease);
}

.p-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }

.p-card-img { height: 260px; overflow: hidden; }
.p-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.p-card:hover .p-card-img img { transform: scale(1.07); }

.p-card-body { padding: 1.5rem; }
.p-card-tag { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-accent); margin-bottom: 0.5rem; }
.p-card-title { font-family: var(--font-sub); font-size: 1.0625rem; font-weight: 700; color: var(--c-text); margin-bottom: 0.5rem; }
.p-card-desc { font-size: 0.875rem; line-height: 1.72; color: var(--c-text-muted); }

.svc-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.svc-page-card {
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border-alt);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all 0.4s var(--ease);
}

.svc-page-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--c-secondary); }
.svc-page-num { font-family: var(--font-mono); font-size: 0.625rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-accent); margin-bottom: 1.25rem; }
.svc-page-title { font-family: var(--font-sub); font-size: 1.125rem; font-weight: 700; color: var(--c-text); margin-bottom: 0.75rem; }
.svc-page-desc { font-size: 0.9rem; line-height: 1.75; color: var(--c-text-muted); margin-bottom: 1.25rem; }

.svc-page-features { list-style: none; display: flex; flex-direction: column; gap: 0.375rem; }
.svc-page-features li { font-family: var(--font-ui); font-size: 0.8125rem; color: var(--c-text-muted); padding-left: 1rem; position: relative; }
.svc-page-features li::before { content: '·'; position: absolute; left: 0; color: var(--c-accent); }

.contact-page-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 5rem; align-items: start; }

.contact-form-box {
  background: var(--c-bg-alt);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--c-border-alt);
}

.map-container { height: 400px; overflow: hidden; border-radius: var(--radius-md); border: 1px solid var(--c-border-alt); }
.map-container iframe { width: 100%; height: 100%; border: none; display: block; }

.thanks-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-bg);
  position: relative;
  overflow: hidden;
}

.thanks-wrap::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,111,99,0.1), transparent 70%);
  pointer-events: none;
}

.thanks-wrap::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,141,77,0.08), transparent 70%);
  pointer-events: none;
}

.thanks-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  padding: 2rem;
}

.thanks-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(74, 111, 99, 0.1);
  border: 1.5px solid rgba(74, 111, 99, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.thanks-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--c-primary);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thanks-inner h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1.25rem; }
.thanks-inner p { font-size: 1.0625rem; line-height: 1.75; margin-bottom: 2.5rem; }

@media (max-width: 1200px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: 1 / 3; }
}

@media (max-width: 1024px) {
  .vp-grid, .insight-grid, .tl-grid, .contact-grid, .contact-page-grid, .about-intro-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .sig-grid { grid-template-columns: 1fr; }
  .sig-visual { height: 420px; }
  .showcase-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .showcase-item:nth-child(1) { grid-column: 1 / 3; grid-row: auto; height: 360px; }
  .showcase-item:nth-child(2) { grid-column: auto; grid-row: auto; height: 280px; }
  .testimonials { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-card-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .insight-sticky, .tl-left { position: relative; top: auto; }
  .about-visual { height: 380px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .section { padding: 4.5rem 0; }
  .section--lg { padding: 5.5rem 0; }
  .container { padding: 0 1.25rem; }
  .hero-title { font-size: clamp(2.25rem, 9vw, 3.5rem); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-item:nth-child(1) { grid-column: 1; height: 280px; }
  .showcase-item:nth-child(2) { grid-column: 1; height: 240px; }
  .testimonials { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .svc-card-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .f-legal { gap: 1rem; }
  .svc-table thead { display: none; }
  .svc-table tbody tr { display: flex; flex-direction: column; padding: 1.5rem 0; gap: 0.375rem; }
  .svc-table td { display: block; padding: 0; }
  .svc-table td:last-child { text-align: left; margin-top: 0.375rem; }
  .showcase-top { flex-direction: column; align-items: flex-start; }
  .partners { gap: 1.5rem; }
  .cta-actions { flex-direction: column; align-items: center; }
  .contact-form-box { padding: 1.75rem; }
  .form-row { grid-template-columns: 1fr; }
  .sig-stats { gap: 1.75rem; }
  .hero-scroll-hint { display: none; }
}

@media (max-width: 480px) {
  .btn { width: 100%; justify-content: center; }
  .cta-inner { padding: 5rem 0; }
  .cta-actions .btn { width: auto; }
}

html, body { overflow-x: hidden !important; max-width: 100vw; }
