/* =====================================================================
   Global Trade Summit (FZC) SPC — Trust & Authority design system
   Navy + gold, Fraunces display / Inter body. Mobile-first, no framework.
   ===================================================================== */

:root {
  /* Color tokens */
  --navy-900: #08233f;
  --navy-800: #0b3158;
  --navy-700: #123f6d;
  --navy-600: #164c7f;
  --navy-500: #1d5c94;
  --blue-400: #4f8fc6;
  --gold-500: #e8552c;
  --gold-600: #c93f1f;
  --gold-100: #fff0ea;
  --bg:       #f7fafc;
  --surface:  #ffffff;
  --ink:      #10203a;
  --ink-soft: #46566e;
  --line:     #e2e8f0;
  --success:  #15803d;
  --danger:   #b91c1c;

  /* Type & rhythm */
  --font-body: 'Inter', -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --font-display: var(--font-body);
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 1px 2px rgba(8,26,51,.06), 0 8px 24px -12px rgba(8,26,51,.14);
  --shadow-lg: 0 2px 4px rgba(8,26,51,.08), 0 20px 44px -16px rgba(8,26,51,.24);
  --container: 1160px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  touch-action: manipulation;
}

img, svg { max-width: 100%; height: auto; display: block; }
.icon { flex: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.18;
  color: var(--navy-800);
  margin: 0 0 .6em;
  letter-spacing: 0;
}
h1 { font-size: clamp(2rem, 5.4vw, 3.3rem); }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.15rem); }
h3 { font-size: 1.2rem; }
h4 { font-size: 1.05rem; }
p  { margin: 0 0 1em; }
a  { color: var(--navy-500); }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }
.narrow { max-width: 800px; }
.center { text-align: center; }
.muted { color: var(--ink-soft); }

/* Accessibility */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--gold-500); color: var(--navy-900);
  padding: .6rem 1rem; border-radius: 0 0 var(--radius-sm) 0; font-weight: 600;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 2px; border-radius: 2px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 48px; padding: .7rem 1.4rem;
  font: 600 1rem var(--font-body); text-decoration: none; cursor: pointer;
  border-radius: var(--radius-sm); border: 2px solid transparent;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-gold { background: var(--gold-500); color: var(--navy-900); }
