:root {
  --navy: #071a36;
  --blue: #173f79;
  --red: #b51f2c;
  --red-bright: #df3140;
  --yellow: #f3d523;
  --white: #ffffff;
  --cream: #f5f2ea;
  --ink: #111827;
  --muted: #5d6775;
  --shadow: 0 24px 60px rgba(7, 26, 54, 0.18);
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 280px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: 96px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.skip-link { position: fixed; top: -80px; left: 14px; z-index: 9999; padding: 12px 16px; color: var(--navy); background: var(--white); border-radius: 0 0 10px 10px; font-weight: 800; }
.skip-link:focus { top: 0; }

.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(7, 26, 54, 0.98); box-shadow: 0 8px 28px rgba(0, 0, 0, 0.24); }
.flag-bar { height: 6px; background: linear-gradient(90deg, var(--red) 0 33.33%, var(--white) 33.33% 66.66%, var(--yellow) 66.66%); }
.nav-wrap { min-height: 86px; display: flex; align-items: center; gap: 24px; }
.brand { width: 172px; flex: 0 0 auto; overflow: hidden; border: 2px solid rgba(255, 255, 255, 0.18); border-radius: 12px; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.28); }
.brand img { width: 100%; aspect-ratio: 1.72 / 1; object-fit: cover; }
.main-nav { margin-left: auto; display: flex; align-items: center; gap: 24px; }
.main-nav a { position: relative; color: var(--white); font-size: 0.86rem; font-weight: 900; letter-spacing: 0.06em; text-transform: uppercase; }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: -9px; width: 0; height: 3px; background: var(--yellow); transition: width 0.2s ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { width: 100%; }
.phone-pill { display: inline-flex; align-items: center; gap: 8px; padding: 12px 17px; color: var(--navy); background: var(--yellow); border-radius: 999px; font-weight: 900; white-space: nowrap; }
.menu-toggle { display: none; width: 46px; height: 46px; margin-left: auto; border: 1px solid rgba(255, 255, 255, 0.26); border-radius: 12px; background: transparent; cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; width: 22px; height: 2px; margin: 5px auto; background: var(--white); }

