:root {
  --navy: #122b43;
  --navy2: #0d2235;
  --blue: #1955a6;
  --purple: #762684;
  --green: #5ca600;
  --ink: #182a3a;
  --muted: #687887;
  --paper: #f6f9fb;
  --line: #dfe7ed;
  --white: #fff;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(18, 43, 67, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: "DM Sans", system-ui, sans-serif;
  line-height: 1.7;
  background: #fff;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
button,
input,
select,
textarea {
  font: inherit;
}
:focus-visible {
  outline: 3px solid #a4d15d;
  outline-offset: 3px;
}
.skip {
  position: fixed;
  left: 12px;
  top: -100px;
  background: #fff;
  color: var(--navy);
  padding: 10px 16px;
  z-index: 999;
  border-radius: 8px;
}
.skip:focus {
  top: 12px;
}
.container {
  width: min(1160px, calc(100% - 44px));
  margin-inline: auto;
}
.topbar {
  background: var(--navy2);
  color: #dbe6ef;
  font-size: 12px;
}
.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar a {
  color: #fff;
}
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(18, 43, 67, 0.08);
}
.nav-wrap {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand img {
  width: 82px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 700;
  color: #435565;
}
.nav > a:hover {
  color: var(--blue);
}
.nav-cta {
  background: var(--navy);
  color: #fff !important;
  padding: 12px 20px;
  border-radius: 999px;
}
.menu {
  display: none;
  border: 0;
  background: none;
  padding: 8px;
}
.menu span {
  display: block;
  width: 23px;
  height: 2px;
  background: var(--navy);
  margin: 5px;
}
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f7fbff, #fff 55%, #f7fbf4);
  padding: 92px 0 100px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow:before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--green);
}
h1,
h2,
h3 {
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.1;
  letter-spacing: -1.6px;
}
h1 {
  font-size: clamp(44px, 5.3vw, 72px);
  color: var(--navy);
  margin: 0 0 24px;
}
h1 em,
h2 em {
  color: var(--purple);
  font-style: normal;
}
h2 {
  font-size: clamp(38px, 4vw, 58px);
  color: var(--navy);
  margin: 0 0 22px;
}
h3 {
  color: var(--navy);
}
.lead {
  font-size: 18px;
  color: #5d6e7d;
  max-width: 690px;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 14px 21px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid transparent;
  transition: 0.25s;
}
.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 13px 30px rgba(18, 43, 67, 0.18);
}
.btn-primary:hover {
  transform: translateY(-2px);
}
.btn-secondary {
  background: #fff;
  border-color: #d7e0e7;
  color: var(--navy);
}
.btn-white {
  background: #fff;
  color: var(--navy);
}
.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}
.photo {
  min-height: 520px;
  border-radius: 30px;
  background: linear-gradient(145deg, #e9f1f6, #f4f8ee);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.photo:before {
  content: "Approved photography";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #8b9aa6;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.photo.hero-photo {
  background-image: linear-gradient(
    145deg,
    rgba(18, 43, 67, 0.08),
    rgba(92, 166, 0, 0.08)
  );
}

.photo.with-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.photo.with-image:before {
  display: none;
}

.photo.with-image .photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

/* low-opacity placeholder transition */
.photo.with-image .photo-img[data-src] {
  filter: blur(8px) saturate(0.9);
  transform: scale(1.02);
  transition: filter 400ms ease, transform 400ms ease, opacity 400ms ease;
  opacity: 0.6;
}
.photo.with-image .photo-img.loaded {
  filter: none;
  transform: none;
  opacity: 1;
}
.float {
  position: absolute;
  left: -35px;
  bottom: 35px;
  background: #fff;
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: 0 18px 45px rgba(18, 43, 67, 0.17);
  max-width: 280px;
}
.float strong {
  display: block;
  color: var(--navy);
  font-size: 13px;
}
.float small {
  display: block;
  color: #738391;
  font-size: 11px;
}
.section {
  padding: 105px 0;
}
.section-alt {
  background: var(--paper);
}
.two {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 100px;
  align-items: start;
}
.copy {
  color: #687887;
}
.copy p {
  margin: 0 0 18px;
}
.copy strong {
  color: var(--navy);
}
.mission {
  margin-top: 70px;
  background: #f7fbfd;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 38px;
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 20px;
}
.mission-mark {
  font: 65px/1 Georgia;
  color: var(--green);
}
.small {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--blue);
}
.mission h3 {
  font-size: 22px;
  line-height: 1.5;
  margin: 8px 0 0;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  background: #fff;
  transition: 0.25s;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.card .num {
  font-size: 10px;
  color: var(--green);
  font-weight: 800;
  letter-spacing: 1px;
}
.icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #edf6e6;
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 22px;
  margin: 22px 0;
}
.card h3 {
  font-size: 20px;
  margin: 0 0 10px;
}
.card p {
  color: #71808d;
  font-size: 13px;
}
.card ul {
  padding-left: 18px;
  color: #647583;
  font-size: 12px;
}
.card li {
  margin: 6px 0;
}
.page-hero {
  background: var(--navy);
  color: #fff;
  padding: 82px 0;
}
.page-hero h1 {
  color: #fff;
  max-width: 850px;
}
.page-hero .lead {
  color: #c5d3de;
}
.page-hero .eyebrow {
  color: #d6e5ef;
}
.breadcrumb {
  font-size: 11px;
  color: #9fb1c0;
  margin-bottom: 28px;
}
.breadcrumb a {
  color: #fff;
}
.page-photo {
  min-height: 420px;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.feature-list {
  display: grid;
  gap: 13px;
  margin-top: 25px;
}
.feature-list div {
  border-left: 3px solid var(--green);
  padding: 10px 0 10px 16px;
}
.feature-list strong {
  display: block;
  color: var(--navy);
}
.feature-list span {
  display: block;
  color: #71808d;
  font-size: 13px;
}
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.step {
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.step b {
  color: var(--green);
  font-size: 11px;
  letter-spacing: 1px;
}
.step h3 {
  margin-top: 30px;
  font-size: 21px;
}
.step p {
  font-size: 13px;
  color: #71808d;
}
.team {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.person {
  border: 1px solid var(--line);
  border-radius: 25px;
  overflow: hidden;
  background: #fff;
}
.person-photo {
  height: 330px;
  background: linear-gradient(145deg, #edf3f7, #f5f9ef);
  position: relative;
}
.person-photo:after {
  content: "Approved portrait";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #8b9aa6;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
}
.person-body {
  padding: 27px;
}
.person-body h3 {
  font-size: 22px;
  margin: 0 0 5px;
}
.role {
  color: var(--purple);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.person-body p {
  color: #71808d;
  font-size: 13px;
}
.faq {
  max-width: 900px;
  margin: auto;
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 23px 44px 23px 0;
  font-family: "Manrope";
  font-weight: 700;
  color: var(--navy);
  position: relative;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary:after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 25px;
  color: var(--green);
}
.faq details[open] summary:after {
  content: "–";
}
.faq p {
  color: #687887;
  font-size: 14px;
  padding: 0 30px 22px 0;
  margin: 0;
}
.form-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 70px;
  align-items: start;
}
.form-card {
  border: 1px solid var(--line);
  border-radius: 25px;
  padding: 32px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(18, 43, 67, 0.08);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  display: grid;
  gap: 7px;
}
.field.full {
  grid-column: 1/-1;
}
.field label {
  font-size: 12px;
  font-weight: 800;
  color: var(--navy);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #d6e0e7;
  border-radius: 12px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
}
.field textarea {
  min-height: 140px;
  resize: vertical;
}
.field small {
  color: #7c8a96;
  font-size: 10px;
}
.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 11px;
  color: #687887;
}
.check input {
  margin-top: 4px;
}
.form-status {
  font-size: 12px;
  margin-top: 12px;
  min-height: 20px;
}
.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}
.contact-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.contact-item strong {
  display: block;
  color: var(--navy);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.contact-item a,
.contact-item span {
  display: block;
  color: #687887;
  margin-top: 3px;
}
.notice {
  padding: 17px 18px;
  border-radius: 15px;
  background: #f1f7e9;
  border: 1px solid #dbeac8;
  color: #526a35;
  font-size: 12px;
  margin-bottom: 20px;
}
.job {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  background: #fff;
}
.job + .job {
  margin-top: 16px;
}
.job h3 {
  font-size: 21px;
  margin: 0 0 8px;
}
.job p {
  color: #71808d;
  font-size: 13px;
}
.tag {
  display: inline-block;
  border-radius: 999px;
  background: #eef4f8;
  color: var(--blue);
  padding: 6px 10px;
  font-size: 10px;
  font-weight: 800;
  margin: 4px 4px 10px 0;
}
.cta {
  background: linear-gradient(135deg, #143654, #173d5b);
  color: #fff;
  padding: 95px 0;
  text-align: center;
}
.cta h2 {
  color: #fff;
}
.cta h2 em {
  color: #a4d15d;
}
.cta p {
  max-width: 680px;
  margin: 0 auto;
  color: #c6d3de;
}
.cta .actions {
  justify-content: center;
}
.footer {
  background: #0d2235;
  color: #d9e3ea;
  padding: 65px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  gap: 50px;
}
.footer-logo {
  width: 120px;
  filter: brightness(0) invert(1);
  margin-bottom: 15px;
}
.footer h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  margin: 0 0 14px;
}
.footer p,
.footer a {
  font-size: 12px;
  color: #91a5b5;
}
.footer a {
  display: block;
  margin: 7px 0;
}
.footer a:hover {
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 45px;
  padding-top: 17px;
  display: flex;
  justify-content: space-between;
  color: #71899b;
  font-size: 10px;
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.7s ease;
}
.reveal.show {
  opacity: 1;
  transform: none;
}
.mobile-call,
.whatsapp-call {
  display: none;
}
.whatsapp-call {
  position: fixed;
  right: 17px;
  bottom: 82px;
  width: 54px;
  height: 54px;
  background: linear-gradient(180deg, #2fe07f 0%, #1ebf67 100%);
  color: #fff;
  border-radius: 50%;
  z-index: 90;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.32);
  display: grid;
  place-items: center;
}
.whatsapp-call svg {
  width: 24px;
  height: 24px;
  display: block;
}
@media (max-width: 900px) {
  .nav {
    gap: 15px;
  }
  .nav > a:not(.nav-cta) {
    display: none;
  }
  .menu {
    display: block;
  }
  .hero-grid,
  .two,
  .split,
  .form-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .hero {
    padding: 65px 0 80px;
  }
  .photo {
    min-height: 440px;
  }
  .cards {
    grid-template-columns: 1fr 1fr;
  }
  .process {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .container {
    width: calc(100% - 28px);
  }
  .topbar {
    display: none;
  }
  .nav-wrap {
    height: 72px;
  }
  .brand img {
    width: 74px;
  }
  .nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 14px;
    right: 14px;
    background: #fff;
    border-radius: 18px;
    padding: 10px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }
  .nav.open {
    display: flex;
  }
  .nav > a:not(.nav-cta) {
    display: block;
    padding: 11px;
  }
  .nav-cta {
    text-align: center;
  }
  .hero h1 {
    font-size: 43px;
  }
  .lead {
    font-size: 16px;
  }
  .photo {
    min-height: 390px;
  }
  .float {
    left: 12px;
    bottom: 20px;
  }
  .section {
    padding: 78px 0;
  }
  .cards,
  .team,
  .process,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .field.full {
    grid-column: auto;
  }
  .page-hero {
    padding: 65px 0;
  }
  .page-hero h1 {
    font-size: 43px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 20px;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
  .mobile-call,
  .whatsapp-call {
    display: grid;
    place-items: center;
    position: fixed;
    width: 54px;
    height: 54px;
    color: #fff;
    border-radius: 50%;
    z-index: 90;
  }
  .mobile-call {
    right: 17px;
    bottom: 17px;
    background: var(--green);
    box-shadow: 0 14px 30px rgba(92, 166, 0, 0.3);
  }
  .whatsapp-call {
    right: 17px;
    bottom: 82px;
    background: linear-gradient(180deg, #2fe07f 0%, #1ebf67 100%);
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.32);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn,
  .card {
    transition: none;
  }
}
