/* ============================================================
   KORTIK CARGO — Corporate site
   Light theme, brand yellow (#feca02) accents, clean & fast
   ============================================================ */

:root {
  --bg:      #fafaf6;
  --surface: #ffffff;
  --soft:    #f3f1ea;
  --line:    #e5e2d8;
  --line-2:  #d8d4c5;
  --ink:     #1d1d1b;
  --ink-2:   #4a4a44;
  --muted:   #75736a;
  --accent:  #feca02;
  --accent-2:#ffd831;
  --dark:    #161613;

  --f-display: "Anton", "Impact", system-ui, sans-serif;
  --f-body:    "Manrope", -apple-system, system-ui, sans-serif;

  --rad:    8px;
  --rad-lg: 18px;
  --shadow-sm: 0 4px 14px -6px rgba(20, 20, 18, .12);
  --shadow:    0 18px 40px -22px rgba(20, 20, 18, .25);
  --shadow-lg: 0 50px 120px -50px rgba(20, 20, 18, .35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--accent); color: var(--ink); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ----------- TYPOGRAPHY UTILS ----------- */
.eyebrow {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 18px;
}
.eyebrow.light { color: rgba(255,255,255,.85); }
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px; height: 1.5px;
  background: var(--accent);
  vertical-align: middle;
  margin-right: 12px;
  margin-bottom: 3px;
}

.section-title {
  font-family: var(--f-display);
  font-size: clamp(38px, 5.5vw, 80px);
  line-height: 1;
  letter-spacing: -0.005em;
  margin: 0 0 20px;
  font-weight: 400;
  color: var(--ink);
  text-transform: uppercase;
}
.section-title em {
  font-family: var(--f-body);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  text-transform: none;
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 620px;
  margin: 0 auto;
}

.section-head { margin-bottom: 60px; }
.section-head.center { text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; margin-bottom: 70px; }
.section-head.center .eyebrow::before { margin-right: 12px; }

