@import url("https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;500;600;700&family=Sora:wght@300;400;600;700;800&display=swap");

* {
  box-sizing: border-box;
}

:root {
  --sky: #f1efe8;
  --mist: #e5ecef;
  --paper: #fffefa;
  --ink: #152127;
  --ink-soft: #2f4048;
  --line: #c6d0d5;
  --steel: #0f3442;
  --steel-2: #1c5564;
  --amber: #c97a1c;
  --amber-soft: #f3be7f;
  --shadow-strong: 0 20px 44px rgba(13, 35, 46, 0.16);
  --shadow-soft: 0 10px 24px rgba(13, 35, 46, 0.1);
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Sora", "Segoe UI", sans-serif;
  line-height: 1.72;
  color: var(--ink);
  background:
    radial-gradient(1000px 580px at -10% -8%, rgba(201, 122, 28, 0.25), transparent 55%),
    radial-gradient(960px 560px at 112% -14%, rgba(28, 85, 100, 0.24), transparent 56%),
    linear-gradient(180deg, var(--sky), var(--mist));
}

.orbital {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 28%, rgba(255, 255, 255, 0.45) 0, rgba(255, 255, 255, 0) 35%),
    radial-gradient(circle at 80% 64%, rgba(255, 255, 255, 0.35) 0, rgba(255, 255, 255, 0) 38%),
    repeating-linear-gradient(
      130deg,
      rgba(21, 33, 39, 0.03) 0,
      rgba(21, 33, 39, 0.03) 1px,
      transparent 1px,
      transparent 24px
    );
  animation: drift 15s linear infinite;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.frame-head {
  width: min(1220px, 93%);
  margin: 18px auto 10px;
  border: 1px solid rgba(198, 208, 213, 0.9);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  position: sticky;
  top: 10px;
  z-index: 20;
  box-shadow: var(--shadow-soft);
}

.mark {
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 1.95rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel);
}

.jump {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.jump a {
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.jump a:hover,
.jump a:focus {
  border-color: var(--steel);
  background: rgba(28, 85, 100, 0.08);
  transform: translateY(-2px);
}

.site-wrap {
  width: min(1220px, 93%);
  margin: 0 auto 42px;
  display: grid;
  gap: 18px;
}

.hero-stage,
.split-band,
.service-grid,
.policy-wrap,
.contact-shell {
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 254, 250, 0.98), rgba(250, 251, 252, 0.96));
  box-shadow: var(--shadow-strong);
  animation: rise 800ms ease both;
}

.hero-stage {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  background:
    radial-gradient(560px 260px at 10% -10%, rgba(243, 190, 127, 0.2), transparent 62%),
    linear-gradient(135deg, var(--steel) 0%, #102f3c 55%, #0b2530 100%);
  color: #ecf5f7;
}

.hero-notes {
  padding: clamp(24px, 3.5vw, 44px);
}

.mini-tag {
  display: inline-flex;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(236, 245, 247, 0.44);
  font-size: 0.77rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-notes h1 {
  margin: 14px 0;
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0.025em;
  font-size: clamp(2rem, 5.1vw, 3.85rem);
}

.hero-notes p {
  color: #d6e6ea;
  max-width: 62ch;
}

.signal-list {
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.signal-list li {
  border: 1px solid rgba(236, 245, 247, 0.4);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 0.9rem;
}

.action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(243, 190, 127, 0.72);
  color: #ffe7c7;
  padding: 9px 16px;
  font-weight: 700;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.action:hover,
.action:focus {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(8, 24, 31, 0.38);
}

.hero-media-card {
  margin: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  padding: clamp(18px, 3vw, 32px);
  display: grid;
  align-content: center;
  gap: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.hero-media-card img {
  width: min(480px, 100%);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.06);
  animation: floaty 7s ease-in-out infinite;
}

.hero-media-card p {
  margin: 0;
  font-size: 0.94rem;
  color: #d5e5ea;
}

.split-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
}

.story-stack,
.service-grid,
.policy-core,
.policy-faq,
.contact-shell {
  padding: clamp(20px, 3vw, 34px);
}

.gallery-strip {
  padding: clamp(16px, 2.5vw, 24px);
  border-left: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(28, 85, 100, 0.06), rgba(201, 122, 28, 0.08));
  display: grid;
  align-content: center;
  gap: 12px;
}

.gallery-strip img {
  border-radius: 16px;
  border: 1px solid rgba(198, 208, 213, 0.9);
  background: #ffffff;
  padding: 10px;
}

h2 {
  margin: 0 0 14px;
  color: var(--steel);
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  font-size: clamp(1.38rem, 2.4vw, 2.05rem);
  letter-spacing: 0.02em;
}

h3 {
  margin: 14px 0 8px;
  color: #17495a;
  font-size: 1.05rem;
}

p {
  margin: 0 0 12px;
  color: var(--ink-soft);
}

.pill {
  margin-left: 6px;
  padding: 4px 11px;
  border: 1px solid rgba(21, 33, 39, 0.25);
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  font-family: "Sora", sans-serif;
}

.service-cards {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(228px, 1fr));
  gap: 14px;
}

.service-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-item:hover {
  transform: translateY(-4px);
  border-color: #8ca3ae;
  box-shadow: var(--shadow-soft);
}

.service-item img {
  border-radius: 12px;
  border: 1px solid #d6dde1;
  padding: 8px;
  margin-bottom: 10px;
  background: #fff;
}

.policy-wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
}

.policy-faq {
  border-left: 1px solid var(--line);
  background:
    radial-gradient(260px 180px at 96% 2%, rgba(243, 190, 127, 0.28), transparent 60%),
    linear-gradient(180deg, rgba(28, 85, 100, 0.07), rgba(28, 85, 100, 0.03));
}

.contact-layout {
  margin-top: 10px;
  display: grid;
  gap: 13px;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

.contact-layout article {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  background: linear-gradient(180deg, #ffffff, #fbfcfd);
}

.footnote {
  width: min(1220px, 93%);
  margin: 0 auto 26px;
  border: 1px solid rgba(198, 208, 213, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  text-align: center;
  padding: 20px 16px;
}

.footnote p {
  margin: 4px 0;
  color: #31474f;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.99);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes drift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-24px);
  }
}

@media (max-width: 1040px) {
  .hero-stage,
  .split-band,
  .policy-wrap {
    grid-template-columns: 1fr;
  }

  .hero-media-card,
  .gallery-strip,
  .policy-faq {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .frame-head {
    position: static;
    padding: 15px;
    flex-direction: column;
    align-items: flex-start;
  }

  .jump {
    gap: 10px;
  }

  .site-wrap {
    width: 94%;
  }

  .hero-stage,
  .split-band,
  .service-grid,
  .policy-wrap,
  .contact-shell {
    border-radius: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}