/* AD International Trading Limited — static site */

:root {
  --bg: #f8fafc;
  --bg-elevated: #ffffff;
  --text: #0f172a;
  --text-muted: #475569;
  --line: rgba(15, 23, 42, 0.08);
  --accent: #0284c7;
  --accent-soft: rgba(2, 132, 199, 0.12);
  --accent-glow: rgba(56, 189, 248, 0.35);
  --dark: #0c1222;
  --dark-elevated: #121a2e;
  --radius: 16px;
  --radius-sm: 12px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, sans-serif;
  --shadow: 0 24px 48px -24px rgba(15, 23, 42, 0.25);
  --shadow-sm: 0 8px 24px -12px rgba(15, 23, 42, 0.18);
  --header-h: 72px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #0369a1;
}

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

.skip-link {
  position: absolute;
  left: 12px;
  top: -100px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--dark);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}

.skip-link:focus {
  top: 12px;
}

.shell {
  width: min(100% - 32px, 1180px);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  flex-shrink: 0;
}

.brand__mark {
  width: min(200px, 48vw);
  height: auto;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 10px;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.nav-toggle__bar {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s var(--ease-out), opacity 0.2s;
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav__list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}

.site-nav__list a:hover {
  color: var(--text);
  background: rgba(15, 23, 42, 0.04);
}

.nav-link__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.88;
  transition: opacity 0.2s, transform 0.25s var(--ease-out);
}

.site-nav__list a:hover .nav-link__icon {
  opacity: 1;
}

@media (prefers-reduced-motion: no-preference) {
  .site-nav__list a:hover .nav-link__icon {
    transform: translateY(-1px);
  }
}

.site-nav__cta {
  background: var(--text) !important;
  color: #fff !important;
  margin-left: 4px;
}

.site-nav__cta .nav-link__icon {
  opacity: 0.92;
}

.site-nav__cta:hover {
  background: #1e293b !important;
  color: #fff !important;
}

.site-nav__cta:hover .nav-link__icon {
  opacity: 1;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: color-mix(in srgb, var(--bg) 96%, white);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    padding: 16px 20px 24px;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out), visibility 0.25s;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav__list a {
    justify-content: center;
    width: 100%;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

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

  .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(48px, 8vw, 96px) 0 clamp(56px, 10vw, 100px);
  overflow: clip;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% -10%, rgba(56, 189, 248, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 40%, rgba(2, 132, 199, 0.12), transparent 50%),
    linear-gradient(180deg, #f1f5f9 0%, var(--bg) 45%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
}

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 12px;
}

.eyebrow--on-dark {
  color: #7dd3fc;
}

.hero__title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
}

.gradient-text {
  background: linear-gradient(105deg, #0284c7, #0ea5e9, #38bdf8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 52ch;
  margin: 0 0 28px;
}

.hero__location {
  color: var(--accent);
  font-weight: 800;
  white-space: nowrap;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 12px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9375rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s, background 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: linear-gradient(135deg, #0284c7, #0369a1);
  color: #fff;
  box-shadow: 0 12px 28px -8px rgba(2, 132, 199, 0.55);
}

.btn--primary:hover {
  box-shadow: 0 16px 36px -10px rgba(2, 132, 199, 0.6);
  color: #fff;
}

.btn--ghost {
  background: var(--bg-elevated);
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.btn--ghost:hover {
  border-color: rgba(2, 132, 199, 0.35);
  color: var(--text);
}

.btn--block {
  width: 100%;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
}

.hero__stat dt {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin: 0 0 4px;
}

.hero__stat dd {
  margin: 0;
  font-weight: 700;
  font-size: 1rem;
}

@media (max-width: 520px) {
  .hero__stats {
    grid-template-columns: 1fr;
  }
}

.hero-card {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  padding: 1px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.5), rgba(2, 132, 199, 0.15), rgba(15, 23, 42, 0.08));
  box-shadow: var(--shadow);
}

.hero-card__glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 30% 30%, var(--accent-glow), transparent 55%);
  opacity: 0.7;
  pointer-events: none;
}

