/* ============================================================
   LAYOUT.CSS — Deutsche Reisewelt GmbH
   All layout, components, sections, animations, responsive
   ============================================================ */

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--cw);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--cp);
  padding-right: var(--cp);
}

.container--narrow {
  max-width: var(--cw-n);
}

/* ── Section ── */
section {
  padding: var(--sec-py) 0;
  overflow-x: clip;
  max-width: 100%;
  box-sizing: border-box;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-header, 100);
  padding: 1.25rem 0;
  transition: background var(--tr-slow), backdrop-filter var(--tr-slow),
              padding var(--tr-slow), box-shadow var(--tr-slow);
  overflow-x: clip;
  max-width: 100%;
}

.site-header.scrolled {
  background: rgba(36, 58, 74, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.75rem 0;
  box-shadow: 0 2px 32px rgba(36, 58, 74, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--g-accent);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--sh-accent);
}

.logo-mark svg {
  width: 20px;
  height: 20px;
  color: var(--c-primary);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: var(--fw-bold);
  color: var(--c-white);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.logo-tagline {
  font-family: var(--ff-mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.50);
  line-height: 1;
}

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  list-style: none;
}

.nav-list a {
  font-size: 0.9rem;
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.80);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-full);
  transition: all var(--tr-base);
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1.5px;
  background: var(--c-accent);
  border-radius: var(--r-full);
  transition: width var(--tr-base);
}

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

.nav-list a:hover::after {
  width: calc(100% - 2rem);
}

.nav-list a.is-active {
  color: var(--c-accent);
}

.nav-list a.is-active::after {
  width: calc(100% - 2rem);
  background: var(--c-accent);
}

.header-cta {
  flex-shrink: 0;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.10);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--r-md);
  cursor: pointer;
  padding: 0;
  transition: background var(--tr-base), border-color var(--tr-base);
  z-index: calc(var(--z-menu, 200) + 10);
  position: relative;
}

.burger:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.45);
}

.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--c-white);
  border-radius: var(--r-full);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center;
}

.burger.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.burger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.burger.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(36, 58, 74, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: var(--z-menu, 200);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  overflow-y: auto;
  overflow-x: hidden;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  width: 100%;
  padding: var(--sp-20) var(--cp);
  text-align: center;
}

.mobile-nav a {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: var(--fw-semibold);
  color: rgba(255, 255, 255, 0.85);
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--r-lg);
  transition: all var(--tr-base);
  transform: translateY(20px);
  opacity: 0;
  transition: color var(--tr-base), background var(--tr-base),
              transform 0.4s ease, opacity 0.4s ease;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.mobile-menu.is-open .mobile-nav a {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu.is-open .mobile-nav a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.is-open .mobile-nav a:nth-child(2) { transition-delay: 0.10s; }
.mobile-menu.is-open .mobile-nav a:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.is-open .mobile-nav a:nth-child(4) { transition-delay: 0.20s; }
.mobile-menu.is-open .mobile-nav a:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu.is-open .mobile-nav a:nth-child(6) { transition-delay: 0.30s; }

.mobile-nav a:hover {
  color: var(--c-accent);
  background: rgba(230, 184, 92, 0.08);
}

.mobile-menu-footer {
  margin-top: var(--sp-8);
  text-align: center;
  color: rgba(255, 255, 255, 0.40);
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}

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

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

@media (min-width: 1025px) {
  .hero-img {
    transform: scale(1.08);
    transition: transform 0s;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--g-hero);
  opacity: 0.78;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: calc(var(--sp-32) + 4rem) 0 var(--sp-20);
  display: flex;
  align-items: center;
  min-height: 100svh;
}

.hero-content {
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-2) var(--sp-5);
  background: rgba(230, 184, 92, 0.15);
  border: 1px solid rgba(230, 184, 92, 0.35);
  border-radius: var(--r-full);
  margin-bottom: var(--sp-6);
  backdrop-filter: blur(8px);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-accent);
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.hero-badge-text {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-accent);
}

.hero-title {
  color: var(--c-white);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: var(--fw-bold);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-6);
}

