:root {
  --navy: #061b4e;
  --navy-2: #0b2a68;
  --gold: #b88417;
  --gold-light: #dcae4e;
  --white: #ffffff;
  --sand: #f7f2e8;
  --charcoal: #2e3440;
  --muted: #657083;
  --line: rgba(6, 27, 78, 0.13);
  --shadow: 0 24px 70px rgba(6, 27, 78, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
}

svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
  padding: 0.85rem clamp(1rem, 4vw, 4rem);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(6, 27, 78, 0.09);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  border-bottom: 3px solid var(--gold);
  border-radius: 8px;
  font-size: 0.82rem;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.35rem);
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 700;
}

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

.site-nav a:not(.nav-cta):hover {
  color: var(--gold);
}

.nav-cta {
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  justify-content: center;
  align-items: center;
  color: var(--navy);
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: currentColor;
}

.section-shell,
.section,
.closing-cta,
.site-footer {
  padding-inline: clamp(1rem, 5vw, 5rem);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.82fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding-block: clamp(3rem, 7vw, 6rem);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(6, 27, 78, 0.93), rgba(6, 27, 78, 0.73) 48%, rgba(6, 27, 78, 0.2)),
    url("assets/gulf-ledger-coast.png") center / cover no-repeat;
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 72px;
  background:
    radial-gradient(100% 62px at 25% 100%, var(--white) 0 58%, transparent 59%),
    radial-gradient(95% 62px at 80% 100%, var(--white) 0 58%, transparent 59%);
  opacity: 0.98;
}

.hero-copy,
.contact-form {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 1.25rem;
  font-size: 4.9rem;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  color: var(--navy);
  font-size: 3rem;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  color: var(--navy);
  font-size: 1.15rem;
  line-height: 1.2;
}

.hero-subhead {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.24rem;
}

.slogan {
  max-width: 660px;
  padding-left: 1rem;
  color: rgba(255, 255, 255, 0.92);
  border-left: 4px solid var(--gold);
  font-weight: 700;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--white);
  background: var(--gold);
  box-shadow: 0 16px 38px rgba(184, 132, 23, 0.25);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.12);
}

.button.gold {
  color: var(--navy);
  background: var(--gold-light);
}

.button.outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.button.full {
  width: 100%;
}

.quick-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 1.8rem;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.quick-contact span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-heading h2 {
  margin-bottom: 0.15rem;
  font-size: 2rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.82rem 0.9rem;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid rgba(6, 27, 78, 0.18);
  border-radius: 8px;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(184, 132, 23, 0.18);
  border-color: var(--gold);
}

textarea {
  resize: vertical;
}

.form-note {
  margin: -0.2rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

.section {
  padding-block: clamp(4rem, 7vw, 6.5rem);
}

.section-heading {
  max-width: 880px;
  margin: 0 auto 2.2rem;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading.compact {
  margin-bottom: 1.8rem;
}

.card-grid,
.benefit-grid {
  display: grid;
  gap: 1rem;
}

.card-grid.four,
.benefit-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.benefit-grid article,
.check-panel,
.support-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(6, 27, 78, 0.07);
}

.service-card {
  padding: 1.35rem;
}

.service-card p,
.benefit-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.icon-wrap {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  color: var(--gold);
  background: rgba(184, 132, 23, 0.11);
  border-radius: 8px;
}

.sand {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(247, 242, 232, 0.94)),
    var(--sand);
}

.split-section,
.accountants {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.75fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}

.split-section h2,
.accountants h2,
.about h2 {
  max-width: 760px;
}

.split-section p,
.accountants p,
.about p {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.05rem;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.4rem;
}

.pill-list span {
  padding: 0.52rem 0.75rem;
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(6, 27, 78, 0.12);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
}

.check-panel,
.support-list {
  padding: 1.5rem;
}

.check-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--charcoal);
  font-weight: 600;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.34rem;
  width: 0.84rem;
  height: 0.84rem;
  background: var(--gold);
  clip-path: polygon(14% 50%, 36% 72%, 86% 18%, 100% 32%, 37% 96%, 0 60%);
}

.accountants {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 27, 78, 0.98), rgba(11, 42, 104, 0.95)),
    url("assets/gulf-ledger-coast.png") center / cover fixed;
}

.accountants h2,
.accountants h3,
.accountants .eyebrow {
  color: var(--white);
}

.accountants p {
  color: rgba(255, 255, 255, 0.82);
}

.accountants .standout {
  display: inline-block;
  margin: 0.6rem 0 1rem;
  padding: 0.6rem 0.85rem;
  color: var(--navy);
  background: var(--gold-light);
  border-radius: 8px;
  font-size: 1.08rem;
  font-weight: 900;
}

.support-list {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.support-list .check-list li {
  color: var(--white);
}

.benefit-grid article {
  padding: 1.3rem;
  border-top: 4px solid var(--gold);
}

.about-inner {
  max-width: 900px;
}

.closing-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: clamp(3.5rem, 6vw, 5rem);
  color: var(--white);
  background:
    linear-gradient(100deg, rgba(6, 27, 78, 1), rgba(6, 27, 78, 0.92)),
    url("assets/gulf-ledger-coast.png") center / cover no-repeat;
}

.closing-cta h2 {
  color: var(--white);
}

.closing-cta p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: start;
  padding-block: 2rem;
  color: rgba(255, 255, 255, 0.82);
  background: #04143a;
}

.site-footer h2 {
  margin-bottom: 0.2rem;
  color: var(--white);
  font-size: 1.3rem;
}

.site-footer address {
  font-style: normal;
  text-align: center;
}

.site-footer p:last-child {
  text-align: right;
}

.site-footer a {
  color: var(--white);
}

@media (max-width: 1050px) {
  h1 {
    font-size: 3.85rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .card-grid.four,
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 3.2rem;
  }

  .contact-form {
    max-width: 720px;
  }
}

@media (max-width: 820px) {
  h1 {
    font-size: 3.15rem;
    line-height: 1.03;
  }

  h2 {
    font-size: 2.25rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.8rem 0.85rem;
  }

  .nav-cta {
    text-align: center;
  }

  .split-section,
  .accountants,
  .closing-cta,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .closing-cta,
  .site-footer {
    display: grid;
  }

  .site-footer address,
  .site-footer p:last-child {
    text-align: left;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 68px;
  }

  .brand {
    font-size: 1.05rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: auto;
    padding-block: 2.15rem 3.6rem;
    background:
      linear-gradient(180deg, rgba(6, 27, 78, 0.95), rgba(6, 27, 78, 0.78)),
      url("assets/gulf-ledger-coast.png") center / cover no-repeat;
  }

  h1 {
    font-size: 2.6rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-subhead {
    font-size: 1.04rem;
  }

  .slogan {
    font-size: 0.94rem;
  }

  .quick-contact {
    display: none;
  }

  .form-heading h2 {
    font-size: 1.7rem;
  }

  .form-grid,
  .card-grid.four,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
