:root {
  --navy: #0f2747;
  --navy-2: #12345f;
  --blue: #1e5aa8;
  --sky: #8fb4d9;
  --warm: #faf9f6;
  --ink: #252a31;
  --muted: #687282;
  --gold: #d6a54a;
  --green: #3f7c49;
  --orange: #d96d24;
  --purple: #6a3da2;
  --line: rgba(15, 39, 71, 0.14);
  --shadow: 0 22px 60px rgba(15, 39, 71, 0.14);
  --radius: 8px;
  --font-title: "Manrope", "Montserrat", Arial, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
  --font-script: "Parisienne", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--warm);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

a:hover {
  color: var(--blue);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link,
.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:focus {
  z-index: 1000;
  top: 14px;
  left: 14px;
  width: auto;
  height: auto;
  clip: auto;
  padding: 10px 14px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 39, 71, 0.96);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
  background: rgba(15, 39, 71, 0.99);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: #fff;
}

.brand:hover {
  color: #fff;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--navy);
  font-family: var(--font-title);
  font-weight: 800;
  letter-spacing: 0;
  clip-path: polygon(0 0, 75% 0, 100% 24%, 100% 100%, 22% 100%, 0 78%);
}

.brand-text {
  display: flex;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}

.brand-text strong {
  font-weight: 800;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-menu a:not(.btn) {
  color: rgba(255, 255, 255, 0.88);
}

.nav-menu a:not(.btn):hover {
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: transparent;
  color: #fff;
  padding: 11px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-small {
  min-height: 42px;
  padding: 11px 18px;
}

.btn-primary,
.btn-secondary,
.btn-card {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 14px 26px rgba(15, 39, 71, 0.2);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-card:hover {
  background: var(--blue);
  color: #fff;
}

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

.btn-gold:hover {
  background: #e2b865;
  color: var(--navy);
}

.btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

.btn-outline:hover,
.btn-outline-light:hover {
  border-color: var(--gold);
  color: #fff;
  background: rgba(214, 165, 74, 0.16);
}

.hero .btn-primary {
  background: var(--blue);
}

.hero .btn-primary:hover {
  background: var(--gold);
  color: var(--navy);
}

.tour .btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.18);
}

.tour .btn-primary:hover {
  background: #e2b865;
  color: var(--navy);
}

.btn-outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
}

.hero {
  background: linear-gradient(90deg, rgba(15, 39, 71, 0.98) 0%, rgba(15, 39, 71, 0.93) 46%, rgba(15, 39, 71, 0.08) 100%), var(--navy);
  color: #fff;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: stretch;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: 70px;
  padding: 72px 0 96px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

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

h1,
h2,
h3 {
  font-family: var(--font-title);
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  max-width: 560px;
  text-transform: uppercase;
  font-size: clamp(3.3rem, 7vw, 5.45rem);
  font-weight: 800;
}

h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 800;
}

h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 1.45rem;
}

.hero-subtitle {
  margin: 18px 0 14px;
  color: var(--gold);
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  font-weight: 800;
}

.hero-text {
  max-width: 530px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.12rem;
}

.signature {
  margin: 18px 0 24px;
  color: var(--gold);
  font-family: var(--font-script);
  font-size: 2.35rem;
  line-height: 1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-media {
  position: relative;
  min-height: 560px;
  align-self: stretch;
  border-radius: 0 0 0 90px;
  overflow: hidden;
  box-shadow: -28px 30px 70px rgba(0, 0, 0, 0.22);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 39, 71, 0.32), rgba(15, 39, 71, 0));
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.authority {
  position: relative;
  z-index: 3;
  margin-top: -44px;
}

.authority-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 39, 71, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.authority article {
  padding: 26px 24px;
  border-right: 1px solid var(--line);
}

.authority article:last-child {
  border-right: 0;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
}

.authority strong {
  display: block;
  color: var(--navy);
  font-size: 1.08rem;
}

.authority p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.section {
  padding: 92px 0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.8fr);
  gap: 64px;
  align-items: center;
}

.section-copy p,
.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-copy p {
  max-width: 660px;
}

.section-heading {
  max-width: 770px;
  margin: 0 auto 40px;
  text-align: center;
}

.about {
  background: #fff;
}

.about-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--navy);
  min-height: 440px;
}

.about-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.about-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 3px;
  padding: 18px;
  background: rgba(15, 39, 71, 0.9);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.about-note span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

.pillars {
  background: linear-gradient(180deg, #f4f7f9, var(--warm));
}

.pillar-grid,
.service-grid,
.testimonial-grid,
.content-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.pillar-card,
.service-card,
.testimonial-grid article,
.content-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 36px rgba(15, 39, 71, 0.08);
}

.pillar-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 26px 22px 22px;
  overflow: hidden;
}

.pillar-card::before {
  content: "";
  display: block;
  height: 5px;
  margin: -26px -22px 22px;
  background: var(--navy);
}

.pillar-grow::before {
  background: var(--green);
}

.pillar-live::before {
  background: var(--orange);
}

.pillar-inspire::before {
  background: var(--purple);
}

.pillar-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-title);
  font-weight: 800;
}

.pillar-grow .pillar-icon {
  background: var(--green);
}