.hero-title .accent { color: var(--c-accent); }

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.72);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-10);
  max-width: 560px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-12);
}

/* Hero newsletter form */
.hero-form {
  display: flex;
  gap: var(--sp-3);
  max-width: 480px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: var(--r-full);
  padding: var(--sp-2) var(--sp-2) var(--sp-2) var(--sp-6);
  backdrop-filter: blur(8px);
  transition: border-color var(--tr-base), background var(--tr-base);
}

.hero-form:focus-within {
  border-color: rgba(230, 184, 92, 0.50);
  background: rgba(255, 255, 255, 0.12);
}

.hero-form input[type="email"] {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--ff-body);
  font-size: 0.9375rem;
  color: var(--c-white);
  min-width: 0;
}

.hero-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-stat-value {
  font-family: var(--ff-mono);
  font-size: 1.5rem;
  font-weight: var(--fw-medium);
  color: var(--c-white);
  line-height: 1.1;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.50);
  letter-spacing: 0.04em;
  font-family: var(--ff-label);
}

.hero-scroll {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bounce-scroll 2.5s ease infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  border-radius: var(--r-full);
}

@keyframes bounce-scroll {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   MARQUEE / TRUST STRIP
   ============================================================ */
.js-marquee-wrap {
  overflow: hidden;
  max-width: 100vw;
  width: 100%;
  padding: clamp(1.5rem, 4vw, 3rem) 0;
  background: var(--c-primary);
  position: relative;
  overflow-x: hidden;
}

.js-mq-row {
  display: flex;
  white-space: nowrap;
  overflow: hidden;
  user-select: none;
  margin-bottom: 0.5rem;
}

.js-mq-row:last-child { margin-bottom: 0; }

.mq-track {
  display: flex;
  flex-shrink: 0;
  gap: 0;
  white-space: nowrap;
}

.js-mq-row.fwd .mq-track {
  animation: marquee-fwd 28s linear infinite;
}

.js-mq-row.rev .mq-track {
  animation: marquee-rev 32s linear infinite;
}

@keyframes marquee-fwd {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes marquee-rev {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.mq-item {
  font-family: var(--ff-display);
  font-size: clamp(20px, 3vw, 38px);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--c-white);
  opacity: 0.12;
  padding: 0 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  white-space: nowrap;
}

.mq-item::before {
  content: '·';
  opacity: 0.5;
  flex-shrink: 0;
}

/* ============================================================
   ABOUT PREVIEW
   ============================================================ */
.about-preview {
  background: var(--g-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about-image-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-xl);
}

.about-image-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.about-badge {
  position: absolute;
  bottom: var(--sp-6);
  left: var(--sp-6);
  background: rgba(36, 58, 74, 0.90);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(230, 184, 92, 0.30);
  border-radius: var(--r-lg);
  padding: var(--sp-4) var(--sp-5);
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.about-badge-icon {
  width: 40px;
  height: 40px;
  background: var(--g-accent);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-badge-icon svg {
  width: 20px;
  height: 20px;
  color: var(--c-primary);
}

.about-badge-text { display: flex; flex-direction: column; gap: 2px; }
.about-badge-value {
  font-family: var(--ff-mono);
  font-size: 1.25rem;
  font-weight: var(--fw-medium);
  color: var(--c-white);
  line-height: 1;
}
.about-badge-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  font-family: var(--ff-label);
  letter-spacing: 0.04em;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  margin: var(--sp-8) 0;
}

.about-feature {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: rgba(36, 58, 74, 0.06);
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--tr-base);
}

.about-feature:hover .about-feature-icon {
  background: var(--g-accent);
  border-color: var(--c-accent);
  box-shadow: var(--sh-accent);
}

.about-feature-icon svg {
  width: 20px;
  height: 20px;
  color: var(--c-primary);
  transition: color var(--tr-base);
}

.about-feature:hover .about-feature-icon svg { color: var(--c-primary); }

.about-feature-body h4 {
  font-size: 1rem;
  font-weight: var(--fw-semibold);
  margin-bottom: var(--sp-1);
  color: var(--c-text);
}

.about-feature-body p {
  font-size: 0.9rem;
  color: var(--c-text-m);
  line-height: var(--lh-base);
}

/* ============================================================
   SERVICES PREVIEW
   ============================================================ */
.services-preview {
  background: var(--c-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.service-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  position: relative;
  overflow: hidden;
  transition: all var(--tr-slow);
  box-shadow: var(--sh-sm);
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--g-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--tr-slow);
}

@media (hover: hover) and (pointer: fine) {
  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-card-h);
    border-color: rgba(230, 184, 92, 0.30);
  }
  .service-card:hover::before { transform: scaleX(1); }
}

