:root {
  --navy: #003c64;
  --blue: #8fd6ff;
  --orange: #ff7800;
  --gold: #ffc800;
  --paper: #ffffff;
  --line: 1px;
  --content-max: 1180px;
  --content-gutter: 20px;
  --rule-gap: 20px;
  --concept-gap: 32px;
  --section-header-gap: 18px;
  --hero-side-width: min(100%, 390px);
  --section-flow-gap: 30px;
  --section-line-space: clamp(34px, 5vw, 56px);
  --section-top-offset: clamp(8px, 1.5vw, 16px);
  --heading-copy-gap: clamp(18px, 2.2vw, 26px);
  --copy-max: 560px;
  --band-bg: var(--navy);
  --band-text: var(--blue);
  --band-muted: rgba(143, 214, 255, 0.78);
  --band-subtle: rgba(143, 214, 255, 0.76);
  --band-rule: rgba(255, 200, 0, 0.72);
  --band-card-border: rgba(255, 200, 0, 0.4);
  --band-accent: var(--orange);
  --band-photo-border: var(--gold);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  background: var(--navy);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--blue);
  background: var(--navy);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.45;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

.brand,
.nav-links a,
.quick-links a,
.note a,
.service h3 a,
.social-links a,
.license-links a,
.payment-links a,
.footer a {
  transition: color 160ms ease;
}

.brand:hover,
.nav-links a:hover,
.quick-links a:hover,
.note a:hover,
.service h3 a:hover,
.social-links a:hover,
.license-links a:hover,
.payment-links a:hover,
.footer a:hover {
  color: var(--band-accent);
}

.page {
  min-height: 100vh;
}

.nav,
.brand-hero,
.hero,
.service-detail,
.section,
.footer {
  width: min(var(--content-max), calc(100% - (var(--content-gutter) * 2)));
  margin-right: auto;
  margin-left: auto;
  background: var(--band-bg);
  box-shadow: 0 0 0 100vmax var(--band-bg);
  clip-path: inset(0 -100vmax);
}

.nav,
.footer,
.page > section:nth-of-type(odd) {
  --band-bg: var(--navy);
  --band-text: var(--blue);
  --band-muted: rgba(143, 214, 255, 0.78);
  --band-subtle: rgba(143, 214, 255, 0.76);
  --band-rule: rgba(255, 200, 0, 0.72);
  --band-card-border: rgba(255, 200, 0, 0.4);
  --band-accent: var(--orange);
  --band-photo-border: var(--gold);
}

.page > section:nth-of-type(even) {
  --band-bg: var(--blue);
  --band-text: var(--navy);
  --band-muted: rgba(0, 60, 100, 0.82);
  --band-subtle: rgba(0, 60, 100, 0.76);
  --band-rule: rgba(0, 60, 100, 0.48);
  --band-card-border: rgba(0, 60, 100, 0.34);
  --band-accent: var(--navy);
  --band-photo-border: var(--navy);
  color: var(--band-text);
}

.page > section:nth-of-type(even) .service {
  border-top-color: var(--band-accent);
}

.home-page > .brand-hero,
.home-page > section.home-service-hero,
.home-page > section:nth-of-type(n + 4):nth-of-type(even) {
  --band-bg: var(--navy);
  --band-text: var(--blue);
  --band-muted: rgba(143, 214, 255, 0.78);
  --band-subtle: rgba(143, 214, 255, 0.76);
  --band-rule: rgba(255, 200, 0, 0.72);
  --band-card-border: rgba(255, 200, 0, 0.4);
  --band-accent: var(--orange);
  --band-photo-border: var(--gold);
  color: var(--band-text);
}

.home-page > section:nth-of-type(n + 3):nth-of-type(odd) {
  --band-bg: var(--blue);
  --band-text: var(--navy);
  --band-muted: rgba(0, 60, 100, 0.82);
  --band-subtle: rgba(0, 60, 100, 0.76);
  --band-rule: rgba(0, 60, 100, 0.48);
  --band-card-border: rgba(0, 60, 100, 0.34);
  --band-accent: var(--navy);
  --band-photo-border: var(--navy);
  color: var(--band-text);
}

.home-page > section:nth-of-type(n + 3):nth-of-type(odd) .service {
  border-top-color: var(--band-accent);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-bottom: var(--line) solid var(--band-rule);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--band-text);
  font-size: 0.98rem;
  font-weight: 900;
}