/* ----------- BUTTONS ----------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .02em;
  border-radius: var(--rad);
  border: 1.5px solid transparent;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 12px 24px -10px rgba(254,202,2,.55);
}
.btn-primary:hover { background: var(--accent-2); box-shadow: 0 18px 36px -10px rgba(254,202,2,.7); }

.btn-light-ghost {
  background: rgba(255,255,255,.12);
  color: #fff;
  backdrop-filter: blur(8px);
  border-color: rgba(255,255,255,.4);
}
.btn-light-ghost:hover { background: rgba(255,255,255,.22); }

.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover { background: #000; }

.btn-lg { padding: 18px 30px; font-size: 1rem; }

/* ----------- NAV ----------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 246, .9);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 255, 255, .92);
}
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 18px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
}
.nav-extra {
  display: flex;
  align-items: center;
  gap: 14px;
}
.lang-switch {
  display: inline-flex;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  overflow: hidden;
  padding: 2px;
  gap: 1px;
}
.lang-btn {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 5px 6px;
  font-family: var(--f-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--muted);
  cursor: pointer;
  border-radius: 4px;
  transition: background .2s, color .2s, transform .2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.lang-btn .flag {
  display: block;
  width: 22px;
  height: 15px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0,0,0,.08);
  opacity: .55;
  transition: opacity .2s, transform .2s;
}
.lang-btn:hover .flag { opacity: .9; transform: translateY(-1px); }
.lang-btn.active .flag { opacity: 1; }
.lang-btn.active {
  background: var(--ink);
}
.lang-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}
.nav-logo img { height: 60px; display: block; transition: transform .3s ease; }
.nav-logo:hover img { transform: scale(1.04); }
@media (max-width: 700px) { .nav-logo img { height: 48px; } }
.nav-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  font-size: .92rem;
  font-weight: 500;
}
.nav-links a {
  position: relative;
  padding: 8px 0;
  color: var(--ink);
  transition: color .2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  background: var(--ink);
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .02em;
  border-radius: var(--rad);
  transition: background .25s, transform .25s, box-shadow .25s;
}
.nav-cta:hover {
  background: var(--accent);
  color: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 12px 22px -10px rgba(254,202,2,.55);
}

.nav-burger {
  display: none;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--rad);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.nav-burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
}

@media (max-width: 980px) {
  .nav-inner { grid-template-columns: auto 1fr auto; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--surface);
    padding: 12px 24px 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav-links a:last-child { border-bottom: none; }
  .nav-extra { gap: 8px; justify-self: end; }
  .nav-cta { display: none; }
  .lang-switch { padding: 1px; }
  .lang-btn { padding: 4px 5px; }
  .lang-btn .flag { width: 20px; height: 13px; }
  .nav-burger { display: inline-flex; }
}
@media (max-width: 480px) {
  .nav-inner { gap: 10px; padding: 12px 14px; }
  .lang-btn { padding: 3px 4px; }
  .lang-btn .flag { width: 18px; height: 12px; }
}

/* ----------- HERO ----------- */
.hero {
  position: relative;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
  padding-bottom: 80px;
}
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(20,20,18,.55) 0%, rgba(20,20,18,.45) 50%, rgba(20,20,18,.85) 100%),
    linear-gradient(110deg, rgba(20,20,18,.7) 0%, rgba(20,20,18,.2) 60%, transparent 100%);
}
.hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 130px 28px 80px;
  position: relative;
}
.hero-title {
  font-family: var(--f-display);
  font-size: clamp(54px, 8vw, 130px);
  line-height: .95;
  letter-spacing: -0.005em;
  margin: 0 0 24px;
  font-weight: 400;
  text-transform: uppercase;
  max-width: 14ch;
}
.hero-title em {
  font-family: var(--f-body);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.02em;
  text-transform: none;
}
.hero-lede {
  max-width: 580px;
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(255,255,255,.88);
  margin: 0 0 36px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-stats {
  position: relative;
  max-width: 1320px;
  margin: 60px auto 0;
  padding: 30px 28px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.hero-stats > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-stats strong {
  font-family: var(--f-display);
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 400;
  line-height: 1;
  color: #fff;
}
.hero-stats span {
  font-size: .82rem;
  letter-spacing: .04em;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
}
@media (max-width: 700px) {
  .hero-inner { padding: 90px 18px 60px; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 24px 16px; padding: 24px 18px 0; }
}

/* ----------- TRUST ----------- */
.trust {
  background: var(--ink);
  color: #fff;
  padding: 28px 28px;
  text-align: center;
}
.trust-text {
  max-width: 980px;
  margin: 0 auto;
  font-size: 1rem;
  color: rgba(255,255,255,.78);
}

/* ----------- SECTIONS ----------- */
.section {
  max-width: 1320px;
  margin: 0 auto;
  padding: 110px 28px;
}
@media (max-width: 700px) {
  .section { padding: 80px 18px; }
}

/* ----------- ABOUT ----------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-photo {
  position: relative;
  border-radius: var(--rad-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-photo img {
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
}
.about-photo-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--accent);
  color: var(--ink);
  padding: 18px 22px;
  border-radius: var(--rad);
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: var(--shadow-sm);
}
.about-photo-badge strong {
  font-family: var(--f-display);
  font-size: 38px;
  line-height: 1;
  font-weight: 400;
}
.about-photo-badge span {
  font-size: .8rem;
  letter-spacing: .02em;
  font-weight: 600;
}

.about-text p {
  color: var(--ink-2);
  margin: 0 0 18px;
}
.about-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 500;
}
.about-list .tick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  font-size: .72rem;
  font-weight: 700;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo img { aspect-ratio: 4 / 3; }
}

/* ----------- SERVICES ----------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--rad-lg);
  padding: 36px 32px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.service:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow);
}
.service-icon {
  width: 64px; height: 40px;
  color: var(--ink);
  margin-bottom: 28px;
}
.service h3 {
  font-family: var(--f-display);
  font-size: 32px;
  line-height: 1.05;
  margin: 0 0 12px;
  font-weight: 400;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}
.service h3 span {
  display: block;
  font-family: var(--f-body);
  font-style: italic;
  font-weight: 400;
  font-size: .55em;
  color: var(--accent);
  text-transform: none;
  letter-spacing: 0;
  margin-top: 4px;
}
.service p {
  color: var(--ink-2);
  margin: 0 0 18px;
}
.service ul {
  list-style: none;
  padding: 18px 0 0;
  margin: 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: .92rem;
  color: var(--muted);
}
.service ul li::before {
  content: "—";
  color: var(--accent);
  font-weight: 700;
  margin-right: 10px;
}

.service-highlight {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.service-highlight .service-icon { color: var(--accent); }
.service-highlight h3 { color: #fff; }
.service-highlight p { color: rgba(255,255,255,.78); }
.service-highlight ul { border-color: rgba(255,255,255,.14); color: rgba(255,255,255,.7); }

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

/* ----------- COVERAGE ----------- */
.coverage { background: var(--ink); color: #fff; max-width: none; padding-left: 0; padding-right: 0; }
.coverage .section-head { padding: 0 28px; }
.coverage .section-title { color: #fff; }
.coverage .section-sub { color: rgba(255,255,255,.7); }
.coverage .eyebrow { color: rgba(255,255,255,.7); }

.map-card {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}
.map { width: 100%; height: auto; }

.map-dots circle { fill: rgba(255,255,255,.08); }
.map-dots circle.land { fill: rgba(255,255,255,.18); }

.map-routes path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.6;
  stroke-dasharray: 4 6;
  opacity: .65;
}

.map-hubs .hub circle { fill: #fff; }
.map-hubs .hub.primary circle { fill: var(--accent); }
.map-hubs .hub .ring {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1;
  opacity: .35;
  transform-box: fill-box;
  transform-origin: center;
  animation: hubRing 3s ease-out infinite;
}
.map-hubs .hub.primary .ring { animation-duration: 2.2s; opacity: .5; }
@keyframes hubRing {
  0%   { transform: scale(.7); opacity: .9; }
  100% { transform: scale(2.5); opacity: 0; }
}
.map-hubs text {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  fill: rgba(255,255,255,.85);
  letter-spacing: .8px;
}
.map-hubs .hub.primary text { fill: var(--accent); }
.map-hubs .hub.small text { fill: rgba(255,255,255,.55); font-weight: 400; }

.map-legend {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 24px;
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  flex-wrap: wrap;
}
.map-legend .dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fff;
  margin-right: 8px;
}
.map-legend .dot.primary { background: var(--accent); }
.map-legend .dot.small { width: 5px; height: 5px; }

/* ----------- VALUES ----------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--rad-lg);
  padding: 32px 28px;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.value:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}
.value-num {
  font-family: var(--f-display);
  font-size: 18px;
  letter-spacing: .1em;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}
.value h3 {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 400;
  margin: 0 0 10px;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}
.value p {
  margin: 0;
  color: var(--ink-2);
  font-size: .96rem;
}
@media (max-width: 900px) { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .values-grid { grid-template-columns: 1fr; } }

/* ----------- CTA BANNER ----------- */
.cta-banner {
  background: var(--accent);
  color: var(--ink);
}
.cta-banner-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 60px 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.cta-banner h2 {
  font-family: var(--f-display);
  font-size: clamp(34px, 4.5vw, 56px);
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1;
  text-transform: uppercase;
}
.cta-banner p {
  margin: 8px 0 0;
  color: rgba(29, 29, 27, .8);
  max-width: 600px;
}
@media (max-width: 800px) {
  .cta-banner-inner { grid-template-columns: 1fr; }
}

/* ----------- CONTACT ----------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
}
.contact-text p { color: var(--ink-2); }
.contact-info {
  margin-top: 40px;
  display: grid;
  gap: 12px;
}
.contact-card {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  color: var(--ink);
  text-decoration: none;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.contact-card:not(.static):hover {
  transform: translateX(2px);
  border-color: var(--accent);
  background: #fffdf3;
  box-shadow: var(--shadow-sm);
}
.contact-card:not(.static):hover .contact-arrow { transform: translateX(4px); color: var(--accent); }
.contact-card:not(.static):hover .contact-icon { background: var(--accent); color: var(--ink); border-color: var(--accent); }

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  transition: background .25s, color .25s, border-color .25s;
  flex-shrink: 0;
}
.contact-card-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.contact-info-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  font-weight: 600;
}
.contact-card-body strong {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.005em;
  word-break: break-word;
}
.contact-card-body .muted {
  font-size: .82rem;
  color: var(--muted);
  font-weight: 500;
}
.contact-arrow {
  font-size: 1.3rem;
  color: var(--muted);
  transition: transform .25s ease, color .25s ease;
}
.contact-card.static {
  cursor: default;
}
.contact-card.static .contact-icon { background: var(--soft); }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--rad-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow-sm);
}
.contact-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: .02em;
}
.field input, .field select, .field textarea {
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--rad);
  padding: 13px 14px;
  color: var(--ink);
  font-family: var(--f-body);
  font-size: .96rem;
  outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
  resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(254,202,2,.18);
}
.field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path fill='%23feca02' d='M6 8L2 4h8z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 10px;
}
.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: var(--ink-2);
  margin-top: 6px;
  cursor: pointer;
}
.check input { margin-top: 4px; accent-color: var(--accent); }
.check a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.check a:hover { color: var(--accent); }

/* honeypot */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.form-msg { margin: 4px 0 0; min-height: 1.4em; font-size: .92rem; }
.form-msg.ok    { color: #2f7d3d; }
.form-msg.err   { color: #b3331b; }
.form-msg.busy  { color: var(--muted); }

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

/* ----------- FOOTER ----------- */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.72);
  padding: 80px 28px 24px;
}
.footer-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .footer-logo {
  height: 64px;
  margin-bottom: 22px;
  filter: invert(1) brightness(1.1);
}
.footer-brand p {
  margin: 0;
  font-size: .94rem;
  max-width: 360px;
  color: rgba(255,255,255,.6);
}
.footer-title {
  display: block;
  margin-bottom: 16px;
  color: #fff;
  font-weight: 700;
  letter-spacing: .02em;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-grid ul a { color: rgba(255,255,255,.6); font-size: .92rem; transition: color .2s; }
.footer-grid ul a:hover { color: var(--accent); }

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer-contact .ficon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(254, 202, 2, .12);
  color: var(--accent);
  font-size: .85rem;
}
.footer-contact em {
  font-style: normal;
  color: rgba(255,255,255,.4);
  font-size: .82rem;
  margin-left: 2px;
}

.footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

/* ----------- REVEAL ANIMATION ----------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