.service-num {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--c-accent);
  margin-bottom: var(--sp-5);
  display: block;
}

.service-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--c-primary), var(--c-secondary));
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
  flex-shrink: 0;
}

.service-icon svg {
  width: 26px;
  height: 26px;
  color: var(--c-accent);
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: var(--fw-semibold);
  color: var(--c-text);
  margin-bottom: var(--sp-3);
}

.service-card p {
  font-size: 0.9rem;
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-6);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.875rem;
  font-weight: var(--fw-medium);
  color: var(--c-primary);
  position: relative;
}

.service-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--c-accent);
  transition: width var(--tr-base);
}

.service-card:hover .service-link::after { width: 100%; }

.service-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--tr-base);
}

.service-card:hover .service-link svg { transform: translateX(3px); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us {
  background: var(--g-hero);
  color: var(--c-white);
}

.why-us .section-head__title,
.why-us h3 { color: var(--c-white); }
.why-us p { color: rgba(255, 255, 255, 0.65); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.why-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  transition: all var(--tr-base);
}

@media (hover: hover) and (pointer: fine) {
  .why-card:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(230, 184, 92, 0.30);
    transform: translateY(-4px);
  }
}

.why-icon {
  width: 48px;
  height: 48px;
  background: rgba(230, 184, 92, 0.15);
  border: 1px solid rgba(230, 184, 92, 0.30);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
}

.why-icon svg {
  width: 22px;
  height: 22px;
  color: var(--c-accent);
}

.why-card h3 {
  font-size: 1.1rem;
  margin-bottom: var(--sp-3);
}

/* ============================================================
   PORTFOLIO PREVIEW (DESTINATIONS)
   ============================================================ */
.portfolio-preview {
  background: var(--c-bg-alt);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.dest-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-card);
  transition: all var(--tr-slow);
  aspect-ratio: 3 / 4;
}

@media (hover: hover) and (pointer: fine) {
  .dest-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sh-xl);
  }
  .dest-card:hover .dest-img {
    transform: scale(1.06);
  }
  .dest-card:hover .dest-overlay {
    opacity: 0.80;
  }
}

.dest-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(36,58,74,0.85) 0%, rgba(36,58,74,0.15) 55%, transparent 100%);
  transition: opacity var(--tr-slow);
}

.dest-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sp-6);
  z-index: 2;
}

.dest-tag {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--c-accent);
  background: rgba(230, 184, 92, 0.15);
  border: 1px solid rgba(230, 184, 92, 0.30);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-full);
  margin-bottom: var(--sp-3);
}

.dest-content h3 {
  font-size: 1.3rem;
  color: var(--c-white);
  margin-bottom: var(--sp-2);
}

.dest-content p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: var(--lh-base);
}

/* ============================================================
   ACHIEVEMENTS / STATS
   ============================================================ */
.achievements {
  background: var(--c-white);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

.stat-card {
  text-align: center;
  padding: var(--sp-8) var(--sp-6);
  border-right: 1px solid var(--c-border);
  position: relative;
}

.stat-card:last-child { border-right: none; }

.stat-icon {
  width: 44px;
  height: 44px;
  background: rgba(36, 58, 74, 0.06);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-4);
}

.stat-icon svg {
  width: 20px;
  height: 20px;
  color: var(--c-primary);
}

.stat-value {
  font-family: var(--ff-mono);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--fw-medium);
  color: var(--c-primary);
  line-height: 1;
  margin-bottom: var(--sp-2);
  display: block;
}

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

.stat-label {
  font-size: 0.85rem;
  color: var(--c-text-m);
  font-family: var(--ff-label);
  line-height: var(--lh-snug);
}

