
:root {
  color-scheme: light;
  --bg: #f3f8fd;
  --bg-deep: #e6f0fa;
  --surface: rgba(255, 255, 255, 0.90);
  --surface-solid: #ffffff;
  --surface-2: #f0f6fc;
  --ink: #173d67;
  --ink-2: #28517f;
  --muted: #61768e;
  --line: rgba(30, 108, 179, 0.14);
  --line-strong: rgba(30, 108, 179, 0.28);
  --gold: #f15a19;
  --gold-2: #ff8554;
  --gold-soft: rgba(241, 90, 25, 0.14);
  --blue: #1e6cb3;
  --danger: #c94d17;
  --success: #1e8b73;
  --shadow: 0 26px 90px rgba(13, 34, 59, 0.16);
  --shadow-soft: 0 18px 50px rgba(13, 34, 59, 0.09);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --header: 86px;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #091624;
  --bg-deep: #0f243a;
  --surface: rgba(12, 27, 44, 0.84);
  --surface-solid: #0d2137;
  --surface-2: #123050;
  --ink: #f4f8fc;
  --ink-2: #d9e5f2;
  --muted: #9bb2c8;
  --line: rgba(99, 166, 234, 0.16);
  --line-strong: rgba(99, 166, 234, 0.30);
  --gold: #ff6d2d;
  --gold-2: #ff9b68;
  --gold-soft: rgba(255, 109, 45, 0.16);
  --blue: #63a6ea;
  --danger: #ff8a57;
  --success: #5dcfb5;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 18px 58px rgba(0, 0, 0, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, var(--gold-soft), transparent 34rem),
    radial-gradient(circle at top right, rgba(30, 108, 179, 0.12), transparent 32rem),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  color: var(--ink);
  line-height: 1.55;
  min-width: 320px;
}
body.nav-open { overflow: hidden; }
img, video, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
::selection { background: var(--gold); color: #ffffff; }

.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.page-shell { min-height: 100vh; display: flex; flex-direction: column; }
.site-main { flex: 1; }

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
  background: color-mix(in srgb, var(--surface-solid) 78%, transparent);
}
.navbar { height: var(--header); display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 258px; }
.brand img.brand-mark, .footer-logo img.brand-mark {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(17, 20, 27, .16);
}
.brand-copy { display: grid; gap: 1px; line-height: 1; letter-spacing: -.02em; }
.brand-copy strong { font-size: 18px; font-weight: 900; color: var(--ink); }
.brand-copy em { font-size: 11px; font-style: normal; font-weight: 900; letter-spacing: .18em; color: var(--gold); }
.nav-links { display: flex; align-items: center; justify-content: center; gap: 4px; }
.nav-link {
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 650;
  color: var(--muted);
  transition: 180ms ease;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--ink); background: var(--gold-soft); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.lang-switch { display: flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; background: var(--surface); }
.lang-btn, .theme-toggle, .menu-toggle {
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}
.lang-btn { padding: 8px 10px; font-size: 12px; font-weight: 800; letter-spacing: .05em; }
.lang-btn.active { background: var(--gold); color: #173d67; }
.theme-toggle, .menu-toggle {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  transition: 180ms ease;
}
.theme-toggle:hover, .menu-toggle:hover { border-color: var(--line-strong); color: var(--ink); }
.menu-toggle { display: none; }
.menu-toggle span { width: 17px; height: 2px; background: currentColor; border-radius: 99px; box-shadow: 0 6px 0 currentColor, 0 -6px 0 currentColor; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 46px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 680px;
  pointer-events: none;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--bg) 88%, transparent), transparent 62%),
    radial-gradient(circle at 72% 22%, rgba(241, 90, 25, 0.18), transparent 21rem),
    radial-gradient(circle at 86% 10%, rgba(30, 108, 179, 0.20), transparent 24rem);
  z-index: -2;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(340px, .96fr); gap: 44px; align-items: center; }
.hero-copy { max-width: 720px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  margin: 0 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold);
  background: var(--surface);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 6px var(--gold-soft); }
