:root {
  --bg: #020610;
  --bg-2: #050b14;
  --surface: rgba(7, 15, 28, 0.68);
  --text: #f5f7fb;
  --muted: #98a6ba;
  --muted-2: #6f7d91;
  --border: rgba(151, 170, 200, 0.14);
  --border-strong: rgba(151, 170, 200, 0.25);
  --gold: #c9945a;
  --blue: #7fa7d9;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.44);
  --radius: 8px;
  --max-width: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  position: relative;
  margin: 0;
  color: var(--text);
  background: var(--bg-2);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 110px 110px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent 82%);
  z-index: -1;
}

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

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  min-height: 58px;
  margin: 0;
  padding: 0.32rem clamp(1rem, 4vw, 2.5rem);
  border: 0;
  border-bottom: 1px solid rgba(151, 170, 200, 0.1);
  border-radius: 0;
  background: rgba(5, 11, 20, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  max-width: 260px;
  flex-shrink: 0;
}

.brand-logo-image {
  display: block;
  width: 100%;
  max-width: 220px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a {
  transition: color 160ms ease, transform 160ms ease;
}

.nav a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.nav-cta {
  padding: 0.35rem 0 0.28rem;
  border: 0;
  border-bottom: 1px solid rgba(201, 148, 90, 0.72);
  border-radius: 0;
  color: var(--text) !important;
  background: transparent;
}

.hero-image {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 58px);
  width: 100%;
  margin: 0 auto;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2, 6, 16, 0.64), rgba(2, 6, 16, 0.18)),
    linear-gradient(180deg, rgba(2, 6, 16, 0.08), rgba(2, 6, 16, 0.18)),
    url("orlando_aerial.png") center center / cover no-repeat;
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.2) 7%,
    rgba(0, 0, 0, 1) 18%,
    rgba(0, 0, 0, 1) 78%,
    rgba(0, 0, 0, 0.22) 92%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.2) 7%,
    rgba(0, 0, 0, 1) 18%,
    rgba(0, 0, 0, 1) 78%,
    rgba(0, 0, 0, 0.22) 92%,
    rgba(0, 0, 0, 0) 100%
  );
}

.hero-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 58px);
  max-width: 760px;
  padding: clamp(4.5rem, 7vw, 7rem) clamp(2rem, 5vw, 5rem) clamp(6rem, 9vw, 8rem);
  transform: translateY(-2.5rem);
}

.hero-location-badge {
  position: absolute;
  right: clamp(1.25rem, 4vw, 3rem);
  bottom: clamp(1.25rem, 4vw, 3rem);
  z-index: 2;
  margin: 0;
  color: rgba(245, 247, 251, 0.86);
  font-size: clamp(0.72rem, 1.5vw, 0.88rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-transform: none;
  white-space: nowrap;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.72);
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 11ch;
  margin-bottom: 1rem;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4.6vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.16rem;
  letter-spacing: -0.025em;
}

.hero-text {
  max-width: 580px;
  color: #d7dfeb;
  font-size: clamp(1.02rem, 1.9vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.78rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.button.primary {
  color: #050b14;
  background: linear-gradient(135deg, #f4d0a8, var(--gold));
}

.button.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-strong);
}

.section {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 7rem auto 0;
}

.hero-image + .section {
  margin-top: 5.5rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 1.5rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid var(--border);
}

.section-lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-panel {
  position: relative;
}

.feature-panel::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  width: min(280px, 42vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 148, 90, 0.75));
}