.cert-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
  padding: var(--sp-8) 0 0;
  border-top: 1px solid var(--c-border);
  margin-top: var(--sp-8);
}

.cert-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-5);
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-full);
}

.cert-item svg {
  width: 16px;
  height: 16px;
  color: var(--c-accent);
  flex-shrink: 0;
}

.cert-item span {
  font-size: 0.8rem;
  font-family: var(--ff-mono);
  color: var(--c-text-m);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  background: var(--g-bg);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--c-border), var(--c-border), transparent);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--sp-6) var(--sp-4);
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-white);
  border: 2px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-5);
  font-family: var(--ff-mono);
  font-size: 1rem;
  font-weight: var(--fw-medium);
  color: var(--c-primary);
  transition: all var(--tr-base);
  box-shadow: var(--sh-sm);
  position: relative;
  z-index: 2;
}

.process-step.is-active .step-number,
.process-step:hover .step-number {
  background: var(--g-accent);
  border-color: var(--c-accent);
  box-shadow: var(--sh-accent);
  color: var(--c-primary);
}

.process-step h3 {
  font-size: 1.05rem;
  margin-bottom: var(--sp-3);
  color: var(--c-text);
}

.process-step p {
  font-size: 0.875rem;
  line-height: var(--lh-relaxed);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--c-primary);
  position: relative;
  overflow: hidden;
}

.test-bg {
  position: absolute;
  inset: 0;
}

.test-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.07;
}

.testimonials .container { position: relative; z-index: 1; }
.testimonials .section-head__title { color: var(--c-white); }

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.test-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  transition: all var(--tr-base);
}

@media (hover: hover) and (pointer: fine) {
  .test-card:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(230, 184, 92, 0.25);
    transform: translateY(-4px);
  }
}

.test-stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--sp-5);
}

.test-stars span {
  color: var(--c-accent);
  font-size: 0.9rem;
}

.test-quote {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.80);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-6);
  font-style: italic;
}

.test-author {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.test-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--g-nature);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-weight: var(--fw-bold);
  color: var(--c-white);
  font-size: 1rem;
  flex-shrink: 0;
}

.test-name {
  font-weight: var(--fw-semibold);
  color: var(--c-white);
  font-size: 0.95rem;
  line-height: 1.2;
}

.test-location {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  font-family: var(--ff-mono);
  letter-spacing: 0.04em;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--c-bg);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.faq-item {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--tr-base), box-shadow var(--tr-base);
}

.faq-item.is-open {
  border-color: rgba(230, 184, 92, 0.35);
  box-shadow: var(--sh-card);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-6) var(--sp-7);
  cursor: pointer;
  user-select: none;
  transition: background var(--tr-fast);
  min-height: 60px;
}

.faq-question:hover { background: rgba(36, 58, 74, 0.02); }

.faq-q-text {
  font-weight: var(--fw-medium);
  color: var(--c-text);
  font-size: 0.9875rem;
  line-height: var(--lh-snug);
}

.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(36, 58, 74, 0.06);
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--tr-base);
}

.faq-item.is-open .faq-toggle {
  background: var(--g-accent);
  border-color: var(--c-accent);
  box-shadow: var(--sh-accent);
}

.faq-toggle svg {
  width: 14px;
  height: 14px;
  color: var(--c-primary);
  transition: transform var(--tr-base);
}

.faq-item.is-open .faq-toggle svg { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-item.is-open .faq-answer {
  max-height: 500px;
}

.faq-a-inner {
  padding: 0 var(--sp-7) var(--sp-6);
  font-size: 0.9rem;
  color: var(--c-text-m);
  line-height: var(--lh-relaxed);
  border-top: 1px solid var(--c-border-l);
  padding-top: var(--sp-5);
}

/* ============================================================
   KEYWORDS / CONTENT SECTION
   ============================================================ */
.keywords-section {
  background: var(--g-bg);
  padding: var(--sec-py) 0;
}

.keywords-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.keywords-text h2 { margin-bottom: var(--sp-5); }
.keywords-text p { margin-bottom: var(--sp-4); }

.kw-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}

