/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Urbanist', Arial, sans-serif;
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  background: #fff;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@300;400;500;600;700&family=Merriweather:ital,wght@0,400;0,700;1,400&family=Poppins:wght@300;400;500&display=swap');

:root {
  --red: #cc001b;
  --black: #000;
  --white: #fff;
  --light: #f8f8f8;
  --max: 1200px;
}

/* ── NAV ── */
#nav {
  position: sticky; top: 0; z-index: 1000;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,.1);
  text-align: center;
  padding: 16px 5% 0;
}
.nav-logo { display: inline-block; margin-bottom: 12px; }
.nav-logo img { height: 72px; width: auto; margin: 0 auto; }
.nav-menu {
  display: flex; justify-content: center; align-items: center;
  gap: 0; list-style: none; flex-wrap: wrap;
}
.nav-menu a {
  font-family: 'Poppins', sans-serif;
  font-size: 14px; font-weight: 400;
  color: #111; padding: 10px 18px;
  display: block; transition: color .2s;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--red); }
.nav-menu .dropdown { position: relative; }
.nav-menu .dropdown > a::after { content: " ▾"; font-size: 10px; }
.nav-menu .dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: #fff; border-top: 3px solid var(--red);
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  min-width: 220px; padding: 8px 0; z-index: 100;
}
.nav-menu .dropdown:hover .dropdown-menu { display: block; }
.nav-menu .dropdown-menu a {
  display: block; padding: 10px 20px;
  font-size: 13px; color: #333; text-align: left;
}
.nav-menu .dropdown-menu a:hover { color: var(--red); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: #111; }
#nav-toggle { display: none; }
#nav-toggle:checked ~ .nav-mobile { display: flex; }
#nav-toggle:checked ~ .nav-top .hamburger span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
#nav-toggle:checked ~ .nav-top .hamburger span:nth-child(2) { opacity: 0; }
#nav-toggle:checked ~ .nav-top .hamburger span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.nav-top { display: flex; align-items: center; justify-content: space-between; padding: 12px 5%; }
.nav-mobile {
  display: none; flex-direction: column;
  background: #fff; padding: 12px 5% 20px;
  border-top: 1px solid #eee;
  text-align: left;
}
.nav-mobile a { font-family: 'Poppins',sans-serif; font-size: 15px; color: #333; padding: 11px 0; border-bottom: 1px solid #f0f0f0; }
.nav-mobile a:hover { color: var(--red); }
.nav-mobile .sub { font-size: 11px; color: #999; text-transform: uppercase; letter-spacing: 2px; padding: 14px 0 4px; }

/* ── HERO (white split) ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  align-items: center;
  background: #fff;
}
.hero-text {
  padding: 60px 5% 60px 7%;
}
.hero-tags {
  font-family: 'Poppins', sans-serif;
  font-size: 13px; color: var(--red);
  margin-bottom: 20px; text-align: center;
}
.hero h1 {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 700; line-height: 1.35;
  color: #111; margin-bottom: 16px; text-align: center;
}
.hero-subtags {
  font-family: 'Poppins', sans-serif;
  font-size: 13px; color: var(--red);
  text-align: center; margin-bottom: 28px;
}
.hero-btn {
  display: inline-block;
  background: #111; color: #fff;
  padding: 12px 32px; border-radius: 4px;
  font-family: 'Poppins', sans-serif; font-size: 14px;
  font-weight: 500;
}
.hero-btn:hover { background: #333; }
.hero-img {
  height: 600px; overflow: hidden;
  display: flex; align-items: flex-start;
}
.hero-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  border-radius: 12px 12px 12px 80px;
  margin: 16px 16px 16px 0;
}

/* ── ABOUT DARK SECTION ── */
.about-dark {
  position: relative;
  background: #2a2a2a;
  min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
}
.about-dark-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top;
  opacity: .4;
}
.about-dark-content {
  position: relative; z-index: 2;
  max-width: 900px; padding: 80px 5%;
  color: #fff;
}
.about-dark h2 {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  margin-bottom: 8px;
}
.about-dark .cn {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-family: 'Merriweather', serif;
  margin-bottom: 28px;
}
.about-dark p {
  font-size: 15px; line-height: 1.9;
  color: rgba(255,255,255,.88);
  text-align: justify;
  max-width: 800px; margin: 0 auto;
}

/* ── GUIDING PRINCIPLES (red bg full width) ── */
.principles {
  position: relative;
  min-height: 600px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.principles-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.principles-overlay {
  position: absolute; inset: 0;
  background: rgba(150,0,20,.45);
}
.principles-content {
  position: relative; z-index: 2;
  width: 100%; padding: 60px 5% 60px;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: flex-end; gap: 40px;
}
.principles-left { color: #fff; }
.principles-label {
  font-family: 'Poppins', sans-serif;
  font-size: 13px; margin-bottom: 8px;
  opacity: .8;
}
.principles-left h2 {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700; line-height: 1.3;
}
.principles-right {
  color: #fff;
  font-size: 14px; line-height: 1.8;
  text-align: justify;
}

/* ── MISSION / VISION (50/50 split) ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.split-img {
  overflow: hidden;
}
.split-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  display: block;
}
.split-text {
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 60px 6%;
  background: #fff;
}
.split-text h2 {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700; color: #111;
  margin-bottom: 12px;
}
.split-text h3 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 400; color: var(--red);
  line-height: 1.4; margin-bottom: 20px;
}
.split-text p {
  font-size: 15px; color: #444;
  line-height: 1.85; text-align: justify;
}

/* ── LIFE IS DRAMATIC ── */
.dramatic {
  position: relative;
  min-height: 500px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.dramatic-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.dramatic-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.35);
}
.dramatic-text {
  position: relative; z-index: 2;
  padding: 60px 5% 60px;
  color: #fff;
}
.dramatic-text h2 {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 700; line-height: 1.3;
  max-width: 1000px;
}

/* ── TESTIMONIALS (black bg carousel) ── */
.testimonials {
  background: #000;
  padding: 80px 5%;
  text-align: center;
}
.testimonials h2 {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #fff; margin-bottom: 48px;
}
.testi-carousel {
  position: relative;
  max-width: 1100px; margin: 0 auto;
}
.testi-track { overflow: hidden; }
.testi-slides {
  display: flex; transition: transform .4s ease;
}
.testi-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: #fff;
  padding: 32px 28px;
  text-align: left;
}
.testi-card p {
  font-size: 14px; color: #333;
  line-height: 1.8; margin-bottom: 20px;
  text-align: justify;
}
.testi-card .name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600; font-size: 14px;
  color: #111; text-align: center;
}
.testi-prev, .testi-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: transparent; border: none; cursor: pointer;
  color: #fff; font-size: 28px; padding: 8px;
  z-index: 10;
}
.testi-prev { left: -40px; }
.testi-next { right: -40px; }
.academy-note {
  color: rgba(255,255,255,.75);
  font-size: 15px; margin-top: 40px; line-height: 1.7;
}
.academy-note a { color: #fff; text-decoration: underline; }

/* ── CTA BLACK ── */
.cta-black {
  background: #000;
  padding: 80px 5%;
  text-align: center;
  border-top: 1px solid #222;
}
.cta-black .sub {
  font-family: 'Poppins', sans-serif;
  font-size: 16px; color: rgba(255,255,255,.7);
  margin-bottom: 16px;
}
.cta-black h2 {
  font-family: 'Merriweather', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: #fff; line-height: 1.25;
  margin-bottom: 48px;
}
.contact-icons {
  display: flex; justify-content: center;
  gap: 60px; flex-wrap: wrap;
}
.contact-icon a {
  display: flex; flex-direction: column;
  align-items: center; gap: 12px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
}
.contact-icon .ico {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; transition: background .2s;
}
.contact-icon a:hover .ico { background: rgba(255,255,255,.25); }

/* ── FOOTER ── */
footer {
  background: #000;
  border-top: 1px solid #222;
  padding: 24px 5%;
  text-align: center;
  color: rgba(255,255,255,.5);
  font-size: 13px;
}
footer a { color: rgba(255,255,255,.6); }
footer a:hover { color: #fff; }
.footer-academy { margin-top: 8px; }
.footer-academy a { color: rgba(255,255,255,.7); text-decoration: underline; }

/* ── WA FAB ── */
.wa-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  width: 56px; height: 56px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: transform .2s;
}
.wa-fab:hover { transform: scale(1.08); }
.wa-fab svg { width: 28px; height: 28px; fill: #fff; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: #111;
  padding: 80px 5% 60px;
  text-align: center;
}
.page-hero .label {
  font-family: 'Poppins', sans-serif;
  font-size: 12px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--red);
  display: block; margin-bottom: 12px;
}
.page-hero h1 {
  font-family: 'Merriweather', serif;
  color: #fff; font-size: clamp(1.6rem,3vw,2.8rem);
  margin-bottom: 12px;
}
.page-hero p { color: rgba(255,255,255,.7); font-size: 1.05rem; }