.nav-logo {
  display: block;
  width: 44px;
  height: auto;
}

.nav-links,
.quick-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
  font-size: 0.9rem;
  font-weight: 900;
}

.nav-links {
  color: rgba(143, 214, 255, 0.78);
}

.quick-links {
  justify-content: flex-end;
}

.quick-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.quick-links svg,
.social-links svg {
  width: 23px;
  height: 23px;
  color: var(--band-accent);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.quick-links svg text,
.social-links svg text {
  fill: currentColor;
  stroke: none;
  font-size: 10px;
  font-weight: 900;
  text-anchor: middle;
}

.link-divider {
  display: none;
}

.brand-hero {
  display: grid;
  grid-template-columns: minmax(240px, 420px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(32px, 7vw, 96px);
  padding: clamp(52px, 7vw, 92px) 0 clamp(48px, 6vw, 78px);
  border-bottom: var(--line) solid var(--band-rule);
}

.brand-hero-mark {
  display: grid;
  justify-items: start;
}

.brand-hero .logo {
  width: min(100%, 420px);
}

.brand-hero-copy {
  display: grid;
  justify-items: center;
  gap: clamp(16px, 2vw, 24px);
  text-align: center;
}

.brand-motto {
  margin: 0;
  color: var(--band-accent);
  font-size: clamp(2.75rem, 3.6vw, 4rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
}

.brand-phone {
  color: var(--band-accent);
  font-size: clamp(1.35rem, 3vw, 2.55rem);
  font-weight: 900;
  line-height: 1;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  align-items: end;
  gap: clamp(28px, 6vw, 80px);
  padding: clamp(40px, 5vw, 68px) 0;
  border-bottom: var(--line) solid var(--band-rule);
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  align-items: start;
  gap: clamp(28px, 6vw, 80px);
  padding: var(--section-line-space) 0;
  border-bottom: var(--line) solid var(--band-rule);
}

.service-detail-copy {
  display: grid;
  gap: var(--section-flow-gap);
  max-width: 680px;
}

.service-page h1,
.service-page h2 {
  max-width: 700px;
  color: var(--band-text);
  font-size: clamp(2.75rem, 4.4vw, 4.5rem);
  font-weight: 900;
  line-height: 0.98;
}

.service-page .lede {
  max-width: 700px;
  color: var(--band-muted);
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  font-weight: 800;
  line-height: 1.45;
  text-align: left;
  text-wrap: pretty;
}

.service-page .section-header p + p {
  margin-top: 12px;
}

.service-page .service h3,
.service-page .step h3 {
  color: var(--band-text);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 900;
  line-height: 0.98;
}

.service-page .service p,
.service-page .step p {
  color: var(--band-subtle);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.45;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--concept-gap);
  padding: clamp(40px, 5vw, 68px) clamp(20px, 4vw, 54px) var(--concept-gap) 0;
}

.logo {
  display: block;
  width: min(100%, 340px);
  height: auto;
}

.logo-tagline {
  width: min(100%, 340px);
  text-align: center;
}

.hero-message {
  display: grid;
  gap: 18px;
  padding: 0;
}

.hero-statement {
  display: grid;
  align-items: end;
  gap: var(--heading-copy-gap);
}

.eyebrow,
.section-title {
  margin: 0;
  color: var(--band-accent);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--band-text);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 560px;
  font-size: clamp(2.75rem, 3.6vw, 4rem);
}

h2 {
  font-size: clamp(2.05rem, 4.5vw, 4.2rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.lede {
  max-width: var(--copy-max);
  margin: 0;
  color: var(--band-muted);
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  font-weight: 800;
  text-align: left;
  text-wrap: pretty;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 0;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: var(--line) solid var(--band-accent);
  border-radius: 6px;
  font: inherit;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.1;
  cursor: pointer;
}

.button.primary,
.button.submit {
  color: var(--paper);
  background: var(--band-accent);
}

.contact-form .button.submit {
  margin-top: 12px;
  color: var(--blue);
  background: var(--navy);
  border-color: var(--band-accent);
}

.button.secondary {
  color: var(--band-accent);
  background: transparent;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: end;
  gap: var(--concept-gap);
  padding: 0;
  background: transparent;
}

.field-photo {
  position: relative;
  width: var(--hero-side-width);
  margin: 0;
  display: grid;
  justify-items: end;
  gap: var(--concept-gap);
}

.field-photo::after {
  display: none;
}

.field-photo img {
  display: block;
  width: 100%;
  height: auto;
  border: 6px solid var(--band-photo-border);
  border-radius: 4px;
}

.owner-section {
  display: grid;
  justify-items: center;
}

.owner-section .field-photo {
  width: min(100%, 620px);
  justify-items: center;
  gap: 32px;
}

.owner-section .field-photo img {
  width: min(100%, 390px);
}

.owner-section .field-photo figcaption {
  width: 100%;
  max-width: 620px;
  justify-items: center;
  text-align: center;
}

.field-photo figcaption {
  display: grid;
  gap: 8px;
  width: 100%;
  color: var(--band-text);
  font-weight: 900;
  line-height: 1.25;
  text-align: left;
}

.field-photo figcaption strong {
  color: var(--band-accent);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
}

.field-photo figcaption span {
  color: var(--band-subtle);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.2;
}

.note {
  display: grid;
  gap: 10px;
  width: var(--hero-side-width);
  padding: 0;
  color: var(--blue);
}

.note a,
.service h3 a {
  color: inherit;
}

.note span {
  color: var(--band-accent);
  font-size: clamp(0.95rem, 1.4vw, 1.18rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.note strong {
  color: var(--blue);
  font-size: clamp(1.45rem, 2.3vw, 2.05rem);
  line-height: 1.08;
}

.note em {
  color: var(--gold);
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-style: normal;
  font-weight: 900;
  line-height: 0.92;
}

.note b {
  margin-top: 8px;
  color: var(--band-accent);
  font-size: clamp(0.95rem, 1.4vw, 1.18rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}

.note s {
  color: rgba(143, 214, 255, 0.72);
  text-decoration-color: var(--band-accent);
  text-decoration-thickness: 3px;
}

.section {
  padding: var(--section-line-space) 0;
  border-bottom: var(--line) solid var(--band-rule);
}

.section.owner-section {
  padding-block: var(--section-line-space);
}

.section-header {
  display: grid;
  gap: 0;
  justify-items: start;
  margin-bottom: var(--section-header-gap);
}

.section-header p,
.contact-copy p {
  max-width: var(--copy-max);
  margin: 0;
  color: var(--band-muted);
  font-size: 1.04rem;
  font-weight: 800;
  line-height: 1.45;
  text-align: left;
  text-wrap: pretty;
}

.section-header > h2 + p {
  margin-top: var(--heading-copy-gap);
}

.steps,
.services {
  display: grid;
  gap: 28px;
}

.steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.step,
.service {
  border: var(--line) solid var(--band-card-border);
  border-radius: 8px;
  background: transparent;
}

.step {
  padding: 18px 22px;
}

.step-number {
  display: grid;
  width: 36px;
  height: 36px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--band-accent);
  font-weight: 900;
}

.step p,
.service p {
  margin: 12px 0 0;
  color: var(--band-subtle);
  font-weight: 800;
  line-height: 1.45;
  text-align: left;
  text-wrap: pretty;
}

.band {
  padding-block: var(--section-line-space);
  background: transparent;
  border-top: 0;
  border-bottom: var(--line) solid var(--band-rule);
}

.band .section-header {
  margin-bottom: var(--section-flow-gap);
}

.band .services {
  gap: 28px;
}

.service {
  min-height: 0;
  padding: 18px 22px;
  border-top-color: var(--accent);
}

.service-page .service-points {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 660px) minmax(320px, 480px);
  justify-content: space-between;
  gap: clamp(28px, 6vw, 80px);
  align-items: stretch;
}

.contact-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 36px;
  min-height: 100%;
  max-width: 560px;
  padding: 0;
}

.contact-intro {
  display: grid;
  gap: 0;
}

.contact-intro > h2 + p {
  margin-top: var(--heading-copy-gap);
}

.contact-section .steps {
  grid-template-columns: 1fr;
  max-width: 560px;
  margin-top: 0;
  gap: 34px;
}

.contact-section .step {
  width: 100%;
  max-width: 560px;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: start;
  column-gap: 18px;
  padding: 18px 22px;
}

.contact-section .step-number {
  grid-row: 1 / span 2;
  margin-bottom: 0;
}

.contact-section .step h3,
.contact-section .step p {
  grid-column: 2;
}

.contact-section .step p {
  margin-top: 12px;
}

.info-section {
  display: grid;
  justify-items: center;
  gap: clamp(28px, 5vw, 46px);
  padding: clamp(24px, 4vw, 42px) 0 var(--section-line-space);
  text-align: center;
}

.contact-form {
  width: 100%;
  align-self: stretch;
  align-content: start;
  margin-top: 0;
  padding: clamp(16px, 2.4vw, 22px) clamp(16px, 2.4vw, 22px) 8px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  background: var(--navy);
  border: var(--line) solid var(--gold);
  border-radius: 8px;
  color: var(--blue);
}

label {
  display: grid;
  gap: 5px;
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  border: var(--line) solid rgba(143, 214, 255, 0.48);
  border-radius: 4px;
  padding: 9px 11px;
  color: var(--blue);
  background: rgba(0, 0, 0, 0.12);
  font: inherit;
  font-weight: 700;
  line-height: 1.25;
}

input[type="file"] {
  padding: 8px 10px;
  cursor: pointer;
}

input[type="file"]::file-selector-button {
  margin-right: 32px;
}

.file-control {
  position: relative;
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 28px;
  padding: 8px 10px;
  border: var(--line) solid rgba(143, 214, 255, 0.48);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.12);
  cursor: pointer;
}

.file-button {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 10px;
  border-radius: 4px;
  color: var(--navy);
  background: var(--blue);
  font-weight: 900;
}

.file-name {
  color: var(--blue);
  font-weight: 900;
}

.file-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.field-hint {
  color: rgba(143, 214, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--band-accent);
  outline: 4px solid rgba(255, 200, 0, 0.42);
}

.button:focus-visible,
.brand:focus-visible,
.nav-links a:focus-visible,
.quick-links a:focus-visible,
.social-links a:focus-visible,
.license-links a:focus-visible,
.payment-links a:focus-visible {
  outline: 4px solid rgba(255, 200, 0, 0.65);
  outline-offset: 3px;
}

.button:disabled {
  cursor: wait;
  opacity: 0.82;
}

.hidden {
  display: none;
}

.form-status {
  min-height: 0;
  margin: 0;
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.35;
}

.info-block {
  width: min(100%, 590px);
  display: grid;
  justify-items: center;
  gap: 18px;
  padding-top: clamp(28px, 4vw, 42px);
  border-top: var(--line) solid rgba(255, 200, 0, 0.82);
}

.info-block:first-child {
  padding-top: 0;
  border-top: 0;
}

.info-block .section-title {
  margin-bottom: 0;
}

.license-links,
.social-links,
.payment-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  justify-items: start;
  gap: 9px 14px;
}

.payment-links {
  gap: 9px 18px;
}

.license-links a,
.license-links span,
.social-links a,
.payment-links a,
.payment-links span {
  width: fit-content;
  color: var(--blue);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.2;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer {
  padding: 20px 0 26px;
  border-top: var(--line) solid rgba(143, 214, 255, 0.3);
  color: var(--band-text);
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
}

@media (max-width: 1100px) {
  .nav {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 900px) {
  .brand-hero,
  .hero,
  .service-detail,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .brand-hero-copy {
    justify-items: center;
    text-align: center;
  }

  .hero-statement {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-visual {
    align-items: flex-start;
    min-height: 0;
    padding-top: 32px;
    border-top: var(--line) solid var(--band-rule);
  }

  .section-header {
    display: grid;
  }

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

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

  .contact-copy {
    height: auto;
    padding-top: 0;
    justify-content: flex-start;
    gap: 36px;
  }

  .contact-form {
    margin-top: 0;
    grid-template-columns: 1fr;
  }

  .contact-section .steps {
    margin-top: 0;
    height: auto;
    align-content: start;
    gap: 34px;
  }

  .owner-section .field-photo {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

@media (max-width: 620px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .quick-links {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    gap: 8px 16px;
    font-size: 0.86rem;
  }

  .quick-links a {
    display: inline-flex;
    padding: 7px 10px;
    border: var(--line) solid var(--band-accent);
    border-radius: 6px;
    color: var(--blue);
  }

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

  .brand-motto {
    font-size: clamp(2.75rem, 16vw, 4.5rem);
  }

  h1 {
    font-size: clamp(2.75rem, 16vw, 4.5rem);
  }

  .hero-visual {
    min-height: 0;
  }

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

  .service-page .service-points {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 20px;
    grid-template-columns: 1fr;
  }

}
