.container {
  width: 100%;
  max-width: var(--cnt);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.container--narrow {
  max-width: var(--cnt-n);
}

.container--text {
  max-width: var(--cnt-t);
}

.section {
  padding-top: clamp(64px, 9vw, 128px);
  padding-bottom: clamp(64px, 9vw, 128px);
  overflow-x: hidden;
  max-width: 100%;
}

.section--dark {
  background-color: var(--clr-bg-dark);
  color: var(--clr-white);
}

.section--alt {
  background: var(--grad-bg);
}

.label {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--clr-accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--sp-3);
}

.label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background-color: var(--clr-accent);
  flex-shrink: 0;
}

.h-display {
  font-family: var(--ff-hero);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: var(--ls-tight);
}

.h-1 {
  font-family: var(--ff-hero);
  font-size: clamp(36px, 5.5vw, 76px);
  font-weight: 600;
  line-height: 1.10;
  letter-spacing: var(--ls-tight);
}

.h-2 {
  font-family: var(--ff-head);
  font-size: clamp(26px, 3.6vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: var(--ls);
}

.h-3 {
  font-family: var(--ff-head);
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: var(--ls);
}

.body-lg {
  font-family: var(--ff-body);
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.7;
  color: var(--clr-text-muted);
}

.body-sm {
  font-family: var(--ff-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--clr-text-muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-ui);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--r-sm);
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease);
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--grad-btn);
  color: var(--clr-white);
  box-shadow: 0 4px 20px rgba(188, 154, 91, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 8px 32px rgba(188, 154, 91, 0.40);
}

.btn-outline {
  background: transparent;
  color: var(--clr-primary);
  border: 1.5px solid var(--clr-primary);
}

.btn-outline:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
}

.btn-ghost {
  background: transparent;
  color: var(--clr-white);
  border: 1.5px solid rgba(255, 255, 255, 0.38);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  justify-content: center;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), padding var(--dur) var(--ease);
  padding: 28px 0;
  overflow: visible;
  max-width: 100vw;
}

.site-header.scrolled {
  background-color: rgba(243, 246, 242, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--clr-border), var(--sh-sm);
  padding: 16px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}

.logo {
  font-family: var(--ff-hero);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--clr-white);
  transition: color var(--dur-fast) var(--ease);
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}

.logo span {
  color: var(--clr-accent);
}

.site-header.scrolled .logo {
  color: var(--clr-text);
}

.logo-link {
  display: block;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
}

.nav-desktop a {
  font-family: var(--ff-ui);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--dur-fast) var(--ease);
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--clr-accent);
  transition: width var(--dur) var(--ease);
}

.nav-desktop a:hover {
  color: var(--clr-white);
}

.nav-desktop a:hover::after {
  width: 100%;
}

.site-header.scrolled .nav-desktop a {
  color: var(--clr-text-muted);
}

.site-header.scrolled .nav-desktop a:hover {
  color: var(--clr-text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 6px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 8px;
  flex-shrink: 0;
}

.burger-line {
  display: block;
  width: 24px;
  height: 1.5px;
  background-color: var(--clr-white);
  transition: transform var(--dur) var(--ease), opacity var(--dur-fast) var(--ease), width var(--dur) var(--ease);
  transform-origin: center;
}

.site-header.scrolled .burger-line {
  background-color: var(--clr-text);
}

.burger.active .burger-line:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.burger.active .burger-line:nth-child(2) {
  opacity: 0;
  width: 0;
}

.burger.active .burger-line:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background-color: rgba(38, 47, 44, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--sp-3);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-slow) var(--ease);
  overflow: hidden;
  max-width: 100vw;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--ff-hero);
  font-size: clamp(28px, 6vw, 52px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: -0.01em;
  transition: color var(--dur-fast) var(--ease), transform var(--dur) var(--ease);
  text-align: center;
}

.mobile-nav a:hover {
  color: var(--clr-accent);
  transform: translateX(8px);
}

.mobile-nav-footer {
  position: absolute;
  bottom: var(--sp-6);
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: var(--sp-4);
}

