/* ── RESET & BASE ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #1e2f40;
  --navy-mid:#253648;
  --dark:    #1a1a1a;
  --mid:     #555;
  --light:   #f7f7f5;
  --white:   #ffffff;
  --accent:  #3b6ea5;
  --copper:  #D97642;
  --copper-dark: #c0622e;
  --radius:  8px;
  --font:    'Inter', system-ui, sans-serif;
  --transition: .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── BUTTONS ─────────────────────────────────────────────────────────── */
.btn-outline {
  display: inline-block;
  padding: .75rem 2rem;
  border: 2px solid var(--navy);
  border-radius: 30px;
  color: var(--navy);
  font-weight: 600;
  font-size: .95rem;
  transition: background var(--transition), color var(--transition);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-navy {
  display: inline-block;
  padding: .75rem 2rem;
  background: var(--navy);
  border-radius: 30px;
  color: var(--white);
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid var(--navy);
  transition: background var(--transition);
  cursor: pointer;
}
.btn-navy:hover { background: var(--accent); border-color: var(--accent); }

.btn-primary {
  display: inline-block;
  padding: .85rem 2.25rem;
  background: var(--copper);
  border-radius: 30px;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid var(--copper);
  transition: background var(--transition), border-color var(--transition);
  cursor: pointer;
  letter-spacing: .02em;
}
.btn-primary:hover { background: var(--copper-dark); border-color: var(--copper-dark); }

/* ── HEADER / NAV ────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 2.5rem;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.logo { height: 52px; width: auto; }

nav ul { display: flex; gap: 2rem; }
nav a {
  font-size: .95rem;
  font-weight: 500;
  color: var(--dark);
  position: relative;
  transition: color var(--transition);
}
nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--navy);
  transition: width var(--transition);
}
nav a:hover, nav a.active { color: var(--navy); }
nav a:hover::after, nav a.active::after { width: 100%; }

.nav-toggle {
  display: none;
  background: none; border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--navy);
}

/* ── HERO ────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.15) 0%, rgba(0,0,0,.6) 100%);
}
.hero-img,
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-card {
  position: relative;
  z-index: 1;
  background: rgba(30, 47, 64, .85);
  backdrop-filter: blur(4px);
  color: var(--white);
  padding: 3.5rem 3rem;
  max-width: 480px;
  margin-right: 6vw;
  border-radius: var(--radius);
}
.hero-card h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.hero-card p {
  font-size: 1.1rem;
  opacity: .9;
}

/* ── BADGE STRIP ─────────────────────────────────────────────────────── */
.badge-strip {
  background: var(--light);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2.5rem 2rem;
  border-top: 1px solid rgba(0,0,0,.06);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.badge-strip img {
  max-width: 700px;
  width: 100%;
  height: auto;
}

/* ── INFO ROWS ────────────────────────────────────────────────────────── */
.info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2.5rem;
}

/* Alternate row: image left, text right */
.info-row--alt {
  background: var(--light);
  max-width: 100%;
  padding-left: calc((100% - 1200px) / 2 + 2.5rem);
  padding-right: calc((100% - 1200px) / 2 + 2.5rem);
}

.info-text h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .75rem;
}
.info-text p { color: var(--mid); margin-bottom: 1.25rem; }
.info-text .btn-outline { margin-top: 1rem; }

.info-photo img {
  border-radius: var(--radius);
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  box-shadow: 0 16px 48px rgba(0,0,0,.10);
}

/* ── YOUTUBE SECTION ─────────────────────────────────────────────────── */

/* ── SECTION DIVIDER ─────────────────────────────────────────────────── */
.section-divider {
  position: relative;
  line-height: 0;
  background: var(--light);
}
.section-divider svg {
  display: block;
  width: 100%;
  height: 80px;
}
.divider-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -70%);
  background: var(--navy);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  z-index: 2;
}

.youtube-section {
  background: var(--light);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2.5rem;
}

.youtube-thumb {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,.14);
  background: #000;
}
.youtube-thumb img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  opacity: .85;
  transition: opacity var(--transition);
}
.youtube-thumb:hover img { opacity: .7; }

.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: transform var(--transition);
}
.play-btn:hover { transform: translate(-50%, -50%) scale(1.1); }

