:root {
  --blue: #0B4EA2;
  --blue-hover: #093d80;
  --blue-deep: #072e62;
  --red: #C8102E;
  --red-hover: #a60d26;
  --gold: #D4AF37;
  --gold-hover: #b3922b;
  --ink: #1a2332;
  --muted: #5b6575;
  --line: #e6e1d6;
  --paper: #fffdf8;
  --canvas: #f6f1e8;
  --card: #ffffff;
  --shadow: 0 18px 50px rgba(11, 78, 162, .08);
  --shadow-lg: 0 28px 70px rgba(11, 78, 162, .14);
  --radius: 22px;
  --radius-sm: 14px;
  --header: 76px;
  --max: 1180px;
  --font-h: "Cinzel", serif;
  --font-s: "Montserrat", sans-serif;
  --font-b: "Poppins", sans-serif;
  --font-u: "Inter", sans-serif;
  color-scheme: light;
}

html.dark {
  --ink: #f3efe6;
  --muted: #b7c0ce;
  --line: #243044;
  --paper: #101826;
  --canvas: #0b1220;
  --card: #162033;
  --shadow: 0 18px 50px rgba(0, 0, 0, .35);
  --shadow-lg: 0 28px 70px rgba(0, 0, 0, .45);
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-b);
  color: var(--ink);
  background: var(--canvas);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: none; }
[hidden], .hidden { display: none !important; }

.wrap { width: min(var(--max), calc(100% - 32px)); margin-inline: auto; }
.section { padding: 72px 0; }
.section-tight { padding: 48px 0; }
.kicker {
  font-family: var(--font-s);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
}
html.dark .kicker { color: var(--gold); }
h1, h2, h3, h4 { font-family: var(--font-h); line-height: 1.18; margin: 0 0 .5em; letter-spacing: .02em; }
h1 { font-size: clamp(2rem, 5vw, 4rem); color: var(--blue); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.6rem); color: var(--blue); }
h3 { font-size: 1.25rem; color: var(--blue); }
html.dark h1, html.dark h2, html.dark h3 { color: #fff; }
.lead { font-size: 1.05rem; color: var(--muted); max-width: 720px; }
.muted { color: var(--muted); }
.center { text-align: center; }
.center .lead { margin-inline: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 48px;
  padding: 0 1.2rem;
  border-radius: 999px;
  font-family: var(--font-u);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: .2s ease;
  white-space: nowrap;
}
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-hover); transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: #1a1508; }
.btn-gold:hover { background: var(--gold-hover); transform: translateY(-1px); }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-hover); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.55); }
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.btn-line { background: transparent; color: var(--blue); border: 1.5px solid var(--blue); }
html.dark .btn-line { color: var(--gold); border-color: var(--gold); }
.btn-line:hover { background: rgba(11,78,162,.06); }
.btn-full { width: 100%; }