/* ── INNER PAGE SECTIONS ── */
.section { padding: 80px 5%; }
.section--light { background: #f8f8f4; }
.container { max-width: 1200px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 48px; }
.section-head .label {
  font-family: 'Poppins', sans-serif;
  font-size: 12px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--red);
  display: block; margin-bottom: 10px;
}
.section-head h2 {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.5rem,2.5vw,2.2rem); color: #111;
  margin-bottom: 8px;
}
.section-head p { color: #666; max-width: 640px; margin: 0 auto; }
.red { color: var(--red); }

/* Grid layouts */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-2-auto { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

/* Service cards */
.service-card {
  background: #fff; border-radius: 4px;
  overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,.07);
  transition: transform .2s, box-shadow .2s;
}
.service-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,.12); }
.service-card-img { height: 180px; overflow: hidden; background: #f0f0f0; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; }
.service-card-body { padding: 20px; }
.service-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; color: #111; }
.service-card p { font-size: 13px; color: #666; margin-bottom: 12px; line-height: 1.6; }
.service-card .link { font-size: 13px; font-weight: 600; color: var(--red); }

/* Testimonial cards (inner pages - white bg) */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 40px; }
.testi-card-light {
  background: #fff; border-left: 4px solid var(--red);
  padding: 24px; box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.testi-card-light p { font-size: 14px; color: #444; line-height: 1.75; margin-bottom: 14px; }
.testi-card-light .name { font-weight: 700; font-size: 13px; color: #111; }

/* Blog cards */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.blog-card { background: #fff; overflow: hidden; transition: transform .2s; }
.blog-card:hover { transform: translateY(-3px); }
.blog-card-img { height: 200px; overflow: hidden; background: #eee; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 16px 0; }
.blog-date { font-size: 12px; color: #999; margin-bottom: 6px; }
.blog-card h3 { font-size: 15px; line-height: 1.5; color: #111; margin-bottom: 6px; }
.blog-card p { font-size: 13px; color: #666; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.gallery-item { aspect-ratio: 1; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.gallery-item:hover img { transform: scale(1.05); }

/* Contact page */
.contact-methods { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.contact-method {
  display: flex; align-items: center; gap: 16px;
  background: #f8f8f4; padding: 18px 20px;
  border-radius: 4px; color: inherit; text-decoration: none;
}
.contact-method .ico { font-size: 26px; }
.contact-method h4 { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.contact-method p { font-size: 13px; color: #666; margin: 0; }

/* Btn */
.btn {
  display: inline-block; padding: 12px 32px;
  font-family: 'Poppins', sans-serif; font-size: 14px;
  font-weight: 500; border-radius: 4px; cursor: pointer;
  transition: all .2s; text-align: center;
}
.btn--black { background: #111; color: #fff; }
.btn--black:hover { background: #333; }
.btn--red { background: var(--red); color: #fff; }
.btn--red:hover { background: #a00016; }
.btn--wa { background: #25D366; color: #fff; }
.btn--wa:hover { background: #1da851; }
.btn--outline-white { background: transparent; color: #fff; border: 2px solid #fff; }
.btn--outline-white:hover { background: #fff; color: #111; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-img { height: 400px; }
  .hero-img img { border-radius: 0; margin: 0; }
  .hero-text { padding: 48px 5%; }
  .split { grid-template-columns: 1fr; }
  .split-img { height: 350px; }
  .principles-content { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .testi-slide { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .contact-icons { gap: 32px; }
  #nav { padding: 0; }
  .nav-logo { display: none; }
  .nav-top .nav-logo { display: block; }
  .nav-menu { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 600px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-2-auto { grid-template-columns: 1fr; }
  .testi-slide { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .contact-icons { gap: 24px; }
  .testi-prev { left: -20px; }
  .testi-next { right: -20px; }
}
