.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  width: 100%;
}

.container--narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  width: 100%;
}

section {
  overflow-x: hidden;
  max-width: 100%;
  box-sizing: border-box;
}

header, footer {
  overflow-x: hidden;
  max-width: 100%;
  box-sizing: border-box;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--t-slow), padding var(--t-slow), box-shadow var(--t-slow);
  background: transparent;
}

.site-header.scrolled {
  background: rgba(243, 246, 241, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px var(--pad-x);
  box-shadow: var(--sh-soft);
}

.site-header--dark {
  background: transparent;
}

.site-header--dark.scrolled {
  background: rgba(243, 246, 241, 0.96);
}

.header-logo {
  font-family: var(--f-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--c-white);
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--t-base);
}

.site-header.scrolled .header-logo {
  color: var(--c-primary);
}

.header-logo .logo-mark {
  width: 32px;
  height: 32px;
  background: var(--g-btn);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: var(--c-white);
  flex-shrink: 0;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.header-nav a {
  font-family: var(--f-head);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.01em;
  position: relative;
  transition: var(--t-base);
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--c-accent);
  transition: width var(--t-base);
}

.header-nav a:hover {
  color: var(--c-white);
}

.header-nav a:hover::after {
  width: 100%;
}

.site-header.scrolled .header-nav a {
  color: var(--c-text-muted);
}

.site-header.scrolled .header-nav a:hover {
  color: var(--c-primary);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--r-full);
  font-family: var(--f-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all var(--t-base);
  cursor: pointer;
  text-decoration: none;
  border: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--g-btn);
  color: var(--c-white);
  box-shadow: 0 4px 20px rgba(185, 152, 91, 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(185, 152, 91, 0.45);
}

.btn--outline {
  background: transparent;
  color: var(--c-white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.85);
}

.btn--outline-dark {
  background: transparent;
  color: var(--c-primary);
  border: 1.5px solid var(--c-border-hover);
}

.btn--outline-dark:hover {
  background: var(--c-primary);
  color: var(--c-white);
  border-color: var(--c-primary);
}

.btn--dark {
  background: var(--c-primary);
  color: var(--c-white);
  box-shadow: var(--sh-card);
}

.btn--dark:hover {
  background: var(--c-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--sh-hover);
}

.btn--lg {
  padding: 16px 40px;
  font-size: 16px;
}

.btn--sm {
  padding: 9px 20px;
  font-size: 13px;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 5px;
  cursor: pointer;
  background: rgba(255,255,255,0.1);
  border-radius: var(--r-sm);
  border: 1.5px solid rgba(255,255,255,0.25);
  transition: var(--t-base);
}

.site-header.scrolled .burger {
  background: rgba(53,88,76,0.08);
  border-color: var(--c-border);
}

.burger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--c-white);
  border-radius: 2px;
  transition: var(--t-base);
}

.site-header.scrolled .burger span {
  background: var(--c-text);
}

.burger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 34, 32, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity var(--t-slow), transform var(--t-slow);
  pointer-events: none;
}

.mobile-nav.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--f-head);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  color: var(--c-white);
  letter-spacing: -0.02em;
  transition: var(--t-base);
}

.mobile-nav a:hover {
  color: var(--c-accent);
}

.mobile-nav .btn {
  margin-top: 16px;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 34, 32, 0.88) 0%, rgba(26, 34, 32, 0.45) 50%, rgba(26, 34, 32, 0.15) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--pad-x) clamp(60px, 9vw, 120px);
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.hero__eyebrow .label {
  color: var(--c-accent-light);
}

.hero__eyebrow .line {
  width: 40px;
  height: 1px;
  background: var(--c-accent);
  display: block;
}

