:root {
  --navy: #034ea2;
  --navy-deep: #062a55;
  --gold: #faa21b;
  --cream: #fff8ea;
  --cream-2: #f6eddb;
  --white: #ffffff;
  --ink: #132033;
  --muted: #5d6b7e;
  --line: rgba(3, 78, 162, 0.14);
  --shadow: 0 28px 80px rgba(6, 42, 85, 0.16), 0 8px 24px rgba(6, 42, 85, 0.08);
  --font-body: "Satoshi", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Cabinet Grotesk", var(--font-body);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  min-height: 100%;
  color-scheme: light;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(250, 162, 27, 0.18), transparent 32rem),
    radial-gradient(circle at bottom right, rgba(3, 78, 162, 0.12), transparent 34rem),
    linear-gradient(135deg, var(--cream), #fbf6ec 54%, #f4ead8);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.36;
  background-image:
    linear-gradient(rgba(3, 78, 162, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(3, 78, 162, 0.08) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100vh - 92px);
  display: grid;
  place-items: center;
  margin-inline: auto;
  padding: clamp(32px, 6vw, 76px) 0 28px;
}

.hero-card {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.85fr);
  gap: clamp(22px, 4vw, 44px);
  padding: clamp(22px, 3.4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 36px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.brand-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 620px;
}

.logo-link {
  width: min(330px, 78vw);
  display: inline-flex;
  padding: 10px;
  border-radius: 18px;
  background: var(--navy);
  box-shadow: 0 12px 28px rgba(3, 78, 162, 0.14);
}

.status-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 42px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy-deep);
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 800;
}

.status-pill span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(250, 162, 27, 0.16);
}

.intro {
  margin-top: 28px;
}

.eyebrow {
  color: var(--navy);
  font-size: clamp(0.78rem, 0.68rem + 0.28vw, 0.94rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  max-width: 11ch;
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.45rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.055em;
  color: var(--navy-deep);
}

.intro p:not(.eyebrow) {
  max-width: 39rem;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(1.08rem, 0.95rem + 0.42vw, 1.28rem);
  line-height: 1.65;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 21px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.contact-grid a:hover,
.quick-links a:hover {
  transform: translateY(-2px);
}

.primary {
  color: #061f3d;
  background: var(--gold);
  box-shadow: 0 14px 28px rgba(250, 162, 27, 0.28);
}

.secondary {
  color: var(--navy-deep);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 38px;
}

.contact-grid a {
  min-height: 96px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.contact-grid a:last-child {
  grid-column: 1 / -1;
}

.contact-grid span,
.quick-links p {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-grid strong {
  color: var(--navy-deep);
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.contact-grid a:hover {
  border-color: rgba(250, 162, 27, 0.6);
  background: rgba(255, 255, 255, 0.94);
}

.image-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.photo-wrap {
  position: relative;
  min-height: 505px;
  overflow: hidden;
  border-radius: 30px;
  background: var(--navy);
  box-shadow: 0 16px 44px rgba(6, 42, 85, 0.14);
}

.photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(6, 42, 85, 0.02), rgba(6, 42, 85, 0.28)),
    linear-gradient(135deg, transparent 55%, rgba(250, 162, 27, 0.22));
}

.photo-wrap img {
  width: 100%;
  height: 100%;
  min-height: 505px;
  object-fit: cover;
  object-position: center;
}

.quick-links {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
}

.quick-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--navy-deep);
  background: var(--cream-2);
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease;
}

.quick-links a::after {
  content: "↗";
  color: var(--gold);
}

.footer {
  width: min(1180px, calc(100% - 32px));
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 0 auto;
  padding: 0 0 30px;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 920px) {
  .hero-card {
    grid-template-columns: 1fr;
  }

  .brand-panel {
    min-height: auto;
  }

  .photo-wrap,
  .photo-wrap img {
    min-height: 340px;
  }
}

@media (max-width: 620px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 10px;
  }

  .hero-card {
    padding: 18px;
    border-radius: 28px;
  }

  .logo-link {
    width: 252px;
  }

  .status-pill {
    margin-top: 30px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .actions {
    display: grid;
  }

  .photo-wrap,
  .photo-wrap img {
    min-height: 280px;
  }

  .footer {
    flex-direction: column;
    padding-inline: 8px;
  }
}
