:root {
  --navy: #063d73;
  --navy-deep: #042a50;
  --teal: #10a8b8;
  --teal-soft: #e8f8fa;
  --gold: #f3b13d;
  --ink: #123047;
  --muted: #637487;
  --line: #d9e7ee;
  --surface: #ffffff;
  --page: #f7fbfc;
  --shadow: 0 18px 45px rgba(4, 42, 80, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(16, 168, 184, 0.12), transparent 26rem),
    linear-gradient(180deg, #ffffff 0%, var(--page) 48%, #ffffff 100%);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand img {
  display: block;
  width: min(19rem, 55vw);
  height: auto;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem 1.25rem;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--teal);
}

main {
  overflow: hidden;
}

.hero {
  min-height: 74vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 28rem);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(3.5rem, 8vw, 7rem) clamp(1rem, 6vw, 6rem);
}

.hero-content {
  max-width: 68rem;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 1rem;
  color: var(--navy);
  font-size: clamp(3.1rem, 4.9vw, 5.9rem);
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.7rem;
  color: var(--navy);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.2;
}

.hero-copy {
  max-width: 42rem;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.25rem;
  border: 2px solid var(--navy);
  border-radius: 0.35rem;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: #ffffff;
  background: var(--navy);
}

.button.secondary {
  color: var(--navy);
  background: #ffffff;
}

.button:hover,
.button:focus-visible {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(16, 168, 184, 0.16);
}

.hero-panel {
  display: grid;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(16, 168, 184, 0.28);
  border-radius: 0.5rem;
  background: linear-gradient(145deg, #ffffff, var(--teal-soft));
  box-shadow: var(--shadow);
}

.hero-panel div {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.hero-panel div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.panel-label {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin-top: 0.2rem;
  color: var(--navy-deep);
  font-size: 1.3rem;
  line-height: 1.25;
}

.intro,
.locations,
.accounts {
  padding: clamp(3rem, 7vw, 5rem) clamp(1rem, 6vw, 6rem);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 2rem;
  background: var(--navy);
  color: #ffffff;
}

.intro h2,
.intro .eyebrow {
  color: #ffffff;
}

.intro p:last-child {
  max-width: 48rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.12rem;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 2rem;
}

.location-card {
  display: grid;
  grid-template-columns: minmax(18rem, 0.75fr) minmax(20rem, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
  margin-bottom: 1.5rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(4, 42, 80, 0.08);
}

.location-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

address {
  margin-bottom: 1.4rem;
  color: var(--muted);
  font-style: normal;
}

dl {
  display: grid;
  gap: 0.8rem;
  margin: 0;
}

dl div {
  padding-left: 1rem;
  border-left: 4px solid var(--gold);
}

dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

dd {
  margin: 0.1rem 0 0;
  color: var(--navy-deep);
  font-weight: 800;
  word-break: break-word;
}

dd a {
  text-decoration-color: rgba(16, 168, 184, 0.55);
  text-underline-offset: 0.25rem;
}

iframe {
  width: 100%;
  min-height: 19rem;
  border: 0;
  border-radius: 0.35rem;
  background: var(--teal-soft);
}

.accounts {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background:
    linear-gradient(90deg, rgba(243, 177, 61, 0.16), transparent 42%),
    var(--teal-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.accounts h2 {
  margin-bottom: 0;
}

.accounts-phone {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0.9rem 1.4rem;
  border-radius: 0.35rem;
  color: #ffffff;
  background: var(--teal);
  font-size: 1.15rem;
  font-weight: 800;
  text-decoration: none;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 2rem;
  padding: 1.4rem clamp(1rem, 6vw, 6rem);
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy-deep);
}

footer p {
  margin: 0;
}

@media (max-width: 820px) {
  .site-header,
  .hero,
  .intro,
  .location-card,
  .accounts {
    grid-template-columns: 1fr;
  }

  .site-header {
    position: static;
    align-items: flex-start;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    white-space: normal;
  }

  .accounts {
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 0.9rem 1rem;
  }

  .brand img {
    width: min(17rem, 100%);
  }

  h1 {
    font-size: 2.8rem;
  }

  .hero-actions,
  .button,
  .accounts-phone {
    width: 100%;
  }

  .location-card {
    padding: 0.85rem;
  }

  iframe {
    min-height: 16rem;
  }
}