.hero__title {
  color: var(--c-white);
  font-size: clamp(48px, 7.5vw, 104px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  max-width: 900px;
  margin-bottom: 28px;
}

.hero__title em {
  font-style: italic;
  font-family: var(--f-accent);
  font-weight: 500;
  color: var(--c-accent-light);
}

.hero__desc {
  font-size: clamp(16px, 1.4vw, 19px);
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 44px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: clamp(30px, 4vw, 50px);
  right: var(--pad-x);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero__scroll span {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  writing-mode: vertical-rl;
}

.hero__scroll .scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.section-tag .label {
  color: var(--c-accent);
}

.section-tag .line {
  width: 32px;
  height: 1px;
  background: var(--c-accent);
}

.value-prop {
  padding: var(--section-y) var(--pad-x);
  background: var(--c-bg);
}

.value-prop__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.value-prop__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: clamp(56px, 7vw, 96px);
}

.value-prop__headline {
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.value-prop__headline mark {
  background: none;
  color: var(--c-accent);
}

.value-prop__intro {
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.7;
  color: var(--c-text-muted);
  padding-top: 12px;
}

.value-prop__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.pillar {
  padding: 48px 40px;
  background: var(--c-white);
  border-radius: 0;
  transition: background var(--t-base);
}

.pillar:first-child {
  border-radius: var(--r-lg) 0 0 var(--r-lg);
}

.pillar:last-child {
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
}

.pillar:hover {
  background: var(--c-primary);
}

.pillar:hover .pillar__num,
.pillar:hover .pillar__title,
.pillar:hover .pillar__text {
  color: var(--c-white);
}

.pillar:hover .pillar__rule {
  background: rgba(255,255,255,0.3);
}

.pillar__num {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 32px;
  transition: var(--t-base);
}

.pillar__rule {
  width: 40px;
  height: 1px;
  background: var(--c-border);
  margin-bottom: 24px;
  transition: var(--t-base);
}

.pillar__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  transition: var(--t-base);
}

.pillar__text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--c-text-muted);
  transition: var(--t-base);
}

.signature {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.signature__bg {
  position: absolute;
  inset: 0;
}

.signature__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.signature__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(26, 34, 32, 0.85) 40%, rgba(53, 88, 76, 0.50) 100%);
}

.signature__content {
  position: relative;
  z-index: 2;
  padding: var(--section-y) var(--pad-x);
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.signature__quote {
  font-family: var(--f-accent);
  font-size: clamp(26px, 3.5vw, 50px);
  font-style: italic;
  color: var(--c-white);
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: 0;
}

.signature__quote em {
  color: var(--c-accent-light);
}

.signature__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.stat-item__value {
  font-family: var(--f-head);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  color: var(--c-white);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item__value span {
  color: var(--c-accent);
}

.stat-item__label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.showcase {
  padding: var(--section-y) var(--pad-x);
  background: var(--c-bg2);
}

.showcase__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.showcase__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(40px, 5vw, 64px);
  gap: 32px;
}

.showcase__title {
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -0.03em;
  max-width: 480px;
}

.showcase__link {
  font-family: var(--f-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--c-primary);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  position: relative;
}

.showcase__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--c-primary);
  transition: width var(--t-base);
}

.showcase__link:hover::after {
  width: 100%;
}

.showcase__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.dest-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-hover);
}

.dest-card--featured {
  grid-row: span 2;
  min-height: 540px;
}

.dest-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 240px;
  transition: transform var(--t-slower);
}

.dest-card--featured .dest-card__img {
  min-height: 100%;
}

.dest-card:hover .dest-card__img {
  transform: scale(1.04);
}

.dest-card__overlay {
  position: absolute;
  inset: 0;
  background: var(--g-text-fade);
}

.dest-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
}

.dest-card__region {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-accent-light);
  margin-bottom: 8px;
  display: block;
}