.kw-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  background: rgba(36, 58, 74, 0.06);
  border: 1px solid var(--c-border);
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-family: var(--ff-label);
  color: var(--c-primary);
  font-weight: var(--fw-medium);
  transition: all var(--tr-base);
}

.kw-badge:hover {
  background: var(--c-primary);
  color: var(--c-white);
  border-color: var(--c-primary);
}

.kw-badge svg {
  width: 14px;
  height: 14px;
  color: var(--c-accent);
  flex-shrink: 0;
}

.keywords-cards {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.kw-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  transition: all var(--tr-base);
}

.kw-card:hover {
  border-color: rgba(230, 184, 92, 0.35);
  box-shadow: var(--sh-card);
  transform: translateX(4px);
}

.kw-card-icon {
  width: 40px;
  height: 40px;
  background: rgba(36, 58, 74, 0.06);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.kw-card-icon svg {
  width: 18px;
  height: 18px;
  color: var(--c-primary);
}

.kw-card h4 {
  font-size: 0.95rem;
  font-weight: var(--fw-semibold);
  color: var(--c-text);
  margin-bottom: var(--sp-2);
}

.kw-card p {
  font-size: 0.85rem;
  line-height: var(--lh-base);
}

/* ============================================================
   CONTACT SECTION (HOMEPAGE)
   ============================================================ */
.contact-section {
  background: var(--c-bg-alt);
}

.contact-form-wrap {
  max-width: 680px;
  margin: 0 auto;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-2xl);
  padding: clamp(2rem, 5vw, 4rem);
  box-shadow: var(--sh-lg);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.form-group--full { grid-column: 1 / -1; }

.form-label {
  font-size: 0.8rem;
  font-weight: var(--fw-medium);
  color: var(--c-text);
  font-family: var(--ff-label);
  letter-spacing: 0.04em;
}

.form-control {
  padding: 0.875rem 1.125rem;
  background: var(--c-bg);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-lg);
  font-family: var(--ff-body);
  font-size: 0.9375rem;
  color: var(--c-text);
  transition: border-color var(--tr-base), background var(--tr-base), box-shadow var(--tr-base);
  outline: none;
  appearance: none;
  width: 100%;
}

.form-control::placeholder { color: var(--c-text-l); }

.form-control:focus {
  border-color: var(--c-accent);
  background: var(--c-white);
  box-shadow: 0 0 0 4px rgba(230, 184, 92, 0.12);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-top: var(--sp-6);
}

.form-privacy {
  font-size: 0.78rem;
  color: var(--c-text-l);
  line-height: var(--lh-base);
}

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

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--c-dark);
  color: rgba(255, 255, 255, 0.65);
  padding: clamp(3rem, 7vw, 6rem) 0 0;
  overflow-x: clip;
  max-width: 100%;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo-name { font-size: 1.15rem; }
.footer-brand .logo-tagline { color: rgba(255,255,255,0.35); }

.footer-desc {
  font-size: 0.875rem;
  line-height: var(--lh-relaxed);
  margin-top: var(--sp-5);
  margin-bottom: var(--sp-6);
  max-width: 300px;
}

.footer-socials {
  display: flex;
  gap: var(--sp-3);
}

.footer-social {
  width: 38px;
  height: 38px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--tr-base);
}

.footer-social:hover {
  background: rgba(230, 184, 92, 0.15);
  border-color: rgba(230, 184, 92, 0.30);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--tr-base);
}

.footer-social:hover svg { color: var(--c-accent); }

.footer-col h4 {
  font-size: 0.8rem;
  font-family: var(--ff-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  margin-bottom: var(--sp-5);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.60);
  transition: color var(--tr-fast);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
}

.footer-col ul li a:hover { color: var(--c-accent); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.60);
  margin-bottom: var(--sp-4);
  line-height: var(--lh-snug);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--c-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  padding: var(--sp-6) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--ff-mono);
}

.footer-legal {
  display: flex;
  gap: var(--sp-5);
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--tr-fast);
  font-family: var(--ff-mono);
}

.footer-legal a:hover { color: var(--c-accent); }

