:root {
  --navy: #061a33;
  --navy-2: #0b2748;
  --teal: #10a8a5;
  --teal-dark: #0b7e82;
  --amber: #f5ad22;
  --ink: #10233f;
  --muted: #5c6d83;
  --line: #dfe7f0;
  --soft: #f6f9fc;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(6, 26, 51, 0.12);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

body::selection {
  background: rgba(16, 168, 165, 0.18);
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(223, 231, 240, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: var(--navy);
}

.brand strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: 0;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(16, 168, 165, 0.28);
  border-radius: 10px;
  background: linear-gradient(135deg, #f4fbfb, #e6f5f6);
}

.brand-mark span {
  position: absolute;
  width: 17px;
  height: 17px;
  border-radius: 5px;
  background: var(--teal);
  transform: rotate(45deg);
}

.brand-mark span:nth-child(1) {
  top: 7px;
  left: 7px;
  background: var(--teal);
}

.brand-mark span:nth-child(2) {
  right: 7px;
  top: 7px;
  background: var(--navy);
}

.brand-mark span:nth-child(3) {
  bottom: 7px;
  left: 12px;
  background: #6fbec2;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  color: #233751;
  font-size: 0.94rem;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--teal);
  content: "";
  opacity: 0;
  transform: scaleX(0.45);
  transition: 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-cta,
.button-primary {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 14px 30px rgba(6, 26, 51, 0.18);
}

.button-primary:hover,
.header-cta:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.button-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}

.button-secondary:hover {
  border-color: var(--teal);
  box-shadow: 0 10px 26px rgba(6, 26, 51, 0.08);
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(480px, 1.14fr);
  align-items: stretch;
  max-width: 1540px;
  min-height: calc(100vh - 80px);
  margin: 0 auto;
  padding-left: clamp(20px, 6vw, 92px);
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 47%, #eef7f8 47%, #eef7f8 100%);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 610px;
  padding: clamp(56px, 9vw, 110px) clamp(20px, 4vw, 50px) clamp(44px, 7vw, 86px) 0;
}

.section-label {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.split-copy h2,
.about-band h2,
.faq-panel h2,
.contact-panel h2 {
  margin: 0;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 590px;
  font-size: clamp(2.7rem, 6vw, 5.55rem);
  font-weight: 900;
}

.hero-lede {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.24rem);
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 48px 0 0;
}

.hero-proof div {
  padding: 14px 0 0;
  border-top: 1px solid var(--line);
}

.hero-proof dt {
  color: var(--navy);
  font-size: 1.15rem;
  font-weight: 900;
}

.hero-proof dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.hero-media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.hero-media::before {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 35%;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.78) 43%, rgba(255, 255, 255, 0) 100%);
  content: "";
  pointer-events: none;
}

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

.section {
  padding: clamp(70px, 9vw, 118px) clamp(20px, 5vw, 72px);
}

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

.section-heading h2,
.split-copy h2,
.about-band h2,
.faq-panel h2,
.contact-panel h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 900;
}

.section-heading p,
.split-copy > p,
.about-band > div > p,
.contact-panel > p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--container);
  margin: 0 auto;
}

.service-card,
.work-card,
.faq-panel,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 36px rgba(6, 26, 51, 0.055);
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 24px;
}

.service-card h3,
.work-card h3 {
  margin: 20px 0 10px;
  color: var(--navy);
  font-size: 1.14rem;
  line-height: 1.18;
}

.service-card p,
.work-card p,
.process-list p,
.faq-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.icon-box {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--teal-dark);
  border: 1px solid rgba(16, 168, 165, 0.22);
  border-radius: var(--radius);
  background: #ecfbfb;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
  padding: clamp(70px, 9vw, 118px) clamp(20px, 5vw, 72px);
  background: var(--soft);
}

.split-media,
.split-copy {
  width: 100%;
  max-width: 600px;
}

.split-media {
  justify-self: end;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split-media img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
}

.process-list {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.process-list div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 4px 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.process-list span {
  grid-row: 1 / 3;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--navy);
  border-radius: 50%;
  background: var(--amber);
  font-weight: 900;
}