.mobile-nav-footer a {
  font-family: var(--ff-ui);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.40);
}

.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  max-height: 1080px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  max-width: 100%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-parallax {
  position: absolute;
  inset: -10% 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: clamp(48px, 7vw, 96px);
}

.hero-eyebrow {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--clr-secondary);
  margin-bottom: var(--sp-3);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--clr-secondary);
}

.hero-title {
  font-family: var(--ff-hero);
  font-size: clamp(48px, 7.5vw, 104px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--clr-white);
  margin-bottom: var(--sp-4);
  max-width: 900px;
}

.hero-title em {
  font-style: italic;
  color: var(--clr-secondary);
}

.hero-sub {
  font-family: var(--ff-body);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
  margin-bottom: var(--sp-6);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: var(--sp-5);
  right: var(--gutter);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 0.9; transform: scaleY(1.2); }
}

.hero-scroll-label {
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  writing-mode: vertical-rl;
}

.value-prop {
  background: var(--clr-bg);
}

.value-prop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}

.value-prop-left .h-2 {
  margin-bottom: var(--sp-5);
}

.value-prop-editorial {
  padding-top: var(--sp-6);
}

.value-prop-statement {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-5) 0;
  border-top: 1px solid var(--clr-border);
}

.value-prop-statement:last-child {
  border-bottom: 1px solid var(--clr-border);
}

.vp-num {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 400;
  color: var(--clr-accent);
  letter-spacing: 0.1em;
  padding-top: 4px;
  flex-shrink: 0;
  min-width: 24px;
}

.vp-content h4 {
  font-family: var(--ff-head);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: var(--ls);
  margin-bottom: 8px;
  color: var(--clr-text);
}

.vp-content p {
  font-family: var(--ff-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--clr-text-muted);
}

.value-prop-pullquote {
  font-family: var(--ff-hero);
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.35;
  color: var(--clr-primary);
  letter-spacing: -0.01em;
  padding-left: var(--sp-4);
  border-left: 2px solid var(--clr-accent);
  margin-bottom: var(--sp-5);
}

.js-marquee-wrap {
  overflow: hidden;
  max-width: 100vw;
  background: var(--clr-bg-alt);
  padding: 24px 0;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.js-mq-row {
  display: flex;
  white-space: nowrap;
  width: max-content;
  align-items: center;
}

.js-mq-row.fwd {
  animation: mq-fwd 60s linear infinite;
  margin-bottom: 8px;
}

.js-mq-row.rev {
  animation: mq-rev 60s linear infinite;
}

@keyframes mq-fwd {
  from { transform: translateX(0); }
  to { transform: translateX(-33.333%); }
}

@keyframes mq-rev {
  from { transform: translateX(-33.333%); }
  to { transform: translateX(0); }
}

.js-mq-row span {
  font-family: var(--ff-hero);
  font-size: clamp(20px, 3vw, 38px);
  text-transform: uppercase;
  opacity: 0.11;
  padding: 0 clamp(20px, 3vw, 40px);
  color: var(--clr-primary);
  letter-spacing: 0.06em;
  font-weight: 300;
  font-style: italic;
}

.js-mq-row span.accent {
  color: var(--clr-accent);
  opacity: 0.18;
  font-style: normal;
  font-weight: 500;
}

.sig-moment {
  position: relative;
  height: clamp(500px, 70vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
  max-width: 100%;
}

.sig-moment-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.1s linear;
}

.sig-moment-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(38,47,44,0.78) 0%, rgba(38,47,44,0.30) 60%, transparent 100%);
  z-index: 1;
}

.sig-moment-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.sig-moment-content .h-1 {
  color: var(--clr-white);
  margin-bottom: var(--sp-4);
}

.sig-moment-content .body-lg {
  color: rgba(255,255,255,0.72);
  margin-bottom: var(--sp-5);
}

.sig-moment-stat {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: var(--sp-6);
  padding-top: var(--sp-4);
  border-top: 1px solid rgba(255,255,255,0.18);
}

.sig-stat-num {
  font-family: var(--ff-hero);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  color: var(--clr-accent);
  line-height: 1;
  letter-spacing: -0.03em;
}

