/* ============================================================
   LAYOUT — Entdecke Deutschland · Premium Travel
   ============================================================ */

/* ── Container ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}
.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Section Spacing ─────────────────────────────────────── */
.section { padding: var(--gap-xxl) 0; }
.section-lg { padding: 9rem 0; }
.section-sm { padding: 4rem 0; }

/* ── Grid System ─────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-auto-3 { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; }

/* ── Flex Helpers ────────────────────────────────────────── */
.flex        { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between{ display: flex; align-items: center; justify-content: space-between; }
.flex-col    { display: flex; flex-direction: column; }
.gap-sm      { gap: var(--gap-sm); }
.gap-md      { gap: var(--gap-md); }
.gap-lg      { gap: var(--gap-lg); }

/* ── Text Align ──────────────────────────────────────────── */
.text-center { text-align: center; }
.text-left   { text-align: left; }

/* ── Section Header ──────────────────────────────────────── */
.section-header {
  max-width: 680px;
  margin-bottom: var(--gap-xl);
}
.section-header.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-header p {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: var(--c-text-2);
  line-height: 1.7;
}

/* ── Header / Navigation ─────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transition: background var(--tr-slow), box-shadow var(--tr-slow), padding var(--tr-slow);
  padding: 1.4rem 0;
}
.site-header.scrolled {
  background: rgba(250,250,248,.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--c-border), var(--sh-sm);
  padding: .85rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  gap: .12rem;
}
.nav-logo-name {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--c-text);
  line-height: 1;
}
.nav-logo-tagline {
  font-family: var(--f-mono);
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-links a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--c-text-2);
  position: relative;
  transition: color var(--tr-base);
  letter-spacing: .01em;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--c-gold);
  transition: width var(--tr-base);
}
.nav-links a:hover,
.nav-links a.active { color: var(--c-text); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: 1rem; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  padding: 6px;
  cursor: pointer;
}
.burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--c-text);
  border-radius: 2px;
  transition: var(--tr-base);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(250,250,248,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 850;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 6rem 2rem 3rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--tr-slow);
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--c-text);
  letter-spacing: -.01em;
  transition: color var(--tr-base);
}
.mobile-menu a:hover { color: var(--c-gold); }
.mobile-menu-close {
  position: absolute;
  top: 1.4rem;
  right: 2rem;
  font-size: 1.8rem;
  color: var(--c-text-2);
  cursor: pointer;
  transition: color var(--tr-base), transform var(--tr-base);
  line-height: 1;
}
.mobile-menu-close:hover { color: var(--c-text); transform: rotate(90deg); }
.mobile-menu-contact {
  margin-top: 1rem;
  text-align: center;
}
.mobile-menu-contact p {
  font-family: var(--f-mono);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-text-3);
  margin-bottom: .4rem;
}
.mobile-menu-contact a {
  font-family: var(--f-body);
  font-size: 1rem;
  color: var(--c-text-2);
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 5rem;
  position: relative;
  overflow: hidden;
  background: var(--c-bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/hero.jpg');
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(250,250,248,.94) 0%,
    rgba(250,250,248,.82) 45%,
    rgba(250,250,248,.4) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .4rem 1rem .4rem .6rem;
  background: rgba(201,169,110,.1);
  border: 1px solid rgba(201,169,110,.25);
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--c-gold);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.4); opacity: .7; }
}
.hero-title { margin-bottom: 1.2rem; }
.hero-title em {
  font-style: italic;
  color: var(--c-gold);
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--c-text-2);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 540px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.hero-email-row {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .6rem .6rem .6rem 1.2rem;
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-sm);
  max-width: 440px;
  box-shadow: var(--sh-sm);
}
.hero-email-row input {
  flex: 1;
  border: none;
  background: none;
  font-family: var(--f-body);
  font-size: .92rem;
  color: var(--c-text);
  outline: none;
}
.hero-email-row input::placeholder { color: var(--c-text-3); }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .82rem;
  color: var(--c-text-3);
}
.hero-trust-item svg { color: var(--c-gold); }

/* ── Marquee ─────────────────────────────────────────────── */
.js-marquee-wrap {
  overflow: hidden;
  max-width: 100vw;
  padding: 2rem 0;
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  user-select: none;
}
.js-mq-row {
  display: flex;
  white-space: nowrap;
  will-change: transform;
}
.js-mq-row.fwd  { animation: mq-fwd  28s linear infinite; }
.js-mq-row.rev  { animation: mq-rev  28s linear infinite; }
@keyframes mq-fwd { from { transform: translateX(0); }    to { transform: translateX(-50%); } }
@keyframes mq-rev { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.mq-item {
  font-family: var(--f-display);
  font-size: clamp(20px, 3vw, 38px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--c-text);
  opacity: .12;
  padding: 0 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
}
.mq-item::after {
  content: '✦';
  font-size: .6em;
  opacity: .6;
}

/* ── Trust Strip ─────────────────────────────────────────── */
.trust-strip {
  padding: 3rem 0;
  border-bottom: 1px solid var(--c-border);
  background: var(--c-white);
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .6rem 1.4rem;
}
.trust-item svg {
  width: 22px;
  height: 22px;
  color: var(--c-gold);
  flex-shrink: 0;
}
.trust-item-text { }
.trust-item-num {
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
  color: var(--c-text);
}
.trust-item-label {
  font-size: .78rem;
  color: var(--c-text-3);
  margin-top: .1rem;
}
.trust-sep {
  width: 1px;
  height: 40px;
  background: var(--c-border);
}

/* ── About Preview ───────────────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--r-xl);
}
.about-badge-float {
  position: absolute;
  bottom: 2rem;
  left: -1.5rem;
  background: var(--c-white);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-md);
  padding: 1rem 1.4rem;
  box-shadow: var(--sh-lg);
  display: flex;
  align-items: center;
  gap: .8rem;
}
.about-badge-icon {
  width: 44px;
  height: 44px;
  background: rgba(201,169,110,.12);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
}
.about-content { }
.about-content .section-label { margin-bottom: 1.2rem; }
.about-content h2 { margin-bottom: 1.2rem; }
.about-content p {
  font-size: 1.05rem;
  color: var(--c-text-2);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.about-stat { }
.about-stat-num {
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-gold);
  line-height: 1;
}
.about-stat-label {
  font-size: .8rem;
  color: var(--c-text-3);
  margin-top: .3rem;
}

/* ── Services ────────────────────────────────────────────── */
.service-card {
  background: var(--c-white);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--tr-base);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: var(--c-gold-light);
}
.service-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.service-card-body {
  padding: 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(201,169,110,.1);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
  margin-bottom: 1rem;
}
.service-card-body h3 {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: .6rem;
}
.service-card-body p {
  font-size: .92rem;
  color: var(--c-text-2);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.2rem;
}
.service-card-link {
  font-family: var(--f-mono);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-gold);
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: gap var(--tr-base);
  font-weight: 500;
}
.service-card-link:hover { gap: .8rem; }