.hero-card__content {
  position: relative;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 32px);
  border: 1px solid var(--line);
}

.hero-card__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.hero-card__title {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.hero-card__list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.hero-card__list li + li {
  margin-top: 8px;
}

/* Trust strip */
.band--tight {
  padding: 20px 0 8px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .trust-strip {
    grid-template-columns: 1fr;
  }
}

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-strip__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  flex-shrink: 0;
}

/* Sections */
.section {
  padding: clamp(64px, 10vw, 112px) 0;
}

.section--alt {
  background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
}

.section--dark {
  background: var(--dark);
  color: #e2e8f0;
}

.section--contact {
  background: var(--bg);
}

.section__head {
  max-width: 720px;
  margin-bottom: clamp(36px, 6vw, 56px);
}

.section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 16px;
}

.section__title--on-dark {
  color: #f8fafc;
}

.section__lead {
  margin: 0;
  font-size: 1.0625rem;
  color: var(--text-muted);
}

.section__lead--on-dark {
  color: #94a3b8;
}

.section__head--center {
  text-align: center;
  margin-inline: auto;
  max-width: 760px;
}

.section__lead--narrow {
  max-width: 52ch;
  margin-inline: auto;
}

/* Freight / multimodal */
.section--freight {
  position: relative;
  padding: clamp(72px, 11vw, 120px) 0;
  overflow: clip;
}

.freight__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% -20%, rgba(56, 189, 248, 0.18), transparent 55%),
    linear-gradient(180deg, #0f172a 0%, #0c1222 50%, #0a0f1c 100%);
  pointer-events: none;
}

.freight__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 70%);
  opacity: 0.9;
}

.freight__inner {
  position: relative;
}

.section--freight .eyebrow {
  color: #7dd3fc;
}

.section--freight .section__title {
  color: #f8fafc;
}

.section--freight .section__lead {
  color: #94a3b8;
}

.freight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: clamp(32px, 5vw, 48px);
}

@media (max-width: 1024px) {
  .freight-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .freight-grid {
    grid-template-columns: 1fr;
  }
}

.freight-card {
  position: relative;
  padding: clamp(24px, 3vw, 32px);
  border-radius: calc(var(--radius) + 4px);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 24px 48px -28px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.35s var(--ease-out), transform 0.35s var(--ease-out), box-shadow 0.35s;
  color: #cbd5e1;
}

.freight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.35), transparent 45%, transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.65;
}

.freight-card:hover {
  border-color: rgba(56, 189, 248, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 32px 64px -24px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(56, 189, 248, 0.12);
}

.freight-card__icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  background: linear-gradient(145deg, rgba(56, 189, 248, 0.15), rgba(2, 132, 199, 0.06));
  color: #7dd3fc;
  border: 1px solid rgba(125, 211, 252, 0.2);
}

.freight-card__svg {
  width: 52px;
  height: 52px;
}

.freight-card__svg .freight-card__wheel--f,
.freight-card__svg .freight-card__wheel--r {
  transform-box: fill-box;
  transform-origin: center;
}

.freight-card__title {
  margin: 0 0 12px;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #f1f5f9;
}

.freight-card__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #94a3b8;
}

.freight__footnote {
  margin: clamp(36px, 5vw, 52px) auto 0;
  text-align: center;
  max-width: 48ch;
  font-size: 1rem;
  color: #64748b;
}

.freight__footnote a {
  color: #7dd3fc;
  font-weight: 700;
  text-decoration: none;
}

.freight__footnote a:hover {
  text-decoration: underline;
}

