:root {
  --bg: #f4eee1;
  --surface: #fbf6ea;
  --surface-soft: #f8f0df;
  --line: rgba(107, 91, 72, 0.22);
  --text: #3b3128;
  --text-soft: #6b5a4d;
  --primary: #ac5f38;
  --accent: #c56b43;
  --accent-2: #8e6b3f;
  --accent-3: #728543;
  --radius: 18px;
  --shadow: 0 16px 36px rgba(102, 91, 73, 0.18);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Outfit", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% -12%, rgba(197, 107, 67, 0.22), transparent 34%),
    radial-gradient(circle at 90% 6%, rgba(197, 107, 67, 0.12), transparent 38%),
    radial-gradient(circle at 88% 92%, rgba(114, 133, 67, 0.16), transparent 32%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  scroll-behavior: smooth;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover,
a:focus-visible {
  color: #c56b43;
  text-decoration: none;
}

.backdrop {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    radial-gradient(circle at 88% 8%, rgba(197, 107, 67, 0.16), transparent 30%),
    radial-gradient(circle at 8% 88%, rgba(197, 107, 67, 0.12), transparent 26%);
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(250, 244, 232, 0.84);
  border-bottom: 1px solid var(--line);
}

.nav-row {
  position: relative;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.brand {
  font-family: "Sora", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
}

.brand-wordmark {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
}

.brand-wordmark span:nth-child(2) {
  color: var(--accent);
}

.brand-logo {
  width: 2.2rem;
  height: 2.2rem;
  object-fit: contain;
  border-radius: 999px;
  border: 1px solid rgba(107, 91, 72, 0.25);
  background: #fffdf7;
  padding: 0.1rem;
}

.menu {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.menu a {
  text-decoration: none;
  font-weight: 500;
  color: var(--text-soft);
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
}

.menu a:hover,
.menu a:focus-visible {
  color: var(--text);
  background: rgba(197, 107, 67, 0.12);
}

.menu-cta {
  border: 1px solid rgba(197, 107, 67, 0.45);
  color: var(--primary) !important;
  background: rgba(197, 107, 67, 0.12);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
  color: var(--text);
  border-radius: 999px;
  width: 2.9rem;
  height: 2.9rem;
  padding: 0;
  font: inherit;
  font-weight: 600;
}

.menu-toggle-box {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.24rem;
}

.menu-toggle-box span {
  display: block;
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-box span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-box span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-box span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.22rem;
  background: rgba(255, 255, 255, 0.56);
}

.lang-btn {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-soft);
  font: inherit;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.26rem 0.55rem;
  cursor: pointer;
}

.lang-btn.active {
  background: rgba(197, 107, 67, 0.2);
  color: #5b331f;
}

.hero {
  position: relative;
  box-sizing: border-box;
  min-height: calc(100svh - 78px);
  min-height: calc(100dvh - 78px);
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 5.4rem 0 4.4rem;
  perspective: 1100px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-depth {
  position: absolute;
  inset: 0;
  z-index: -4;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  width: 20rem;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0.34;
  animation: orbFloat 9s ease-in-out infinite alternate;
}

.hero-orb-a {
  top: -4rem;
  right: -2rem;
  background: radial-gradient(circle, rgba(255, 202, 145, 0.62), rgba(255, 202, 145, 0));
}

.hero-orb-b {
  bottom: -5rem;
  left: -3rem;
  background: radial-gradient(circle, rgba(197, 107, 67, 0.55), rgba(197, 107, 67, 0));
  animation-delay: 1.2s;
}

.hero-orb-c {
  top: 34%;
  left: 44%;
  width: 14rem;
  background: radial-gradient(circle, rgba(255, 244, 224, 0.35), rgba(255, 244, 224, 0));
  animation-delay: 2.1s;
}

.hero-image {
  z-index: -3;
  transform: scale(1.08);
  filter: saturate(1.12) contrast(1.02);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(96deg, rgba(91, 46, 24, 0.8) 0%, rgba(91, 46, 24, 0.56) 44%, rgba(91, 46, 24, 0.2) 100%),
    linear-gradient(180deg, rgba(197, 107, 67, 0.2), rgba(114, 133, 67, 0.1));
}

.hero-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}

.hero-content {
  width: min(920px, 100%);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(7px);
  box-shadow: var(--shadow);
  background:
    linear-gradient(140deg, rgba(128, 66, 36, 0.78), rgba(128, 66, 36, 0.52)),
    radial-gradient(circle at 18% 16%, rgba(255, 232, 204, 0.22), transparent 48%);
  padding: 1.05rem 1.35rem;
  text-align: center;
  animation: cardLift 6s ease-in-out infinite alternate;
}

.hero-emblem {
  margin: 0 auto 0.75rem;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(2px);
  padding: 0.35rem;
}

.hero-emblem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.26rem 0.72rem;
  margin: 0;
}

.eyebrow {
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #fff8f3;
}

.section-kicker {
  align-items: center;
  gap: 0.36rem;
  border: 1px solid rgba(197, 107, 67, 0.35);
  color: #744934;
  background: rgba(197, 107, 67, 0.12);
  margin-bottom: 0.5rem;
}

.section-kicker::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  font-size: 0.88rem;
  line-height: 1;
  transform: translateY(-0.02em);
}

.intro .section-kicker::before {
  content: "🚚";
}

#methodes .section-kicker::before {
  content: "🧭";
}