.sig-stat-label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.portfolio-showcase {
  background: var(--clr-bg);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.portfolio-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--clr-bg-dark);
  cursor: pointer;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-xl);
}

.portfolio-card--featured {
  grid-row: span 2;
  min-height: 560px;
}

.portfolio-card--sm {
  min-height: 260px;
}

.portfolio-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  inset: 0;
  transition: transform var(--dur-slow) var(--ease);
}

.portfolio-card:hover .portfolio-card-img {
  transform: scale(1.04);
}

.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(38,47,44,0.85) 0%, rgba(38,47,44,0.20) 55%, transparent 100%);
  z-index: 1;
  transition: background var(--dur) var(--ease);
}

.portfolio-card:hover .portfolio-card-overlay {
  background: linear-gradient(to top, rgba(38,47,44,0.90) 0%, rgba(38,47,44,0.30) 60%, transparent 100%);
}

.portfolio-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: var(--sp-4) var(--sp-5);
}

.portfolio-card-tag {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 8px;
}

.portfolio-card-title {
  font-family: var(--ff-hero);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 500;
  color: var(--clr-white);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 6px;
}

.portfolio-card-desc {
  font-family: var(--ff-body);
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.portfolio-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-top: var(--sp-2);
  transition: gap var(--dur-fast) var(--ease);
}

.portfolio-card-link:hover {
  gap: 14px;
}

.portfolio-card-3rd {
  grid-column: 2 / 3;
  background: var(--grad-nature);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--sp-5);
  min-height: 260px;
}

.portfolio-card-3rd .portfolio-card-tag {
  color: var(--clr-secondary);
}

.portfolio-card-3rd .portfolio-card-title {
  font-size: clamp(18px, 2vw, 24px);
}

.portfolio-view-all {
  margin-top: var(--sp-6);
  text-align: center;
}

.insight-block {
  background: var(--clr-bg-dark);
  color: var(--clr-white);
  position: relative;
  overflow: hidden;
}

.insight-block::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(63,106,90,0.22) 0%, transparent 70%);
  pointer-events: none;
}

.insight-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}

.insight-left {
  position: sticky;
  top: 120px;
}

.insight-left .label {
  color: var(--clr-secondary);
}

.insight-left .label::before {
  background: var(--clr-secondary);
}

.insight-left .h-2 {
  color: var(--clr-white);
  margin-bottom: var(--sp-4);
}

.insight-left .body-lg {
  color: rgba(255,255,255,0.62);
}

.insight-kw {
  margin-top: var(--sp-6);
  padding: var(--sp-4);
  border: 1px solid rgba(188,154,91,0.28);
  border-radius: var(--r-md);
  background: rgba(188,154,91,0.06);
}

.insight-kw p {
  font-family: var(--ff-hero);
  font-size: 17px;
  font-style: italic;
  color: var(--clr-accent);
  line-height: 1.5;
}

.insight-right {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.insight-para {
  font-family: var(--ff-body);
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.75;
  color: rgba(255,255,255,0.68);
}

.insight-para strong {
  color: var(--clr-white);
  font-weight: 500;
}

.insight-divider {
  width: 48px;
  height: 1px;
  background: rgba(188,154,91,0.40);
  margin: var(--sp-2) 0;
}

.insight-highlight {
  font-family: var(--ff-hero);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 400;
  font-style: italic;
  color: var(--clr-secondary);
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.services-section {
  background: var(--clr-bg);
}

.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  margin-bottom: var(--sp-8);
  align-items: end;
}

.services-intro .h-2 {
  margin-bottom: var(--sp-3);
}

.services-table {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
}

.service-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 0;
  border-bottom: 1px solid var(--clr-border);
  transition: background-color var(--dur-fast) var(--ease);
}

.service-row:last-child {
  border-bottom: none;
}

.service-row:hover {
  background-color: rgba(63,106,90,0.04);
}

.service-row--header {
  background: var(--clr-primary);
  color: var(--clr-white);
}

.service-row--header:hover {
  background: var(--clr-primary);
}