.dest-card__name {
  font-family: var(--f-head);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
  color: var(--c-white);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.dest-card__desc {
  font-size: 13px;
  color: rgba(255,255,255,0.70);
  line-height: 1.5;
}

.marquee-section {
  padding: 0;
  background: var(--c-primary);
  overflow: hidden;
  max-width: 100vw;
}

.js-marquee-wrap {
  padding: clamp(24px, 3vw, 40px) 0;
  overflow: hidden;
  max-width: 100vw;
}

.js-mq-row {
  display: flex;
  white-space: nowrap;
  gap: 0;
  overflow: hidden;
}

.js-mq-row.fwd {
  margin-bottom: 12px;
  animation: marqueeLeft 40s linear infinite;
}

.js-mq-row.rev {
  animation: marqueeRight 38s linear infinite;
}

.js-mq-row span {
  font-family: var(--f-head);
  font-size: clamp(20px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--c-white);
  opacity: 0.12;
  padding: 0 32px;
  white-space: nowrap;
}

@keyframes marqueeLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marqueeRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.insight {
  padding: var(--section-y) var(--pad-x);
  background: var(--g-bg);
}

.insight__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 96px;
  align-items: start;
}

.insight__sidebar {
  position: sticky;
  top: 100px;
}

.insight__category {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 24px;
}

.insight__main-title {
  font-size: clamp(28px, 3.5vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 32px;
}

.insight__summary {
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-text-muted);
  margin-bottom: 40px;
}

.insight__body p {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.75;
  color: var(--c-text-muted);
  margin-bottom: 24px;
}

.insight__body h3 {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 16px;
  margin-top: 40px;
  letter-spacing: -0.02em;
}

.insight__body blockquote {
  padding: 28px 36px;
  background: var(--c-white);
  border-left: 3px solid var(--c-accent);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  margin: 36px 0;
}

.insight__body blockquote p {
  font-family: var(--f-accent);
  font-size: clamp(18px, 2vw, 24px);
  font-style: italic;
  color: var(--c-text);
  margin-bottom: 0;
}

.services-section {
  padding: var(--section-y) var(--pad-x);
  background: var(--c-white);
}

.services-section__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.services-section__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--c-border);
  transition: all var(--t-base);
  cursor: pointer;
  position: relative;
}

.service-row:first-child {
  border-top: 1px solid var(--c-border);
}

.service-row::after {
  content: '';
  position: absolute;
  left: -var(--pad-x);
  right: -var(--pad-x);
  top: 0;
  bottom: 0;
  background: var(--c-primary);
  opacity: 0;
  transition: opacity var(--t-base);
  z-index: -1;
  border-radius: var(--r-md);
}

.service-row:hover .service-row__num,
.service-row:hover .service-row__title,
.service-row:hover .service-row__desc {
  color: var(--c-primary);
}

.service-row__num {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--c-text-light);
  transition: var(--t-base);
}

.service-row__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.service-row__title {
  font-family: var(--f-head);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: -0.02em;
  transition: var(--t-base);
}

.service-row__desc {
  font-size: 14px;
  color: var(--c-text-light);
  transition: var(--t-base);
}

.service-row__arrow {
  width: 44px;
  height: 44px;
  border-radius: var(--r-full);
  border: 1.5px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-muted);
  font-size: 18px;
  transition: all var(--t-base);
  flex-shrink: 0;
}

.service-row:hover .service-row__arrow {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: var(--c-white);
  transform: translateX(4px);
}

.timeline-section {
  padding: var(--section-y) var(--pad-x);
  background: var(--g-nature);
}

.timeline-section__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.timeline-section__header {
  text-align: center;
  margin-bottom: clamp(56px, 7vw, 96px);
}

.timeline-section__title {
  color: var(--c-white);
  margin-bottom: 20px;
}

.timeline-section__sub {
  color: rgba(255,255,255,0.65);
  font-size: clamp(15px, 1.2vw, 17px);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: rgba(255,255,255,0.15);
}

.timeline-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 40px;
  padding-bottom: 56px;
  position: relative;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item__dot {
  width: 56px;
  height: 56px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--c-accent-light);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: all var(--t-base);
}

.timeline-item.active .timeline-item__dot {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: var(--c-white);
  box-shadow: 0 0 0 6px rgba(185,152,91,0.2);
}

.timeline-item__body {
  padding-top: 14px;
}

.timeline-item__step {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 10px;
}

.timeline-item__title {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  color: var(--c-white);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.timeline-item__text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.60);
  max-width: 560px;
}

.social-proof {
  padding: var(--section-y) var(--pad-x);
  background: var(--c-bg2);
}