#temoignages .section-kicker::before {
  content: "⭐";
}

#approche .section-kicker::before {
  content: "🌍";
}

.dashdoc-merged {
  margin-top: 1.55rem;
}

.dashdoc-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0.15rem 0 0.6rem;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(197, 107, 67, 0.32);
  background: rgba(255, 249, 238, 0.86);
}

.dashdoc-badge img {
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 4px;
  object-fit: contain;
}

.dashdoc-badge span {
  font-family: "Sora", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6d432d;
}

#faq .section-kicker::before {
  content: "❓";
}

#contact .section-kicker::before {
  content: "📞";
}

.card h3::before {
  content: "◦";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.9em;
  margin-right: 0.4rem;
  color: var(--accent);
  font-weight: 800;
  transform: translateY(-0.01em);
}

h1,
h2,
h3 {
  font-family: "Sora", sans-serif;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  margin: 0.9rem 0 0.8rem;
  max-width: 18ch;
  color: #fff8f0;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  margin: 0.55rem 0 1rem;
}

h3 {
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  margin: 0 0 0.42rem;
  line-height: 1.2;
}

p {
  margin: 0 0 0.9rem;
  color: var(--text-soft);
}

.hero-content p {
  color: #fff1e6;
}

.hero-content h1 {
  margin-left: auto;
  margin-right: auto;
}

.hero-content > p {
  max-width: 54ch;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-decoration: none;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 700;
  font-family: inherit;
  padding: 0.72rem 1.08rem;
  cursor: pointer;
}

.btn-solid {
  background: linear-gradient(122deg, #d88452, var(--accent) 56%, var(--primary));
  color: #fffaf6;
  box-shadow: 0 12px 24px rgba(197, 107, 67, 0.35);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.btn-solid:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 18px 30px rgba(197, 107, 67, 0.42);
  filter: saturate(1.08);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.16);
  color: #fffaf4;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-ghost:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.24);
}

.hero .btn:hover,
.hero .btn:focus-visible {
  color: #fffaf6;
  text-decoration: none;
}

.hero .btn-phone:hover,
.hero .btn-phone:focus-visible {
  color: #ffffff;
}

.btn-main::before {
  content: "✦";
  font-size: 0.95rem;
  line-height: 1;
}

.btn-phone {
  min-width: 214px;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  font-size: 0.72rem;
  line-height: 1;
}

.hero-points {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.hero-points span {
  border-radius: 999px;
  font-size: 0.82rem;
  color: #f7efe8;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 0.34rem 0.66rem;
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
}

.hero-points span::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
  font-size: 0.74rem;
  line-height: 1;
}