.service-cell {
  padding: var(--sp-4) var(--sp-5);
  border-right: 1px solid var(--clr-border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-cell:last-child {
  border-right: none;
}

.service-row--header .service-cell {
  border-right-color: rgba(255,255,255,0.12);
}

.service-cell-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-text-light);
  margin-bottom: 4px;
}

.service-row--header .service-cell-label {
  color: rgba(255,255,255,0.55);
}

.service-name {
  font-family: var(--ff-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--clr-text);
  letter-spacing: var(--ls);
  margin-bottom: 4px;
}

.service-row--header .service-name {
  font-size: 12px;
  font-weight: 500;
  color: var(--clr-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-desc {
  font-size: 13px;
  color: var(--clr-text-muted);
  line-height: 1.5;
}

.service-duration {
  font-family: var(--ff-mono);
  font-size: 14px;
  font-weight: 400;
  color: var(--clr-primary);
}

.service-price {
  font-family: var(--ff-hero);
  font-size: 22px;
  font-weight: 500;
  color: var(--clr-accent);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.service-price small {
  font-family: var(--ff-body);
  font-size: 12px;
  color: var(--clr-text-light);
  font-weight: 400;
  display: block;
  letter-spacing: 0;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 100px;
  background: rgba(63,106,90,0.10);
  color: var(--clr-primary);
  width: fit-content;
}

.service-badge--accent {
  background: rgba(188,154,91,0.14);
  color: var(--clr-accent-2);
}

.timeline-section {
  background: var(--grad-bg);
  overflow: hidden;
}

.timeline-intro {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.timeline-intro .h-2 {
  margin-bottom: var(--sp-4);
}

.timeline-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.timeline-track::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(100% / 12);
  right: calc(100% / 12);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-border), var(--clr-border), transparent);
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 var(--sp-2);
  position: relative;
}

.timeline-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--clr-white);
  border: 2px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
  position: relative;
  z-index: 1;
  transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
  flex-shrink: 0;
}

.timeline-step:hover .timeline-dot {
  border-color: var(--clr-accent);
  background: var(--clr-accent);
}

.timeline-dot-num {
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--clr-accent);
  transition: color var(--dur-fast) var(--ease);
}

.timeline-step:hover .timeline-dot-num {
  color: var(--clr-white);
}

.timeline-step-title {
  font-family: var(--ff-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--clr-text);
  letter-spacing: var(--ls);
  margin-bottom: 8px;
  line-height: 1.3;
}

.timeline-step-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--clr-text-muted);
}

.social-proof {
  background: var(--clr-bg);
}

.social-proof-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.social-proof-header .h-2 {
  margin-bottom: var(--sp-3);
}

.stats-row {
  display: flex;
  gap: var(--sp-6);
  justify-content: flex-end;
}

.stat-item {
  text-align: right;
}

.stat-num {
  font-family: var(--ff-hero);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 300;
  color: var(--clr-primary);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
  display: block;
}

.stat-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--clr-text-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-bottom: clamp(40px, 5vw, 64px);
}

.testimonial-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  box-shadow: var(--sh-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 4px;
}

.testimonial-stars span {
  color: var(--clr-accent);
  font-size: 14px;
}

.testimonial-text {
  font-family: var(--ff-hero);
  font-size: 17px;
  font-style: italic;
  line-height: 1.55;
  color: var(--clr-text);
  flex: 1;
  letter-spacing: -0.01em;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--clr-border);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad-nature);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--clr-white);
  flex-shrink: 0;
}

.testimonial-name {
  font-family: var(--ff-ui);
  font-size: 14px;
  font-weight: 600;
  color: var(--clr-text);
}

.testimonial-loc {
  font-size: 12px;
  color: var(--clr-text-muted);
}

.trust-strip {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  flex-wrap: wrap;
  padding: var(--sp-5) var(--sp-6);
  background: var(--clr-bg-alt);
  border-radius: var(--r-xl);
  border: 1px solid var(--clr-border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 200px;
}

.trust-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  background: var(--clr-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--clr-white);
  fill: none;
}

.trust-text strong {
  font-family: var(--ff-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-text);
  display: block;
}

