@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,600;9..144,700&family=Space+Grotesk:wght@300;400;500;600&display=swap");

:root {
  --ink: #0b0b1a;
  --steel: #0b1a5b;
  --mist: #f5f6f8;
  --brand: #040468;
  --brand-soft: #5e5e8f;
  --slate: #4d5666;
  --ocean: #0f4c5c;
  --glass: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 60px rgba(12, 16, 32, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Helvetica Neue", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #f6f7fb 0%, #eef1f5 45%, #e6eaf2 100%);
  line-height: 1.6;
}

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

a:hover {
  color: var(--brand);
}

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(12, 16, 32, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  color: var(--ink);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 140px;
  height: auto;
  display: block;
}

.nav {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
}

.nav a {
  position: relative;
  padding-bottom: 4px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: width 0.3s ease;
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.hero {
  position: relative;
  padding: 110px 0 80px;
  color: #fdfaf7;
  background: linear-gradient(135deg, rgba(6, 10, 28, 0.94), rgba(6, 14, 54, 0.92)),
    url("assets/yard.jpg") center/cover no-repeat;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(94, 94, 143, 0.25), transparent 55%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  align-items: center;
  z-index: 1;
}

.hero h1 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero .cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 16px 40px rgba(4, 4, 104, 0.35);
}

.button.secondary {
  border: 1px solid var(--brand);
  color: var(--brand);
  background: transparent;
}

.hero .button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
}

.banner .button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
}

.button:hover {
  transform: translateY(-2px);
}

.section {
  padding: 80px 0;
}

.section-tight {
  padding-top: 40px;
}

.section-tight-bottom {
  padding-bottom: 40px;
}

.section-title {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 2rem;
  margin-bottom: 48px;
  color: var(--steel);
}

.section-subtitle {
  color: var(--slate);
  max-width: 680px;
}

.card-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  margin-top: 32px;
}

.card {
  padding: 26px;
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(4, 4, 104, 0.08), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover::before {
  opacity: 1;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.media-slab {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  align-items: center;
  margin-top: 32px;
  margin-bottom: 12px;
}

.media-slab2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  align-items: center;
  margin-top: 32px;
  margin-bottom: 12px;
}

.media-slab-tight {
  gap: 8px;
  margin-top: 0;
}

.media-slab img {
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.highlight {
  background: #ffffff;
  border-radius: 26px;
  padding: 32px;
  border: 1px solid rgba(4, 4, 104, 0.12);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.tag {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
  background: rgba(4, 4, 104, 0.08);
  padding: 6px 10px;
  border-radius: 999px;
}

.highlight h2 {
  color: var(--steel);
}

.highlight p {
  color: var(--slate);
  margin-bottom: 16px;
}

.highlight-list {
  margin: 0 0 18px;
  padding-left: 18px;
  color: var(--slate);
}

.highlight-list li {
  margin-bottom: 8px;
}

.list-columns {
  columns: 2;
  column-gap: 32px;
  margin-top: 24px;
}

.list-columns li {
  break-inside: avoid;
  margin-bottom: 8px;
}

.banner {
  background: linear-gradient(120deg, #0b0f28, #1a2650);
  color: #f6f5f2;
  padding: 50px 0;
}

.banner .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  align-items: center;
}

.banner h2 {
  font-family: "Fraunces", "Times New Roman", serif;
  margin-top: 0;
}

.banner p {
  color: rgba(255, 255, 255, 0.78);
}

.footer {
  background: #0c111b;
  color: rgba(255, 255, 255, 0.8);
  padding: 40px 0 60px;
}

.footer-top {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer h4 {
  margin-top: 0;
  color: #f8f3ea;
}

.form {
  display: grid;
  gap: 16px;
}

input,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(14, 20, 32, 0.15);
  font-family: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.notice {
  font-size: 0.9rem;
  color: var(--slate);
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.badge {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(4, 4, 104, 0.1);
  color: var(--brand);
  font-size: 0.85rem;
  font-weight: 500;
}

.fade-in {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.fade-delay-1 { animation-delay: 0.1s; }
.fade-delay-2 { animation-delay: 0.2s; }
.fade-delay-3 { animation-delay: 0.3s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .nav {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .brand-logo {
    width: 110px;
  }

  .list-columns {
    columns: 1;
  }

  .hero {
    padding: 90px 0 60px;
  }
}