/* Animated freight icons */
@media (prefers-reduced-motion: no-preference) {
  .freight-card:hover .freight-card__plane-group {
    animation: freight-air 2.2s ease-in-out infinite;
  }

  .freight-card:hover .freight-card__trail {
    animation: freight-trail 1.1s ease-in-out infinite;
  }

  .freight-card:hover .freight-card__trail--2 {
    animation: freight-trail 1.1s ease-in-out infinite 0.15s;
  }

  .freight-card:hover .freight-card__wave--1 {
    animation: freight-wave 2.5s ease-in-out infinite;
  }

  .freight-card:hover .freight-card__wave--2 {
    animation: freight-wave 2.5s ease-in-out infinite 0.35s;
  }

  .freight-card:hover .freight-card__wheel--f,
  .freight-card:hover .freight-card__wheel--r {
    animation: freight-wheel 0.9s linear infinite;
    transform-origin: center;
  }

  .freight-card:hover .freight-card__truck {
    animation: freight-truck 1.8s ease-in-out infinite;
  }

  .freight-card:hover .freight-card__speed--1 {
    animation: freight-speed 0.7s ease-in-out infinite;
  }

  .freight-card:hover .freight-card__speed--2 {
    animation: freight-speed 0.7s ease-in-out infinite 0.12s;
  }

  .freight-card:hover .freight-card__speed--3 {
    animation: freight-speed 0.7s ease-in-out infinite 0.06s;
  }

  .freight-card:hover .freight-card__speed--4 {
    animation: freight-speed 0.7s ease-in-out infinite 0.18s;
  }

  .freight-card:hover .freight-card__box {
    animation: freight-box 1.6s ease-in-out infinite;
  }
}

@keyframes freight-air {
  0%,
  100% {
    transform: translate(0, 0) rotate(-2deg);
  }
  50% {
    transform: translate(3px, -2px) rotate(2deg);
  }
}

@keyframes freight-trail {
  0%,
  100% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.55;
  }
}

@keyframes freight-wave {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-6px);
  }
}

@keyframes freight-wheel {
  to {
    transform: rotate(360deg);
  }
}

@keyframes freight-truck {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(3px);
  }
}

@keyframes freight-speed {
  0%,
  100% {
    opacity: 0.25;
    transform: scaleX(0.85);
  }
  50% {
    opacity: 0.85;
    transform: scaleX(1);
  }
}

@keyframes freight-box {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

/* Cards */
.cards--services {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 20px;
}

.card {
  position: relative;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s var(--ease-out), transform 0.25s var(--ease-out), box-shadow 0.25s;
  contain: content;
}

.card:hover {
  border-color: rgba(2, 132, 199, 0.28);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -20px rgba(15, 23, 42, 0.2);
}

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--accent-soft), rgba(56, 189, 248, 0.06));
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  color: var(--accent);
  border: 1px solid rgba(2, 132, 199, 0.14);
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
}

.card__svg {
  width: 24px;
  height: 24px;
}

@media (prefers-reduced-motion: no-preference) {
  .card:hover .card__icon {
    transform: translateY(-2px) scale(1.03);
    border-color: rgba(2, 132, 199, 0.35);
    box-shadow: 0 12px 28px -14px rgba(2, 132, 199, 0.45);
  }

  .card:hover .card__svg {
    animation: card-icon-pop 0.55s var(--ease-out);
  }
}

@keyframes card-icon-pop {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.12);
  }
  100% {
    transform: scale(1);
  }
}

.card__title {
  font-size: 1.125rem;
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.card__text {
  margin: 0 0 18px;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.card__link {
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  color: var(--accent);
}

.card__link:hover {
  text-decoration: underline;
}

/* Pills */
.pill-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.875rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

/* About */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}

@media (max-width: 860px) {
  .about {
    grid-template-columns: 1fr;
  }
}

.about__text {
  color: var(--text-muted);
  font-size: 1.0625rem;
}

.about__list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.about__list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9375rem;
}

.about__list a {
  font-weight: 600;
}