.pillar-live .pillar-icon {
  background: var(--orange);
}

.pillar-inspire .pillar-icon {
  background: var(--purple);
}

.pillar-card p,
.pillar-card li {
  color: var(--muted);
}

.pillar-card ul {
  margin: 6px 0 20px;
  padding: 0;
  list-style: none;
}

.pillar-card li {
  position: relative;
  padding-left: 22px;
  margin: 8px 0;
}

.pillar-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.pillar-card .btn {
  margin-top: auto;
  width: 100%;
}

.logo-box {
  display: grid;
  place-items: center;
  height: 150px;
  margin-bottom: 18px;
  background: var(--navy);
  border-radius: var(--radius);
  overflow: hidden;
}

.logo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nature-visual {
  position: relative;
  height: 150px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(150deg, rgba(15, 39, 71, 0.12), rgba(15, 39, 71, 0.52)),
    linear-gradient(145deg, transparent 42%, rgba(255, 255, 255, 0.22) 42% 46%, transparent 46%),
    linear-gradient(28deg, #274f34 0 30%, transparent 30%),
    linear-gradient(152deg, transparent 0 42%, #4f7c49 42% 72%, transparent 72%),
    linear-gradient(180deg, #8fb4d9, #e9f1e5 60%, #3f7c49);
}

blockquote {
  margin: 0 0 22px;
  padding-left: 16px;
  border-left: 3px solid var(--gold);
  color: var(--navy);
  font-weight: 800;
}

.tour {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(15, 39, 71, 0.96), rgba(15, 39, 71, 0.82)),
    linear-gradient(145deg, #0f2747, #3f7c49);
}

.tour h2 {
  color: #fff;
}

.tour-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
  gap: 48px;
  align-items: center;
}

.tour-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.tour-copy .lead {
  color: #fff;
  font-size: 1.22rem;
  font-weight: 800;
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 800;
}

.services,
.content {
  background: #fff;
}

.service-grid,
.testimonial-grid,
.content-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.testimonial-grid article,
.content-card {
  padding: 28px;
}

.service-card span,
.testimonial-grid span,
.content-card span {
  display: block;
  color: var(--muted);
  font-size: 0.93rem;
}

.service-card p,
.content-card p {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--blue);
  font-weight: 800;
}

.text-link:hover {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.testimonials {
  background: var(--warm);
}

.testimonial-grid article {
  background: var(--navy);
  color: #fff;
}

.testimonial-grid p {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.86);
}

.testimonial-grid strong {
  display: block;
}

.content-card > span {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}

.final-cta {
  padding: 76px 0;
  background: var(--navy);
  color: #fff;
}

.final-cta h2 {
  color: #fff;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 720px;
}

.final-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
}

.cta-actions {
  display: grid;
  gap: 14px;
  min-width: 260px;
}

.site-footer {
  padding: 58px 0 28px;
  background: #081b33;
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.9fr 0.7fr;
  gap: 36px;
}

.footer-brand {
  margin-bottom: 14px;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1rem;
}

.site-footer a,
.site-footer span {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer a:hover {
  color: #fff;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-weight: 800;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
}

.footer-bottom p {
  margin: 0;
}

.agency-credit {
  display: grid;
  gap: 2px;
  justify-items: center;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  text-align: center;
  line-height: 1.2;
}

.agency-credit span {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.agency-credit strong {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
}

.agency-credit:hover strong {
  color: #fff;
}

.footer-bottom div {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}

.footer-bottom a {
  margin: 0;
}

@media (max-width: 1020px) {
  .nav-menu {
    position: fixed;
    inset: 76px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 18px 20px 28px;
    background: var(--navy);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu a {
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .nav-menu .btn {
    margin-top: 10px;
    width: 100%;
  }

  .nav-toggle {
    display: block;
  }

  .hero-grid,
  .two-column,
  .tour-panel,
  .final-cta-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    background: var(--navy);
  }

  .hero-grid {
    gap: 34px;
    padding: 42px 0 82px;
  }

  .hero-media {
    min-height: 420px;
    order: -1;
    border-radius: var(--radius);
  }

  .authority-panel,
  .pillar-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .authority article:nth-child(2) {
    border-right: 0;
  }

  .authority article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .service-grid,
  .testimonial-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .nav {
    min-height: 68px;
  }

  .brand-text {
    display: grid;
    gap: 0;
    font-size: 0.82rem;
    line-height: 1.15;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    font-size: 0.86rem;
  }

  .nav-menu {
    top: 68px;
  }

  .hero-grid {
    padding-top: 24px;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4.5rem);
  }

  .hero-media {
    min-height: 330px;
  }

  .hero-actions,
  .cta-actions {
    width: 100%;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .authority {
    margin-top: -28px;
  }

  .authority-panel,
  .pillar-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .authority article,
  .authority article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .authority article:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 68px 0;
  }

  .section-heading {
    text-align: left;
  }

  .about-card img {
    height: 390px;
  }

  .tour-panel,
  .final-cta-grid {
    gap: 26px;
  }

  .footer-bottom,
  .footer-bottom div {
    display: grid;
    justify-content: start;
  }

  .agency-credit {
    justify-items: start;
    text-align: left;
  }
}

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