.social-proof__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.social-proof__header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.social-proof__title {
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.testimonial-card {
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  box-shadow: var(--sh-soft);
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-hover);
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
}

.testimonial-card__stars span {
  color: var(--c-accent);
  font-size: 16px;
}

.testimonial-card__quote {
  font-family: var(--f-accent);
  font-size: clamp(17px, 1.6vw, 21px);
  font-style: italic;
  color: var(--c-text);
  line-height: 1.55;
  margin-bottom: 28px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--c-border);
  padding-top: 24px;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--r-full);
  background: var(--g-nature);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--c-white);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-family: var(--f-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}

.testimonial-card__role {
  font-size: 13px;
  color: var(--c-text-light);
}

.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 40px 0 0;
  border-top: 1px solid var(--c-border);
}

.logo-item {
  font-family: var(--f-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text-light);
  opacity: 0.6;
  transition: opacity var(--t-base);
}

.logo-item:hover {
  opacity: 1;
}

.cta-section {
  padding: var(--section-y) var(--pad-x);
  background: var(--c-primary);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(185,152,91,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-section__tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 24px;
}

.cta-section__title {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 800;
  color: var(--c-white);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 24px;
}

.cta-section__text {
  font-size: clamp(15px, 1.2vw, 17px);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 40px;
}

.cta-section__text strong {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

.cta-section__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.cta-section__contact {
  margin-top: 24px;
}

.cta-section__contact a {
  font-family: var(--f-mono);
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: var(--t-base);
}

.cta-section__contact a:hover {
  color: var(--c-white);
}

.contact-section {
  padding: var(--section-y) var(--pad-x);
  background: var(--c-white);
}

.contact-section__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info__title {
  font-size: clamp(28px, 3.5vw, 48px);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.contact-info__text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-text-muted);
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--c-bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--c-primary);
}

.contact-detail__label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-light);
  margin-bottom: 4px;
}

.contact-detail__value {
  font-family: var(--f-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--c-text);
}

.contact-form {
  background: var(--c-bg);
  border-radius: var(--r-xl);
  padding: clamp(32px, 4vw, 56px);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-bottom: 10px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--c-text);
  background: var(--c-white);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
  appearance: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(53,88,76,0.10);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--c-text-light);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}

.form-privacy {
  font-size: 13px;
  color: var(--c-text-light);
  margin-bottom: 24px;
  line-height: 1.5;
}

.form-privacy a {
  color: var(--c-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  background: var(--c-dark);
  padding: clamp(60px, 8vw, 100px) var(--pad-x) 40px;
}

.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 40px;
}

.footer__brand .header-logo {
  color: var(--c-white);
  margin-bottom: 20px;
  display: inline-flex;
}

.footer__desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  max-width: 280px;
  margin-bottom: 28px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: rgba(255,255,255,0.50);
  transition: all var(--t-base);
}

.social-btn:hover {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: var(--c-white);
}

.footer__col-title {
  font-family: var(--f-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: var(--t-base);
}

.footer__links a:hover {
  color: var(--c-white);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__copy {
  font-family: var(--f-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.30);
  letter-spacing: 0.06em;
}

.footer__legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__legal a {
  font-family: var(--f-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.30);
  transition: var(--t-base);
}

.footer__legal a:hover {
  color: rgba(255,255,255,0.70);
}

.page-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: 80px;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,34,32,0.90) 0%, rgba(26,34,32,0.45) 60%, rgba(26,34,32,0.20) 100%);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(48px, 7vw, 96px) var(--pad-x);
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}

.page-hero__eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 20px;
  display: block;
}

.page-hero__title {
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 800;
  color: var(--c-white);
  letter-spacing: -0.03em;
  line-height: 1.0;
  max-width: 760px;
  margin-bottom: 24px;
}

.page-hero__desc {
  font-size: clamp(15px, 1.3vw, 18px);
  color: rgba(255,255,255,0.70);
  max-width: 480px;
  line-height: 1.65;
}