.card-label {
  display: inline-block;
  margin-bottom: 2.25rem;
  color: rgba(201, 148, 90, 0.9);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.experience-side-note {
  max-width: 360px;
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.experience-list {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.55rem;
}

.experience-item {
  position: relative;
  padding: 1.15rem 0 1.15rem 1.2rem;
  border-left: 1px solid rgba(201, 148, 90, 0.38);
}

.experience-item::before {
  content: "";
  position: absolute;
  left: -3px;
  top: 1.42rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(201, 148, 90, 0.55);
}

.experience-label {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: rgba(201, 148, 90, 0.88);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.experience-item h3 {
  margin-bottom: 0.35rem;
}

.experience-item p {
  margin: 0;
}

.experience-proof {
  margin-top: 1.65rem;
  padding: 1.2rem 1.25rem;
  border: 1px solid rgba(151, 170, 200, 0.16);
  border-radius: var(--radius);
  background: rgba(8, 17, 31, 0.34);
}

.experience-proof span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.experience-proof p {
  margin: 0;
}


.grid {
  display: grid;
  gap: 0;
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.service-card, .timeline article {
  min-height: 230px;
  padding: 1.35rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(8, 17, 31, 0.28);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, opacity 700ms ease;
}

.service-card:hover, .timeline article:hover {
  transform: translateY(-3px);
  background: rgba(16, 31, 54, 0.54);
}

.service-card p, .timeline p, .plain-copy, .plain-copy p, .about-panel p, .contact-copy p, .form-note, .section-lead {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
  padding: 0 0 3rem;
  border-bottom: 1px solid var(--border);
}

.plain-copy p { font-size: 1.05rem; }

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.timeline span {
  display: inline-grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(201, 148, 90, 0.34);
  border-radius: 6px;
  color: var(--gold);
  background: rgba(201, 148, 90, 0.08);
  font-size: 0.8rem;
  font-weight: 900;
}

.about-panel {
  max-width: 860px;
  padding: 0 0 3rem;
  border-bottom: 1px solid var(--border);
}

.contact-section { margin-top: 7rem; }

.contact-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 2rem;
  align-items: start;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(7, 15, 28, 0.58);
  box-shadow: var(--shadow);
}

.contact-copy { padding-right: 1rem; }
.contact-copy p { font-size: 1.03rem; }
.contact-email { margin-top: 2rem; }

.contact-email a {
  color: var(--text);
  border-bottom: 1px solid rgba(201, 148, 90, 0.5);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
}

.contact-form span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  background: rgba(2, 6, 16, 0.72);
  color: var(--text);
  font: inherit;
  padding: 0.85rem 0.9rem;
  outline: none;
  transition: border-color 160ms ease, background 160ms ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(201, 148, 90, 0.65);
  background: rgba(5, 11, 20, 0.95);
}

.contact-form .button {
  width: fit-content;
  margin-top: 0.25rem;
}

.form-note {
  margin: 0;
  font-size: 0.88rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 4rem auto 1.5rem;
  color: var(--muted-2);
  font-size: 0.95rem;
}

.site-footer a {
  font-weight: 800;
  color: var(--text);
}


/* Ambient falling line traces */
.ambient-lines {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.58;
  mix-blend-mode: screen;
}

.ambient-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--x);
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(201, 148, 90, 0.07) 18%,
    rgba(244, 208, 168, 0.09) 52%,
    rgba(201, 148, 90, 0.07) 82%,
    transparent 100%
  );
}

.ambient-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: var(--height);
  transform: translateX(-50%) translateY(-40vh);
  border-radius: 999px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(201, 148, 90, 0.06) 4%,
    rgba(255, 178, 95, 0.32) 18%,
    rgba(255, 214, 170, 0.66) 46%,
    rgba(255, 178, 95, 0.42) 74%,
    rgba(201, 148, 90, 0.08) 92%,
    transparent 100%
  );
  box-shadow:
    0 0 14px rgba(201, 148, 90, 0.34),
    0 0 26px rgba(255, 178, 95, 0.18);
  opacity: 0;
  animation: ambientTrace var(--duration) linear infinite;
  animation-delay: var(--delay);
  will-change: transform, opacity;
}

@keyframes ambientTrace {
  0% {
    transform: translateX(-50%) translateY(-40vh);
    opacity: 0;
  }
  10% {
    opacity: 0.42;
  }
  82% {
    opacity: 0.42;
  }
  100% {
    transform: translateX(-50%) translateY(125vh);
    opacity: 0;
  }
}

@media (max-width: 700px) {
  .ambient-lines {
    opacity: 0.38;
  }

  .ambient-line:nth-child(even) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ambient-line::before {
    animation: none;
    opacity: 0;
  }
}


@media (max-width: 920px) {
  .brand-logo-image {
    max-width: 190px;
  }
}

