:root {
  --bg: #f8f8f5;
  --paper: #ffffff;
  --ink: #1e2a2f;
  --muted: #5f6a70;
  --accent: #1f4c8f;
  --accent-2: #103664;
  --line: #d9dde1;
  --shadow: 0 12px 30px rgba(16, 54, 100, 0.12);
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Merriweather Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 85% -20%, rgba(31, 76, 143, 0.15), transparent 50%),
    radial-gradient(circle at -20% 10%, rgba(181, 203, 226, 0.34), transparent 45%),
    var(--bg);
  line-height: 1.6;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page-wrap {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
}

.brand-logo {
  width: 150px;
  height: auto;
}

.brand-copy {
  display: none;
  font-family: "Oswald", "Segoe UI", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}

.menu-toggle {
  appearance: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.45rem 0.65rem;
  cursor: pointer;
}

.menu-toggle:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(31, 76, 143, 0.35);
  outline-offset: 2px;
}

.site-nav {
  display: none;
}

.site-nav.open {
  display: block;
}

.site-nav ul {
  max-width: var(--max-width);
  margin: 0 auto 0.9rem;
  padding: 0 1rem;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.site-nav a {
  display: block;
  padding: 0.35rem 0.6rem;
  border-radius: 8px;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
}

.site-nav a.current,
.site-nav a:hover {
  color: var(--paper);
  background: var(--accent);
  text-decoration: none;
}

.main {
  width: 100%;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1rem 2.2rem;
}

.home-intro {
  padding-top: 1rem;
  text-align: center;
}

.home-intro h1 {
  margin: 0;
  font-size: clamp(1.2rem, 2.8vw, 1.75rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  color: rgba(30, 42, 47, 0.62);
}

.home-plane-image {
  width: 100%;
  margin: 0.85rem 0 0;
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.home-blocks {
  margin-top: 1.2rem;
}

.home-card {
  min-height: 100%;
  text-align: center;
  padding: 0.6rem 0.3rem;
  background: transparent;
  border: 0;
  box-shadow: none;
  color: rgba(30, 42, 47, 0.72);
}

.home-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
  color: rgba(30, 42, 47, 0.78);
}

.home-card p {
  margin: 0.2rem 0;
  font-size: 0.96rem;
}

.home-mission {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: rgba(30, 42, 47, 0.66);
}

.home-mission p {
  margin: 0.35rem 0;
  font-size: 0.98rem;
}

.home-mission .section-title {
  font-size: 1.25rem;
  color: rgba(30, 42, 47, 0.72);
}

.hero {
  background: linear-gradient(130deg, rgba(16, 54, 100, 0.95), rgba(31, 76, 143, 0.8));
  color: #f9fcff;
  border-radius: 24px;
  padding: 2.2rem 1.2rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero h1,
.hero h2,
.section-title,
h1,
h2,
h3 {
  font-family: "Oswald", "Segoe UI", sans-serif;
  letter-spacing: 0.03em;
}

.hero-grid {
  display: grid;
  gap: 1.2rem;
}

.hero p {
  max-width: 40ch;
  margin-top: 0.4rem;
}

.hero-copy {
  max-width: 68ch;
}

.hero-image {
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
}

.cta-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.button {
  display: inline-block;
  border-radius: 12px;
  padding: 0.62rem 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.78rem;
  border: 2px solid transparent;
}

.button.primary {
  background: #fff;
  color: var(--accent-2);
}

.button.secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  text-decoration: none;
}

.section {
  margin-top: 2.2rem;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.1rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
}

.card h3 {
  margin: 0.2rem 0;
}

.steps {
  margin: 0;
  padding-left: 1.15rem;
}

.steps li {
  margin-bottom: 0.55rem;
}

.mission {
  border-left: 5px solid var(--accent);
  padding-left: 0.9rem;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  gap: 1rem;
}

.gallery-card {
  display: block;
  color: inherit;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.gallery-card:hover,
.gallery-card:focus-visible {
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.12);
}

.gallery-card .visual {
  aspect-ratio: 16 / 9;
  background: linear-gradient(160deg, #b0c4d8, #ecf2f8);
}

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

.gallery-card .content {
  padding: 0.9rem;
}

.badge {
  display: inline-block;
  font-size: 0.72rem;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  background: #e6e6e6;
  color: #333333;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.faq-layout {
  display: grid;
  gap: 1rem;
}

.faq-nav {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.7rem;
}

.faq-nav ul {
  margin: 0;
  padding-left: 1.1rem;
}

.faq-entry {
  scroll-margin-top: 6.4rem;
}

.email-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 8px 20px rgba(16, 54, 100, 0.08);
}

.order-cta {
  background: linear-gradient(145deg, #f2f2f2, #e5e5e5);
  color: #1e2a2f;
  border: 1px solid #d0d0d0;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  text-align: center;
}

.order-cta h2 {
  margin-top: 0;
  margin-bottom: 0.35rem;
}

.order-cta p {
  margin-top: 0.35rem;
}

.order-button {
  width: 100%;
  max-width: 560px;
  display: inline-block;
  margin-top: 0.2rem;
  background: #ffffff;
  color: #1f1f1f;
  border: 2px solid #c9c9c9;
  border-radius: 14px;
  padding: 0.8rem 1rem;
  font-size: clamp(0.95rem, 3.3vw, 1.15rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: none;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.14);
}

.order-button:hover,
.order-button:focus-visible {
  text-decoration: none;
  background: #f4f4f4;
}

.social-links {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.social-links a {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.7rem;
  font-size: 0.86rem;
}

.site-footer {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem;
  display: grid;
  gap: 1.2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-column h3 {
  margin: 0 0 0.8rem;
  font-size: 1.1rem;
}

.video-embed {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.video-embed img {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
}

.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.video-embed:hover .video-play,
.video-embed:focus-visible .video-play {
  background: rgba(16, 54, 100, 0.88);
}

.footer-copy {
  text-align: center;
}

.note {
  font-size: 0.86rem;
  color: var(--muted);
}

@media (min-width: 760px) {
  .brand-copy {
    display: inline;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    display: block;
  }

  .site-nav ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.35rem;
  }

  .site-nav a {
    padding: 0.42rem 0.7rem;
  }

  .hero {
    padding: 2.6rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .footer-copy {
    grid-column: 1 / -1;
  }

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

  .faq-layout {
    grid-template-columns: 0.9fr 2.1fr;
    align-items: start;
  }

  .faq-nav {
    position: sticky;
    top: 6.2rem;
  }

  .order-cta {
    padding: 1.4rem;
  }
}