.inner-section {
  padding: var(--section-y) var(--pad-x);
}

.inner-section--dark {
  background: var(--g-nature);
}

.inner-section--bg {
  background: var(--c-bg2);
}

.inner-section--white {
  background: var(--c-white);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.card {
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  box-shadow: var(--sh-soft);
  border: 1px solid var(--c-border);
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-hover);
}

.card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: var(--c-bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 24px;
  color: var(--c-primary);
  transition: var(--t-base);
}

.card:hover .card__icon {
  background: var(--c-primary);
  color: var(--c-white);
}

.card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.card__text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--c-text-muted);
}

.section-header {
  margin-bottom: clamp(40px, 5vw, 64px);
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-tag {
  justify-content: center;
}

.section-title {
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-desc {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--c-text-muted);
  line-height: 1.7;
  max-width: 560px;
}

.section-header--center .section-desc {
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--c-border);
}

.faq-item:first-child {
  border-top: 1px solid var(--c-border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  cursor: pointer;
  user-select: none;
}

.faq-question__text {
  font-family: var(--f-head);
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 600;
  color: var(--c-text);
  letter-spacing: -0.01em;
  transition: color var(--t-base);
}

.faq-question:hover .faq-question__text {
  color: var(--c-primary);
}

.faq-question__icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-full);
  border: 1.5px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-muted);
  font-size: 18px;
  flex-shrink: 0;
  transition: all var(--t-base);
  font-weight: 300;
}

.faq-item.open .faq-question__icon {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: var(--c-white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow), padding var(--t-slow);
}

.faq-answer.open {
  max-height: 400px;
}

.faq-answer__inner {
  padding-bottom: 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-text-muted);
}

.map-container {
  border-radius: var(--r-xl);
  overflow: hidden;
  height: 420px;
  box-shadow: var(--sh-card);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: var(--section-y) var(--pad-x);
}

.legal-content h1 {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 12px;
}

.legal-content .legal-date {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--c-text-light);
  margin-bottom: 48px;
  display: block;
}

.legal-content h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  margin-top: 48px;
  margin-bottom: 16px;
}

.legal-content h3 {
  font-size: clamp(16px, 1.8vw, 20px);
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-content p {
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.75;
}

.legal-content ul,
.legal-content ol {
  padding-left: 24px;
  margin-bottom: 18px;
}

.legal-content ul li {
  list-style: disc;
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-text-muted);
  margin-bottom: 8px;
}

.legal-content ol li {
  list-style: decimal;
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-text-muted);
  margin-bottom: 8px;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--t-slower), transform var(--t-slower);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.about-story {
  padding: var(--section-y) var(--pad-x);
  background: var(--c-white);
}

.about-story__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-story__img {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about-story__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slower);
}

.about-story__img:hover img {
  transform: scale(1.03);
}

.about-story__content .section-tag {
  margin-bottom: 24px;
}

.about-story__title {
  font-size: clamp(30px, 3.5vw, 52px);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  line-height: 1.1;
}

.about-story__text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--c-text-muted);
  margin-bottom: 18px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.value-item {
  padding: 24px;
  background: var(--c-bg2);
  border-radius: var(--r-lg);
}

.value-item__title {
  font-family: var(--f-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.value-item__text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--c-text-muted);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--c-white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-soft);
  border: 1px solid var(--c-border);
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-hover);
}

.team-card__img {
  width: 100%;
  aspect-ratio: 1;
  background: var(--g-nature);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-head);
  font-size: 48px;
  font-weight: 800;
  color: rgba(255,255,255,0.3);
}

.team-card__body {
  padding: 24px;
}

.team-card__name {
  font-family: var(--f-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.team-card__role {
  font-size: 13px;
  color: var(--c-text-light);
  font-family: var(--f-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-detail {
  padding: var(--section-y) var(--pad-x);
  background: var(--c-white);
}

.service-detail__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.service-card-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--c-border);
}

.service-card-full:last-child {
  border-bottom: none;
}

.service-card-full.reverse {
  direction: rtl;
}

.service-card-full.reverse > * {
  direction: ltr;
}

.service-card-full__img {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 16/10;
}

.service-card-full__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slower);
}