.trust-text span {
  font-size: 12px;
  color: var(--clr-text-muted);
}

.cta-block {
  position: relative;
  background: var(--grad-nature);
  overflow: hidden;
  max-width: 100%;
}

.cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.cta-tag {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-accent);
  background: rgba(188,154,91,0.15);
  border: 1px solid rgba(188,154,91,0.30);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: var(--sp-5);
}

.cta-title {
  font-family: var(--ff-hero);
  font-size: clamp(36px, 5vw, 66px);
  font-weight: 600;
  color: var(--clr-white);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: var(--sp-4);
}

.cta-sub {
  font-family: var(--ff-body);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7;
  color: rgba(255,255,255,0.70);
  margin-bottom: var(--sp-6);
}

.cta-note {
  font-family: var(--ff-hero);
  font-size: clamp(16px, 1.6vw, 20px);
  font-style: italic;
  color: var(--clr-secondary);
  margin-top: var(--sp-4);
}

.contact-section {
  background: var(--clr-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}

.contact-info .h-2 {
  margin-bottom: var(--sp-5);
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: rgba(63,106,90,0.08);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--clr-primary);
  fill: none;
}

.contact-item-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-text-light);
  margin-bottom: 3px;
}

.contact-item-value {
  font-family: var(--ff-ui);
  font-size: 15px;
  font-weight: 500;
  color: var(--clr-text);
}

.contact-form {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  padding: clamp(32px, 4vw, 52px);
  box-shadow: var(--sh-md);
}

.form-group {
  margin-bottom: var(--sp-4);
}

.form-label {
  display: block;
  font-family: var(--ff-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--clr-bg);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--r-md);
  font-size: 15px;
  color: var(--clr-text);
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
  outline: none;
  appearance: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(63,106,90,0.12);
  background: var(--clr-white);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--clr-text-light);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-submit {
  width: 100%;
}

.site-footer {
  background: var(--clr-text);
  color: var(--clr-white);
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(32px, 4vw, 48px);
  overflow: hidden;
  max-width: 100%;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  padding-bottom: var(--sp-8);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: var(--sp-6);
}

.footer-brand .logo {
  color: var(--clr-white);
  font-size: 22px;
  margin-bottom: var(--sp-3);
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.45);
  max-width: 280px;
  margin-bottom: var(--sp-5);
}

.footer-socials {
  display: flex;
  gap: var(--sp-2);
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--dur-fast) var(--ease), background-color var(--dur-fast) var(--ease);
}

.footer-social-link:hover {
  border-color: var(--clr-accent);
  background: rgba(188,154,91,0.12);
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
  stroke: rgba(255,255,255,0.60);
  fill: none;
}

.footer-col-title {
  font-family: var(--ff-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: var(--sp-4);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.60);
  transition: color var(--dur-fast) var(--ease);
}

.footer-col a:hover {
  color: var(--clr-accent);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.30);
}

.footer-legal {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.30);
  transition: color var(--dur-fast) var(--ease);
}

.footer-legal a:hover {
  color: rgba(255,255,255,0.60);
}

.page-hero {
  position: relative;
  padding-top: clamp(140px, 14vw, 200px);
  padding-bottom: clamp(64px, 8vw, 100px);
  overflow: hidden;
  max-width: 100%;
}

.page-hero--with-bg {
  min-height: 480px;
  display: flex;
  align-items: flex-end;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero--plain {
  background: var(--clr-bg-alt);
}

.page-hero--plain .h-1,
.page-hero--plain .label {
  color: var(--clr-text);
}

.page-hero--plain .body-lg {
  color: var(--clr-text-muted);
}

.page-hero--with-bg .h-1 {
  color: var(--clr-white);
}

.page-hero--with-bg .body-lg {
  color: rgba(255,255,255,0.72);
}

.page-hero--with-bg .label {
  color: var(--clr-secondary);
}

.page-hero--with-bg .label::before {
  background: var(--clr-secondary);
}

.about-story {
  background: var(--clr-bg);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}

.about-story-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  aspect-ratio: 4/5;
}

.about-story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}