/* ── Why Us ──────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-items { display: flex; flex-direction: column; gap: 1.5rem; }
.why-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.4rem;
  background: var(--c-white);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-md);
  transition: var(--tr-base);
}
.why-item:hover {
  box-shadow: var(--sh-md);
  border-color: var(--c-gold-light);
  transform: translateX(4px);
}
.why-item-icon {
  width: 46px;
  height: 46px;
  background: rgba(201,169,110,.1);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
  flex-shrink: 0;
}
.why-item-content h4 {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: .35rem;
}
.why-item-content p {
  font-size: .9rem;
  color: var(--c-text-2);
  line-height: 1.6;
}
.why-visual {
  position: relative;
}
.why-visual img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--r-xl);
}
.why-float-card {
  position: absolute;
  top: 2rem;
  right: -1.5rem;
  background: var(--c-white);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-md);
  padding: 1.2rem 1.6rem;
  box-shadow: var(--sh-lg);
  min-width: 180px;
}
.why-float-card .stat-num {
  font-size: 2rem;
  display: block;
  margin-bottom: .2rem;
}
.why-float-card p {
  font-size: .8rem;
  color: var(--c-text-3);
}

/* ── Portfolio ───────────────────────────────────────────── */
.portfolio-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--tr-slow);
}
.portfolio-card:hover img { transform: scale(1.06); }
.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,16,8,.75) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.8rem;
  transition: background var(--tr-base);
}
.portfolio-card:hover .portfolio-card-overlay {
  background: linear-gradient(to top, rgba(18,16,8,.85) 0%, rgba(18,16,8,.2) 100%);
}
.portfolio-card-cat {
  font-family: var(--f-mono);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-gold-light);
  margin-bottom: .5rem;
}
.portfolio-card-title {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--c-white);
  line-height: 1.2;
}