/* ============================================================
   PAGE HERO (Inner pages)
   ============================================================ */
.page-hero {
  background: var(--g-hero);
  padding: calc(var(--sp-32) + 2rem) 0 var(--sp-20);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  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.015'%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");
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero-label { margin-bottom: var(--sp-4); }
.page-hero-title { color: var(--c-white); margin-bottom: var(--sp-5); }
.page-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  line-height: var(--lh-relaxed);
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-top: var(--sp-8);
  flex-wrap: wrap;
}

.page-breadcrumb a, .page-breadcrumb span {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.page-breadcrumb a:hover { color: var(--c-accent); }

.page-breadcrumb svg {
  width: 12px;
  height: 12px;
  color: rgba(255, 255, 255, 0.30);
  flex-shrink: 0;
}

.page-breadcrumb span.current { color: var(--c-accent); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.contact-info-block { margin-bottom: var(--sp-8); }

.contact-item {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  padding: var(--sp-5) var(--sp-6);
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  margin-bottom: var(--sp-4);
  transition: all var(--tr-base);
}

.contact-item:hover {
  border-color: rgba(230, 184, 92, 0.30);
  box-shadow: var(--sh-card);
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--c-primary);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 20px;
  height: 20px;
  color: var(--c-accent);
}

.contact-item h4 {
  font-size: 0.78rem;
  font-family: var(--ff-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text-l);
  margin-bottom: var(--sp-1);
}

.contact-item p,
.contact-item a {
  font-size: 0.9375rem;
  color: var(--c-text);
  font-weight: var(--fw-medium);
  transition: color var(--tr-fast);
}

.contact-item a:hover { color: var(--c-accent); }

.map-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--c-border);
  height: 380px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

/* ============================================================
   ABOUT PAGE SPECIFIC
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.value-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  text-align: center;
  transition: all var(--tr-slow);
}

@media (hover: hover) and (pointer: fine) {
  .value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-card-h);
    border-color: rgba(230, 184, 92, 0.30);
  }
}

.value-icon {
  width: 56px;
  height: 56px;
  background: var(--g-hero);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-5);
}

.value-icon svg {
  width: 26px;
  height: 26px;
  color: var(--c-accent);
}

.value-card h3 { margin-bottom: var(--sp-3); font-size: 1.1rem; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.team-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all var(--tr-slow);
}

@media (hover: hover) and (pointer: fine) {
  .team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-card-h);
  }
}

.team-img {
  height: 240px;
  background: var(--g-hero);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-initials {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: var(--fw-bold);
  color: rgba(255,255,255,0.25);
  letter-spacing: -0.04em;
}

.team-info {
  padding: var(--sp-6);
  border-top: 1px solid var(--c-border);
}

.team-name {
  font-weight: var(--fw-semibold);
  font-size: 1.05rem;
  margin-bottom: var(--sp-1);
  color: var(--c-text);
}

.team-role {
  font-size: 0.8rem;
  font-family: var(--ff-mono);
  color: var(--c-accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================================
   PORTFOLIO PAGE (DESTINATIONS)
   ============================================================ */
.dest-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.dest-full-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all var(--tr-slow);
}

@media (hover: hover) and (pointer: fine) {
  .dest-full-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-card-h);
  }
  .dest-full-card:hover .dest-full-img { transform: scale(1.04); }
}

.dest-full-img-wrap {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.dest-full-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dest-full-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(36,58,74,0.35), transparent 60%);
}

.dest-full-body {
  padding: var(--sp-6);
}

.dest-full-body h3 {
  font-size: 1.1rem;
  margin-bottom: var(--sp-3);
  color: var(--c-text);
}

.dest-full-body p {
  font-size: 0.875rem;
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-5);
}

.dest-meta {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  padding-top: var(--sp-4);
  border-top: 1px solid var(--c-border);
}

.dest-meta-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.78rem;
  color: var(--c-text-l);
  font-family: var(--ff-mono);
}

.dest-meta-item svg {
  width: 14px;
  height: 14px;
  color: var(--c-accent);
}

/* ============================================================
   THANKS PAGE
   ============================================================ */
