/* ==========================================================================
   Transpo360 Import Export — site stylesheet
   Palette: navy #0d1220 / cream #F7F5F1 / gold #B98C2E → #F6DFA0
   Fonts:   Marcellus (headings) + Jost (body)
   ========================================================================== */

:root {
  --navy:      #0d1220;
  --navy-2:    #0f1526;
  --navy-3:    #111729;
  --navy-deep: #080c17;
  --ink:       #141a2b;
  --cream:     #F7F5F1;
  --gold:      #B98C2E;
  --gold-mid:  #E4B95C;
  --gold-lite: #F6DFA0;
  --text:      #E8EAF0;
  --muted:     #A5AEC2;
  --gold-grad: linear-gradient(100deg, #B98C2E, #F6DFA0 55%, #D9AD4E);
}

/* --------------------------------------------------------------- base --- */

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--navy);
  color: var(--text);
  font-family: Jost, system-ui, -apple-system, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

* { box-sizing: border-box; }

img { max-width: 100%; }

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-mid); }

input::placeholder,
textarea::placeholder { color: #77809A; }

input:focus,
textarea:focus,
select:focus { outline: none; border-color: var(--gold-mid); }

:focus-visible { outline: 2px solid var(--gold-mid); outline-offset: 2px; }

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

/* ------------------------------------------------------------ buttons --- */

.btn-gold {
  display: inline-block;
  padding: 16px 30px;
  background: var(--gold-grad);
  color: #12182a;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 0;
  border-radius: 2px;
  white-space: nowrap;
  cursor: pointer;
  transition: filter .2s ease;
}
.btn-gold:hover { filter: brightness(1.08); color: #12182a; }

.btn-outline {
  display: inline-block;
  padding: 16px 30px;
  border: 1px solid rgba(232, 234, 240, .28);
  color: var(--text);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 2px;
  white-space: nowrap;
  transition: border-color .2s ease, color .2s ease;
}
.btn-outline:hover { border-color: var(--gold-mid); color: var(--gold-lite); }

.btn-dark {
  display: inline-block;
  padding: 15px 28px;
  background: var(--ink);
  color: var(--gold-lite);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 2px;
  white-space: nowrap;
  transition: background .2s ease;
}
.btn-dark:hover { background: #22293d; color: var(--gold-lite); }

.link-rule {
  display: inline-block;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  white-space: nowrap;
}

/* ------------------------------------------------------------- header --- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(13, 18, 32, .9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(228, 185, 92, .18);
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px clamp(16px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.brand img {
  height: clamp(38px, 6vw, 52px);
  width: auto;
  display: block;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.8vw, 28px);
}
.nav-desktop a {
  color: #D7DCE8;
  font-size: 15px;
  letter-spacing: .04em;
  white-space: nowrap;
  transition: color .2s ease;
}
.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] { color: var(--gold-mid); }

.nav-desktop .nav-cta {
  padding: 11px 20px;
  border: 1px solid rgba(228, 185, 92, .55);
  border-radius: 2px;
  color: var(--gold-lite);
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  flex-shrink: 0;
  transition: background .2s ease;
}
.nav-desktop .nav-cta:hover { background: rgba(228, 185, 92, .14); color: var(--gold-lite); }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  gap: 5px;
  background: transparent;
  border: 1px solid rgba(228, 185, 92, .4);
  border-radius: 2px;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--gold-mid);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 8px clamp(16px, 4vw, 40px) 24px;
  gap: 2px;
  border-top: 1px solid rgba(228, 185, 92, .15);
}
.nav-mobile.is-open { display: flex; }
.nav-mobile a {
  padding: 14px 0;
  color: var(--text);
  font-size: 17px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.nav-mobile a:hover { color: var(--gold-mid); }
.nav-mobile .nav-cta {
  margin-top: 14px;
  text-align: center;
  padding: 15px;
  background: var(--gold-grad);
  color: #12182a;
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 2px;
  border-bottom: 0;
}

@media (max-width: 899px) {
  .nav-desktop { display: none; }
  .nav-toggle  { display: grid; }
}
@media (min-width: 900px) {
  .nav-mobile { display: none !important; }
}

/* -------------------------------------------------------- image slots --- */
/* Drop a photo into assets/img/ using the filename in the <img src> and it
   appears automatically. Until then this decorative panel is shown.        */

.imgslot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: var(--navy-3);
  background-image:
    radial-gradient(120% 110% at 18% 8%, rgba(228, 185, 92, .18), rgba(228, 185, 92, 0) 58%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .035) 0 2px, rgba(255, 255, 255, 0) 2px 14px),
    linear-gradient(140deg, #1b2440 0%, #131a2e 45%, #0d1220 100%);
}
.imgslot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/logo-mark.png") center / clamp(70px, 26%, 180px) no-repeat;
  opacity: .09;
}
.imgslot img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ------------------------------------------------------------- footer --- */

.site-footer { background: var(--navy-deep); }

.footer-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 84px) clamp(16px, 4vw, 40px) 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
  gap: clamp(32px, 5vw, 56px);
}
.footer-grid img { height: 64px; width: auto; display: block; margin-bottom: 20px; }
.footer-label {
  margin: 0 0 16px;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-mid);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
  font-weight: 300;
}
.footer-links a { color: #C6CCDA; transition: color .2s ease; }
.footer-links a:hover { color: var(--gold-lite); }

.footer-bar {
  max-width: 1240px;
  margin: 0 auto;
  padding: 22px clamp(16px, 4vw, 40px) 40px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
}
.footer-bar p { margin: 0; font-size: 13px; color: #6F7891; }

/* --------------------------------------------------- divider grids --- */
/* Hairline rules between cells. Using an outline on each cell (rather than a
   background behind the whole grid) keeps a partly-filled last row from
   showing empty grey blocks.                                              */

.rule-grid > * { box-shadow: 0 0 0 1px rgba(20, 26, 43, .12); }

/* --------------------------------------------------------------- misc --- */

.form-note { margin: 0; font-size: 13px; line-height: 1.6; color: #8E98AE; font-weight: 300; }
.form-note.is-sent { color: var(--gold-lite); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