.topbar {
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  padding: .55rem 0;
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.topbar-left, .topbar-right { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.topbar i { color: var(--gold); margin-right: .35rem; }
.topbar a:hover { color: var(--gold); }
.motto { color: var(--gold); font-weight: 600; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-row {
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand img {
  width: 56px; height: 56px; border-radius: 50%;
  object-fit: contain; background: #fff;
  border: 1px solid rgba(11,78,162,.15);
  box-shadow: 0 6px 16px rgba(11,78,162,.12);
}
.brand-name { font-family: var(--font-h); font-weight: 700; color: var(--blue); letter-spacing: .08em; text-transform: uppercase; font-size: 1rem; line-height: 1.1; }
.brand-sub { display: block; font-family: var(--font-s); font-size: 9px; color: var(--red); letter-spacing: .12em; text-transform: uppercase; font-weight: 700; margin-top: 3px; }
html.dark .brand-name { color: #fff; }

.desk-nav { display: none; align-items: center; gap: .15rem; }
.desk-nav > a, .drop > button {
  font-family: var(--font-u);
  font-size: .82rem;
  font-weight: 600;
  padding: .55rem .7rem;
  border-radius: 999px;
  color: var(--muted);
}
.desk-nav > a:hover, .drop > button:hover,
.desk-nav > a.is-active, .drop.is-active > button { color: var(--blue); }
html.dark .desk-nav > a.is-active, html.dark .drop.is-active > button { color: var(--gold); }
.drop { position: relative; }
.drop-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 240px; background: var(--card);
  border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow-lg); padding: .45rem;
  display: none;
}
.drop.open .drop-menu { display: block; }
.drop-menu a { display: block; padding: .7rem .85rem; border-radius: 10px; font-size: .86rem; }
.drop-menu a:hover { background: var(--blue); color: #fff; }

.nav-actions { display: flex; align-items: center; gap: .45rem; }
.icon-btn {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  color: var(--ink); border: 1px solid var(--line);
}
.icon-btn:hover { border-color: var(--gold); color: var(--blue); }
.burger { display: grid; }

.cta-watch { display: none; }
@media (min-width: 1180px) {
  .desk-nav { display: flex; }
  .burger { display: none; }
  .cta-watch { display: inline-flex; }
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--paper);
  max-height: calc(100dvh - 120px);
  overflow: auto;
  padding: 12px 0 24px;
}
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: .85rem 4px; font-weight: 600; border-bottom: 1px solid var(--line); }
.mobile-nav .group-label {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); font-weight: 700; padding: 1rem 4px .3rem;
}
.mobile-ctas { display: grid; gap: .6rem; padding-top: 1rem; }

.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: grid;
  place-items: center;
  color: #fff;
  overflow: hidden;
  background: var(--blue-deep);
}
.hero img.bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .38; transform: scale(1.04);
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,30,70,.35) 0%, rgba(7,30,70,.55) 45%, rgba(7,30,70,.88) 100%);
}
.hero-inner { position: relative; z-index: 1; text-align: center; padding: 72px 0 64px; }
.hero-seal {
  width: 88px; height: 88px; margin: 0 auto 18px;
  border-radius: 50%; padding: 6px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(8px);
}
.hero-seal img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }
.hero .kicker { color: var(--gold); }
.hero h1 { color: #fff; margin: .2em auto .4em; max-width: 16ch; }
.hero h1 span { color: var(--gold); }
.hero p { max-width: 680px; margin: 0 auto 1.6rem; color: #e8eef8; }
.hero-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: .7rem; margin-bottom: 1.4rem; }
.countdown {
  display: inline-flex; align-items: center; gap: .7rem;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  padding: .7rem 1.1rem; border-radius: 999px; font-size: .86rem;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #ff3b3b;
  box-shadow: 0 0 0 0 rgba(255,59,59,.7);
  animation: ping 1.6s infinite;
}
@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(255,59,59,.55); }
  70% { box-shadow: 0 0 0 10px rgba(255,59,59,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,59,59,0); }
}

