:root {
  --bg: #0b2a82;
  --panel: rgba(255, 255, 255, 0.1);
  --panel-strong: rgba(8, 31, 97, 0.9);
  --panel-soft: rgba(17, 59, 179, 0.55);
  --text: #edf3ff;
  --muted: rgba(236, 243, 255, 0.76);
  --line: rgba(255, 255, 255, 0.16);
  --accent: #f2722c;
  --accent-deep: #c75317;
  --accent-soft: rgba(242, 114, 44, 0.16);
  --gold: #ffd84f;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max-width: 1220px;
  --hero-surface:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.14), transparent 20%),
    radial-gradient(circle at 82% 20%, rgba(242, 114, 44, 0.16), transparent 18%),
    linear-gradient(180deg, #1346da 0%, #1239b0 52%, #0f2a7b 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: var(--hero-surface);
  font-family: "Avenir Next", "Segoe UI", "Trebuchet MS", sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 64px 64px;
}

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

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

.site-shell {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 18px 0 24px;
}

.topbar {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(calc(100% - 48px), 1080px);
  padding: 12px 14px 12px 18px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(14, 40, 118, 0.82), rgba(10, 30, 92, 0.64));
  backdrop-filter: blur(22px) saturate(130%);
  box-shadow: 0 18px 48px rgba(6, 16, 58, 0.26);
}

.topbar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(90deg, rgba(255, 216, 79, 0.25), rgba(255, 255, 255, 0.08), rgba(242, 114, 44, 0.22));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

main {
  display: grid;
  gap: 0;
}

.hero,
.inventory-section,
.gallery-section {
  width: 100%;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
  box-shadow: none;
}

.hero {
  position: relative;
  padding: 118px max(18px, calc((100vw - 1360px) / 2 + 18px)) 64px;
  overflow: hidden;
  min-height: 88svh;
  background: transparent;
}

.hero::before {
  display: none;
}

.eyebrow,
.strip-label,
.panel-label,
.inventory-number,
.gallery-card span {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
}

.eyebrow,
.strip-label,
.panel-label,
.inventory-number {
  color: var(--gold);
}

.hero-title,
.section-heading h2,
.gallery-card h3,
.inventory-card h3 {
  font-family: Georgia, "Times New Roman", serif;
}

.hero-stage {
  position: relative;
  z-index: 2;
  max-width: 1340px;
  margin: 0 auto;
  padding-top: 14px;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(560px, 590px);
  gap: clamp(8px, 1.2vw, 18px);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 700px;
  padding-top: 0;
}

.hero-headline {
  width: 100%;
  max-width: 700px;
}

.hero-title {
  margin: 0;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.88;
  letter-spacing: -0.06em;
  color: #ffffff;
  text-transform: uppercase;
  text-shadow:
    1px 1px 0 #082574,
    2px 2px 0 #082574,
    3px 3px 0 #082574,
    4px 4px 0 #082574,
    5px 5px 0 #082574,
    6px 6px 0 #082574,
    7px 7px 0 #082574,
    8px 8px 0 #082574,
    9px 9px 0 #082574,
    10px 10px 0 #082574;
}

.hero-title-accent {
  padding-left: 4%;
  color: #ffd84f;
}

.hero-title-offset {
  padding-left: 8%;
}

.hero-text,
.section-heading p,
.inventory-card p,
.gallery-card p,
.form-help,
.footer p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-text-wide {
  max-width: 580px;
  margin: 28px 0 0;
  color: rgba(245, 248, 255, 0.9);
  font-size: 1rem;
  line-height: 1.72;
}

.hero-pill-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 7px;
  width: 100%;
  max-width: 100%;
  margin-top: 24px;
  overflow: visible;
  padding-bottom: 0;
}