@media (max-width: 850px) {
  .site-header {
    align-items: center;
    min-height: 54px;
    padding-block: 0.3rem;
  }
  .nav { display: none; }

  .split,
  .grid.three,
  .timeline,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-image {
    min-height: calc(82vh - 54px);
  }

  .hero-overlay {
    min-height: calc(82vh - 54px);
    padding-bottom: 5.8rem;
    transform: translateY(2.5vh);
  }

  .hero-location-badge {
    right: 1.4rem;
    bottom: 1.25rem;
    max-width: calc(100% - 2.8rem);
    white-space: normal;
    text-align: right;
  }

  .grid.three,
  .timeline {
    border-right: 1px solid var(--border);
  }

  .contact-copy { padding-right: 0; }
  h1 { max-width: 10ch; }
  .site-footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  .hero-overlay,
  .contact-layout {
    padding: 1.4rem;
  }

  .hero-overlay {
    padding-bottom: 5.2rem;
    transform: translateY(2vh);
  }

  .hero-location-badge {
    right: 1.1rem;
    bottom: 1.1rem;
    letter-spacing: 0.02em;
  }

  .brand-logo-image {
    max-width: 160px;
  }

  h1 { font-size: 3.1rem; }

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


@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}


/* Body sections are static and always visible. */
.section,
.section-heading,
.service-card,
.split,
.timeline article,
.about-panel,
.feature-panel,
.experience-item,
.contact-layout {
  opacity: 1;
  transform: none;
}

.section h2,
.split h2,
.about-panel h2,
.feature-panel h2,
.contact-layout h2 {
  color: var(--text);
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
}

/* Hero slide-up reveal: no fade, clipped like a mask */

.hero-kicker-slide,
.hero-title-slide,
.hero-text-slide {
  display: block;
  overflow: hidden;
}

.hero-kicker-slide span,
.hero-title-slide span,
.hero-text-slide span {
  display: block;
  transform: translateY(115%);
  animation: heroSlideUp 900ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  will-change: transform;
}

.hero-kicker-slide span {
  animation-delay: 120ms;
}

.hero-title-slide span {
  animation-delay: 260ms;
}

.hero-text-slide span {
  animation-delay: 470ms;
}

@keyframes heroSlideUp {
  to {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-kicker-slide span,
  .hero-title-slide span,
  .hero-text-slide span {
    transform: none;
    animation: none;
  }
}


/* Staggered two-line hero title */
.hero-title-slide {
  display: block;
}

.hero-title-line {
  display: block;
  overflow: hidden;
  line-height: 0.95;
}

.hero-title-line > span {
  display: block;
  transform: translateY(115%);
  animation: heroSlideUp 900ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  will-change: transform;
}

.hero-title-line-1 > span {
  animation-delay: 260ms;
}

.hero-title-line-2 > span {
  animation-delay: 430ms;
}

@media (prefers-reduced-motion: reduce) {
  .hero-title-line > span {
    transform: none;
    animation: none;
  }
}

/* Top-of-page entrance fades */
.site-header {
  animation: topFadeIn 720ms ease both;
}

.brand-logo-image {
  opacity: 0;
  transform: translateY(-8px);
  animation: topFadeIn 700ms ease 120ms forwards;
}

.nav a {
  opacity: 0;
  transform: translateY(-8px);
  animation: topFadeIn 680ms ease forwards;
}

.nav a:nth-child(1) { animation-delay: 180ms; }
.nav a:nth-child(2) { animation-delay: 250ms; }
.nav a:nth-child(3) { animation-delay: 320ms; }
.nav a:nth-child(4) { animation-delay: 390ms; }

.hero-actions {
  opacity: 0;
  transform: translateY(12px);
  animation: topFadeIn 760ms ease 740ms forwards;
}

.hero-location-badge {
  opacity: 0;
  transform: translateY(10px);
  animation: topFadeIn 740ms ease 920ms forwards;
}

@keyframes topFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .brand-logo-image,
  .nav a,
  .hero-actions,
  .hero-location-badge {
    opacity: 1;
    transform: none;
    animation: none;
  }
}