.hero { position: relative; min-height: 710px; display: flex; align-items: center; overflow: hidden; color: var(--white); background: radial-gradient(circle at 10% 10%, rgba(39, 87, 154, 0.55), transparent 36%), linear-gradient(135deg, #061326 0%, #0b2d60 52%, #071a36 100%); }
.hero::after { content: ""; position: absolute; right: -170px; top: -180px; width: 520px; height: 520px; border: 105px solid rgba(255, 255, 255, 0.035); border-radius: 50%; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 70px; align-items: center; padding: 104px 0 96px; }
.hero-stars { position: absolute; top: 84px; left: -32px; color: rgba(255, 255, 255, 0.1); font-size: 2.5rem; letter-spacing: 22px; white-space: nowrap; transform: rotate(-12deg); }
.hero-stripes { position: absolute; left: -80px; bottom: -85px; width: 760px; height: 240px; opacity: 0.18; background: repeating-linear-gradient(-12deg, transparent 0 25px, var(--red-bright) 25px 55px, var(--white) 55px 84px); transform: rotate(4deg); }
.eyebrow { margin: 0 0 15px; color: var(--yellow); font-weight: 900; letter-spacing: 0.18em; text-transform: uppercase; }
.eyebrow.dark { color: var(--red); }
.hero h1, .section-heading h2, .identity-copy h2, .location h2, .contact h2 { margin: 0; font-family: Impact, "Arial Black", Arial, sans-serif; font-style: italic; font-weight: 900; text-transform: uppercase; }
.hero h1 { max-width: 720px; margin-bottom: 24px; font-size: clamp(3.6rem, 7vw, 6.7rem); line-height: 0.9; text-shadow: 5px 5px 0 rgba(0, 0, 0, 0.23); }
.hero h1 span { display: block; color: var(--yellow); }
.category-line { margin: 0; font-size: clamp(1rem, 2vw, 1.22rem); font-weight: 900; letter-spacing: 0.06em; text-transform: uppercase; }
.category-line b { padding: 0 7px; color: var(--yellow); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin: 35px 0 30px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 14px 21px; border: 2px solid transparent; border-radius: 999px; font-weight: 900; cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease; }
.button:hover, .button:focus-visible { transform: translateY(-3px); }
.button-yellow { color: var(--navy); background: var(--yellow); box-shadow: 0 14px 32px rgba(243, 213, 35, 0.2); }
.button-outline { color: var(--white); border-color: rgba(255, 255, 255, 0.58); background: rgba(255, 255, 255, 0.05); }
.button-outline:hover { color: var(--navy); background: var(--white); }
.button-dark { color: var(--white); background: var(--navy); }
.button-copy { color: var(--navy); border-color: var(--navy); background: transparent; }
.hero-location { display: flex; align-items: center; gap: 11px; margin: 0; color: #dce7f5; font-weight: 800; }
.hero-location span { color: var(--red-bright); }
.logo-frame { position: relative; padding: 13px; background: var(--white); border-radius: 22px; box-shadow: 0 35px 75px rgba(0, 0, 0, 0.44); transform: rotate(2deg); }
.logo-frame::before { content: ""; position: absolute; inset: -16px; z-index: -1; border: 2px solid rgba(243, 213, 35, 0.75); border-radius: 29px; transform: rotate(-4deg); }
.logo-frame img { width: 100%; border-radius: 12px; }

.ticker { overflow: hidden; color: var(--white); background: var(--red); border-top: 4px solid var(--yellow); border-bottom: 4px solid var(--yellow); }
.ticker-inner { min-width: max-content; display: flex; align-items: center; justify-content: center; gap: 24px; padding: 16px 28px; font-size: 0.86rem; letter-spacing: 0.09em; text-transform: uppercase; }
.ticker-inner strong { color: var(--yellow); }
.ticker-inner span { color: var(--yellow); }

.categories { background: var(--cream); }
.section-heading { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-heading h2, .identity-copy h2, .location h2, .contact h2 { color: var(--navy); font-size: clamp(2.8rem, 5vw, 4.7rem); line-height: 0.98; }
.section-heading > p:last-child { margin: 16px 0 0; color: var(--muted); font-size: 1.08rem; }
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.category-card { position: relative; min-height: 300px; display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; padding: 30px; color: var(--navy); background: var(--white); border: 1px solid rgba(7, 26, 54, 0.08); border-radius: 24px; box-shadow: 0 16px 38px rgba(7, 26, 54, 0.1); transition: transform 0.22s ease, box-shadow 0.22s ease; }
.category-card::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 7px; background: linear-gradient(90deg, var(--red), var(--yellow)); }
.category-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.card-number { position: absolute; top: 20px; left: 22px; color: rgba(7, 26, 54, 0.22); font-family: Impact, "Arial Black", Arial, sans-serif; font-size: 1.2rem; }
.category-card svg { width: 96px; height: 96px; margin-bottom: 22px; fill: none; stroke: currentColor; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.category-card h3 { margin: 0; font-family: Impact, "Arial Black", Arial, sans-serif; font-size: 2rem; font-style: italic; letter-spacing: 0.03em; text-transform: uppercase; }

.identity { background: var(--white); }
.identity-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 72px; align-items: center; }
.identity-image { padding: 12px; background: var(--navy); border: 7px solid var(--white); border-radius: 25px; box-shadow: var(--shadow); outline: 3px solid var(--red); }
.identity-image img { width: 100%; border-radius: 12px; }
.identity-copy h2 { margin-bottom: 28px; }
.tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.tags span { padding: 9px 14px; color: var(--navy); background: var(--yellow); border-radius: 999px; font-size: 0.82rem; font-weight: 900; text-transform: uppercase; }
.details { margin: 0; border-top: 1px solid #e3e7ed; }
.details div { display: grid; grid-template-columns: 150px 1fr; gap: 20px; padding: 17px 0; border-bottom: 1px solid #e3e7ed; }
.details dt { color: var(--red); font-weight: 900; }
.details dd { margin: 0; color: var(--navy); font-weight: 800; }
.details a { text-decoration: underline; text-decoration-color: var(--yellow); text-decoration-thickness: 4px; }

.location { position: relative; overflow: hidden; color: var(--white); background: linear-gradient(135deg, #061326, #12386c); }
.location::before { content: "★"; position: absolute; right: -25px; top: -105px; color: rgba(255, 255, 255, 0.04); font-size: 28rem; line-height: 1; }
.location-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 0.82fr; gap: 64px; align-items: center; }
.location h2 { color: var(--white); }
.location-copy > p:not(.eyebrow) { margin: 8px 0 0; color: #d8e5f5; font-size: 1.4rem; font-weight: 800; }
.location-copy > strong { display: block; margin-top: 10px; color: var(--yellow); font-size: 2.4rem; }
.location-card { display: flex; align-items: center; gap: 25px; padding: 34px; color: var(--navy); background: var(--white); border-radius: 28px; box-shadow: 0 30px 72px rgba(0, 0, 0, 0.28); }
.location-card small { color: var(--red); font-weight: 900; letter-spacing: 0.11em; text-transform: uppercase; }
.location-card h3 { margin: 6px 0 0; font-size: 2rem; }
.location-card p { margin: 3px 0 8px; color: var(--muted); }
.pin { width: 96px; height: 96px; flex: 0 0 auto; display: grid; place-items: center; background: var(--yellow); border-radius: 50%; box-shadow: 0 0 0 11px rgba(243, 213, 35, 0.2); }
.pin span { position: relative; width: 42px; height: 54px; background: var(--red); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); }
.pin span::after { content: ""; position: absolute; top: 13px; left: 13px; width: 16px; height: 16px; background: var(--white); border-radius: 50%; }

.contact { background: linear-gradient(180deg, var(--cream), var(--white)); }
.contact-panel { position: relative; display: grid; grid-template-columns: 1fr 0.84fr; gap: 52px; align-items: center; overflow: hidden; padding: 52px; background: var(--yellow); border-radius: 34px; box-shadow: var(--shadow); }
.contact-panel::before { content: "★"; position: absolute; top: -100px; right: 16px; color: rgba(7, 26, 54, 0.08); font-size: 20rem; line-height: 1; }
.contact-panel > * { position: relative; z-index: 2; }
.contact h2 { margin-bottom: 14px; }
.contact-panel > div:first-child > p:last-child { color: #34435a; font-weight: 800; }
.phone-card { padding: 30px; background: var(--white); border-radius: 24px; box-shadow: 0 18px 48px rgba(7, 26, 54, 0.16); }
.phone-card > span { display: block; color: var(--red); font-size: 0.8rem; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase; }
.phone-card > a { display: block; margin: 6px 0 23px; color: var(--navy); font-family: Impact, "Arial Black", Arial, sans-serif; font-size: clamp(2.1rem, 4vw, 3.7rem); line-height: 1; white-space: nowrap; }
.phone-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.copy-status { min-height: 24px; margin: 10px 0 0; color: var(--red); font-weight: 900; }

.site-footer { position: relative; overflow: hidden; padding: 70px 0 22px; color: #dce7f5; background: #051328; }
.footer-bar { position: absolute; top: 0; left: 0; right: 0; height: 9px; background: linear-gradient(90deg, var(--red) 0 33%, var(--white) 33% 66%, var(--yellow) 66%); }
.footer-grid { display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 54px; }
.footer-logo img { width: 225px; border: 3px solid rgba(255, 255, 255, 0.12); border-radius: 12px; }
.footer-grid h3 { margin: 0 0 14px; color: var(--yellow); font-size: 0.92rem; letter-spacing: 0.12em; text-transform: uppercase; }
.footer-grid p { margin: 0 0 9px; color: #aebbd0; }
.footer-phone { display: inline-block; margin-bottom: 12px; color: var(--white); font-size: 1.25rem; font-weight: 900; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 50px; padding-top: 22px; color: #aebbd0; border-top: 1px solid rgba(255, 255, 255, 0.11); font-size: 0.9rem; }
.footer-bottom a { color: var(--white); font-weight: 800; }
.floating-phone { position: fixed; right: 22px; bottom: 22px; z-index: 800; display: flex; align-items: center; gap: 9px; padding: 15px 19px; color: var(--navy); background: var(--yellow); border: 3px solid var(--white); border-radius: 999px; box-shadow: 0 18px 45px rgba(0, 0, 0, 0.26); font-weight: 900; transition: transform 0.2s ease; }
.floating-phone:hover { transform: translateY(-4px); }

@media (max-width: 1020px) {
  .menu-toggle { display: block; }
  .phone-pill { display: none; }
  .main-nav { position: fixed; top: 96px; left: 20px; right: 20px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px; background: var(--white); border-radius: 18px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.32); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 14px 16px; color: var(--navy); border-bottom: 1px solid #e9edf3; }
  .main-nav a:last-child { border-bottom: 0; }
  .main-nav a::after { display: none; }
  .hero-grid, .identity-grid, .location-grid, .contact-panel { grid-template-columns: 1fr; }
  .hero-grid { gap: 58px; padding-top: 82px; }
  .hero-copy { text-align: center; }
  .hero h1 { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-location { justify-content: center; }
  .hero-logo-card { max-width: 680px; margin-inline: auto; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .identity-grid { gap: 64px; }
  .identity-image { max-width: 700px; margin-inline: auto; }
  .contact-panel { gap: 30px; }
}

@media (max-width: 680px) {
  :root { --container: min(100% - 28px, 1180px); }
  .section { padding: 74px 0; }
  .nav-wrap { min-height: 76px; gap: 14px; }
  .brand { width: 132px; }
  .menu-toggle { width: 44px; height: 44px; }
  .main-nav { top: 86px; left: 14px; right: 14px; }
  .hero { min-height: auto; }
  .hero-grid { padding: 76px 0 72px; gap: 46px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.45rem); }
  .category-line { font-size: 0.9rem; line-height: 1.9; }
  .category-line b { padding: 0 4px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-location { align-items: flex-start; text-align: left; }
  .ticker-inner { justify-content: flex-start; gap: 15px; padding: 14px 18px; font-size: 0.72rem; }
  .category-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 260px; }
  .details div { grid-template-columns: 1fr; gap: 4px; }
  .location-card { align-items: flex-start; padding: 28px 22px; }
  .pin { width: 76px; height: 76px; }
  .pin span { transform: rotate(-45deg) scale(0.75); }
  .contact-panel { padding: 28px 20px; border-radius: 24px; }
  .phone-card { padding: 25px 18px; }
  .phone-card > a { font-size: 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; }
  .floating-phone { right: 14px; bottom: 14px; padding: 13px 15px; }
  .floating-phone b { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