.about-story-img:hover img {
  transform: scale(1.04);
}

.about-values {
  background: var(--grad-bg);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-top: clamp(40px, 5vw, 64px);
}

.about-value-card {
  padding: var(--sp-5) var(--sp-5);
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.about-value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
}

.about-value-num {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--clr-accent);
  letter-spacing: 0.12em;
  margin-bottom: var(--sp-3);
}

.about-value-title {
  font-family: var(--ff-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--clr-text);
  letter-spacing: var(--ls);
  margin-bottom: var(--sp-2);
}

.about-value-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--clr-text-muted);
}

.about-credentials {
  background: var(--clr-bg-dark);
  color: var(--clr-white);
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}

.credential-item {
  padding: var(--sp-5);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-xl);
  background: rgba(255,255,255,0.04);
  transition: background var(--dur-fast) var(--ease);
}

.credential-item:hover {
  background: rgba(255,255,255,0.08);
}

.credential-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--clr-accent);
  background: rgba(188,154,91,0.12);
  border: 1px solid rgba(188,154,91,0.25);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: var(--sp-3);
}

.credential-title {
  font-family: var(--ff-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--clr-white);
  margin-bottom: var(--sp-2);
}

.credential-desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
}

.services-hero-section {
  background: var(--clr-bg);
}

.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}

.service-detail-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  box-shadow: var(--sh-sm);
}

.service-detail-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-xl);
}

.service-card-head {
  padding: var(--sp-5);
  background: var(--grad-bg);
  border-bottom: 1px solid var(--clr-border);
}

.service-card-body {
  padding: var(--sp-5);
}

.service-card-includes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: var(--sp-4) 0;
}

.service-card-include-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--clr-text-muted);
}

.service-card-include-item::before {
  content: '—';
  color: var(--clr-accent);
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

.faq-section {
  background: var(--clr-bg-alt);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  max-width: var(--cnt-n);
  margin: var(--sp-7) auto 0;
  box-shadow: var(--sh-sm);
}

.faq-item {
  border-bottom: 1px solid var(--clr-border);
  background: var(--clr-white);
  transition: background var(--dur-fast) var(--ease);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item.open {
  background: var(--clr-bg);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-4) var(--sp-5);
  gap: var(--sp-4);
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-family: var(--ff-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--clr-text);
  letter-spacing: var(--ls);
  background: none;
  border: none;
  transition: color var(--dur-fast) var(--ease);
}

.faq-question:hover {
  color: var(--clr-primary);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), transform var(--dur) var(--ease);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--clr-primary);
  fill: none;
  transition: transform var(--dur) var(--ease);
}

.faq-item.open .faq-icon {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
}

.faq-item.open .faq-icon svg {
  stroke: var(--clr-white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease);
}

.faq-answer-inner {
  padding: 0 var(--sp-5) var(--sp-5);
  font-size: 15px;
  line-height: 1.7;
  color: var(--clr-text-muted);
}

.portfolio-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}

.portfolio-page-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.portfolio-page-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-xl);
}

.portfolio-page-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}

.portfolio-page-card:hover .portfolio-page-img {
  transform: scale(1.06);
}

.portfolio-page-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(38,47,44,0.88) 0%, rgba(38,47,44,0.15) 55%, transparent 100%);
  z-index: 1;
}

.portfolio-page-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: var(--sp-4);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(48px, 6vw, 80px);
}

.map-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  margin-top: var(--sp-5);
}

.map-wrap iframe {
  display: block;
  width: 100%;
}

.legal-page {
  background: var(--clr-bg);
  padding-top: clamp(120px, 12vw, 180px);
  padding-bottom: clamp(64px, 8vw, 120px);
}

.legal-content {
  max-width: var(--cnt-n);
  margin: 0 auto;
}

.legal-content h1 {
  font-family: var(--ff-hero);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: var(--sp-2);
  letter-spacing: var(--ls-tight);
}

.legal-content .legal-date {
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--clr-text-light);
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-7);
  padding-bottom: var(--sp-5);
  border-bottom: 1px solid var(--clr-border);
}