h1, .h1 { margin: 0; font-size: clamp(40px, 5.4vw, 74px); line-height: 1.07; letter-spacing: -0.018em; font-weight: 850; word-spacing: .02em; }
.hero-lead, .lead { margin: 22px 0 0; font-size: clamp(17px, 2vw, 21px); color: var(--muted); max-width: 650px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); border-color: var(--line-strong); }
.btn-primary { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #ffffff; border-color: rgba(241,90,25,.38); }
.btn-dark { background: linear-gradient(135deg, color-mix(in srgb, var(--blue) 78%, #112a44), #173d67); color: #ffffff; border-color: rgba(30,108,179,.18); }
html[data-theme="dark"] .btn-dark { background: #f4f8fc; color: #173d67; }
.btn-inline { padding: 0; border: 0; background: transparent; color: var(--gold); min-height: auto; }
.hero-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 38px; max-width: 680px; }
.meta-card { padding: 18px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); box-shadow: var(--shadow-soft); }
.meta-card strong { display: block; font-size: 19px; letter-spacing: -.02em; }
.meta-card span { display: block; margin-top: 3px; color: var(--muted); font-size: 13px; }
.hero-visual { position: relative; min-height: 580px; }
.hero-photo {
  position: absolute;
  inset: 0 0 auto auto;
  width: min(100%, 540px);
  height: 520px;
  border-radius: 42px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line-strong);
  background: linear-gradient(145deg, #173d67, #1e6cb3);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.46)); }
.hero-ticket {
  position: absolute;
  left: 0;
  bottom: 42px;
  width: min(88%, 384px);
  padding: 22px;
  border-radius: 28px;
  color: #fffaf2;
  border: 1px solid rgba(255,109,45,.34);
  background: linear-gradient(135deg, rgba(23,61,103,.96), rgba(30,108,179,.92));
  box-shadow: 0 24px 70px rgba(0,0,0,.30);
}
.hero-ticket small { display: block; color: var(--gold-2); font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.hero-ticket b { display: block; margin-top: 10px; font-size: 28px; line-height: 1.02; letter-spacing: -.04em; }
.hero-ticket p { margin: 12px 0 0; color: rgba(255,250,242,.72); }
.hero-tag {
  position: absolute;
  right: 26px;
  bottom: 20px;
  padding: 12px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #ffffff;
  border: 1px solid rgba(255,255,255,.24);
  font-weight: 850;
  box-shadow: var(--shadow-soft);
}
.section { padding: 70px 0; }
.section-tight { padding: 46px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 30px; }
.section-title { margin: 0; font-size: clamp(30px, 4vw, 52px); line-height: 1.1; letter-spacing: -.02em; font-weight: 850; max-width: 760px; }
.section-text { margin: 0; color: var(--muted); max-width: 470px; }

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.panel-pad { padding: 30px; }
.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  position: relative;
  padding: 26px;
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.card::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: linear-gradient(90deg, var(--gold), transparent); opacity: .85; }
.card-number { color: var(--gold); font-size: 13px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.card h3 { margin: 16px 0 10px; font-size: 24px; line-height: 1.12; letter-spacing: -.035em; }
.card p { margin: 0; color: var(--muted); }
.card ul { margin: 18px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; color: var(--muted); }
.card li { display: grid; grid-template-columns: 19px 1fr; gap: 9px; }
.card li::before { content: ""; width: 8px; height: 8px; margin-top: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px var(--gold-soft); }

.split { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: 22px; align-items: stretch; }
.image-card { position: relative; min-height: 470px; border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--line-strong); box-shadow: var(--shadow); }
.image-card img, .image-card video { width: 100%; height: 100%; object-fit: cover; }
.image-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.58)); pointer-events: none; }
.image-caption { position: absolute; left: 24px; right: 24px; bottom: 24px; z-index: 2; color: white; }
.image-caption b { display: block; font-size: 26px; letter-spacing: -.04em; line-height: 1.08; }
.image-caption span { display: block; margin-top: 7px; color: rgba(255,255,255,.74); }
.text-panel { padding: 36px; border-radius: var(--radius-xl); border: 1px solid var(--line); background: var(--surface); box-shadow: var(--shadow-soft); }
.text-panel h2 { margin: 0; font-size: clamp(30px, 4vw, 46px); line-height: 1.12; letter-spacing: -.02em; }
.text-panel p { color: var(--muted); }
.check-list { margin: 24px 0 0; padding: 0; list-style: none; display: grid; gap: 13px; }
.check-list li { display: grid; grid-template-columns: 28px 1fr; gap: 12px; align-items: start; color: var(--ink-2); }
.check-list li::before { content: "✓"; display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: var(--gold-soft); color: var(--gold); font-weight: 900; }
html[data-theme="dark"] .check-list li { color: var(--ink); }

.process { counter-reset: step; display: grid; gap: 14px; }
.process-item { counter-increment: step; display: grid; grid-template-columns: 72px 1fr; gap: 20px; align-items: start; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); }
.process-item::before { content: counter(step, decimal-leading-zero); width: 56px; height: 56px; border-radius: 18px; display: grid; place-items: center; background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #11141b; font-weight: 900; }
.process-item h3 { margin: 0 0 7px; font-size: 21px; letter-spacing: -.035em; }
.process-item p { margin: 0; color: var(--muted); }

.logo-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.logo-card { display: grid; place-items: center; min-height: 118px; padding: 18px; border: 1px solid var(--line); border-radius: 22px; background: var(--surface-solid); box-shadow: var(--shadow-soft); }
.logo-card img { max-width: 155px; max-height: 54px; object-fit: contain; }
html[data-theme="dark"] .logo-card { background: rgba(255,250,242,.04); }


.fleet-highlight .text-panel { background: linear-gradient(180deg, var(--surface), color-mix(in srgb, var(--surface-solid) 76%, transparent)); }
.fleet-photo-card { min-height: 520px; }
.fleet-showcase { min-height: min(62vw, 640px); }
.fleet-showcase img { object-position: center; }
.fleet-mini-grid .card { min-height: 205px; }
html[data-theme="dark"] .brand img.brand-mark, html[data-theme="dark"] .footer-logo img.brand-mark { box-shadow: 0 12px 34px rgba(0, 0, 0, .38); }

.port-gallery { display: grid; grid-template-columns: 1.05fr .95fr; gap: 18px; }
.port-gallery .image-card:first-child { min-height: 540px; }
.port-side { display: grid; gap: 18px; }
.port-side .image-card { min-height: 261px; }
.video-box { position: relative; border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--line-strong); background: #10141d; box-shadow: var(--shadow); }
.video-box video { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.video-box .image-caption { pointer-events: none; }
.video-box::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 52%, rgba(0,0,0,.64)); pointer-events: none; }