/* ── Achievements ────────────────────────────────────────── */
.achieve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--c-border);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.achieve-item {
  background: var(--c-white);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: background var(--tr-base);
}
.achieve-item:hover { background: var(--c-surface); }
.achieve-num {
  font-family: var(--f-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--c-gold);
  line-height: 1;
  margin-bottom: .5rem;
  display: block;
}
.achieve-label {
  font-size: .85rem;
  color: var(--c-text-2);
  line-height: 1.4;
}

/* ── Process ─────────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--c-border);
  z-index: 0;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--c-white);
  border: 2px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-mono);
  font-size: 1rem;
  font-weight: 500;
  color: var(--c-gold);
  margin-bottom: 1.2rem;
  transition: var(--tr-base);
}
.process-step:hover .process-num {
  border-color: var(--c-gold);
  background: rgba(201,169,110,.08);
  transform: scale(1.1);
}
.process-step h4 { font-weight: 600; font-size: .98rem; margin-bottom: .5rem; }
.process-step p { font-size: .85rem; color: var(--c-text-2); line-height: 1.55; }

/* ── Testimonials ────────────────────────────────────────── */
.testimonial-card {
  background: var(--c-white);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: var(--tr-base);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}
.testimonial-stars {
  display: flex;
  gap: .25rem;
  color: var(--c-gold);
}
.testimonial-text {
  font-size: .95rem;
  color: var(--c-text-2);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.testimonial-text::before { content: '\201C'; }
.testimonial-text::after  { content: '\201D'; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding-top: 1rem;
  border-top: 1px solid var(--c-border-light);
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--c-surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-gold);
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: .9rem; }
.testimonial-origin { font-size: .78rem; color: var(--c-text-3); }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  background: var(--c-white);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: var(--tr-base);
}
.faq-item.open { border-color: var(--c-gold-light); box-shadow: var(--sh-sm); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 1.6rem;
  cursor: pointer;
  gap: 1rem;
}
.faq-question h4 {
  font-weight: 600;
  font-size: .95rem;
  flex: 1;
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--c-text-2);
  transition: var(--tr-base);
}
.faq-item.open .faq-icon {
  border-color: var(--c-gold);
  color: var(--c-gold);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--tr-slow), padding var(--tr-slow);
}
.faq-answer-inner {
  padding: 0 1.6rem 1.4rem;
  font-size: .92rem;
  color: var(--c-text-2);
  line-height: 1.7;
}

/* ── CTA / Contact Form ──────────────────────────────────── */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.contact-info { }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p {
  font-size: 1.05rem;
  color: var(--c-text-2);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.contact-details { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
}
.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(201,169,110,.1);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
  flex-shrink: 0;
}
.contact-detail-text p {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-family: var(--f-mono);
  color: var(--c-text-3);
  margin-bottom: 0;
}
.contact-detail-text a,
.contact-detail-text span {
  font-size: .95rem;
  color: var(--c-text);
  font-weight: 500;
  transition: color var(--tr-base);
}
.contact-detail-text a:hover { color: var(--c-gold); }
.contact-form-wrap {
  background: var(--c-white);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  box-shadow: var(--sh-md);
}
.contact-form-wrap h3 {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-grid .full { grid-column: 1 / -1; }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--c-dark);
  color: var(--c-text-inv);
  padding: 5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand {}