.youtube-text h2 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--navy);
  margin-bottom: 1rem;
}
.youtube-text p { color: var(--mid); margin-bottom: 1.75rem; }

/* ── INSTAGRAM SECTION ───────────────────────────────────────────────── */
.instagram-section {
  text-align: center;
  padding: 5rem 2rem;
  background: var(--white);
}
.instagram-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}
.instagram-section p {
  color: var(--mid);
  margin-bottom: 1.75rem;
}

/* ── ABOUT HERO ──────────────────────────────────────────────────────── */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 7rem 2.5rem 5rem;
}
.about-text h1 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.about-text p { color: var(--mid); margin-bottom: 1rem; }
.about-byline { font-style: italic; color: var(--navy) !important; font-weight: 600; }
.about-text .btn-outline { margin-top: 1rem; }

.about-photo img {
  border-radius: var(--radius);
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: top;
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
}

/* ── REVIEWS ─────────────────────────────────────────────────────────── */
.reviews-section {
  background: var(--light);
  text-align: center;
  padding: 6rem 2.5rem;
}
.reviews-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}
.reviews-sub { color: var(--mid); margin-bottom: 3rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
}
.stars { color: #f5a623; font-size: 1.25rem; margin-bottom: .75rem; }
.review-card p { color: var(--mid); font-style: italic; margin-bottom: 1rem; line-height: 1.7; }
.review-card strong { display: block; font-weight: 700; color: var(--navy); }
.review-card span { font-size: .85rem; color: #999; }

/* ── CONTACT SECTION ─────────────────────────────────────────────────── */
.contact-section {
  position: relative;
  padding: 7rem 2.5rem;
  background:
    linear-gradient(rgba(30,47,64,.82), rgba(30,47,64,.82)),
    url('https://assets.zyrosite.com/cdn-cgi/image/format=auto,w=1920,fit=crop/bC7VkkcEf53BH5hZ/width_1600-D0Z2NpzVIsplZpUZ.webp') center/cover no-repeat;
}
.contact-overlay {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.contact-overlay h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .5rem;
}
.contact-overlay > p { color: rgba(255,255,255,.8); margin-bottom: 2.5rem; }

.contact-form { text-align: left; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  margin-bottom: .4rem;
}
.req { color: #ff8a80; }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius);
  background: rgba(255,255,255,.12);
  color: var(--white);
  font-family: var(--font);
  font-size: .95rem;
  transition: border-color var(--transition), background var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.5); }
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.18);
}
.contact-form .btn-navy {
  width: 100%;
  margin-top: .5rem;
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  font-size: 1rem;
}
.contact-form .btn-navy:hover { background: var(--light); }

/* ── FOOTER ──────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 3rem 2rem;
}
.site-footer h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.social-links {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  transition: background var(--transition), transform var(--transition);
}
.social-links a:hover { background: rgba(255,255,255,.25); transform: translateY(-2px); }
.site-footer p { font-size: .9rem; opacity: .75; }
.site-footer p a:hover { opacity: 1; text-decoration: underline; }

/* ── RESPONSIVE ──────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .site-header { padding: .85rem 1.25rem; }

  nav { display: none; position: absolute; top: 100%; left: 0; right: 0;
        background: var(--white); border-bottom: 1px solid rgba(0,0,0,.08);
        padding: 1rem 1.5rem; }
  nav.open { display: block; }
  nav ul { flex-direction: column; gap: 1rem; }
  .nav-toggle { display: block; }

  .hero { min-height: 70vh; justify-content: center; }
  .hero-card { margin: 1rem; padding: 2rem 1.5rem; }

  .info-row,
  .info-row--alt,
  .youtube-section,
  .about-hero { grid-template-columns: 1fr; padding: 3rem 1.25rem; gap: 2rem; }

  .info-row--alt { padding-left: 1.25rem; padding-right: 1.25rem; }

  /* Stack image below text on mobile for alt row */
  .info-row--alt .info-photo { order: -1; }

  .info-photo img,
  .about-photo img { max-height: 260px; }
  .youtube-thumb img { height: 240px; }

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

  .contact-section { padding: 4rem 1.25rem; }
}

@media (max-width: 480px) {
  .hero-card h1 { font-size: 1.75rem; }
  .youtube-text h2 { font-size: 1.5rem; }
  .reviews-section h2 { font-size: 1.5rem; }
}