.cta { padding: 54px; border-radius: 42px; background: linear-gradient(135deg, #11141b, #252b38); color: #fffaf2; position: relative; overflow: hidden; box-shadow: var(--shadow); }
.cta::before { content: ""; position: absolute; width: 420px; height: 420px; right: -120px; top: -170px; border-radius: 50%; background: radial-gradient(circle, rgba(242,211,139,.34), transparent 62%); }
.cta h2 { margin: 0; font-size: clamp(32px, 4.6vw, 56px); letter-spacing: -.022em; line-height: 1.08; max-width: 800px; }
.cta p { max-width: 600px; color: rgba(255,250,242,.72); }
.cta .btn { position: relative; z-index: 2; }

.page-hero { padding: 64px 0 46px; }
.page-hero-inner { display: grid; grid-template-columns: 1fr .54fr; gap: 30px; align-items: end; }
.breadcrumb { color: var(--muted); font-size: 14px; margin-bottom: 18px; }
.breadcrumb a { color: var(--gold); font-weight: 800; }
.kpi-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 28px; }
.kpi { padding: 20px; border: 1px solid var(--line); border-radius: 24px; background: var(--surface); }
.kpi b { display: block; font-size: 26px; letter-spacing: -.015em; margin-bottom: 6px; }
.kpi span { display: block; color: var(--muted); }

.route-card { min-height: 300px; display: flex; flex-direction: column; justify-content: space-between; }
.route-tag { align-self: flex-start; padding: 8px 11px; border-radius: 999px; background: var(--gold-soft); color: var(--gold); font-weight: 850; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.route-card h3 { font-size: 30px; }
.route-card .route-bottom { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.pill { display: inline-flex; align-items: center; min-height: 30px; padding: 6px 10px; border-radius: 999px; background: var(--surface-2); border: 1px solid var(--line); color: var(--muted); font-size: 13px; font-weight: 700; }

.details-table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-soft); }
.details-table th, .details-table td { padding: 18px 20px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.details-table th { color: var(--muted); width: 250px; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.details-table tr:last-child th, .details-table tr:last-child td { border-bottom: 0; }

.contact-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 22px; align-items: start; }
.contact-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-xl); background: var(--surface); box-shadow: var(--shadow-soft); }
.contact-item { padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-item:last-child { border-bottom: 0; }
.contact-item span { display: block; color: var(--muted); font-size: 13px; text-transform: uppercase; letter-spacing: .08em; font-weight: 850; }
.contact-item b, .contact-item a { display: block; margin-top: 6px; font-size: 20px; letter-spacing: -.02em; }
.form { display: grid; gap: 14px; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.field { display: grid; gap: 7px; }
.field label { color: var(--muted); font-size: 13px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.field input, .field textarea, .field select { width: 100%; border: 1px solid var(--line); border-radius: 16px; background: var(--surface-solid); color: var(--ink); padding: 14px 15px; outline: none; }
.field textarea { min-height: 138px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold); box-shadow: 0 0 0 4px var(--gold-soft); }

.footer { margin-top: 70px; padding: 48px 0 28px; border-top: 1px solid var(--line); background: color-mix(in srgb, var(--surface-solid) 60%, transparent); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 30px; align-items: start; }
.footer-logo { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-logo .brand-copy strong { font-size: 20px; }
.footer-logo .brand-copy em { font-size: 12px; }
.footer p, .footer a { color: var(--muted); }
.footer h3 { margin: 0 0 12px; font-size: 15px; text-transform: uppercase; letter-spacing: .09em; color: var(--ink); }
.footer-links { display: grid; gap: 8px; }
.footer-bottom { margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; color: var(--muted); font-size: 14px; }

.reveal { animation: fadeUp .58s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1080px) {
  .hero-grid, .split, .page-hero-inner, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 520px; }
  .hero-photo { left: 0; right: auto; width: 100%; }
  .hero-ticket { left: 26px; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .logo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .port-gallery { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .header { backdrop-filter: blur(16px); }
  .brand { min-width: auto; }
  .brand { min-width: auto; }
  .brand img.brand-mark { width: 46px; height: 46px; flex-basis: 46px; border-radius: 7px; }
  .brand-copy strong { font-size: 16px; }
  .brand-copy em { font-size: 10px; }
  .menu-toggle { display: grid; }
  .nav-links {
    position: fixed;
    left: 14px;
    right: 14px;
    top: calc(var(--header) + 10px);
    display: none;
    padding: 14px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: var(--surface-solid);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }
  body.nav-open .nav-links { display: flex; }
  .nav-link { padding: 13px 14px; border-radius: 14px; }
  .navbar { gap: 12px; }
  .lang-switch { display: none; }
  body.nav-open .lang-switch { display: flex; position: fixed; right: 28px; top: calc(var(--header) + 334px); z-index: 55; }
}

@media (max-width: 720px) {
  :root { --header: 74px; }
  .container { width: min(100% - 28px, var(--container)); }
  .hero { padding-top: 42px; }
  .hero-grid { gap: 28px; }
  h1, .h1 { font-size: clamp(38px, 12vw, 56px); }
  .hero-lead, .lead { font-size: 16px; }
  .hero-meta, .kpi-row, .grid-2, .grid-3, .grid-4, .footer-grid, .form-row { grid-template-columns: 1fr; }
  .hero-visual { min-height: 430px; }
  .hero-photo { height: 390px; border-radius: 28px; }
  .hero-ticket { left: 14px; right: 14px; bottom: 0; width: auto; padding: 18px; border-radius: 22px; }
  .hero-ticket b { font-size: 23px; }
  .hero-tag { display: none; }
  .section { padding: 48px 0; }
  .section-head { display: block; }
  .section-text { margin-top: 12px; }
  .card { padding: 22px; min-height: auto; }
  .text-panel { padding: 24px; }
  .image-card { min-height: 360px; border-radius: 26px; }
  .fleet-photo-card, .fleet-showcase { min-height: 330px; }
  .port-gallery .image-card:first-child { min-height: 370px; }
  .port-side .image-card, .video-box video { min-height: 260px; }
  .process-item { grid-template-columns: 1fr; }
  .logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .logo-card { min-height: 96px; padding: 14px; }
  .logo-card img { max-width: 124px; }
  .cta { padding: 32px 24px; border-radius: 28px; }
  .details-table, .details-table tbody, .details-table tr, .details-table th, .details-table td { display: block; width: 100%; }
  .details-table th { padding-bottom: 6px; }
  .details-table td { padding-top: 0; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 420px) {
  .brand img.brand-mark { width: 42px; height: 42px; flex-basis: 42px; border-radius: 6px; }
  .brand-copy strong { font-size: 14px; }
  .brand-copy em { font-size: 9px; letter-spacing: .14em; }
  .theme-toggle, .menu-toggle { width: 38px; height: 38px; }
  .nav-actions { gap: 6px; }
  .btn { width: 100%; }
  .hero-actions { width: 100%; }
  .logo-grid { grid-template-columns: 1fr; }
}
