/*
Theme Name: Fly Garage
Theme URI: https://fg.ikaikakimura.com
Author: Ki Media
Description: Premium staging theme for Fly Garage LLC.
Version: 1.3.3
Text Domain: fly-garage
*/

:root {
  --teal: #16d6d0;
  --accent: #8cf7f2;
  --charcoal: #111417;
  --graphite: #1a1d21;
  --gray: #2d3136;
  --line: rgba(255, 255, 255, 0.12);
  --muted: #aeb7c2;
  --white: #ffffff;
  --max: 1180px;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--charcoal);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
p { color: var(--muted); margin: 0 0 1rem; }
h1, h2, h3, h4 { margin: 0; line-height: 1.02; letter-spacing: 0; }
h1 { font-size: clamp(3rem, 8vw, 6.7rem); max-width: 980px; }
h2 { font-size: clamp(2.2rem, 5vw, 4.4rem); max-width: 860px; }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.8rem); }
h1, h2, h3 { overflow-wrap: anywhere; }
.wrap { width: calc(100% - 32px); max-width: var(--max); margin: 0 auto; }
.eyebrow {
  color: var(--accent);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
  margin-bottom: 1rem;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(17, 20, 23, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.topline {
  background: #080a0c;
  color: var(--muted);
  font-size: .82rem;
}
.topline .wrap,
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.topline .wrap { min-height: 36px; }
.topline a { color: var(--accent); font-weight: 700; }
.topline span { max-width: 100%; overflow-wrap: anywhere; }
.nav { min-height: 82px; }
.nav-panel {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.15rem;
  flex: 1;
}
.nav-toggle { position: absolute; opacity: 0; pointer-events: none; }
.nav-toggle-label {
  display: none;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 4px;
  min-height: 44px;
  padding: .65rem .9rem;
  color: var(--white);
  font-size: .8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  cursor: pointer;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  min-width: 210px;
}
.brand img { width: 76px; max-height: 48px; object-fit: contain; }
.brand strong { font-size: 1rem; text-transform: uppercase; letter-spacing: .1em; }
.brand span { display: block; color: var(--muted); font-size: .75rem; letter-spacing: .08em; }
.menu {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu a {
  color: #d9dee5;
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .09em;
}
.menu a:hover { color: var(--accent); }
.nav-cta { display: flex; align-items: center; gap: .7rem; }
.button,
button,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .85rem 1.2rem;
  border: 1px solid var(--teal);
  border-radius: 4px;
  background: var(--teal);
  color: #061010;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  cursor: pointer;
  transition: transform .22s ease, border-color .22s ease, background .22s ease, color .22s ease;
}
.button:hover,
button:hover,
input[type="submit"]:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
  background: var(--accent);
}
.button.secondary:hover,
.button.ghost:hover {
  color: #061010;
}
.button.secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.24);
}
.button.ghost {
  background: rgba(255,255,255,.06);
  color: var(--white);
  border-color: rgba(255,255,255,.12);
}
.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #080a0c;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,10,12,.96), rgba(8,10,12,.74) 42%, rgba(8,10,12,.26)),
    linear-gradient(0deg, rgba(8,10,12,1), rgba(8,10,12,.12) 50%, rgba(8,10,12,.72)),
    var(--hero-image) center/cover no-repeat;
  transform: scale(1.02);
}
.hero .wrap { position: relative; padding: 150px 0 62px; }
.hero-copy { max-width: 1040px; }
.hero p { max-width: 720px; font-size: clamp(1.05rem, 2vw, 1.32rem); margin-top: 1.3rem; }
.hero-actions { display: flex; gap: .9rem; flex-wrap: wrap; margin-top: 2rem; }
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  margin-top: 4rem;
}
.metric { padding: 1.1rem 1.1rem 1.1rem 0; border-right: 1px solid var(--line); }
.metric:last-child { border-right: 0; }
.metric strong { display: block; color: var(--white); font-size: 1rem; }
.metric span { color: var(--muted); font-size: .9rem; }
.section { padding: clamp(72px, 9vw, 128px) 0; background: var(--charcoal); }
.section.alt { background: var(--graphite); }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.2rem;
}
.section-head p { max-width: 520px; }
.grid { display: grid; gap: 1rem; }
.grid.services { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  position: relative;
  min-height: 270px;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: #171b20;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8,10,12,.98), rgba(8,10,12,.42)), var(--bg) center/cover no-repeat;
  opacity: .78;
  transition: transform .35s ease, opacity .35s ease;
}
.card:hover::before { transform: scale(1.04); opacity: .96; }
.card > * { position: relative; }
.card h3 { margin-top: 7rem; }
.card p { font-size: .92rem; margin-top: .65rem; }
.card .arrow { color: var(--accent); font-weight: 900; }
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.feature-panel {
  border-left: 3px solid var(--teal);
  padding: 2rem;
  background: linear-gradient(135deg, rgba(22,214,208,.14), rgba(255,255,255,.04));
}
.feature-panel h2 { font-size: clamp(2.4rem, 5vw, 5rem); }
.media-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
}
.media-stack img,
.wide-img {
  min-height: 250px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--line);
}
.process {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.step { background: #15191e; padding: 1.3rem; min-height: 190px; }
.step b { color: var(--accent); }
.step h3 { font-size: 1.05rem; margin: 1.8rem 0 .6rem; }
.reviews,
.faq-grid,
.local-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.quote,
.faq-card,
.local-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1.35rem;
  background: rgba(255,255,255,.045);
}
.quote p { color: #e6ebef; font-size: 1.02rem; }
.quote span { color: var(--accent); font-size: .82rem; text-transform: uppercase; font-weight: 800; letter-spacing: .1em; }
.cta {
  background: linear-gradient(135deg, #091010, #172125 55%, #0f1518);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
}
.site-footer {
  padding: 56px 0 28px;
  background: #080a0c;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 2rem;
}
.site-footer h3 { font-size: 1rem; margin-bottom: .85rem; }
.site-footer a,
.site-footer li { color: var(--muted); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .35rem; }
.copyright { color: #737d88; border-top: 1px solid var(--line); padding-top: 1.4rem; margin-top: 2.2rem; font-size: .85rem; }
.page-hero {
  padding: 150px 0 70px;
  background:
    linear-gradient(90deg, rgba(8,10,12,.94), rgba(8,10,12,.7)),
    var(--page-image) center/cover no-repeat;
  border-bottom: 1px solid var(--line);
}
.page-hero p { max-width: 700px; font-size: 1.16rem; margin-top: 1.2rem; }
.content {
  padding: 72px 0;
}
.content .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 3rem;
}
.content-main > * + * { margin-top: 1.1rem; }
.content-main h2 { font-size: clamp(1.9rem, 3vw, 3rem); margin-top: 2.2rem; }
.content-main h3 { margin-top: 1.6rem; }
.content-main ul { color: var(--muted); padding-left: 1.2rem; }
.sidebar {
  position: sticky;
  top: 112px;
  align-self: start;
  border: 1px solid var(--line);
  padding: 1.25rem;
  border-radius: 6px;
  background: rgba(255,255,255,.045);
}
.sidebar .button { width: 100%; margin-top: .7rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: grid; gap: .35rem; margin-bottom: 1rem; }
label { color: #e8edf2; font-weight: 800; font-size: .9rem; }
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 4px;
  background: #0c1013;
  color: var(--white);
  min-height: 48px;
  padding: .85rem;
}
textarea { min-height: 150px; resize: vertical; }
.notice { border: 1px solid rgba(140,247,242,.35); color: var(--accent); background: rgba(22,214,208,.08); padding: 1rem; border-radius: 4px; }
.placeholder {
  border: 1px dashed rgba(140,247,242,.38);
  background: rgba(22,214,208,.08);
  color: var(--accent);
  padding: 1rem;
  border-radius: 4px;
  font-weight: 800;
}
.asset-note {
  border: 1px solid rgba(140,247,242,.24);
  background: rgba(255,255,255,.045);
  color: #d7fdfb;
  padding: 1rem;
  border-radius: 4px;
  font-weight: 800;
}
.home2-hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(8,10,12,.32), rgba(8,10,12,.96)),
    url("assets/img/home2/background/4.webp") center/cover no-repeat,
    #080a0c;
  border-bottom: 1px solid var(--line);
}
.video-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: .42;
}
.video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.7778vh;
  min-width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}