.hero-pill-row span {
  flex: 0 0 auto;
  white-space: nowrap;
  padding: 8px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: #f6fbff;
  font-size: 0.74rem;
  font-weight: 700;
  backdrop-filter: blur(14px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 14px;
  margin: 24px 0 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.button-primary {
  color: #fff7f1;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.34);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.feature-visual-card,
.inventory-card,
.gallery-card,
.lead-form {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
}

.gallery-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-visuals {
  padding: 48px max(24px, calc((100vw - var(--max-width)) / 2 + 24px)) 26px;
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-visuals-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr 0.9fr;
  gap: 18px;
  align-items: stretch;
}

.feature-visual-card {
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.feature-visual-card-text {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-visual-card-text h2 {
  margin: 12px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.feature-visual-card-text p:last-child {
  margin: 0;
  color: rgba(236, 243, 255, 0.8);
  line-height: 1.65;
}

.feature-visual-card-image {
  position: relative;
  min-height: 320px;
}

.feature-visual-card-tall {
  min-height: 420px;
}

.feature-visual-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-visual-copy {
  position: absolute;
  inset: auto 0 0 0;
  padding: 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(7, 23, 72, 0.88) 100%);
}

.feature-visual-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-visual-copy strong {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: 1rem;
}

.inventory-section,
.gallery-section {
  padding: 84px max(24px, calc((100vw - var(--max-width)) / 2 + 24px));
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.section-heading-wide {
  max-width: 900px;
}

.section-heading h2 {
  margin: 10px 0 12px;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.02;
}

.inventory-grid,
.gallery-grid {
  display: grid;
  gap: 18px;
}

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

.inventory-card,
.gallery-card {
  padding: 24px;
  backdrop-filter: blur(16px);
}

.inventory-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 28px;
  overflow: hidden;
}

.inventory-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), rgba(255, 255, 255, 0.15));
}

.inventory-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.inventory-number {
  display: inline-block;
  margin: 0;
}

.inventory-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(242, 246, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inventory-card h3 {
  margin: 0 0 12px;
  font-size: 1.6rem;
}

.inventory-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.inventory-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(240, 246, 255, 0.88);
  line-height: 1.5;
}

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

.inventory-meta {
  margin: auto 0 0;
  padding-top: 22px;
  color: rgba(255, 216, 79, 0.92);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gallery-grid {
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
}

.gallery-card {
  min-height: 290px;
}

.gallery-card-placeholder {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, transparent 0%, rgba(8, 26, 82, 0.9) 100%),
    linear-gradient(135deg, rgba(255, 216, 79, 0.18), rgba(242, 114, 44, 0.18));
}

.gallery-card span {
  color: var(--gold);
}

.gallery-card h3 {
  margin: 10px 0 10px;
  font-size: 1.5rem;
}

.lead-form {
  padding: 18px 20px 20px;
}

.hero-form-card {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 590px;
  margin-top: 0;
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  box-shadow: 0 28px 80px rgba(7, 20, 67, 0.35);
  backdrop-filter: blur(22px);
  overflow: hidden;
}

.hero-form-intro {
  padding: 18px 20px 6px;
}

.hero-form-intro h2 {
  max-width: none;
  margin: 6px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 1.7vw, 1.9rem);
  line-height: 1.08;
  text-wrap: balance;
}

.lead-form-hero {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: #f6f8fb;
  font-size: 0.88rem;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 11px 13px;
  color: var(--text);
  background: var(--panel-strong);
  font: inherit;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: #7f91a3;
}

.lead-form input,
.lead-form select {
  min-height: 44px;
}

.lead-form textarea {
  min-height: 104px;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 2px solid rgba(242, 114, 44, 0.42);
  outline-offset: 2px;
}

.full-width {
  margin-top: 12px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin-top: 14px;
}

.form-help {
  margin: 0;
}

.form-status {
  min-height: 24px;
  margin: 16px 0 0;
  font-size: 0.95rem;
  color: #dce9f1;
}

.form-status.success {
  color: #a4efb8;
}

.form-status.error {
  color: #ffada3;
}

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding: 30px max(24px, calc((100vw - var(--max-width)) / 2 + 24px)) 10px;
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 1080px) {
  .hero-content,
  .feature-visuals-grid,
  .inventory-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-bottom: 70px;
  }

  .hero-stage {
    padding-top: 18px;
  }

  .hero-copy {
    max-width: 760px;
    padding-top: 0;
  }

  .hero-pill-row,
  .hero-text-wide {
    max-width: none;
  }

  .hero-form-card {
    justify-self: start;
    max-width: 620px;
    margin-top: 4px;
  }

  .hero-pill-row {
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
  }

  .hero-pill-row::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: 100%;
    padding-top: 10px;
    overflow-x: hidden;
  }

  .hero,
  .inventory-section,
  .gallery-section {
    padding: 16px 14px;
  }

  .topbar {
    position: relative;
    top: 0;
    left: auto;
    transform: none;
    width: calc(100% - 20px);
    max-width: 382px;
    margin: 0 auto 12px;
    padding: 10px;
    border-radius: 20px;
    align-items: center;
    flex-direction: column;
    gap: 8px;
  }

  .brand {
    min-height: 34px;
    padding: 0 13px;
    font-size: 0.82rem;
    align-self: center;
  }

  .nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .nav a {
    min-width: 0;
    min-height: 34px;
    padding: 0 8px;
    font-size: 0.74rem;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.06);
  }

  .hero {
    padding-top: 12px;
    padding-bottom: 28px;
    min-height: auto;
  }

  .feature-visuals {
    padding: 20px;
  }

  .feature-visual-card-text {
    padding: 22px;
  }

  .feature-visual-card-image,
  .feature-visual-card-tall {
    min-height: 280px;
  }

  .hero-stage {
    padding-top: 0;
  }

  .hero-content {
    width: 100%;
    justify-items: center;
    gap: 18px;
  }

  .hero-copy,
  .hero-headline {
    width: 100%;
    max-width: 360px;
  }

  .hero-copy {
    margin: 0 auto;
    text-align: center;
  }

  .hero-title-accent,
  .hero-title-offset {
    padding-left: 0;
  }

  .hero-title {
    font-size: clamp(2.8rem, 15vw, 4.35rem);
    line-height: 0.86;
    text-shadow:
      1px 1px 0 #082574,
      2px 2px 0 #082574,
      3px 3px 0 #082574,
      4px 4px 0 #082574,
      5px 5px 0 #082574,
      6px 6px 0 #082574;
  }

  .hero-text-wide {
    max-width: 360px;
    font-size: 0.86rem;
    margin-top: 18px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.58;
    text-wrap: pretty;
  }

  .hero-pill-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: 340px;
    justify-content: center;
    gap: 8px;
    margin: 18px 0 0;
    padding: 0 0 4px;
    overflow: visible;
  }

  .hero-pill-row span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    width: 100%;
    padding: 6px 8px;
    font-size: 0.68rem;
    line-height: 1.2;
    text-align: center;
  }

  .hero-actions {
    margin: 18px 0 0;
    justify-content: center;
    display: none;
  }

  .hero-form-card {
    width: 100%;
    max-width: 360px;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
  }

  .hero-form-intro {
    padding: 14px 14px 2px;
    text-align: center;
  }

  .hero-form-intro .strip-label {
    font-size: 0.64rem;
    letter-spacing: 0.16em;
  }

  .hero-form-intro h2 {
    max-width: none;
    font-size: clamp(1.14rem, 6.2vw, 1.42rem);
    line-height: 1.08;
    text-wrap: balance;
  }

  .lead-form {
    padding: 12px 14px 14px;
  }

  .field-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .lead-form label {
    gap: 5px;
    min-width: 0;
    font-size: 0.76rem;
  }

  .lead-form input,
  .lead-form select,
  .lead-form textarea {
    padding: 8px 10px;
    border-radius: 12px;
    font-size: 0.9rem;
  }

  .lead-form input,
  .lead-form select {
    min-height: 38px;
  }

  .lead-form textarea {
    min-height: 80px;
  }

  .full-width {
    margin-top: 10px;
  }

  .form-actions {
    margin-top: 10px;
  }

  .form-actions .button {
    width: 100%;
    min-height: 42px;
  }

  .footer {
    flex-direction: column;
    padding-bottom: 18px;
  }
}

@media (max-width: 420px) {
  .topbar {
    width: calc(100% - 14px);
  }

  .hero,
  .feature-visuals,
  .inventory-section,
  .gallery-section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero-title {
    font-size: clamp(2.55rem, 15.5vw, 3.9rem);
  }

  .hero-copy,
  .hero-headline,
  .hero-form-card {
    max-width: 348px;
  }

  .hero-text-wide {
    font-size: 0.84rem;
  }

  .nav a {
    font-size: 0.68rem;
    padding: 0 6px;
  }

  .hero-pill-row span {
    min-height: 34px;
    font-size: 0.62rem;
    padding: 6px 6px;
  }

  .hero-form-intro h2 {
    font-size: clamp(1.08rem, 5.8vw, 1.3rem);
  }

  .lead-form textarea {
    min-height: 72px;
  }
}

@media (max-width: 360px) {
  .topbar {
    width: calc(100% - 12px);
  }

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

  .hero-copy,
  .hero-headline,
  .hero-form-card {
    max-width: none;
  }

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