.hero-scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 2.1rem;
  transform: translateX(-50%);
  color: #fff4e8;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.96;
  z-index: 4;
  padding: 0.5rem 0.92rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-scroll-indicator::after {
  content: "";
  display: block;
  width: 2px;
  height: 18px;
  margin: 0.35rem auto 0;
  background: rgba(255, 255, 255, 0.76);
  animation: scrollPulse 1.4s ease-in-out infinite;
}

.section {
  padding: 4.4rem 0;
}

.intro h2 {
  max-width: 24ch;
}

.cards {
  display: grid;
  gap: 0.9rem;
}

.cards.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(170deg, #fdf9ef, #f8f0df);
  padding: 1.1rem;
  box-shadow: var(--shadow);
}

.specific-transport-grid {
  margin-top: 0.95rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.specific-transport-card {
  display: flex;
  align-items: center;
  gap: 0.62rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  padding: 0.62rem 0.72rem;
  box-shadow: 0 8px 20px rgba(85, 56, 38, 0.11);
  backdrop-filter: blur(2px);
}

.specific-transport-card.adr {
  background: linear-gradient(160deg, rgba(198, 54, 54, 0.26), rgba(198, 54, 54, 0.14));
}

.specific-transport-card.convoy {
  background: linear-gradient(160deg, rgba(222, 131, 43, 0.24), rgba(222, 131, 43, 0.12));
}

.specific-transport-card.td {
  background: linear-gradient(160deg, rgba(49, 127, 210, 0.24), rgba(49, 127, 210, 0.12));
}

.specific-transport-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  background: rgba(255, 250, 242, 0.68);
  color: #6f432e;
  font-size: 0.95rem;
  line-height: 1;
  flex-shrink: 0;
}

.specific-transport-card p {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  line-height: 1.2;
}

.specific-transport-card strong {
  font-family: "Sora", sans-serif;
  color: #5f3825;
  font-size: 0.86rem;
}

.specific-transport-card p span {
  color: #6d4a38;
  font-size: 0.8rem;
}

.card ul {
  margin: 0.75rem 0 0;
  padding-left: 1.05rem;
}

.band {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.26)),
    linear-gradient(100deg, rgba(197, 107, 67, 0.14), rgba(114, 133, 67, 0.1));
}

.testimonials .quote p {
  font-size: 1.04rem;
  color: #5c3a26;
  line-height: 1.5;
  margin: 0.55rem 0 0;
  max-width: 27ch;
}

.testimonials .quote {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  width: 100%;
  min-height: 0;
  margin: 0;
  padding: 1.2rem 1.05rem 1rem;
  gap: 0.6rem;
  border-radius: 22px;
  border: 1px solid rgba(197, 107, 67, 0.28);
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 236, 210, 0.65), rgba(255, 236, 210, 0)),
    linear-gradient(170deg, rgba(255, 251, 244, 0.98), rgba(247, 238, 223, 0.94));
  box-shadow: 0 18px 32px rgba(110, 84, 59, 0.16);
}

.testimonials .quote-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5.1rem;
  height: 5.1rem;
  border-radius: 50%;
  font-family: "Sora", sans-serif;
  font-size: 1.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff8f2;
  background: linear-gradient(145deg, #d38357, var(--primary));
  box-shadow: 0 12px 22px rgba(112, 70, 48, 0.28);
  margin-top: 0.1rem;
}

.testimonials .quote strong {
  color: #7c4d34;
  font-size: 0.92rem;
  line-height: 1.3;
  margin-top: 0.25rem;
  padding-top: 0.5rem;
}

.testimonials .quote::before {
  content: none;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.faq-item {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(251, 246, 234, 0.95);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.faq-item h3::before {
  content: "→";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.9em;
  margin-right: 0.35rem;
  color: var(--accent);
  transform: translateY(-0.01em);
}

.steps {
  --steps-gap: 1.4rem;
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--steps-gap);
  overflow: visible;
}

.steps article {
  position: relative;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.9);
  padding: 0.9rem;
}

