﻿:root {
  --bg: #eef4fb;
  --surface: #ffffff;
  --surface-strong: #f3f7fb;
  --text: #102540;
  --muted: #556a7b;
  --primary: #004c8c;
  --primary-dark: #00366a;
  --accent: #d31f28;
  --shadow: 0 22px 45px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

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

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

.container {
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(16, 36, 68, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
}

.brand-logo {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  border-radius: 0.5rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-size: 1rem;
  box-shadow: var(--shadow);
}

.brand-text {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.brand-subtitle {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: none;
  line-height: 1.3;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.site-nav a:hover {
  color: var(--primary);
}

.datetime-display {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
  margin-left: 1rem;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .datetime-display {
    margin-left: 0;
    margin-top: 0.75rem;
  }
}

.mobile-menu-toggle {
  display: none;
  border: none;
  background: none;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0.5rem;
  min-width: 44px;
  min-height: 44px;
  transition: all 0.3s ease;
  color: var(--text);
  z-index: 40;
}

.mobile-menu-toggle:active {
  transform: scale(0.9);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  border-radius: 999px;
  padding: 0.95rem 1.7rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  font-size: 1rem;
  min-height: 48px;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(16, 36, 68, 0.14);
}

@media (max-width: 768px) {
  .btn {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    min-height: 52px;
    width: 100%;
    text-align: center;
  }
}

.hero {
  padding: 5rem 0 3rem;
  background: linear-gradient(180deg, rgba(14, 35, 66, 0.95), rgba(16, 36, 68, 0.95));
}

.hero-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

.hero-copy {
  max-width: 640px;
}

.video-card {
  background: linear-gradient(135deg, rgba(0, 76, 140, 0.95), rgba(211, 31, 40, 0.95));
  border-radius: 2rem;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.video-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 1.5rem;
  border: none;
}

.video-section {
  padding: 3rem 0;
}

@media (max-width: 680px) {
  .video-section {
    padding: 2rem 0;
  }

  .video-card {
    padding: 0.8rem;
  }
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero h1 {
  margin: 0;
  font-size: clamp(1.8rem, 5vw, 4.4rem);
  line-height: 1.1;
  color: #f8fafc;
}

.hero p {
  margin: 1.4rem 0 1rem;
  max-width: 32rem;
  color: rgba(248, 250, 252, 0.88);
  font-size: clamp(0.95rem, 2vw, 1rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

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

.video-label {
  color: #f8fafc;
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

@media (max-width: 840px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .hero {
    padding: 2rem 0;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero h1 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    line-height: 1.2;
  }

  .hero p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
}

.section-light,
.section-dark {
  padding: 4rem 0;
}

.section-light {
  background: var(--surface);
}


.section-dark {
  background: #0f172a;
  color: #f9fafb;
}

.section-dark .eyebrow {
  color: #fbbf24;
}

.section-dark h2,
.section-dark p,
.section-dark article h3,
.section-dark article p {
  color: #f8fafc;
}

.grid-two {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.2fr 0.8fr;
}

.info-card,
.service-card,
.testimonial-card {
  background: var(--surface);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.info-card {
  background: #eef4fb;
}

.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 2rem;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
}

.rainbow-text {
  background: linear-gradient(90deg, #ef4444, #f59e0b, #eab308, #10b981, #3b82f6, #8b5cf6, #ec4899);
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.info-card h3 {
  margin-top: 0;
}

.info-card ul {
  margin: 1rem 0 0;
  padding-left: 1.3rem;
  color: var(--muted);
}

.info-card li {
  margin-bottom: 0.85rem;
}

.grid-four {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 2rem;
}

.section-intro {
  max-width: 54rem;
  color: rgba(249, 250, 251, 0.85);
}

.service-card {
  display: grid;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: attr(data-icon);
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2.5rem;
  opacity: 0.12;
}

.service-card strong {
  font-size: 1.2rem;
}

.service-card p {
  margin: 0;
  color: rgba(249, 250, 251, 0.9);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 32px 60px rgba(0, 0, 0, 0.12);
}

.service-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card a {
  color: #f8fafc;
  font-weight: 600;
}

.reviews-header {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.review-summary {
  text-align: right;
}

.review-summary strong {
  display: block;
  font-size: 0.95rem;
  color: #fbbf24;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.stars {
  color: #fbbf24;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.review-summary span {
  color: #cbd5e1;
}

.testimonial-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.testimonial-card {
  min-height: 220px;
  display: grid;
  gap: 1rem;
}

.testimonial-card p {
  margin: 0;
  color: rgba(249, 250, 251, 0.85);
}

.testimonial-card strong {
  color: #f8fafc;
}

.testimonial-card span {
  color: rgba(249, 250, 251, 0.72);
}

.contact {
  background: var(--surface);
}

.contact-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.1fr 0.9fr;
}

.contact-details {
  margin: 1.5rem 0;
  color: var(--muted);
}

.contact-details p {
  margin: 0.8rem 0;
}

.contact-details a {
  color: var(--text);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.55rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 1rem;
  padding: 0.95rem 1rem;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(0, 76, 140, 0.18);
}

.footer {
  padding: 2.5rem 0;
  background: #0f172a;
  color: #cbd5e1;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2rem;
}

.footer-brand p {
  margin: 0.75rem 0 0;
  color: #9ca3af;
  max-width: 28rem;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 0.75rem;
}

.footer-links a,
.footer-contact a {
  color: #cbd5e1;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--primary);
}

.advisor-btn {
  display: inline-flex;
}

@media (max-width: 960px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 840px) {
  .header-inner,
  .grid-two,
  .contact-grid,
  .grid-four,
  .reviews-header {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3rem;
  }

  .review-summary {
    text-align: left;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .gallery-grid img {
    height: 150px;
  }

  .section-light,
  .section-dark {
    padding: 2.5rem 0;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 1rem;
  }

  h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
  }

  h3 {
    font-size: 1.1rem;
  }

  .header-inner {
    gap: 0.5rem;
    padding: 0.75rem 0;
  }

  .brand-logo {
    width: 2.5rem;
    height: 2.5rem;
  }

  .brand-mark {
    width: 2.2rem;
    height: 2.2rem;
    font-size: 0.9rem;
  }

  .brand-text {
    font-size: 0.85rem;
  }

  .brand-subtitle {
    font-size: 0.65rem;
  }

  .site-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    display: none;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(16, 36, 68, 0.1);
    z-index: 35;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }

  .site-nav.active {
    display: flex;
  }

  .site-nav a {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(16, 36, 68, 0.05);
    font-size: 1rem;
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .site-nav a:last-child {
    border-bottom: none;
  }

  .site-nav a:active {
    background: rgba(0, 76, 140, 0.08);
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .advisor-btn {
    padding: 0.85rem 1.3rem;
    font-size: 0.85rem;
    min-height: 44px;
  }

  .datetime-display {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.75rem;
  }

  .gallery-grid img {
    height: 120px;
  }

  .info-card,
  .service-card,
  .testimonial-card {
    padding: 1.5rem;
  }

  .info-card h3,
  .service-card strong {
    font-size: 1rem;
  }

  .service-card::before {
    font-size: 2rem;
    top: 1rem;
    right: 1rem;
  }

  .contact-form label {
    font-size: 0.95rem;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 0.85rem;
    font-size: 1rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .eyebrow {
    font-size: 0.75rem;
  }

  .section-light,
  .section-dark {
    padding: 2rem 0;
  }
}

/* Founder Section */
.founder {
  background: var(--surface);
}

.founder-grid {
  align-items: center;
}

.founder-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.founder-image {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--shadow);
  border: 4px solid var(--primary);
}

@media (max-width: 840px) {
  .founder-image {
    width: 220px;
    height: 220px;
  }

  .founder-grid {
    grid-template-columns: 1fr;
  }
}
