:root {
  --navy: #061b3a;
  --navy-dark: #031026;
  --blue: #2f8cff;
  --blue-soft: #d8eaff;
  --white: #ffffff;
  --cream: #f7f4ee;
  --text: #1e293b;
  --muted: #64748b;
  --shadow: 0 24px 60px rgba(3, 16, 38, 0.18);
  --radius: 24px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 70px);
  background: rgba(3, 16, 38, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand img {
  width: 185px;
  height: 62px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav a { opacity: 0.88; }
.nav a:hover { opacity: 1; color: var(--blue-soft); }

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 120px 20px;
  background:
    linear-gradient(rgba(3, 16, 38, 0.58), rgba(3, 16, 38, 0.84)),
    url("assets/logo.jpeg") center/cover no-repeat;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(47, 140, 255, 0.22), transparent 48%);
}

.hero-content {
  position: relative;
  max-width: 920px;
}

.eyebrow, .section-label {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
}

.hero h1 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.6rem, 7vw, 5.9rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-text {
  max-width: 720px;
  margin: 26px auto 0;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  color: rgba(255,255,255,0.9);
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

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

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

.primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(47, 140, 255, 0.28);
}

.secondary {
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.1);
}

.full { width: 100%; margin-top: 14px; }

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 86px 0;
}

.intro-grid, .welcome-section, .watch-section, .contact-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

h2 {
  margin: 0 0 18px;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--navy-dark);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

h3 { margin: 0 0 14px; color: var(--navy-dark); font-size: 1.35rem; }

p { font-size: 1.05rem; }

.card, .service-card, .youtube-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(3, 16, 38, 0.08);
}

.highlight-card { padding: 32px; }
.highlight-card p { margin: 8px 0; }

.photo-wrap {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 10px solid var(--white);
}

.photo-wrap img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center top;
}

.services-section {
  width: 100%;
  max-width: none;
  padding: 92px clamp(18px, 5vw, 70px);
  background: var(--navy);
}

.services-section h2 { color: var(--white); }
.center { text-align: center; }

.service-cards {
  width: min(1120px, 100%);
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card { padding: 28px; }
.service-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.service-card p { margin: 0; font-size: 1.45rem; color: var(--navy); font-weight: 900; }

.watch-section {
  background: linear-gradient(135deg, var(--white), var(--blue-soft));
  padding: 44px;
  border-radius: 34px;
  margin-top: 88px;
  box-shadow: var(--shadow);
}

.youtube-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px;
}

.play-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: #ff0000;
  color: white;
  font-size: 1.5rem;
}

.youtube-card p { margin: 2px 0 0; color: var(--muted); }

.about-text {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.16rem;
}

.contact-section {
  padding-bottom: 100px;
}

.contact-card { padding: 32px; }
.contact-card p { margin: 8px 0; }

.footer {
  padding: 28px 20px;
  text-align: center;
  color: rgba(255,255,255,0.78);
  background: var(--navy-dark);
}
.footer p { margin: 0; font-size: 0.95rem; }

@media (max-width: 900px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  .nav { width: 100%; overflow-x: auto; gap: 16px; padding-bottom: 4px; }
  .intro-grid, .welcome-section, .watch-section, .contact-section { grid-template-columns: 1fr; }
  .service-cards { grid-template-columns: repeat(2, 1fr); }
  .hero { min-height: 620px; }
}

@media (max-width: 560px) {
  .brand img { width: 150px; height: 52px; }
  .nav { font-size: 0.86rem; }
  .section { padding: 64px 0; }
  .service-cards { grid-template-columns: 1fr; }
  .photo-wrap img { height: 480px; }
  .watch-section { padding: 28px; margin-top: 54px; }
  .youtube-card { align-items: flex-start; flex-direction: column; }
}