.steps article:not(:last-child)::before {
  content: none;
}

.steps article:not(:last-child)::after {
  content: "➜";
  position: absolute;
  top: 50%;
  right: calc(var(--steps-gap) / -2);
  transform: translate(50%, -50%);
  font-size: 0.95rem;
  line-height: 1;
  color: rgba(172, 95, 56, 0.92);
  animation: flowArrow 1.8s ease-in-out infinite;
}

.steps span {
  display: inline-flex;
  width: 2.05rem;
  height: 2.05rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(197, 107, 67, 0.2);
  color: #6f4029;
  font-weight: 800;
  margin-bottom: 0.55rem;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.metric {
  border-radius: 16px;
  padding: 1rem;
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(245, 237, 219, 0.94), rgba(241, 228, 203, 0.88));
  box-shadow: var(--shadow);
}

.metric strong {
  display: block;
  font-size: clamp(1.7rem, 2.5vw, 2.3rem);
  font-family: "Sora", sans-serif;
  margin-bottom: 0.4rem;
  color: #5b3d2c;
}

.metric strong::after {
  content: " •";
  color: rgba(197, 107, 67, 0.65);
  font-size: 0.9em;
}

.metric p {
  margin: 0;
}

.about-copy p:last-child,
.contact-copy p:last-child,
.faq-item p:last-child,
.card p:last-child {
  margin-bottom: 0;
}

.contact {
  padding-top: 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.contact-copy,
.contact-form {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(253, 248, 239, 0.94), rgba(245, 235, 216, 0.9));
  box-shadow: var(--shadow);
  padding: 1.1rem;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
}

.form-field {
  display: grid;
  gap: 0.35rem;
}

.contact-map-preview {
  margin-top: 0.75rem;
  border-radius: 14px;
  border: 1px solid rgba(197, 107, 67, 0.24);
  background: linear-gradient(160deg, rgba(255, 248, 236, 0.9), rgba(246, 234, 208, 0.86));
  padding: 0.72rem;
}

.contact-map-title {
  margin: 0 0 0.5rem;
  font-family: "Sora", sans-serif;
  font-size: 0.9rem;
  color: #6f442e;
}

.contact-map-canvas {
  position: relative;
  height: 152px;
  border-radius: 12px;
  border: 1px solid rgba(125, 98, 73, 0.24);
  background:
    radial-gradient(circle at 82% 20%, rgba(142, 107, 63, 0.18), transparent 46%),
    radial-gradient(circle at 18% 78%, rgba(114, 133, 67, 0.16), transparent 42%),
    linear-gradient(145deg, rgba(248, 238, 219, 0.92), rgba(241, 227, 198, 0.86));
  overflow: hidden;
}

.contact-map-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.contact-map-map .leaflet-control-zoom a {
  color: #6a3f29;
  border-color: rgba(125, 98, 73, 0.28);
  background: rgba(255, 250, 242, 0.94);
}

.contact-map-map .leaflet-control-attribution {
  background: rgba(255, 250, 242, 0.86);
  color: #6f4a35;
}

.contact-leaflet-marker-pin {
  position: relative;
  display: block;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid rgba(255, 250, 242, 0.96);
  box-shadow:
    0 0 0 2px rgba(197, 107, 67, 0.28),
    0 6px 14px rgba(89, 53, 35, 0.24);
}

.contact-leaflet-marker-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 0.24rem;
  height: 0.3rem;
  border-radius: 999px;
  background: rgba(118, 72, 48, 0.5);
}

.contact-map-badges {
  margin-top: 0.52rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem;
}

.contact-map-badges span {
  border-radius: 999px;
  border: 1px solid rgba(197, 107, 67, 0.26);
  background: rgba(197, 107, 67, 0.1);
  color: #7a4a31;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.24rem 0.54rem;
}

label {
  display: inline-block;
  font-weight: 600;
  color: #6a4a35;
}