.verse-bar {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  text-align: center;
  padding: 28px 0;
}
.verse-text { font-family: var(--font-h); font-size: clamp(1rem, 2vw, 1.35rem); color: var(--blue); font-style: italic; margin: .4rem 0; }
html.dark .verse-text { color: #fff; }
.verse-ref { color: var(--red); font-weight: 700; font-size: .85rem; }
html.dark .verse-ref { color: var(--gold); }
.linkish { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.linkish:hover { color: var(--blue); }

.grid-2 { display: grid; gap: 40px; align-items: center; }
.grid-3, .grid-4, .cards { display: grid; gap: 20px; }
@media (min-width: 800px) {
  .grid-2 { grid-template-columns: .9fr 1.1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .cards-3 { grid-template-columns: repeat(3, 1fr); }
  .cards-2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .cards-4 { grid-template-columns: repeat(4, 1fr); }
}

.portrait {
  border-radius: 24px; overflow: hidden;
  border: 4px solid var(--gold);
  box-shadow: var(--shadow-lg);
  background: var(--blue);
}
.portrait img { width: 100%; height: 460px; object-fit: cover; object-position: top; }
.portrait figcaption { padding: 14px 16px 16px; text-align: center; color: #fff; }
.portrait figcaption strong { display: block; font-family: var(--font-h); }
.portrait figcaption span { color: var(--gold); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; }

.quote {
  background: var(--paper);
  border-left: 4px solid var(--gold);
  padding: 18px 20px;
  border-radius: 0 16px 16px 0;
}
.quote p { font-family: var(--font-h); font-style: italic; color: var(--blue); margin: 0 0 .4rem; }
html.dark .quote p { color: #fff; }

.motto-band {
  background: linear-gradient(90deg, var(--blue), #093e82 55%, var(--red));
  color: #fff; text-align: center; padding: 48px 0;
}
.motto-band .kicker { color: var(--gold); }
.motto-band p { font-family: var(--font-h); font-size: clamp(1.2rem, 3vw, 2rem); text-transform: uppercase; margin: .4rem 0 0; }

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-media { position: relative; aspect-ratio: 16/10; background: #111; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 20px 20px 18px; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.card-foot { margin-top: auto; padding: 14px 20px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 10px; }

.badge {
  display: inline-flex; align-items: center;
  padding: .28rem .65rem; border-radius: 999px;
  font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
}
.badge-red { background: #fde8ec; color: var(--red); }
.badge-blue { background: #e7f0fb; color: var(--blue); }
.badge-gold { background: #f8efd2; color: #7a5f12; }
.badge-green { background: #e4f7ea; color: #157a36; }
.badge-live { background: var(--red); color: #fff; position: absolute; top: 12px; left: 12px; }
.play-fab {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.35));
}
.play-fab span {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(200,16,46,.45);
  font-size: 1.15rem;
}

.gold-panel {
  background: color-mix(in srgb, var(--paper) 88%, #f3e4b0);
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 6px rgba(212,175,55,.08), var(--shadow-lg);
  border-radius: 28px;
  padding: 28px;
}
html.dark .gold-panel { background: #1a2436; }
.pay-box {
  background: var(--card);
  border: 1px solid rgba(212,175,55,.35);
  border-radius: 16px;
  padding: 14px 16px;
  font-family: ui-monospace, monospace;
  font-size: .9rem;
}
.pay-row { display: flex; justify-content: space-between; gap: 12px; padding: .45rem 0; border-bottom: 1px solid var(--line); }
.pay-row:last-child { border-bottom: 0; }
.copy-btn { color: var(--blue); font-size: 12px; font-family: var(--font-u); font-weight: 700; }

.filter-row { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-top: 1.2rem; }
.chip {
  min-height: 40px; padding: 0 .95rem; border-radius: 999px;
  border: 1px solid var(--line); background: var(--card);
  font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
.chip.is-on, .chip:hover { background: var(--blue); color: #fff; border-color: var(--blue); }

.page-hero {
  background: linear-gradient(160deg, var(--blue) 0%, #093e82 70%, #08172d 100%);
  color: #fff; padding: 64px 0 56px; text-align: center; position: relative; overflow: hidden;
}
.page-hero h1 { color: #fff; }
.page-hero p { color: #d9e4f5; max-width: 680px; margin: 0 auto; }

.form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}
label { display: block; font-size: .8rem; font-weight: 600; margin-bottom: .35rem; }
.field { width: 100%; min-height: 46px; border: 1px solid var(--line); border-radius: 12px; padding: .65rem .8rem; background: var(--paper); }
textarea.field { min-height: 120px; resize: vertical; }
.field:focus { outline: 2px solid color-mix(in srgb, var(--blue) 35%, transparent); border-color: var(--blue); }
.form-row { display: grid; gap: 12px; }
@media (min-width: 640px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
.notice { padding: 12px 14px; border-radius: 12px; font-size: .9rem; margin-bottom: 12px; }
.notice-ok { background: #e6f8ec; color: #146c2e; }
.notice-err { background: #fde8ec; color: #9d1230; }
.help { font-size: .78rem; color: var(--muted); }

.accordion { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: var(--card); }
.accordion + .accordion { margin-top: 10px; }
.accordion button { width: 100%; text-align: left; padding: 16px 18px; display: flex; justify-content: space-between; gap: 12px; font-family: var(--font-h); color: var(--blue); font-weight: 700; }
html.dark .accordion button { color: var(--gold); }
.accordion .acc-body { display: none; padding: 0 18px 16px; color: var(--muted); }
.accordion.open .acc-body { display: block; }

.site-footer { background: #151b26; color: #c9d0db; padding: 64px 0 24px; border-top: 4px solid var(--gold); margin-top: auto; }
.foot-grid { display: grid; gap: 32px; }
@media (min-width: 800px) { .foot-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; } }
.site-footer h4 { color: var(--gold); font-size: .95rem; }
.site-footer a:hover { color: #fff; }
.foot-links { display: grid; grid-template-columns: 1fr 1fr; gap: .45rem 1rem; font-size: .9rem; }
.legal { border-top: 1px solid rgba(255,255,255,.08); margin-top: 36px; padding-top: 18px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 12px; color: #8b93a1; }
.legal a { color: #fff; font-weight: 700; text-decoration: underline; }

.campaign-cta {
  background: linear-gradient(90deg, var(--blue), #0a2f6b 50%, var(--red));
  color: #fff; padding: 22px 0; border-top: 4px solid var(--gold);
}
.campaign-cta .wrap { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.campaign-cta h4 { color: var(--gold); margin: 0 0 .2rem; font-size: .95rem; }

.mobile-dock {
  position: sticky; bottom: 0; z-index: 35;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  background: var(--paper); border-top: 1px solid var(--line);
}
.mobile-dock a { padding: 10px 6px 12px; text-align: center; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.mobile-dock i { display: block; font-size: 16px; margin-bottom: 4px; color: var(--blue); }
html.dark .mobile-dock i { color: var(--gold); }
@media (min-width: 1180px) { .mobile-dock { display: none; } }

.lightbox {
  position: fixed; inset: 0; background: rgba(8,15,28,.88);
  display: none; place-items: center; z-index: 80; padding: 20px;
}
.lightbox.open { display: grid; }
.lightbox img { max-width: min(960px, 100%); max-height: 86vh; border-radius: 12px; }

.avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--blue); color: #fff;
  font-weight: 700; font-family: var(--font-s);
}
.icon-tile {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--canvas); color: var(--blue); font-size: 1.2rem;
  border: 1px solid var(--line);
}
html.dark .icon-tile { color: var(--gold); }

.modal {
  position: fixed; inset: 0; background: rgba(12,18,30,.62);
  display: none; place-items: center; z-index: 70; padding: 16px;
}
.modal.open { display: grid; }
.modal-card { width: min(480px, 100%); background: var(--card); border-radius: 22px; padding: 24px; border-top: 6px solid var(--red); position: relative; }

.table-wrap { overflow: auto; border: 1px solid var(--line); border-radius: 16px; background: var(--card); }
table { width: 100%; border-collapse: collapse; font-size: .86rem; }
th, td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--line); }
th { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--blue); }

.stat { background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 18px; text-align: center; }
.stat b { display: block; font-size: 1.6rem; color: var(--blue); font-family: ui-monospace, monospace; }
html.dark .stat b { color: var(--gold); }

.video-frame { position: relative; aspect-ratio: 16/9; background: #000; border-radius: 18px; overflow: hidden; }
.video-frame iframe, .video-frame img { width: 100%; height: 100%; object-fit: cover; border: 0; }

#website-loader {
  position: fixed; inset: 0; z-index: 99999;
  background: #fffdf8; display: grid; place-items: center;
  transition: opacity .55s ease;
}
html.dark #website-loader { background: #0b1220; }
#website-loader.fade { opacity: 0; pointer-events: none; }
.loader-stage { position: relative; width: 220px; height: 220px; display: grid; place-items: center; }
.loader-glow {
  position: absolute; inset: 18px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,.45), rgba(11,78,162,.08) 55%, transparent 70%);
  animation: glow 2.2s ease-in-out infinite;
  filter: blur(2px);
}
.loader-ring {
  position: absolute; inset: 28px; border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--gold);
  border-right-color: var(--blue);
  animation: spin 2.4s linear infinite;
}
.loader-logo {
  width: 108px; height: 108px; border-radius: 50%;
  background: #fff; padding: 8px;
  box-shadow: 0 0 0 8px rgba(255,255,255,.6), 0 20px 40px rgba(11,78,162,.16);
  position: relative; z-index: 2;
}
.loader-logo img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }
.loader-copy { text-align: center; margin-top: 8px; position: relative; z-index: 2; }
.loader-copy strong { display: block; font-family: var(--font-h); color: var(--blue); letter-spacing: .14em; text-transform: uppercase; }
html.dark .loader-copy strong { color: #fff; }
.loader-copy span { display: block; margin-top: 4px; font-family: var(--font-s); font-size: 10px; color: var(--red); letter-spacing: .1em; text-transform: uppercase; font-weight: 700; }
#sparkle-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
@keyframes glow {
  0%, 100% { transform: scale(.92); opacity: .7; }
  50% { transform: scale(1.08); opacity: 1; }
}
@keyframes spin { to { transform: rotate(360deg); } }

.project-hero {
  position: relative;
  min-height: min(72vh, 620px);
  display: grid;
  place-items: center;
  color: #fff;
  overflow: hidden;
  background: var(--blue-deep);
}
.project-hero img.bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .55;
}
.project-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,30,70,.25), rgba(7,20,48,.82));
}
.project-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: .28s ease;
}
.project-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 0 0 2px var(--gold), var(--shadow-lg);
}
.land-grid, .land-mosaic {
  display: grid;
  gap: 10px;
}
.land-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
.land-mosaic { grid-template-columns: 1.2fr 1fr; grid-auto-rows: 110px; }
.land-grid button, .land-mosaic button {
  padding: 0; border-radius: 14px; overflow: hidden; border: 1px solid var(--line);
}
.land-grid img, .land-mosaic img { width: 100%; height: 140px; object-fit: cover; }
.land-mosaic button:first-child { grid-row: span 2; }
.land-mosaic button:first-child img { height: 230px; }
@media (max-width: 700px) {
  .land-mosaic { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .hero-ctas .btn { width: 100%; }
  .brand-sub { display: none; }
  .section { padding: 52px 0; }
  .portrait img { height: 380px; }
}
