:root {
  --navy-950: #061120;
  --navy-900: #091a30;
  --navy-800: #102844;
  --blue-500: #12a8ff;
  --blue-400: #45c7ff;
  --white: #ffffff;
  --ink: #172033;
  --muted: #5d6b80;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(6, 17, 32, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: rgba(6, 17, 32, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  padding-block: 12px;
  background: rgba(6, 17, 32, 0.94);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  overflow: hidden;
  background: var(--navy-950);
  border: 1px solid rgba(69, 199, 255, 0.42);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(6, 17, 32, 0.22);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand small {
  display: block;
  margin-top: 2px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
}

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

.site-nav a {
  padding: 10px 12px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.84);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.site-nav .nav-cta {
  color: var(--navy-950);
  background: var(--blue-400);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/hero-services.png");
  background-size: cover;
  background-position: center right;
  opacity: 0.86;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 17, 32, 0.96) 0%, rgba(6, 17, 32, 0.84) 34%, rgba(6, 17, 32, 0.38) 70%),
    linear-gradient(180deg, rgba(6, 17, 32, 0.2) 0%, rgba(6, 17, 32, 0.92) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 92px);
  padding-top: 96px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-400);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 5vw, 4.4rem);
  line-height: 0.92;
  letter-spacing: 0;
  white-space: nowrap;
}

h2 {
  margin-bottom: 20px;
  color: var(--navy-950);
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  color: var(--navy-950);
  font-size: 1.18rem;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.7;
}

.hero-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

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

.button.primary {
  color: var(--navy-950);
  background: var(--blue-400);
  box-shadow: 0 16px 42px rgba(18, 168, 255, 0.24);
}

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

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.trust-strip span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.88rem;
  font-weight: 700;
}

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

.section-heading {
  max-width: 880px;
  margin-bottom: 34px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 286px;
  padding: 26px;
  border: 1px solid #d9e4ef;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(9, 26, 48, 0.07);
}

.service-area-card {
  display: grid;
  gap: 8px;
  max-width: 1180px;
  margin-top: 20px;
  padding: clamp(22px, 4vw, 32px);
  border: 1px solid rgba(18, 168, 255, 0.24);
  border-left: 5px solid var(--blue-500);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(6, 17, 32, 0.98), rgba(16, 40, 68, 0.96)),
    var(--navy-950);
  box-shadow: var(--shadow);
}

.service-area-card .eyebrow {
  margin-bottom: 0;
}

.service-area-card p:not(.eyebrow) {
  max-width: 900px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 2vw, 1.16rem);
  line-height: 1.7;
}

.service-card p,
.about-content p,
.booking-panel p,
.contact-copy p,
.founder-copy p,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}

.service-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 8px;
  color: var(--blue-500);
  background: #eef9ff;
}

.service-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-band {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(72px, 9vw, 118px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.about-band h2 {
  color: var(--white);
}

.about-content {
  max-width: 840px;
}

.about-content p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
}

.about-stats {
  display: grid;
  gap: 14px;
}

.about-stats div {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.about-stats strong {
  display: block;
  margin-bottom: 6px;
  color: var(--blue-400);
  font-size: 2.6rem;
}

.about-stats span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.booking-section {
  padding: clamp(54px, 7vw, 88px) clamp(20px, 5vw, 72px);
  background: #f4f8fb;
}

.booking-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 48px);
  border-left: 5px solid var(--blue-500);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.booking-panel h2 {
  margin-bottom: 12px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.9fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  font-weight: 800;
}

.contact-list a {
  color: var(--navy-950);
}

.contact-list span {
  color: var(--muted);
}

.contact-details {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-detail-card {
  padding: 20px;
  border: 1px solid #d9e4ef;
  border-radius: 8px;
  background: #fbfdff;
}

.contact-detail-card h3 {
  margin-bottom: 14px;
  font-size: 1rem;
}

.contact-detail-card dl,
.contact-detail-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.contact-detail-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e3edf6;
}

.contact-detail-card dl div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-detail-card dt,
.contact-detail-card li {
  color: var(--navy-950);
  font-weight: 800;
}

.contact-detail-card dd {
  margin: 0;
  color: var(--muted);
  text-align: right;
  font-weight: 700;
}

.contact-detail-card li {
  list-style: none;
  position: relative;
  padding-left: 18px;
}

.contact-detail-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--blue-500);
}

.contact-detail-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid #d9e4ef;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 22px 60px rgba(9, 26, 48, 0.1);
}