.about-panel {
  background: var(--bg-elevated);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 32px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-panel__title {
  margin: 0 0 20px;
  font-size: 1.125rem;
  font-weight: 800;
}

.about-panel__steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-panel__steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.about-panel__steps li:first-child {
  border-top: none;
  padding-top: 0;
}

.about-panel__steps span {
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--accent);
}

/* Features dark */
.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .feature-row {
    grid-template-columns: 1fr;
  }
}

.feature {
  padding: 28px 24px;
  border-radius: var(--radius);
  background: var(--dark-elevated);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.feature__title {
  margin: 0 0 10px;
  font-size: 1.0625rem;
  font-weight: 800;
  color: #f1f5f9;
}

.feature__text {
  margin: 0;
  color: #94a3b8;
  font-size: 0.9375rem;
}

/* Contact */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

@media (max-width: 860px) {
  .contact {
    grid-template-columns: 1fr;
  }
}

.contact__direct {
  margin-top: 28px;
}

.contact__mail {
  font-size: 1.125rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--text);
}

.contact__mail:hover {
  color: var(--accent);
}

.contact__meta {
  margin: 8px 0 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.contact__location {
  font-weight: 800;
  color: var(--text);
}

.contact__form-wrap {
  position: relative;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--bg-elevated);
  padding: clamp(24px, 4vw, 32px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 560px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field__label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-muted);
}

.field__input {
  font-family: inherit;
  font-size: 1rem;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field__input:focus {
  outline: none;
  border-color: rgba(2, 132, 199, 0.45);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.field__input--area {
  resize: vertical;
  min-height: 120px;
}

.contact-success {
  text-align: center;
  padding: clamp(40px, 6vw, 56px) 24px;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-success__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.contact-success__icon::before {
  content: "✓";
  transform: translateY(1px);
}

.contact-success__title {
  margin: 0 0 12px;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.contact-success__text {
  margin: 0 auto;
  max-width: 36ch;
  color: var(--text-muted);
  font-size: 1rem;
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: #94a3b8;
  padding: 48px 0 32px;
  font-size: 0.9375rem;
}

.site-footer a {
  color: #e2e8f0;
}

.site-footer a:hover {
  color: #7dd3fc;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.site-footer__top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.site-footer__logo {
  display: inline-block;
  line-height: 0;
  border-radius: 12px;
  transition: opacity 0.2s, transform 0.25s var(--ease-out);
}

.site-footer__logo:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.site-footer__logo img {
  width: min(220px, 85vw);
  height: auto;
  display: block;
}

.site-footer__tag {
  margin: 0;
  font-size: 0.9375rem;
  color: #94a3b8;
}

.site-footer__location-label {
  color: #e2e8f0;
  font-weight: 700;
}

.site-footer__row strong {
  color: #f1f5f9;
  font-weight: 700;
}

.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 32px;
}

@media (max-width: 700px) {
  .site-footer__cols {
    grid-template-columns: 1fr;
  }
}

.site-footer__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
  margin: 0 0 10px;
}

.site-footer__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  line-height: 1.55;
  color: #cbd5e1;
}

.site-footer__row a {
  font-weight: 600;
  word-break: break-word;
}

.site-footer__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: #38bdf8;
  opacity: 0.95;
}

@media (prefers-reduced-motion: no-preference) {
  .site-footer__icon--mail {
    animation: footer-mail 4s ease-in-out infinite;
  }
}

@keyframes footer-mail {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.95;
  }
  50% {
    transform: translateY(-2px);
    opacity: 1;
  }
}

.site-footer__legal {
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(148, 163, 184, 0.15);
  font-size: 0.8125rem;
  color: #64748b;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(16px);
}

.reveal.is-visible {
  animation: rise 0.7s var(--ease-out) forwards;
}

.reveal--delay.is-visible {
  animation-delay: 0.12s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
  .reveal.is-visible {
    animation: none;
  }
}

/* Header shadow on scroll */
.site-header.is-scrolled {
  box-shadow: 0 8px 24px -16px rgba(15, 23, 42, 0.2);
}