input,
textarea {
  width: 100%;
  font: inherit;
  color: var(--text);
  border-radius: 10px;
  border: 1px solid rgba(127, 98, 73, 0.32);
  background: rgba(255, 255, 255, 0.72);
  padding: 0.66rem;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(197, 107, 67, 0.45);
  outline-offset: 1px;
}

.footer {
  margin-top: 2.4rem;
  padding: 1rem 0 1.4rem;
  background:
    radial-gradient(circle at 8% -14%, rgba(197, 107, 67, 0.2), transparent 42%),
    radial-gradient(circle at 92% 122%, rgba(114, 133, 67, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(255, 249, 238, 0.98), rgba(244, 230, 206, 0.95));
  border-top: 1px solid rgba(197, 107, 67, 0.22);
}

.footer-shell {
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 1rem;
}

.footer-slogan {
  text-align: center;
  padding-bottom: 0.8rem;
  border-bottom: 0;
}

.footer-slogan p {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  letter-spacing: 0.04em;
  color: #613a27;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0.9rem 0 0.65rem;
}

.footer-col {
  border: 0;
  background: transparent;
  padding: 0.75rem;
}

.footer-col h4 {
  margin: 0 0 0.55rem;
  font-family: "Sora", sans-serif;
  font-size: 0.96rem;
  color: #6a3e28;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.footer-col p {
  margin: 0 0 0.38rem;
  font-size: 0.92rem;
}

.social-links-block {
  margin: 1rem 0 0.8rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.55rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.78rem;
  border: 1px solid rgba(116, 73, 52, 0.14);
  border-radius: 999px;
  background: rgba(255, 248, 239, 0.7);
  color: var(--text);
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(172, 95, 56, 0.35);
  background: rgba(255, 244, 224, 0.92);
}

.social-link svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
  flex: 0 0 auto;
}

.footer-col-right {
  text-align: right;
}

.footer-bottom {
  padding-top: 0.75rem;
  border-top: 0;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: #6f4a35;
  font-size: 0.9rem;
}

.footer a {
  color: #7d4528;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--primary);
}

.section-context .card p {
  margin-bottom: 0;
}

.about-section {
  padding-top: 3.4rem;
}

.mission-banner {
  padding-top: 2.1rem;
  padding-bottom: 2.1rem;
}

.mission-content {
  border-radius: var(--radius);
  border: 1px solid rgba(197, 107, 67, 0.25);
  background:
    linear-gradient(170deg, rgba(255, 248, 236, 0.96), rgba(245, 233, 211, 0.92)),
    radial-gradient(circle at 18% 10%, rgba(197, 107, 67, 0.12), transparent 50%);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.mission-claim {
  margin: 0.45rem 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.05rem, 2.1vw, 1.35rem);
  line-height: 1.35;
  color: #5c3826;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  gap: 1rem;
  align-items: center;
}

.about-photo {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.about-copy {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(253, 248, 239, 0.96), rgba(245, 235, 216, 0.92));
  box-shadow: var(--shadow);
  padding: 1.1rem;
}

.legal-page h1 {
  color: var(--text);
}

.legal-page > .section:first-child {
  padding-top: 2.4rem;
  padding-bottom: 1.2rem;
}

.legal-kicker {
  color: #744934;
  border-color: rgba(197, 107, 67, 0.3);
  background: rgba(197, 107, 67, 0.1);
}

.legal-lead {
  max-width: 72ch;
}

.legal-section {
  padding-top: 1.5rem;
}

.legal-card {
  line-height: 1.7;
}

.legal-card p,
.legal-card li {
  color: var(--text-soft);
}

.legal-card ul {
  margin: 0;
  padding-left: 1.2rem;
}

.scroll-top-btn {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(197, 107, 67, 0.38);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(239, 227, 205, 0.95));
  color: #6f432b;
  box-shadow: var(--shadow);
  cursor: pointer;
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: 0.25s ease;
}