.legal-content h2 {
  font-family: var(--ff-head);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  color: var(--clr-text);
  margin-top: var(--sp-7);
  margin-bottom: var(--sp-3);
  letter-spacing: var(--ls);
}

.legal-content h3 {
  font-family: var(--ff-head);
  font-size: 17px;
  font-weight: 600;
  color: var(--clr-text);
  margin-top: var(--sp-5);
  margin-bottom: var(--sp-2);
}

.legal-content p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-3);
}

.legal-content ul, .legal-content ol {
  margin-bottom: var(--sp-3);
  padding-left: var(--sp-4);
}

.legal-content ul li, .legal-content ol li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--clr-text-muted);
  margin-bottom: 8px;
  list-style: disc;
}

.legal-content ol li {
  list-style: decimal;
}

.legal-content a {
  color: var(--clr-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.thanks-page {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-bg);
  position: relative;
  overflow: hidden;
}

.thanks-bg-accent {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63,106,90,0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.thanks-content {
  text-align: center;
  max-width: 560px;
  padding: var(--sp-6);
  position: relative;
  z-index: 1;
}

.thanks-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--grad-nature);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-5);
  box-shadow: 0 8px 40px rgba(63,106,90,0.28);
}

.thanks-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--clr-white);
  fill: none;
}

.thanks-title {
  font-family: var(--ff-hero);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 600;
  color: var(--clr-text);
  letter-spacing: var(--ls-tight);
  margin-bottom: var(--sp-4);
  line-height: 1.1;
}

.thanks-sub {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.7;
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-6);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}

[data-reveal="left"] {
  transform: translateX(-28px) translateY(0);
}

[data-reveal="right"] {
  transform: translateX(28px) translateY(0);
}

[data-reveal="scale"] {
  transform: scale(0.95);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-6);
  }

  .service-row {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .service-row .service-cell:last-child {
    display: none;
  }

  .timeline-track {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-4);
  }

  .timeline-track::before {
    display: none;
  }

  .insight-grid {
    grid-template-columns: 1fr;
  }

  .insight-left {
    position: static;
  }
}

@media (max-width: 900px) {
  .burger {
    display: flex;
  }

  .nav-desktop {
    display: none;
  }

  .header-actions .btn {
    display: none;
  }

  .value-prop-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .portfolio-card--featured {
    grid-row: auto;
    min-height: 400px;
  }

  .portfolio-card-3rd {
    grid-column: auto;
  }

  .social-proof-header {
    grid-template-columns: 1fr;
  }

  .stats-row {
    justify-content: flex-start;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-story-grid {
    grid-template-columns: 1fr;
  }

  .about-values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .credentials-grid {
    grid-template-columns: 1fr;
  }

  .services-intro {
    grid-template-columns: 1fr;
  }

  .service-row {
    grid-template-columns: 1fr;
    border-bottom: 1px solid var(--clr-border);
  }

  .service-row--header {
    display: none;
  }

  .service-cell {
    border-right: none;
    border-bottom: 1px solid var(--clr-border);
    padding: var(--sp-3) var(--sp-4);
  }

  .service-cell:last-child {
    border-bottom: none;
  }

  .services-detail-grid {
    grid-template-columns: 1fr 1fr;
  }

  .portfolio-page-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    gap: var(--sp-3);
  }

  .trust-item {
    min-width: 160px;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: clamp(36px, 10vw, 52px);
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .sig-moment {
    height: clamp(400px, 80vw, 600px);
  }

  .sig-moment-overlay {
    background: rgba(38,47,44,0.65);
  }

  .timeline-track {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-5);
  }

  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .services-detail-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-page-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-3);
  }

  .footer-legal {
    gap: var(--sp-3);
  }

  .stats-row {
    gap: var(--sp-4);
  }

  .trust-strip {
    flex-direction: column;
  }

  .cta-title {
    font-size: clamp(30px, 8vw, 48px);
  }
}

html, body {
  overflow-x: hidden !important;
  max-width: 100vw;
}

section, header, footer {
  overflow-x: hidden;
  max-width: 100%;
  box-sizing: border-box;
}