.thanks-page {
  min-height: 100svh;
  background: var(--g-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-20) var(--cp);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.thanks-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230,184,92,0.12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.thanks-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}

.thanks-icon {
  width: 80px;
  height: 80px;
  background: rgba(230, 184, 92, 0.15);
  border: 2px solid rgba(230, 184, 92, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-8);
  animation: thanks-pop 0.6s var(--tr-spring) forwards;
}

.thanks-icon svg {
  width: 36px;
  height: 36px;
  color: var(--c-accent);
}

@keyframes thanks-pop {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.thanks-title {
  color: var(--c-white);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: var(--sp-5);
}

.thanks-text {
  color: rgba(255,255,255,0.65);
  font-size: 1.0625rem;
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-10);
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-page {
  background: var(--c-bg);
  padding: var(--sec-py) 0;
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-2xl);
  padding: clamp(2rem, 5vw, 4rem);
  box-shadow: var(--sh-sm);
}

.legal-content h2 {
  font-size: 1.4rem;
  margin-top: var(--sp-10);
  margin-bottom: var(--sp-4);
  color: var(--c-primary);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--c-border);
}

.legal-content h2:first-of-type { margin-top: 0; }

.legal-content h3 {
  font-size: 1.05rem;
  margin-top: var(--sp-6);
  margin-bottom: var(--sp-3);
  color: var(--c-text);
}

.legal-content p {
  margin-bottom: var(--sp-4);
  font-size: 0.9375rem;
  color: var(--c-text-m);
}

.legal-content ul,
.legal-content ol {
  list-style: disc;
  padding-left: var(--sp-6);
  margin-bottom: var(--sp-5);
}

.legal-content ol { list-style: decimal; }

.legal-content li {
  font-size: 0.9375rem;
  color: var(--c-text-m);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-2);
}

.legal-date {
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: var(--sp-8);
  display: block;
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.js-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.js-reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.js-reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.js-reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.js-reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays */
.js-reveal[data-delay="1"] { transition-delay: 0.10s; }
.js-reveal[data-delay="2"] { transition-delay: 0.20s; }
.js-reveal[data-delay="3"] { transition-delay: 0.30s; }
.js-reveal[data-delay="4"] { transition-delay: 0.40s; }
.js-reveal[data-delay="5"] { transition-delay: 0.50s; }
.js-reveal[data-delay="6"] { transition-delay: 0.60s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ── Tablet ── */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
  }

  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-card:nth-child(2) { border-right: none; }
  .stat-card:nth-child(3) { border-right: 1px solid var(--c-border); }
  .stat-card:nth-child(4) { border-right: none; }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid::before { display: none; }

  .keywords-inner { grid-template-columns: 1fr; }

  .about-image-wrap img { height: 400px; }
}

/* ── Small tablet / large mobile ── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap { order: -1; }
  .about-image-wrap img { height: 360px; }

  .contact-info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .burger { display: flex; }
  .mobile-menu { display: flex; }

  .site-nav .nav-list,
  .header-cta { display: none; }

  .services-grid,
  .why-grid,
  .portfolio-grid,
  .test-grid,
  .values-grid,
  .team-grid,
  .dest-full-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
  }

  .footer-brand { grid-column: 1 / -1; }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--sp-3);
  }

  .form-grid-2 { grid-template-columns: 1fr; }
  .form-group--full { grid-column: 1; }

  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .hero-form { flex-direction: column; border-radius: var(--r-lg); padding: var(--sp-4); }
  .hero-stats { gap: var(--sp-6); }
}

@media (max-width: 640px) {
  .services-grid,
  .why-grid,
  .portfolio-grid,
  .test-grid,
  .values-grid,
  .team-grid,
  .dest-full-grid {
    grid-template-columns: 1fr;
  }

  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .stat-card {
    border-right: none;
    border-bottom: 1px solid var(--c-border);
  }

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

  .footer-top { grid-template-columns: 1fr; }

  .about-badge { flex-direction: column; align-items: flex-start; }

  .hero-stats { flex-direction: column; gap: var(--sp-4); }
}

/* ============================================================
   SAFETY NET — Mobile overflow fix
   ============================================================ */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw;
}