.scroll-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top-btn svg {
  width: 1.3rem;
  height: 1.3rem;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes orbFloat {
  from {
    transform: translateY(0) scale(1);
  }
  to {
    transform: translateY(-14px) scale(1.06);
  }
}

@keyframes cardLift {
  from {
    transform: translateZ(18px) translateY(0);
  }
  to {
    transform: translateZ(26px) translateY(-6px);
  }
}

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

@keyframes flowArrow {
  0%,
  100% {
    transform: translate(50%, -50%) translateX(0);
    opacity: 0.45;
  }
  50% {
    transform: translate(50%, -50%) translateX(3px);
    opacity: 1;
  }
}

@media (max-width: 1060px) {
  .hero-grid,
  .about-grid,
  .cards.three,
  .specific-transport-grid,
  .cards.two,
  .steps,
  .metrics,
  .contact-grid,
  .faq-grid,
  .footer-columns {
    grid-template-columns: 1fr 1fr;
  }

  .hero-content {
    width: 100%;
  }

  .steps article::before,
  .steps article::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .nav-row {
    min-height: 66px;
    gap: 0.7rem;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .menu {
    position: absolute;
    top: 62px;
    right: 0;
    left: 0;
    min-width: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 0.6rem;
    border-radius: 0 0 18px 18px;
    border: 1px solid var(--line);
    background: rgba(255, 249, 238, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transform-origin: top center;
    transition: 0.2s ease;
  }

  .menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .menu a {
    padding: 0.7rem 0.85rem;
    border-radius: 12px;
  }

  .menu-cta {
    justify-content: center;
  }

  .hero {
    min-height: calc(100svh - 72px);
    min-height: calc(100dvh - 72px);
    padding-top: 4rem;
    padding-bottom: 3.2rem;
  }

  .hero-scroll-indicator {
    display: inline-flex;
    bottom: 1.2rem;
  }

  .hero-grid,
  .about-grid,
  .cards.three,
  .specific-transport-grid,
  .cards.two,
  .steps,
  .metrics,
  .contact-grid,
  .faq-grid,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    margin-bottom: 0;
    min-height: 0;
  }

  .hero-content {
    padding: 0.95rem;
  }

  .hero-emblem {
    width: 4.2rem;
    height: 4.2rem;
    margin-bottom: 0.55rem;
  }

  .hero-actions {
    gap: 0.55rem;
  }

  .btn,
  .btn-phone {
    width: 100%;
    min-width: 0;
  }

  .hero-points {
    gap: 0.42rem;
  }

  .hero-points span {
    width: 100%;
    justify-content: center;
  }

  .lang-switch {
    margin-left: auto;
  }

  .section {
    padding: 2.9rem 0;
  }

  .mission-banner {
    padding-top: 2.1rem;
    padding-bottom: 2.1rem;
  }

  .card,
  .contact-copy,
  .contact-form,
  .metric,
  .steps article {
    padding: 0.95rem;
  }

  .metrics {
    gap: 0.65rem;
  }

  .contact {
    padding-top: 1.1rem;
  }

  .contact-grid,
  .footer-columns,
  .faq-grid,
  .cards,
  .steps {
    gap: 0.75rem;
  }

  .contact-map-preview {
    margin-top: 0.55rem;
    padding: 0.62rem;
  }

  .brand-logo {
    width: 1.95rem;
    height: 1.95rem;
  }

  .brand-wordmark {
    font-size: 0.82rem;
    letter-spacing: 0.05em;
  }

  .footer-col-right,
  .footer-bottom {
    text-align: left;
  }

  .footer {
    margin-top: 1.8rem;
    padding-bottom: 1rem;
  }

  .footer-columns {
    padding-top: 0.55rem;
  }

  .footer-col {
    padding: 0.45rem 0;
  }

  .footer-bottom {
    padding-top: 0.55rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .scroll-top-btn {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-image {
    transform: none;
  }

  .hero-orb,
  .hero-content,
  .hero-image {
    animation: none;
  }

  .steps article::after {
    animation: none;
  }

  .btn-solid,
  .btn-ghost {
    transition: none;
  }

  .hero-scroll-indicator::after {
    animation: none;
  }
}