.btn-gold:hover { background: var(--gold-600); color: #fff; }
.btn-navy { background: var(--navy-700); color: #fff; }
.btn-navy:hover { background: var(--navy-500); }
.btn-outline-light { border-color: rgba(255,255,255,.55); color: #fff; background: transparent; }
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-outline-navy { border-color: var(--navy-700); color: var(--navy-700); background: transparent; }
.btn-outline-navy:hover { background: var(--navy-700); color: #fff; }
.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { background: #971616; }
.btn-block { width: 100%; }
.btn-sm { min-height: 38px; padding: .35rem .85rem; font-size: .88rem; }

.text-link {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--navy-500); font-weight: 600; text-decoration: none;
  min-height: 44px;
}
.text-link:hover { color: var(--gold-600); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(8, 35, 63, .98);
  border-bottom: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 10px 24px -18px rgba(8, 35, 63, .7);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 82px; }
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; padding-block: .5rem; }
.brand-logo {
  width: clamp(178px, 23vw, 255px);
  max-height: 64px;
  object-fit: contain;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: .28rem .45rem;
}
.brand-mark {
  display: grid; place-items: center; width: 44px; height: 44px;
  border-radius: 50%; background: var(--gold-500); color: var(--navy-900);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name { font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; color: #fff; }
.brand-sub { font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; color: #9db4d1; }

.nav-toggle {
  display: none; background: transparent; border: 0; color: #fff;
  width: 48px; height: 48px; align-items: center; justify-content: center;
  cursor: pointer; border-radius: var(--radius-sm);
}
.nav-toggle-top { display: none; }
.nav-toggle:hover { background: rgba(255,255,255,.1); }

.site-nav ul { display: flex; align-items: center; gap: .25rem; list-style: none; margin: 0; padding: 0; }
.site-nav .sub { display: none; }
.site-nav a {
  display: inline-flex; align-items: center; min-height: 48px; padding: .4rem .85rem;
  color: #dbe7f5; text-decoration: none; font-weight: 500; font-size: .95rem;
  border-radius: var(--radius-sm); transition: background-color .2s, color .2s;
}
.site-nav a:hover { color: #fff; background: rgba(255,255,255,.08); }
.site-nav a.active { color: var(--gold-500); }
.site-nav .nav-cta { background: var(--gold-500); color: var(--navy-900); font-weight: 600; margin-left: .5rem; }
.site-nav .nav-cta:hover { background: var(--gold-600); color: #fff; }

/* Desktop dropdown */
@media (min-width: 981px) {
  .has-sub { position: relative; }
  .has-sub .sub {
    position: absolute; top: calc(100% + 6px); left: 0; min-width: 270px;
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
    box-shadow: var(--shadow-lg); padding: .5rem; display: none; flex-direction: column; gap: 2px;
  }
  .has-sub:hover .sub, .has-sub:focus-within .sub { display: flex; }
  .has-sub .sub a { color: var(--ink); width: 100%; }
  .has-sub .sub a:hover { background: var(--bg); color: var(--navy-500); }
}

/* Mobile nav */
@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: fixed; inset: 82px 0 0 0; background: var(--navy-800);
    padding: 1rem clamp(1rem, 4vw, 2rem) 2rem; overflow-y: auto;
    transform: translateX(100%); transition: transform .25s ease;
  }
  body.nav-open .site-nav { transform: translateX(0); }
  body.nav-open { overflow: hidden; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: .25rem; }
  .site-nav a { width: 100%; min-height: 52px; font-size: 1.05rem; }
  .site-nav .sub { display: block; padding-left: 1rem; }
  .site-nav .sub a { font-size: .95rem; color: #9db4d1; }
  .site-nav .nav-cta { margin: .75rem 0 0; justify-content: center; }
}

/* ---------- Hero ---------- */
.hero { position: relative; background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-600) 100%); color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg svg { width: 100%; height: 100%; }
.hero-inner { position: relative; padding-block: clamp(3.5rem, 9vw, 7rem); max-width: 820px; }
.hero h1 { color: #fff; margin-bottom: .5em; }
.kicker {
  display: inline-block; font-size: .8rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold-500); margin: 0 0 1rem;
}
.kicker-dark { color: var(--gold-600); }
.lead { font-size: clamp(1.02rem, 1.8vw, 1.15rem); color: #cfdcee; max-width: 62ch; }
.lead-light { color: #cfdcee; font-size: 1.05rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.center-actions { justify-content: center; }

.hero-stats {
  display: flex; flex-wrap: wrap; gap: clamp(1rem, 4vw, 3rem);
  list-style: none; margin: 2.6rem 0 0; padding: 1.4rem 0 0;
  border-top: 1px solid rgba(255,255,255,.16);
}
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong { font-family: var(--font-display); font-size: 1.35rem; color: var(--gold-500); }
.hero-stats span { font-size: .85rem; color: #9db4d1; }

/* ---------- Sections ---------- */
.section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section-tint { background: #edf4f8; }
.section-navy { background: var(--navy-800); color: #dbe7f5; }
.section-navy h2 { color: #fff; }
.section-head { max-width: 700px; margin-bottom: clamp(1.6rem, 4vw, 2.6rem); }
.section-head p { color: var(--ink-soft); }

/* Split layout */
.split { display: grid; gap: clamp(1.6rem, 4vw, 3.5rem); align-items: center; }
@media (min-width: 861px) {
  .split { grid-template-columns: 1.05fr .95fr; }
  .split-rev { grid-template-columns: .95fr 1.05fr; }
  .split-rev .split-text { order: 2; }
}
.split-media { min-width: 0; }
.media-img, .art-panel {
  width: 100%; aspect-ratio: 8 / 5; object-fit: cover;
  object-position: center bottom;
  border-radius: var(--radius); box-shadow: var(--shadow-lg); overflow: hidden;
}
.art-panel svg { width: 100%; height: 100%; }

/* Cards */
.grid { display: grid; gap: 1.25rem; }
@media (min-width: 641px)  { .grid-2, .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 981px)  { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.card, .panel {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow);
}
.card h3 { margin-top: 1rem; }
.card p { color: var(--ink-soft); font-size: .95rem; margin-bottom: 0; }
.card-thumb {
  width: calc(100% + 3.2rem);
  max-width: none;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center bottom;
  margin: -1.6rem -1.6rem 1.2rem;
  border-radius: var(--radius) var(--radius) 0 0;
}
.card-link { display: flex; flex-direction: column; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.card-link:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold-500); }
.card-link .text-link { margin-top: auto; padding-top: .9rem; }
.service-card {
  min-height: 100%;
}
.service-card h2 {
  color: var(--navy-900);
  font-size: 1.15rem;
  margin-bottom: .55rem;
}
.service-card p {
  color: var(--ink-soft);
}
.card-icon {
  display: inline-grid; place-items: center; width: 54px; height: 54px;
  border-radius: var(--radius-sm); background: var(--gold-100); color: var(--gold-600);
}
.value-check {
  display: inline-grid; place-items: center; width: 40px; height: 40px;
  border-radius: 50%; background: var(--gold-100); color: var(--gold-600);
}
.panel h2 { font-size: 1.35rem; margin-top: 1rem; }
.panel p { color: var(--ink-soft); margin-bottom: 0; }

/* Service cards (index) */
.card-service { flex-direction: row; gap: 1.2rem; align-items: stretch; padding: 0; overflow: hidden; }
.card-service-media {
  flex: 0 0 130px; display: grid; place-items: center;
  background: linear-gradient(160deg, var(--navy-700), var(--navy-600)); color: var(--gold-500);
}
.card-service-media img { width: 100%; height: 100%; object-fit: cover; object-position: center bottom; }
.card-service-body { padding: 1.4rem 1.4rem 1.2rem 0; display: flex; flex-direction: column; }
.card-service-body h2 { font-size: 1.25rem; margin-bottom: .4rem; }
.card-service-body p { color: var(--ink-soft); font-size: .95rem; }
@media (max-width: 640px) {
  .card-service { flex-direction: column; }
  .card-service-media { flex-basis: auto; min-height: 120px; }
  .card-service-body { padding: 0 1.4rem 1.3rem; }
}

/* CTA band */
.cta-band { background: linear-gradient(120deg, var(--gold-500), #d9b866); padding-block: clamp(2.2rem, 5vw, 3.4rem); }
.cta-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.4rem; }
.cta-inner h2 { color: var(--navy-900); margin-bottom: .25em; }
.cta-inner p { color: #4a3c17; margin: 0; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: linear-gradient(160deg, var(--navy-800), var(--navy-600)); color: #fff; padding-block: clamp(2.6rem, 6vw, 4.4rem); }
.page-hero h1 { color: #fff; margin-bottom: .3em; }
.page-hero-lead { color: #cfdcee; max-width: 70ch; margin: 0; }
.crumbs { display: flex; flex-wrap: wrap; gap: .45rem; font-size: .84rem; color: #9db4d1; margin-bottom: 1rem; }
.crumbs a { color: #cfdcee; text-decoration: none; }
.crumbs a:hover { color: var(--gold-500); }

/* Rich text */
.rich h3, .rich h4 { margin-top: 1.6em; }
.rich ul { padding-left: 1.2rem; color: var(--ink-soft); }
.rich li { margin-bottom: .45em; }
.rich p { color: var(--ink-soft); }
.rich p:first-child { color: var(--ink); }

/* Service detail */
.service-layout { display: grid; gap: 2.2rem; }
@media (min-width: 981px) { .service-layout { grid-template-columns: 1fr 320px; align-items: start; } }
.service-hero-img { border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 1.6rem; width: 100%; }
.service-cta { margin-top: 2rem; }
.aside-box { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; box-shadow: var(--shadow); margin-bottom: 1.25rem; }
.aside-box h2 { font-size: 1.1rem; }
.aside-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.aside-list a {
  display: flex; align-items: center; gap: .6rem; min-height: 48px; padding: .5rem .7rem;
  border-radius: var(--radius-sm); text-decoration: none; color: var(--ink); font-weight: 500; font-size: .95rem;
}
.aside-list a:hover { background: var(--bg); color: var(--navy-500); }
.aside-list a.active { background: var(--gold-100); color: var(--gold-600); }
.aside-contact p { color: var(--ink-soft); font-size: .92rem; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: .8rem; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.3rem; cursor: pointer; font-weight: 600; color: var(--navy-800);
  list-style: none; min-height: 56px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .icon { transform: rotate(90deg); transition: transform .2s ease; color: var(--gold-600); }
.faq-item[open] summary .icon { transform: rotate(-90deg); }
.faq-answer { padding: 0 1.3rem 1.2rem; color: var(--ink-soft); }
.faq-answer p { margin: 0; }

/* Contact */
.contact-layout { display: grid; gap: 2.4rem; }
@media (min-width: 981px) { .contact-layout { grid-template-columns: 340px 1fr; align-items: start; } }
.contact-info { min-width: 0; }
.contact-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center bottom;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 1.4rem;
}
.contact-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1.2rem; }
.contact-list li { display: flex; gap: .9rem; }
.contact-list .ci {
  flex: none; display: grid; place-items: center; width: 48px; height: 48px;
  border-radius: var(--radius-sm); background: var(--gold-100); color: var(--gold-600);
}
.contact-list strong { display: block; color: var(--navy-800); }
.contact-list p { margin: 0; color: var(--ink-soft); }
.contact-form-wrap { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2.2rem); box-shadow: var(--shadow); }
.form-note { color: var(--ink-soft); font-size: .93rem; }

/* Forms */
.form-row { display: grid; gap: 0 1.1rem; }
@media (min-width: 641px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { margin-bottom: 1.1rem; display: flex; flex-direction: column; }
.form-group-sm { max-width: 220px; }
label { font-weight: 600; font-size: .92rem; margin-bottom: .35rem; color: var(--navy-800); }
.req { color: var(--danger); }
input[type="text"], input[type="email"], input[type="tel"], input[type="password"], textarea, select {
  font: inherit; color: var(--ink); background: #fff;
  border: 1.5px solid #cbd5e1; border-radius: var(--radius-sm);
  padding: .7rem .85rem; min-height: 48px; width: 100%;
  transition: border-color .2s, box-shadow .2s;
}
textarea { resize: vertical; min-height: 110px; }
input:focus, textarea:focus, select:focus { border-color: var(--navy-500); box-shadow: 0 0 0 3px rgba(31,74,124,.15); outline: none; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; margin: 0; overflow: hidden; }
.anti-spam-check {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .95rem 1rem;
  margin: .2rem 0 1.15rem;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.5;
  background: #fff8f5;
  border: 1px solid #ffd7cb;
  border-radius: var(--radius-sm);
}
.anti-spam-check input {
  width: 20px;
  min-width: 20px;
  height: 20px;
  margin-top: .12rem;
  accent-color: var(--gold-500);
}
.email-obfuscated { word-break: break-word; }

.alert { display: flex; gap: .7rem; align-items: flex-start; border-radius: var(--radius-sm); padding: .9rem 1.1rem; margin-bottom: 1.2rem; }
.alert p { margin: 0; }
.alert-success { background: #ecfdf3; border: 1px solid #a7f3c5; color: var(--success); }
.alert-error { background: #fef2f2; border: 1px solid #fecaca; color: var(--danger); }

/* 404 */
.notfound { padding-block: 3rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #9db4d1; margin-top: 0; }
.footer-grid { display: grid; gap: 2.2rem; padding-block: clamp(2.6rem, 6vw, 4rem); }
@media (min-width: 641px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 981px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.3fr; } }
.footer-brand { font-family: var(--font-display); font-size: 1.15rem; color: #fff; margin-bottom: .2em; }
.footer-tagline { color: var(--gold-500); font-style: italic; }
.footer-note { font-size: .88rem; }
.footer-col h3 { color: #fff; font-family: var(--font-body); font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .35rem; }
.footer-col a { color: #9db4d1; text-decoration: none; display: inline-flex; min-height: 34px; align-items: center; }
.footer-col a:hover { color: var(--gold-500); }
.footer-contact li { display: flex; align-items: flex-start; gap: .6rem; }
.footer-contact .icon { margin-top: .45rem; color: var(--gold-500); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-block: 1.1rem; font-size: .85rem; }
.footer-bottom p { margin: 0; }

/* =====================================================================
   ADMIN PANEL
   ===================================================================== */
.adm-body { background: #eef2f7; }
.adm-shell { display: flex; min-height: 100vh; }

.adm-sidebar {
  width: 250px; flex: none; background: var(--navy-800); color: #dbe7f5;
  display: flex; flex-direction: column; position: sticky; top: 0; height: 100vh;
}
.adm-brand {
  display: flex; align-items: center; gap: .6rem; padding: 1.2rem 1.3rem;
  color: #fff; text-decoration: none; font-family: var(--font-display); font-size: 1.15rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.adm-brand .icon { color: var(--gold-500); }
.adm-nav { display: flex; flex-direction: column; gap: 2px; padding: .9rem .7rem; flex: 1; overflow-y: auto; }
.adm-nav a {
  display: flex; align-items: center; gap: .7rem; min-height: 46px; padding: .5rem .8rem;
  color: #b9c9e0; text-decoration: none; border-radius: var(--radius-sm); font-size: .94rem; font-weight: 500;
}
.adm-nav a:hover { background: rgba(255,255,255,.08); color: #fff; }
.adm-nav a.active { background: var(--gold-500); color: var(--navy-900); }
.adm-sidebar-foot { padding: .9rem 1.1rem; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-direction: column; gap: .3rem; }
.adm-sidebar-foot a { display: flex; align-items: center; gap: .5rem; color: #9db4d1; text-decoration: none; font-size: .88rem; min-height: 40px; }
.adm-sidebar-foot a:hover { color: var(--gold-500); }

.adm-main { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.adm-topbar {
  display: flex; align-items: center; gap: 1rem;
  background: #fff; border-bottom: 1px solid var(--line); padding: .8rem clamp(1rem, 3vw, 2rem);
  position: sticky; top: 0; z-index: 30;
}
.adm-topbar h1 { font-size: 1.25rem; margin: 0; flex: 1; }
.adm-user { display: inline-flex; align-items: center; gap: .4rem; color: var(--ink-soft); font-size: .88rem; }
.adm-menu-btn { display: none; color: var(--navy-800); }

.adm-content { padding: clamp(1.2rem, 3vw, 2rem); max-width: 1060px; width: 100%; }

.adm-panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.2rem, 3vw, 1.8rem); box-shadow: var(--shadow); margin-bottom: 1.4rem; }
.adm-panel h2 { font-size: 1.15rem; font-family: var(--font-body); }
.adm-panel-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.adm-panel-head h2 { margin: 0; }
.adm-narrow { max-width: 480px; }

.adm-cards { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); margin-bottom: 1.4rem; }
.adm-stat {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.2rem; text-decoration: none; color: var(--ink);
  display: flex; flex-direction: column; gap: .25rem; box-shadow: var(--shadow);
  transition: transform .18s ease, border-color .18s ease;
}
.adm-stat:hover { transform: translateY(-3px); border-color: var(--gold-500); }
.adm-stat .icon { color: var(--gold-600); }
.adm-stat strong { font-size: 1.3rem; color: var(--navy-800); }
.adm-stat span { font-size: .85rem; color: var(--ink-soft); }

.adm-table { width: 100%; border-collapse: collapse; font-size: .93rem; }
.adm-table th { text-align: left; padding: .6rem .7rem; border-bottom: 2px solid var(--line); color: var(--ink-soft); font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; }
.adm-table td { padding: .75rem .7rem; border-bottom: 1px solid var(--line); vertical-align: middle; }
.ta-r { text-align: right; }
.adm-ico { display: inline-flex; vertical-align: middle; color: var(--gold-600); margin-right: .3rem; }
.adm-thumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 48px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #f5f8fb;
  color: var(--ink-soft);
}
.adm-thumb-empty { color: var(--gold-600); }
.inline { display: inline-block; }

.adm-actions { display: flex; align-items: center; gap: .7rem; flex-wrap: wrap; margin-top: .6rem; }
.adm-group { border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem 1.2rem; margin: 1.4rem 0; }
.adm-group legend { font-weight: 700; color: var(--navy-800); padding-inline: .4rem; }
.adm-group-item { border-bottom: 1px dashed var(--line); padding-block: .9rem; }
.adm-group-item:last-child { border-bottom: 0; }

.adm-current-img { display: flex; align-items: center; gap: 1rem; margin-bottom: .6rem; flex-wrap: wrap; }
.adm-current-img img { width: 130px; height: 82px; object-fit: cover; border-radius: var(--radius-sm); border: 1px solid var(--line); }
.adm-check { display: inline-flex; align-items: center; gap: .45rem; font-weight: 500; font-size: .88rem; color: var(--ink-soft); }
.adm-check input { width: auto; min-height: 0; }

.adm-upload-row { display: flex; gap: .8rem; flex-wrap: wrap; align-items: center; }
.adm-media-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
.adm-media-item { margin: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.adm-media-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.adm-media-item figcaption { padding: .6rem .7rem; display: flex; flex-direction: column; gap: .5rem; }
.adm-media-item code { font-size: .72rem; word-break: break-all; color: var(--ink-soft); }

.adm-message-head { display: flex; justify-content: space-between; gap: 1rem; align-items: flex-start; flex-wrap: wrap; }
.adm-message-meta { display: flex; align-items: center; gap: .35rem; flex-wrap: wrap; color: var(--ink-soft); font-size: .9rem; }
.adm-message-body { background: var(--bg); border-radius: var(--radius-sm); padding: .9rem 1rem; margin: 0; }
.adm-guide { padding-left: 1.1rem; color: var(--ink-soft); }
.adm-guide li { margin-bottom: .5em; }

/* Admin login */
.adm-login-body { display: grid; place-items: center; min-height: 100vh; background: linear-gradient(160deg, var(--navy-800), var(--navy-600)); padding: 1rem; }
.adm-login-card { width: 100%; max-width: 400px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 2.2rem; text-align: center; }
.adm-login-mark { display: inline-grid; place-items: center; width: 62px; height: 62px; border-radius: 50%; background: var(--gold-100); color: var(--gold-600); margin-bottom: 1rem; }
.adm-login-card h1 { font-size: 1.5rem; margin-bottom: .2em; }
.adm-login-sub { color: var(--ink-soft); font-size: .9rem; margin-bottom: 1.6rem; }
.adm-login-card form { text-align: left; }
.adm-login-back { margin-top: 1.4rem; font-size: .88rem; }
.adm-login-back a { color: var(--ink-soft); }

/* Admin responsive */
@media (max-width: 900px) {
  .adm-sidebar {
    position: fixed; inset: 0 auto 0 0; z-index: 60; transform: translateX(-100%);
    transition: transform .25s ease; width: 260px;
  }
  body.nav-open .adm-sidebar { transform: translateX(0); box-shadow: var(--shadow-lg); }
  .adm-menu-btn { display: inline-flex; }
}

@media print {
  .site-header, .site-footer, .cta-band, .hero-actions { display: none !important; }
}

/* =====================================================================
   PUBLIC SITE REDESIGN
   Brand-led corporate interface using the logo navy, blue, and orange.
   ===================================================================== */

:root {
  --navy-950: #061b31;
  --navy-900: #092744;
  --navy-800: #0d345d;
  --navy-700: #123f6d;
  --navy-600: #195586;
  --navy-500: #23699f;
  --blue-400: #5a9dce;
  --gold-500: #e9552f;
  --gold-600: #c83e20;
  --gold-100: #fff0eb;
  --bg: #f6f8fb;
  --surface: #ffffff;
  --ink: #10233a;
  --ink-soft: #526174;
  --line: #dbe4ee;
  --radius: 8px;
  --radius-sm: 6px;
  --shadow: 0 1px 2px rgba(9, 39, 68, .06), 0 12px 30px -22px rgba(9, 39, 68, .32);
  --shadow-lg: 0 12px 42px -26px rgba(9, 39, 68, .42);
  --container: 1180px;
}

body {
  background:
    radial-gradient(circle at 8% -10%, rgba(233, 85, 47, .08), transparent 28rem),
    linear-gradient(180deg, #fff 0%, var(--bg) 42rem);
  color: var(--ink);
  overflow-x: hidden;
}

.container { padding-inline: clamp(1rem, 4vw, 2.25rem); }
.section { padding-block: clamp(3.5rem, 7vw, 6rem); }
.section + .section { border-top: 1px solid rgba(219, 228, 238, .72); }
.section-tint { background: linear-gradient(180deg, #f1f6fa 0%, #edf4f8 100%); }

h1, h2, h3, h4 {
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: 0;
  color: var(--navy-900);
}

h1 { font-size: clamp(2.35rem, 5.2vw, 4.8rem); line-height: 1.04; }
h2 { font-size: clamp(1.65rem, 3vw, 2.55rem); line-height: 1.1; }
h3 { font-size: 1.12rem; line-height: 1.25; }
p { color: var(--ink-soft); }
a { color: var(--navy-600); }

.site-header {
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(219, 228, 238, .92);
  box-shadow: 0 10px 30px -24px rgba(9, 39, 68, .55);
  backdrop-filter: blur(16px);
}

.header-inner { min-height: 86px; }
.brand { min-width: 180px; }
.brand-logo {
  width: clamp(190px, 22vw, 278px);
  max-height: 62px;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.site-nav a {
  color: var(--navy-800);
  font-weight: 700;
  font-size: .93rem;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--gold-500);
  background: var(--gold-100);
}

.site-nav .nav-cta {
  background: var(--gold-500);
  color: #fff;
  box-shadow: 0 14px 22px -18px rgba(233, 85, 47, .9);
}

.site-nav .nav-cta:hover {
  background: var(--gold-600);
  color: #fff;
}

.nav-toggle { color: var(--navy-800); border: 1px solid var(--line); }
.nav-toggle:hover { background: var(--gold-100); }

.hero {
  min-height: auto;
  display: grid;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(9, 39, 68, .96) 0%, rgba(13, 52, 93, .92) 48%, rgba(18, 63, 109, .86) 100%);
}

.hero-bg { display: none; }
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .88fr);
  gap: clamp(2rem, 5vw, 4.6rem);
  align-items: center;
  max-width: var(--container);
  padding-block: clamp(3.25rem, 6vw, 5.25rem);
}

.hero-copy { min-width: 0; }
.hero h1 { max-width: 11ch; color: #fff; }
.hero .lead {
  max-width: 66ch;
  color: #d8e7f4;
  font-size: clamp(1.02rem, 1.25vw, 1.18rem);
}

.kicker {
  color: #ff8b68;
  font-weight: 800;
  letter-spacing: .1em;
  max-width: 100%;
  white-space: normal;
}

.kicker-dark { color: var(--gold-600); }

.hero-media {
  position: relative;
  min-width: 0;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -18px 18px 18px -18px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
}

.hero-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center bottom;
  border-radius: var(--radius);
  box-shadow: 0 32px 70px -36px rgba(0, 0, 0, .78);
}

.hero-actions { margin-top: 2rem; }
.btn {
  border-radius: var(--radius-sm);
  font-weight: 800;
  min-height: 46px;
}

.btn-gold {
  background: var(--gold-500);
  color: #fff;
}

.btn-gold:hover {
  background: var(--gold-600);
  color: #fff;
}

.btn-navy {
  background: var(--navy-800);
  color: #fff;
}

.btn-navy:hover { background: var(--navy-600); }
.btn-outline-light:hover { background: #fff; color: var(--navy-800); }
.btn-outline-navy { border-color: var(--navy-700); color: var(--navy-800); }

.hero-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 0;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, .12);
}

.hero-stats li {
  padding: 1.1rem 1.25rem;
  background: rgba(6, 27, 49, .42);
}

.hero-stats strong {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #fff;
}

.hero-stats span { color: #bcd0e1; }

.split {
  gap: clamp(2rem, 5vw, 4.75rem);
}

@media (min-width: 861px) {
  .split { grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr); }
  .split-rev { grid-template-columns: minmax(320px, 1.02fr) minmax(0, .98fr); }
}

.split-text > p:not(.kicker),
.rich p {
  font-size: 1.02rem;
}

.media-img,
.art-panel,
.contact-image {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.media-img {
  aspect-ratio: 16 / 11;
  border: 1px solid #fff;
}

.section-head {
  max-width: 760px;
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
}

.section-head h2 { margin-bottom: .35em; }

.grid { gap: clamp(1rem, 2.2vw, 1.45rem); }

.card,
.panel,
.faq-item,
.aside-box,
.contact-form-wrap {
  border-radius: var(--radius);
  border: 1px solid rgba(219, 228, 238, .94);
  box-shadow: var(--shadow);
}

.card,
.panel {
  padding: clamp(1.15rem, 2.4vw, 1.55rem);
}

.card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.card h3,
.panel h2 {
  margin-top: .85rem;
}

.card p,
.panel p {
  font-size: .95rem;
}

.card-icon,
.value-check,
.contact-list .ci {
  background: var(--gold-100);
  color: var(--gold-600);
}

.card-icon {
  width: 48px;
  height: 48px;
}

.card-thumb {
  width: calc(100% + clamp(2.3rem, 4.8vw, 3.1rem));
  aspect-ratio: 16 / 10;
  margin: calc(clamp(1.15rem, 2.4vw, 1.55rem) * -1) calc(clamp(1.15rem, 2.4vw, 1.55rem) * -1) 1.15rem;
  border-radius: var(--radius) var(--radius) 0 0;
}

.card-link:hover {
  transform: translateY(-5px);
  border-color: rgba(233, 85, 47, .44);
  box-shadow: 0 22px 50px -34px rgba(9, 39, 68, .55);
}

.card-service {
  min-height: 240px;
  background: #fff;
}

.card-service-media {
  flex-basis: 42%;
  background: var(--navy-800);
}

.card-service-body {
  padding: clamp(1.2rem, 2.6vw, 1.7rem);
}

.card-service-body h2 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.section-navy {
  background:
    linear-gradient(135deg, rgba(6, 27, 49, .96), rgba(13, 52, 93, .96)),
    var(--navy-900);
}

.section-navy h2 { color: #fff; }
.section-navy p { color: #d8e7f4; }

.cta-band {
  background:
    linear-gradient(135deg, rgba(233, 85, 47, .96), rgba(255, 124, 82, .92)),
    var(--gold-500);
}

.cta-inner h2 { color: #fff; }
.cta-inner p { color: #ffe3d9; }
.cta-inner .btn-navy { background: #fff; color: var(--navy-900); }
.cta-inner .btn-navy:hover { background: var(--navy-950); color: #fff; }

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.2rem, 7vw, 5.5rem);
  background:
    linear-gradient(135deg, rgba(6, 27, 49, .97), rgba(18, 63, 109, .9)),
    var(--navy-900);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto -8rem -8rem auto;
  width: 22rem;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(255, 255, 255, .035);
}

.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 760px; color: #fff; }
.page-hero-lead { color: #d8e7f4; font-size: 1.05rem; }

.crumbs,
.crumbs a {
  color: #bcd0e1;
}

.crumbs a:hover { color: #ff9b7d; }

.contact-layout {
  grid-template-columns: minmax(0, 370px) minmax(0, 1fr);
}

.contact-info {
  position: sticky;
  top: 108px;
}

.contact-list li {
  padding: .95rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-list li:last-child { border-bottom: 0; }

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea,
select {
  border-color: #ccd8e5;
  border-radius: var(--radius-sm);
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(233, 85, 47, .14);
}

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

.footer-brand {
  font-family: var(--font-body);
  font-weight: 800;
}

.footer-tagline,
.footer-col a:hover,
.footer-contact .icon {
  color: #ff8b68;
}

@media (max-width: 1080px) {
  .site-nav a { padding-inline: .62rem; font-size: .88rem; }
  .brand-logo { width: clamp(174px, 24vw, 230px); }
}

@media (max-width: 980px) {
  .header-inner { min-height: 78px; }
  .site-nav {
    inset: 78px 0 0 0;
    background: #fff;
    border-top: 1px solid var(--line);
  }
  .site-nav a {
    color: var(--navy-900);
    border-radius: var(--radius-sm);
  }
  .site-nav .sub a { color: var(--ink-soft); }
  .hero { min-height: auto; }
  .hero-inner {
    grid-template-columns: 1fr;
    padding-block: clamp(2.8rem, 9vw, 4.5rem);
  }
  .hero h1 { max-width: 12ch; }
  .hero-media { max-width: 620px; }
  .hero-media::before { display: none; }
  .hero-image { aspect-ratio: 16 / 10; }
  .hero-stats { grid-template-columns: 1fr 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info { position: static; }
}

@media (max-width: 760px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .container {
    width: 100%;
    max-width: 100%;
  }

  .site-header,
  .header-middle,
  .header-nav-bar,
  .royal-hero,
  .royal-hero .container,
  .royal-hero .hero-inner,
  .royal-hero .hero-copy {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }

  body { background: #fff; }
  main,
  .hero,
  .section,
  .page-hero {
    max-width: 100vw;
    overflow-x: hidden;
  }
  .brand-logo { width: 172px; max-height: 50px; }
  h1 { font-size: clamp(2rem, 10.5vw, 2.7rem); }
  h2 { font-size: clamp(1.55rem, 8vw, 2.15rem); }
  .section { padding-block: 3.25rem; }
  .hero-inner { gap: 1.6rem; }
  .hero .container.hero-inner {
    width: 100%;
    max-width: 100vw;
    padding-inline: 1.25rem;
  }
  .hero-copy,
  .hero-actions,
  .hero-media,
  .hero-stats,
  .split-text,
  .section-head,
  .card,
  .panel {
    min-width: 0;
    max-width: 100%;
  }
  .kicker {
    display: block;
    font-size: .74rem;
    line-height: 1.45;
    max-width: min(32rem, calc(100vw - 3rem));
    overflow-wrap: anywhere;
  }
  .lead {
    font-size: 1rem;
    overflow-wrap: anywhere;
  }
  .hero h1,
  .hero .lead {
    width: 100%;
    max-width: min(34rem, calc(100vw - 3rem));
  }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stats li { padding: 1rem; }
  .card-service { min-height: 0; }
  .card-service-media { min-height: 190px; }
  .cta-inner { align-items: flex-start; }
  .cta-inner .btn { width: 100%; }
}

@media (max-width: 420px) {
  .container { padding-inline: 1rem; }
  .brand-logo { width: 150px; }
  .header-inner { min-height: 72px; }
  .site-nav { inset: 72px 0 0 0; }
  .hero .kicker,
  .hero h1,
  .hero .lead {
    max-width: min(320px, calc(100vw - 2rem));
  }
  .hero .lead { font-size: .96rem; }
  .hero-image,
  .media-img,
  .contact-image {
    aspect-ratio: 4 / 3;
  }
  .btn { padding-inline: 1rem; }
}

/* =====================================================================
   ROYAL SPACE INSPIRED PASS
   Classic trading-company layout: contact header, centered logo,
   separated navigation bar, full image hero, service cards, dark footer.
   ===================================================================== */

body {
  background: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: #fff;
  border-bottom: 0;
  box-shadow: 0 8px 24px rgba(8, 35, 63, .08);
  backdrop-filter: none;
  transition: box-shadow .24s ease;
}

.site-header.is-stuck {
  box-shadow: 0 14px 32px rgba(8, 35, 63, .18);
}

.site-header.is-stuck .header-middle {
  transform: translateY(-100%);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  border-bottom: 0;
}

.site-header.is-stuck .header-nav-bar {
  box-shadow: 0 12px 30px rgba(8, 35, 63, .16);
}

.site-header.is-stuck .header-inner {
  min-height: 62px;
}

.site-header.is-stuck .site-nav a,
.site-header.is-stuck .nav-phone a {
  min-height: 62px;
}

.header-middle {
  background: #fff;
  border-bottom: 1px solid #edf1f5;
  position: relative;
  max-height: 130px;
  opacity: 1;
  transform: translateY(0);
  transition: max-height .24s ease, opacity .18s ease, transform .24s ease, border-color .18s ease;
}

.header-middle-inner {
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
  align-items: center;
  gap: 2rem;
  min-height: 118px;
  padding-block: 1.05rem;
}

.brand-center {
  justify-content: center;
  padding: 0;
}

.brand-logo {
  width: clamp(210px, 22vw, 286px);
  max-height: 88px;
}

.header-info {
  display: flex;
  align-items: center;
  gap: .85rem;
  min-width: 0;
}

.header-info-right {
  justify-content: flex-end;
  text-align: right;
}

.header-info-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--gold-500);
  text-decoration: none;
}

.header-info span {
  display: block;
  color: #7b8794;
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.header-info a:not(.header-info-icon) {
  display: block;
  color: var(--navy-900);
  font-size: .91rem;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
}

.header-info a:not(.header-info-icon):hover {
  color: var(--gold-500);
}

.header-nav-bar {
  background: #fff;
  position: relative;
  z-index: 2;
}

.header-inner {
  max-width: 1140px;
  min-height: 58px;
  justify-content: center;
  background: #071018;
  padding-inline: 0;
}

.site-nav {
  width: 100%;
}

.site-nav ul {
  justify-content: center;
  gap: 0;
}

.site-nav a {
  min-height: 70px;
  padding: .55rem 1.15rem;
  color: #fff;
  border-radius: 0;
  font-size: .92rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a.active {
  color: #fff;
  background: var(--gold-500);
}

.site-nav .nav-cta {
  background: transparent;
  color: #fff;
  box-shadow: none;
  margin-left: 0;
}

.site-nav .nav-cta:hover {
  background: var(--gold-500);
}

.nav-phone {
  margin-left: auto;
}

.nav-phone a {
  gap: .45rem;
  color: #fff;
  background: var(--gold-500);
  font-size: 1.08rem;
  padding-inline: 1.85rem;
  text-transform: none;
}

.nav-phone a:hover {
  background: var(--gold-600);
}

@media (min-width: 981px) {
  .has-sub .sub {
    top: 100%;
    left: 0;
    min-width: 310px;
    padding: 0;
    align-items: stretch;
    justify-content: flex-start;
    border-radius: 0;
    border-top: 3px solid var(--gold-500);
    box-shadow: 0 16px 36px rgba(8, 35, 63, .16);
  }

  .has-sub .sub a {
    justify-content: flex-start;
    text-align: left;
    white-space: normal;
    line-height: 1.35;
    min-height: 44px;
    padding: .8rem 1.1rem;
    color: var(--navy-900);
    text-transform: none;
    font-weight: 700;
  }

  .has-sub .sub a:hover {
    color: #fff;
    background: var(--gold-500);
  }
}

.royal-hero {
  position: relative;
  min-height: 565px;
  margin-top: -35px;
  padding-top: 35px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 19, 36, .74) 0%, rgba(5, 19, 36, .52) 48%, rgba(5, 19, 36, .15) 100%),
    var(--hero-bg) center / cover no-repeat;
}

.royal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--hero-bg) center / cover no-repeat;
  transform: scale(1.08);
  animation: royalHeroKenburns 9s ease-out both;
}

.royal-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 19, 36, .78) 0%, rgba(5, 19, 36, .56) 48%, rgba(5, 19, 36, .16) 100%);
  animation: royalHeroOverlay 1.2s ease-out both;
}

.royal-hero .hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 720px);
  align-content: center;
  min-height: 530px;
  padding-block: clamp(4rem, 7vw, 5.7rem);
}

.royal-hero .hero-copy {
  max-width: 690px;
}

.royal-hero .kicker {
  color: #ff9a7a;
  margin-bottom: 1rem;
  opacity: 0;
  animation: royalSlideDown .9s cubic-bezier(.22, 1, .36, 1) .18s both;
}

.royal-hero h1 {
  max-width: 680px;
  color: #fff;
  font-size: clamp(2.6rem, 4.8vw, 4.6rem);
  line-height: 1.03;
  text-shadow: 0 2px 22px rgba(0, 0, 0, .32);
  opacity: 0;
  animation: royalSlideDown 1s cubic-bezier(.22, 1, .36, 1) .36s both;
}

.royal-hero .lead {
  display: block;
  max-width: 760px;
  color: #fff;
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  font-weight: 600;
  margin: 0 0 1.2rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .28);
  opacity: 0;
  animation: royalSlideDown .95s cubic-bezier(.22, 1, .36, 1) .62s both;
}

.royal-hero .hero-media {
  display: none;
}

.royal-hero .hero-actions .btn {
  opacity: 0;
  transform: translateY(-34px);
}

.royal-hero .hero-actions .btn:first-child {
  animation: royalSlideDown .8s cubic-bezier(.22, 1, .36, 1) .86s both;
}

.royal-hero .hero-actions .btn:nth-child(2) {
  animation: royalSlideDown .8s cubic-bezier(.22, 1, .36, 1) .98s both;
}

.royal-hero .hero-stats {
  grid-column: auto;
  max-width: 720px;
  margin-top: 2.35rem;
  border-radius: 0;
  border: 0;
  background: rgba(9, 39, 68, .76);
  box-shadow: inset 0 3px 0 var(--gold-500);
  opacity: 0;
  animation: royalFadeUp .85s cubic-bezier(.22, 1, .36, 1) 1.05s both;
}

.royal-hero .hero-stats li {
  background: transparent;
  border-right: 1px solid rgba(255, 255, 255, .16);
}

.royal-hero .hero-stats li:last-child {
  border-right: 0;
}

.royal-hero .hero-stats strong {
  font-size: 1rem;
}

@keyframes royalHeroKenburns {
  0% {
    transform: scale(1.08) translateX(-1.2%);
    filter: saturate(.92);
  }
  100% {
    transform: scale(1) translateX(0);
    filter: saturate(1.02);
  }
}

@keyframes royalHeroOverlay {
  0% {
    opacity: .35;
  }
  100% {
    opacity: 1;
  }
}

@keyframes royalSlideDown {
  0% {
    opacity: 0;
    transform: translateY(-54px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes royalFadeUp {
  0% {
    opacity: 0;
    transform: translateY(28px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .royal-hero::before,
  .royal-hero::after,
  .royal-hero .kicker,
  .royal-hero h1,
  .royal-hero .lead,
  .royal-hero .hero-actions .btn,
  .royal-hero .hero-stats {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.btn {
  border-radius: 0;
  text-transform: none;
}

.btn-gold {
  background: var(--gold-500);
  border-color: var(--gold-500);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, .86);
}

.section {
  padding-block: clamp(3.75rem, 7vw, 5.5rem);
}

.section-head {
  margin-inline: auto;
  text-align: center;
}

.section-head h2,
.split-text h2,
.panel h2 {
  color: var(--navy-900);
}

.kicker-dark {
  color: var(--gold-500);
}

.split {
  align-items: center;
}

.media-img {
  border-radius: 0;
  border: 8px solid #fff;
  box-shadow: 0 12px 34px rgba(8, 35, 63, .16);
}

.card,
.panel,
.faq-item,
.contact-form-wrap,
.aside-box {
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(8, 35, 63, .08);
}

.card,
.panel {
  border-bottom: 3px solid var(--gold-500);
}

.card-link:hover {
  border-color: rgba(219, 228, 238, .94);
  border-bottom-color: var(--gold-500);
  transform: translateY(-5px);
}

.card-thumb,
.card-service-media img {
  border-radius: 0;
}

.card-service {
  min-height: 260px;
  border-bottom: 3px solid var(--gold-500);
}

.card-service-media {
  flex-basis: 44%;
}

.card-service-body h2,
.card h3 {
  color: var(--navy-900);
}

.text-link {
  color: var(--gold-600);
  font-weight: 800;
}

.section-navy {
  background:
    linear-gradient(rgba(8, 35, 63, .92), rgba(8, 35, 63, .92)),
    url("/assets/img/site/logistics-customs-port.jpg") center / cover no-repeat;
}

.cta-band {
  background: var(--navy-900);
  border-top: 5px solid var(--gold-500);
}

.cta-inner h2 {
  color: #fff;
}

.cta-inner p {
  color: rgba(255, 255, 255, .74);
}

.page-hero {
  background:
    linear-gradient(rgba(8, 35, 63, .78), rgba(8, 35, 63, .78)),
    var(--page-hero-bg, url("/assets/img/site/services-port-crane.jpg")) center / cover no-repeat;
  border-bottom: 5px solid var(--gold-500);
}

.contact-info {
  top: 198px;
}

.site-footer {
  background:
    linear-gradient(rgba(12, 25, 36, .94), rgba(12, 25, 36, .94)),
    url("/assets/img/site/home-port-cranes.jpg") center / cover no-repeat;
}

.footer-logo-link {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 1.1rem;
}

.footer-logo {
  width: 210px;
  max-width: 100%;
  background: #fff;
  padding: .45rem .55rem;
  border-radius: 0;
}

.footer-grid {
  gap: 2rem;
}

.footer-brand,
.footer-col h3 {
  color: #fff;
}

.footer-col h3 {
  position: relative;
  padding-bottom: .85rem;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44px;
  height: 2px;
  background: var(--gold-500);
}

.footer-bottom {
  background: rgba(255, 255, 255, .9);
  color: var(--navy-900);
}

.footer-bottom p {
  color: var(--navy-900);
  text-align: center;
}

.scroll-to-top {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 120;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  background: var(--gold-500);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(8, 35, 63, .24);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease, background-color .2s ease;
}

.scroll-to-top:hover {
  background: var(--gold-600);
  color: #fff;
}

.scroll-to-top .icon {
  transform: rotate(-90deg);
}

.scroll-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.products-hero {
  background:
    linear-gradient(rgba(8, 35, 63, .78), rgba(8, 35, 63, .78)),
    var(--page-hero-bg, url("/assets/img/site/sourcing-warehouse.jpg")) center / cover no-repeat;
}

.page-hero h1 {
  max-width: 1120px;
  font-size: clamp(2.35rem, 3.25vw, 3.25rem);
  line-height: 1.06;
}

.products-intro .btn {
  margin-top: .8rem;
}

.products-grid {
  align-items: stretch;
}

.product-card .text-link {
  margin-top: auto;
  padding-top: 1rem;
}

@media (max-width: 1080px) {
  .site-nav a {
    padding-inline: .72rem;
    font-size: .82rem;
  }
}

@media (max-width: 980px) {
  body {
    padding-top: 82px;
  }

  html.nav-open {
    overflow: hidden;
    overscroll-behavior: none;
  }

  body.nav-open {
    overflow: hidden;
    touch-action: none;
    overscroll-behavior: none;
  }

  .site-header {
    position: fixed;
    inset: 0 0 auto 0;
    width: 100%;
    z-index: 1000;
  }

  .site-header.is-stuck .header-middle {
    transform: none;
    opacity: 1;
    max-height: none;
    border-bottom: 1px solid #edf1f5;
  }

  .site-header.is-stuck .header-nav-bar {
    box-shadow: none;
  }

  .header-middle-inner {
    display: flex;
    grid-template-columns: none;
    justify-content: space-between;
    position: relative;
    min-height: 82px;
    padding-inline: 0 !important;
    margin-inline: 0 !important;
    max-width: none !important;
  }

  .header-info {
    display: none;
  }

  .header-middle .container {
    padding-inline: 0 !important;
    margin-inline: 0 !important;
    max-width: none !important;
  }

  .brand-center {
    justify-content: flex-start;
    position: absolute;
    left: 0;
    top: 50%;
    margin-right: 0;
    transform: translateY(-50%);
  }

  .brand-logo {
    width: 190px;
    max-height: 62px;
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .header-nav-bar {
    height: 0;
    overflow: visible;
    background: transparent;
    border-top: 0;
  }

  .header-inner {
    height: 0 !important;
    min-height: 0 !important;
    justify-content: flex-end;
    max-width: none !important;
    padding: 0 !important;
    background: transparent !important;
  }

  .nav-toggle {
    display: inline-flex;
    color: #fff;
    background: var(--navy-900);
    border-color: var(--navy-900);
  }

  .nav-toggle-top {
    display: inline-flex !important;
    position: absolute !important;
    right: 0 !important;
    top: 50% !important;
    z-index: 1002;
    font-size: 0;
    margin-left: 0;
    width: 48px;
    height: 48px;
    color: var(--navy-900) !important;
    background: transparent !important;
    border: 0 !important;
    transform: translateY(-50%) !important;
  }

  .nav-toggle-top::before {
    content: none !important;
  }

  .nav-toggle-top svg {
    display: block !important;
    width: 30px;
    height: 30px;
    stroke-width: 2.4;
  }

  .nav-toggle-bar {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: 82px;
    right: 0;
    bottom: 0;
    left: 0;
    height: calc(100dvh - 82px);
    min-height: calc(100dvh - 82px);
    max-height: none;
    background: #fff;
    padding: 1rem clamp(1rem, 4vw, 2rem) 2rem;
    overflow-y: auto;
    overscroll-behavior: contain;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
    box-shadow: 0 18px 38px rgba(8, 35, 63, .16);
  }

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

  .site-nav a,
  .nav-phone a {
    min-height: 50px;
    color: var(--navy-900);
    background: transparent;
    text-transform: none;
  }

  .site-nav a:hover,
  .site-nav a.active,
  .nav-phone a:hover {
    color: #fff;
    background: var(--gold-500);
  }

  .nav-phone {
    margin-left: 0;
  }

  .site-nav a.nav-cta {
    display: flex;
    justify-content: center;
    width: 100%;
    min-height: 64px;
    margin: .55rem 0 .35rem;
    color: #fff !important;
    background: var(--gold-500) !important;
    box-shadow: none;
  }

  .site-nav a.nav-cta:hover,
  .site-nav a.nav-cta:focus {
    color: #fff !important;
    background: var(--gold-600) !important;
  }

  .royal-hero,
  .royal-hero .hero-inner {
    min-height: 520px;
  }

  .royal-hero {
    background:
      linear-gradient(rgba(5, 19, 36, .78), rgba(5, 19, 36, .78)),
      var(--hero-bg) center / cover no-repeat;
  }
}

@media (max-width: 760px) {
  body {
    padding-top: 76px;
  }

  .header-middle-inner {
    min-height: 76px;
  }

  .brand-logo {
    width: 160px;
    max-width: 160px;
    height: auto;
  }

  .nav-toggle {
    top: 14px;
  }

  .site-nav {
    top: 76px;
    right: 0;
    bottom: 0;
    left: 0;
    height: calc(100dvh - 76px);
    min-height: calc(100dvh - 76px);
    max-height: none;
  }

  .royal-hero,
  .royal-hero .hero-inner {
    min-height: auto;
  }

    .royal-hero .hero-inner {
        padding-block: 3.5rem;
        padding-left: 1.25rem;
        padding-right: 0;
        width: 100%;
        max-width: 100%;
    }

    .royal-hero .hero-copy,
    .royal-hero .hero-actions,
    .royal-hero .hero-stats {
        width: 100%;
        max-width: none;
    }

  .royal-hero h1 {
    max-width: 330px;
    font-size: clamp(2rem, 9.3vw, 2.75rem);
    line-height: 1.08;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .royal-hero .kicker {
    max-width: 330px;
    font-size: .72rem;
    line-height: 1.5;
    letter-spacing: .08em;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .royal-hero .lead {
    max-width: 330px;
    font-size: .95rem;
    line-height: 1.65;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .royal-hero .hero-stats {
    grid-template-columns: 1fr;
  }

  .royal-hero .hero-stats li {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
  }

  .royal-hero .hero-stats li:last-child {
    border-bottom: 0;
  }

  .card-service-media {
    min-height: 210px;
  }
}