.process-list strong {
  color: var(--navy);
  font-size: 1rem;
}

.work-section {
  background: var(--white);
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.82fr;
  gap: 22px;
  max-width: var(--container);
  margin: 0 auto;
}

.work-card {
  overflow: hidden;
}

.work-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.work-card div {
  padding: 24px;
}

.work-card-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 28px;
  background: linear-gradient(180deg, #ffffff, #f4fbfb);
}

.work-card-text .icon-box {
  margin-bottom: 6px;
}

.about-band {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 0.82fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  padding: clamp(70px, 9vw, 110px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(6, 26, 51, 0.98), rgba(11, 39, 72, 0.96)),
    radial-gradient(circle at 85% 15%, rgba(16, 168, 165, 0.28), transparent 36%);
}

.about-band .section-label,
.about-band h2,
.about-band p {
  color: var(--white);
}

.about-band > div:first-child {
  max-width: 650px;
  justify-self: end;
}

.about-band > div > p {
  color: rgba(255, 255, 255, 0.76);
}

.trust-grid {
  display: grid;
  gap: 14px;
  max-width: 520px;
}

.trust-grid div {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  color: var(--white);
  font-size: 1.02rem;
}

.trust-grid span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
}

.faq-contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
  gap: 26px;
  max-width: calc(var(--container) + 144px);
  margin: 0 auto;
}

.faq-panel,
.contact-panel {
  padding: clamp(24px, 4vw, 42px);
}

details {
  border-bottom: 1px solid var(--line);
}

details:last-child {
  border-bottom: 0;
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  color: var(--navy);
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  color: var(--teal-dark);
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "+";
  font-weight: 900;
}

details[open] summary::after {
  content: "-";
}

details p {
  padding: 0 0 18px;
}

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 14px;
  color: var(--ink);
  background: #fbfdff;
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(16, 168, 165, 0.12);
}

.contact-form .button {
  width: fit-content;
  margin-top: 4px;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 24px;
  color: var(--teal-dark);
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy);
}

.legal-page {
  min-height: calc(100vh - 160px);
  padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 72px);
  background: linear-gradient(180deg, #ffffff, var(--soft));
}

.legal-page article {
  max-width: 840px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 36px rgba(6, 26, 51, 0.055);
}

.legal-page h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.legal-page h2 {
  margin: 34px 0 8px;
  color: var(--navy);
  font-size: 1.24rem;
  line-height: 1.25;
}

.legal-page p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.legal-page a {
  color: var(--teal-dark);
  font-weight: 850;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  color: var(--white);
}

.footer-brand span {
  margin-top: 4px;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.92rem;
  font-weight: 800;
}

.footer-links a:hover,
.contact-details a:hover {
  color: var(--amber);
}

@media (max-width: 1080px) {
  .site-header {
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    justify-content: flex-start;
    width: 100%;
    gap: 22px;
    padding-top: 10px;
    overflow-x: auto;
    border-top: 1px solid var(--line);
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav a {
    flex: 0 0 auto;
  }

  .hero,
  .split-section,
  .about-band,
  .faq-contact {
    grid-template-columns: 1fr;
  }

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

  .hero-copy {
    max-width: 820px;
    padding: 64px clamp(20px, 6vw, 56px) 42px;
  }

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

  .hero-media::before {
    display: none;
  }

  .service-grid,
  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-media,
  .split-copy,
  .about-band > div:first-child {
    max-width: none;
    justify-self: auto;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 14px 18px;
  }

  .header-cta {
    display: none;
  }

  .brand strong {
    font-size: 1.12rem;
  }

  .brand small {
    font-size: 0.62rem;
  }

  .hero-copy {
    padding-top: 48px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 13vw, 3.55rem);
  }

  .hero-actions,
  .hero-actions .button,
  .contact-form .button {
    width: 100%;
  }

  .hero-proof,
  .service-grid,
  .work-grid {
    grid-template-columns: 1fr;
  }

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

  .section,
  .split-section,
  .about-band {
    padding: 58px 18px;
  }

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

  .service-card {
    min-height: 0;
  }

  .process-list div {
    grid-template-columns: 42px 1fr;
    padding: 16px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