label {
  display: grid;
  gap: 8px;
  color: var(--navy-950);
  font-size: 0.9rem;
  font-weight: 800;
}

.hidden-field {
  display: none;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid #cfdbe8;
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  background: #fbfdff;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(18, 168, 255, 0.22);
  border-color: var(--blue-500);
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.success-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(6, 17, 32, 0.72);
  backdrop-filter: blur(10px);
}

.success-modal[hidden] {
  display: none;
}

.success-modal__panel {
  width: min(100%, 520px);
  padding: clamp(26px, 5vw, 38px);
  border: 1px solid rgba(69, 199, 255, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(6, 17, 32, 0.98), rgba(16, 40, 68, 0.98)),
    var(--navy-950);
  box-shadow: 0 30px 90px rgba(6, 17, 32, 0.42);
  color: var(--white);
  text-align: center;
}

.success-modal__panel h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3rem);
}

.success-modal__panel p:not(.eyebrow) {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.founder-section {
  padding: clamp(78px, 9vw, 124px) clamp(20px, 5vw, 72px);
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.founder-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.founder-photo {
  position: relative;
  width: min(100%, 470px);
  margin: 0;
  justify-self: center;
  overflow: hidden;
  border: 1px solid #d9e4ef;
  border-radius: 8px;
  aspect-ratio: 4 / 5;
  background: var(--navy-950);
  box-shadow: var(--shadow);
}

.founder-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(180deg, rgba(6, 17, 32, 0), rgba(6, 17, 32, 0.14));
  pointer-events: none;
}

.founder-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.founder-copy {
  max-width: 680px;
}

.founder-copy h2 {
  margin-bottom: 20px;
}

.founder-identity {
  display: grid;
  gap: 4px;
  margin-bottom: 12px;
}

.founder-identity strong {
  color: var(--navy-950);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.05;
}

.founder-identity span {
  color: var(--blue-500);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founder-motto {
  margin-bottom: 18px;
  color: var(--navy-950);
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  font-weight: 800;
}

.founder-copy p:not(.founder-motto) {
  font-size: 1.06rem;
}

.credential-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.credential-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 12px;
  border: 1px solid rgba(18, 168, 255, 0.28);
  border-radius: 8px;
  color: var(--navy-950);
  background: #eef9ff;
  font-size: 0.88rem;
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: start;
  padding: 44px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(135deg, rgba(6, 17, 32, 0.98), rgba(9, 26, 48, 1)),
    var(--navy-950);
}

.site-footer p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand {
  color: var(--white);
  font-size: 1.08rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--blue-400);
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.58);
}

@media (max-width: 1040px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-section,
  .founder-card,
  .about-band {
    grid-template-columns: 1fr;
  }

  .founder-photo {
    max-width: 500px;
    justify-self: start;
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: 780px;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin-inline: 18px;
    padding-top: 118px;
  }

  h1 {
    font-size: clamp(2.45rem, 6.6vw, 3.4rem);
    line-height: 0.96;
    white-space: normal;
  }
}
@media (max-width: 760px) {
  .site-header {
    padding: 12px 18px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    padding: 12px 18px 18px;
    background: rgba(6, 17, 32, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

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

  .site-nav a {
    padding: 13px 12px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(6, 17, 32, 0.96), rgba(6, 17, 32, 0.72)),
      linear-gradient(180deg, rgba(6, 17, 32, 0.1), rgba(6, 17, 32, 0.96));
  }

  .hero-content {
    width: calc(100% - 36px);
    margin-inline: 18px;
    padding-top: 118px;
  }

  h1 {
    font-size: clamp(2.45rem, 6.6vw, 3.4rem);
    line-height: 0.96;
    white-space: normal;
  }

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

  .services-grid {
    grid-template-columns: 1fr;
  }

  .booking-panel,
  .site-footer {
    display: grid;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .founder-section {
    padding-block: 66px;
  }

  .founder-card {
    gap: 30px;
  }

  .founder-photo {
    width: min(100%, 430px);
    justify-self: center;
  }
}

@media (max-width: 520px) {
  .contact-detail-card dl div {
    display: grid;
    gap: 4px;
  }

  .contact-detail-card dd {
    text-align: left;
  }

  .success-modal__panel .button {
    width: 100%;
  }
}
@media (max-width: 420px) {
  .brand {
    gap: 9px;
  }

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

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

  .trust-strip span {
    width: 100%;
  }

  .service-card {
    padding: 22px;
  }

  .contact-detail-card dl div {
    display: grid;
    gap: 4px;
  }

  .contact-detail-card dd {
    text-align: left;
  }
}