.footer-logo-name {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--c-text-inv);
  margin-bottom: .4rem;
}
.footer-logo-tagline {
  font-family: var(--f-mono);
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 1.2rem;
}
.footer-desc {
  font-size: .88rem;
  color: rgba(250,250,248,.5);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: .75rem;
}
.footer-social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250,250,248,.5);
  transition: var(--tr-base);
}
.footer-social-link:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
}
.footer-col h5 {
  font-family: var(--f-mono);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(250,250,248,.35);
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul a {
  font-size: .88rem;
  color: rgba(250,250,248,.55);
  transition: color var(--tr-base);
}
.footer-col ul a:hover { color: var(--c-text-inv); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.8rem 0;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: .8rem;
  color: rgba(250,250,248,.3);
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: .78rem;
  color: rgba(250,250,248,.3);
  transition: color var(--tr-base);
}
.footer-legal a:hover { color: rgba(250,250,248,.6); }

/* ── Keywords Section ────────────────────────────────────── */
.keywords-section {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.keywords-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.keyword-block h3 {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: .8rem;
}
.keyword-block p {
  font-size: .9rem;
  color: var(--c-text-2);
  line-height: 1.65;
}

/* ── Map ─────────────────────────────────────────────────── */
.map-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  height: 420px;
  border: 1px solid var(--c-border);
  margin-top: 3rem;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ── Legal Pages ─────────────────────────────────────────── */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.legal-content h1 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: .5rem;
}
.legal-content .legal-date {
  font-family: var(--f-mono);
  font-size: .75rem;
  letter-spacing: .1em;
  color: var(--c-text-3);
  margin-bottom: 3rem;
  display: block;
}
.legal-content h2 {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 2.5rem 0 .8rem;
}
.legal-content h3 {
  font-family: var(--f-body);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 1.8rem 0 .5rem;
}
.legal-content p {
  font-size: .95rem;
  color: var(--c-text-2);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-content ul li {
  font-size: .95rem;
  color: var(--c-text-2);
  line-height: 1.7;
  margin-bottom: .4rem;
}

/* ── Thank You Page ──────────────────────────────────────── */
.thx-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  background: var(--c-bg);
}
.thx-icon {
  width: 80px;
  height: 80px;
  background: rgba(201,169,110,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: var(--c-gold);
}
.thx-wrap h1 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  margin-bottom: 1rem;
}
.thx-wrap p {
  font-size: 1.1rem;
  color: var(--c-text-2);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4     { grid-template-columns: repeat(2, 1fr); }
  .achieve-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .why-grid   { grid-template-columns: 1fr; gap: 3rem; }
  .why-visual img { height: 380px; }
  .why-float-card { right: 1rem; }
}
@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }
  .section { padding: 4.5rem 0; }
  .grid-2     { grid-template-columns: 1fr; }
  .grid-3     { grid-template-columns: 1fr; }
  .keywords-grid { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-wrap img { height: 320px; }
  .about-badge-float { left: 1rem; }
  .contact-split { grid-template-columns: 1fr; gap: 3rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: 1; }
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .burger    { display: flex; }
  .trust-items { flex-direction: column; gap: 1rem; align-items: flex-start; padding: 0 1rem; }
  .trust-sep { display: none; }
  .achieve-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-subtitle { font-size: 1rem; }
  .hero-email-row { max-width: 100%; }
  .hero-trust { gap: .8rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .grid-3     { grid-template-columns: 1fr; }
  .achieve-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1025px) {
  .hero-bg-img { will-change: transform; }
}
@media (hover: hover) and (pointer: fine) {
  .service-card:hover { transform: translateY(-6px); }
}

/* ── Safety Net ──────────────────────────────────────────── */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw;
}
section, header, footer, .hero, .trust-strip,
.js-marquee-wrap, .site-header, .site-footer {
  overflow-x: hidden;
  max-width: 100%;
  box-sizing: border-box;
}