.service-card-full__img:hover img {
  transform: scale(1.04);
}

.service-card-full__num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 20px;
}

.service-card-full__title {
  font-size: clamp(24px, 2.8vw, 40px);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.service-card-full__text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-text-muted);
  margin-bottom: 28px;
}

.service-card-full__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.service-card-full__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--c-text-muted);
}

.service-card-full__features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: var(--r-full);
  background: var(--c-accent);
  flex-shrink: 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-item {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.portfolio-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-hover);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slower);
}

.portfolio-item:hover img {
  transform: scale(1.06);
}

.portfolio-item__overlay {
  position: absolute;
  inset: 0;
  background: var(--g-text-fade);
}

.portfolio-item__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
}

.portfolio-item__tag {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-accent-light);
  margin-bottom: 8px;
  display: block;
}

.portfolio-item__title {
  font-family: var(--f-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--c-white);
  letter-spacing: -0.01em;
}

.contact-map-section {
  padding: 0 var(--pad-x) var(--section-y);
}

.contact-map-section__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.thanks-page {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--g-bg);
  padding: 40px var(--pad-x);
}

.thanks-card {
  max-width: 600px;
  width: 100%;
  text-align: center;
  padding: clamp(48px, 6vw, 80px);
  background: var(--c-white);
  border-radius: var(--r-2xl);
  box-shadow: var(--sh-deep);
}

.thanks-card__icon {
  width: 80px;
  height: 80px;
  border-radius: var(--r-full);
  background: var(--g-nature);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  font-size: 32px;
}

.thanks-card__tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 16px;
  display: block;
}

.thanks-card__title {
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--c-text);
}

.thanks-card__text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-text-muted);
  margin-bottom: 40px;
}

.thanks-card__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .header-nav { display: none; }
  .header-cta .btn--outline { display: none; }
  .burger { display: flex; }
  .mobile-nav { display: flex; }

  .value-prop__header { grid-template-columns: 1fr; gap: 32px; }
  .value-prop__pillars { grid-template-columns: 1fr; gap: 2px; }
  .pillar:first-child { border-radius: var(--r-lg) var(--r-lg) 0 0; }
  .pillar:last-child { border-radius: 0 0 var(--r-lg) var(--r-lg); }
  .pillar { padding: 36px 28px; }

  .signature__content { grid-template-columns: 1fr; gap: 40px; }
  .signature__stats { grid-template-columns: repeat(2, 1fr); }

  .showcase__grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .dest-card--featured { grid-row: span 1; min-height: 320px; grid-column: span 2; }

  .insight__inner { grid-template-columns: 1fr; gap: 40px; }
  .insight__sidebar { position: static; }

  .services-section__header { grid-template-columns: 1fr; gap: 24px; }
  .service-row { grid-template-columns: 40px 1fr auto; gap: 20px; }

  .cta-section__inner { grid-template-columns: 1fr; gap: 48px; }

  .contact-section__inner { grid-template-columns: 1fr; gap: 48px; }

  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }

  .about-story__inner { grid-template-columns: 1fr; gap: 40px; }

  .service-card-full { grid-template-columns: 1fr; gap: 32px; }
  .service-card-full.reverse { direction: ltr; }

  .testimonials { grid-template-columns: 1fr 1fr; }

  .team-grid { grid-template-columns: 1fr 1fr; }

  .portfolio-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root {
    --pad-x: clamp(16px, 4vw, 24px);
    --section-y: clamp(48px, 8vw, 80px);
  }

  .hero__title { font-size: clamp(36px, 9vw, 64px); }
  .hero__scroll { display: none; }

  .showcase__grid { grid-template-columns: 1fr; }
  .dest-card--featured { grid-column: span 1; min-height: 340px; }

  .testimonials { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }

  .footer__top { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 16px; }

  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .grid-3 { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .logos-row { gap: 28px; }
}

html, body {
  overflow-x: hidden !important;
  max-width: 100vw;
}