.home2-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 55%, rgba(22,214,208,.17), transparent 33%),
    linear-gradient(90deg, rgba(8,10,12,.95), rgba(8,10,12,.65) 42%, rgba(8,10,12,.92)),
    linear-gradient(0deg, rgba(8,10,12,1), transparent 52%, rgba(8,10,12,.88));
}
.home2-hero-inner {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
  padding: 152px 0 0;
}
.home2-hero h1 {
  font-size: clamp(3rem, 8.5vw, 7.5rem);
  max-width: 1060px;
  text-transform: uppercase;
}
.home2-hero p {
  max-width: 790px;
  font-size: clamp(1.05rem, 1.8vw, 1.34rem);
  margin-top: 1.35rem;
}
.home2-hero .hero-actions { justify-content: center; }
.hero-car {
  width: min(1080px, 100%);
  margin: 20px auto -9px;
  filter: drop-shadow(0 36px 60px rgba(0,0,0,.72));
}
.trust-ribbon {
  background: #080a0c;
  border-bottom: 1px solid var(--line);
}
.trust-ribbon-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.trust-ribbon span {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: .9rem;
  color: #dfe8ee;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  border-right: 1px solid var(--line);
}
.trust-ribbon span:last-child { border-right: 0; }
.section-head.centered {
  justify-content: center;
  text-align: center;
}
.section-head.centered h2 { margin-inline: auto; }
.home2-services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}
.home2-service-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #11161a;
  isolation: isolate;
}
.home2-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--service-bg) center/cover no-repeat;
  transform: scale(1.02);
  transition: transform .45s ease, opacity .45s ease;
  opacity: .82;
}
.home2-service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, transparent 0%, rgba(8,10,12,.45) 35%, rgba(8,10,12,.98) 100%),
    linear-gradient(90deg, rgba(22,214,208,.1), transparent 42%);
}
.home2-service-card:hover::before {
  transform: scale(1.08);
  opacity: 1;
}
.home2-service-card h3 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  text-transform: uppercase;
}
.home2-service-card p {
  max-width: 570px;
  margin-top: .75rem;
}
.service-number {
  position: absolute;
  top: 1.1rem;
  left: 1.25rem;
  color: rgba(255,255,255,.22);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1;
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}
.about-images {
  min-height: 620px;
  position: relative;
}
.about-images img {
  position: absolute;
  width: 68%;
  height: 430px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 28px 80px rgba(0,0,0,.35);
}
.about-images img:first-child {
  top: 0;
  left: 0;
}
.about-images img:last-child {
  right: 0;
  bottom: 0;
}
.about-copy h2 { text-transform: uppercase; }
.status-band {
  background: #080a0c;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.status-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.status-grid div {
  min-height: 150px;
  padding: 1.3rem;
  border-right: 1px solid var(--line);
}
.status-grid div:last-child { border-right: 0; }
.status-grid strong {
  display: block;
  color: var(--white);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  text-transform: uppercase;
}
.status-grid span {
  display: block;
  color: var(--muted);
  margin-top: .5rem;
}
.image-break {
  min-height: 430px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(8,10,12,.9), rgba(8,10,12,.35), rgba(8,10,12,.92)),
    var(--break-image) center/cover fixed no-repeat;
  border-bottom: 1px solid var(--line);
}
.image-break p {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}
.why-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.why-card {
  min-height: 210px;
  padding: 1.3rem;
  background: #11161a;
}
.why-card span {
  color: var(--accent);
  font-weight: 900;
}
.why-card h3 {
  margin-top: 3.2rem;
  text-transform: uppercase;
}
.gallery-placeholders {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .8rem;
  margin-bottom: 1.2rem;
}
.gallery-slot {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(8,10,12,.16), rgba(8,10,12,.94)),
    var(--slot-bg) center/cover no-repeat,
    #12171b;
  overflow: hidden;
  transition: transform .28s ease, border-color .28s ease;
}
.gallery-slot:hover {
  transform: translateY(-3px);
  border-color: rgba(140,247,242,.48);
}
.gallery-slot span {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
}
.gallery-slot small {
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.faq-accordion {
  display: grid;
  gap: .75rem;
}
.faq-accordion details {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255,255,255,.045);
}
.faq-accordion summary {
  cursor: pointer;
  padding: 1.05rem 1.2rem;
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
}
.faq-accordion p { padding: 0 1.2rem 1.1rem; }
.page-visual-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem;
  margin: 2rem 0;
}
.page-visual-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 4px;
}
.page-cta-panel {
  margin-top: 2.4rem;
  padding: clamp(1.3rem, 4vw, 2.2rem);
  border: 1px solid rgba(140,247,242,.28);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(22,214,208,.13), transparent 52%),
    rgba(255,255,255,.045);
}
.page-cta-panel h2 { font-size: clamp(1.8rem, 3vw, 3.2rem); }
@media (max-width: 980px) {
  .topline .wrap { flex-direction: column; align-items: flex-start; padding: .6rem 0; }
  .nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    position: relative;
    padding: 1rem 0;
  }
  .brand { min-width: 0; flex: 1; }
  .nav-toggle-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .nav-panel {
    display: none;
    width: 100%;
    grid-column: 1 / -1;
    padding-top: .8rem;
  }
  .nav-toggle:checked ~ .nav-panel { display: grid; }
  .menu {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .55rem .8rem;
    overflow: visible;
    padding-bottom: .25rem;
  }
  .menu a { font-size: .76rem; }
  .nav-cta { width: 100%; display: grid; grid-template-columns: 1fr 1fr; }
  .nav-cta .button { width: 100%; padding-left: .7rem; padding-right: .7rem; }
  .topline { overflow: hidden; }
  .hero-metrics,
  .page-visual-strip,
  .trust-ribbon-grid,
  .home2-services-grid,
  .about-grid,
  .status-grid,
  .why-list,
  .gallery-placeholders,
  .grid.services,
  .process,
  .reviews,
  .faq-grid,
  .local-grid,
  .footer-grid,
  .content .wrap,
  .split { grid-template-columns: 1fr; }
  .metric { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-ribbon span,
  .status-grid div { border-right: 0; border-bottom: 1px solid var(--line); }
  .home2-hero-inner { padding-top: 116px; }
  .home2-hero h1 { font-size: clamp(2.55rem, 10vw, 5rem); }
  .about-images { min-height: auto; display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
  .about-images img { position: static; width: 100%; height: 330px; }
  .image-break { background-attachment: scroll; }
  .cta-inner { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  h1 { font-size: clamp(2.35rem, 11vw, 2.85rem); }
  h2 { font-size: clamp(2rem, 10vw, 2.7rem); }
  .service-intro h2 { font-size: clamp(2rem, 9vw, 2.45rem); }
  .page-hero h1 { max-width: 8.8ch; word-break: normal; }
  .hero h1 { max-width: 9.5ch; }
  .page-hero p,
  .hero p,
  .content-main p,
  .content p { max-width: 34ch; }
  .menu { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .topline .wrap { overflow-wrap: anywhere; }
  .topline .wrap span:first-child { display: none; }
  .nav-cta { grid-template-columns: 1fr; }
  .nav-cta .button { justify-content: center; }
  .hero .wrap { padding-top: 96px; }
  .home2-hero {
    min-height: auto;
    align-items: start;
  }
  .home2-hero .video-bg { display: none; }
  .home2-hero-inner {
    justify-items: start;
    text-align: left;
    padding-top: 56px;
  }
  .home2-hero h1 {
    max-width: 10.5ch;
    font-size: clamp(2.25rem, 10vw, 3rem);
    overflow-wrap: break-word;
  }
  .home2-hero p { max-width: 32ch; }
  .home2-hero .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    justify-content: stretch;
  }
  .home2-hero .button { width: 100%; }
  .home2-service-card { min-height: 260px; padding: 1rem; }
  .service-number { font-size: 3rem; }
  .about-images { grid-template-columns: 1fr; }
  .about-images img { height: 270px; }
  .image-break { min-height: 320px; }
  .page-hero { padding-top: 96px; }
  .button { min-height: 54px; font-size: .86rem; }
  .brand img { width: 56px; }
  .brand strong { font-size: .92rem; }
  .brand span { font-size: .7rem; }
}
