@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Open+Sans:wght@300;400;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #C0001A;
  --black: #0a0a0a;
  --white: #fff;
  --gray: #f2f2f0;
  --mid: #e0e0de;
  --text: #222;
  --muted: #555;
}

html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; background: var(--white); color: var(--text); }

/* ── NAV ── */
.site-nav {
  position: sticky; top: 0; z-index: 300;
  background: #f5f5f3;
  border-bottom: 1px solid #d8d8d6;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 64px;
}
.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-brand img { width: 44px; height: 44px; object-fit: contain; }
.nav-brand-text {
  font-family: 'Oswald', sans-serif;
  font-size: 12px; font-weight: 700;
  color: var(--red); letter-spacing: 0.06em;
  text-transform: uppercase; line-height: 1.3;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 13.5px; font-weight: 600;
  color: var(--black); text-decoration: none;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--red); }
.nav-cta {
  font-family: 'Oswald', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--black); color: var(--white);
  padding: 9px 20px; text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--red); }

/* Mobile */
.hamburger {
  display: none; background: none; border: none;
  cursor: pointer; padding: 4px; flex-direction: column; gap: 5px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--black); transition: all 0.25s;
}
.mobile-nav {
  display: none; background: #f5f5f3;
  border-bottom: 1px solid #d8d8d6;
  padding: 1rem 40px 1.5rem;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.mobile-nav a {
  font-family: 'Oswald', sans-serif;
  font-size: 15px; font-weight: 600;
  color: var(--black); text-decoration: none;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.mobile-nav a:hover { color: var(--red); }

/* ── HERO ── */
.hero {
  position: relative; min-height: 480px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.2) 55%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 3.5rem 3rem 4rem;
}
.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700; line-height: 1.0;
  color: var(--red); text-transform: uppercase;
  letter-spacing: 0.03em; margin-bottom: 0.5rem;
}
.hero-sub {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-style: italic; color: var(--white);
  margin-bottom: 1.75rem; font-weight: 400;
}
.hero-wave {
  position: absolute; bottom: -1px; left: 0; width: 100%; line-height: 0; z-index: 2;
}

/* ── BUTTONS ── */
.btn { display: inline-block; text-decoration: none; border: none; cursor: pointer; }
.btn-dark {
  background: var(--black); color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 13.5px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 12px 28px; transition: background 0.2s;
}
.btn-dark:hover { background: var(--red); }
.btn-red {
  background: var(--red); color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 13.5px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 12px 28px; transition: background 0.2s;
}
.btn-red:hover { background: #a0001500; filter: brightness(1.15); }

/* ── SECTION TITLES ── */
.sec-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; text-align: center;
  color: var(--black); margin-bottom: 1.25rem;
}
.sec-body {
  font-size: 15px; color: var(--muted);
  line-height: 1.9; max-width: 640px;
  margin: 0 auto; text-align: center;
}

/* ── PHILOSOPHY ── */
.philosophy { padding: 5.5rem 2rem 4.5rem; background: var(--white); }

/* ── BELT BAND ── */
.belt-band {
  height: 340px; overflow: hidden;
}
.belt-band img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* ── MAIN FOCUS ── */
.main-focus { padding: 5rem 2rem; background: var(--gray); }
.focus-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2.5rem; max-width: 960px; margin: 3rem auto 0;
}
.focus-card img {
  width: 100%; aspect-ratio: 1/1;
  object-fit: cover; display: block; margin-bottom: 1rem;
}
.focus-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.07em;
  margin-bottom: 0.6rem;
}
.focus-card p { font-size: 13.5px; color: var(--muted); line-height: 1.85; }

/* ── SCHEDULE ── */
.schedule { padding: 5rem 2rem; background: var(--gray); border-top: 1px solid var(--mid); text-align: center; }
.schedule-info { margin-top: 1.5rem; font-size: 15px; color: var(--text); line-height: 2.1; }
.schedule-info strong {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: 15px; letter-spacing: 0.04em;
}
.schedule-note { margin-top: 0.75rem; font-size: 13.5px; color: var(--muted); font-style: italic; }

/* ── TESTIMONIALS ── */
.testimonials { padding: 5rem 2rem; background: var(--gray); border-top: 1px solid var(--mid); }
.testimonials .sec-title { margin-bottom: 3rem; }
.testi-wrap { max-width: 600px; margin: 0 auto; }
.testi-item { margin-bottom: 2.75rem; text-align: center; }
.testi-name { font-size: 12.5px; color: #888; letter-spacing: 0.06em; margin-bottom: 0.4rem; text-transform: uppercase; }
.testi-quote { font-size: 14.5px; color: #444; line-height: 1.85; font-style: italic; }

/* ── CONTACT ── */
.contact-section {
  position: relative; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  padding: 5rem 2rem;
}
.contact-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.contact-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.38); }
.contact-card {
  position: relative; z-index: 2;
  background: rgba(255,255,255,0.93);
  padding: 3rem 2.5rem;
  width: 100%; max-width: 520px;
}
.contact-card h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem,4vw,2.6rem);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; text-align: center;
  margin-bottom: 2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block; font-size: 12.5px;
  font-weight: 600; color: #333; margin-bottom: 5px;
}
.form-group label .req { color: var(--red); }
.form-group input, .form-group textarea {
  width: 100%; padding: 10px 12px;
  border: 1px solid #ccc; background: #f8f8f8;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px; color: #333; outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--black); background: var(--white);
}
.form-group textarea { min-height: 100px; resize: vertical; }
.phone-wrap { display: flex; }
.phone-flag {
  display: flex; align-items: center;
  padding: 10px 10px; border: 1px solid #ccc;
  border-right: none; background: #f0f0f0;
  font-size: 13px; color: #555; white-space: nowrap;
}
.phone-wrap input { flex: 1; border-left: none; }
.submit-btn {
  width: 100%; padding: 13px; margin-top: 0.5rem;
  background: var(--black); color: var(--white); border: none; cursor: pointer;
  font-family: 'Oswald', sans-serif;
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  transition: background 0.2s;
}
.submit-btn:hover { background: var(--red); }
.form-success {
  display: none; text-align: center;
  color: #1a6b2a; font-size: 14px;
  font-weight: 600; margin-top: 1rem;
}

/* ── FOOTER ── */
.site-footer {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid #ddd;
}
.footer-col {
  padding: 2rem 1.5rem;
  border-right: 1px solid #ddd;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
}
.footer-col:last-child { border-right: none; }
.footer-col p { font-size: 13px; color: #555; line-height: 1.9; }
.footer-col a { font-size: 13px; color: #555; text-decoration: none; display: block; margin-bottom: 5px; }
.footer-col a:hover { color: var(--red); text-decoration: underline; }
.footer-logo-img { width: 64px; margin-bottom: 12px; }
.social-row { display: flex; gap: 12px; margin-top: 14px; }
.social-row a {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--black); display: flex;
  align-items: center; justify-content: center;
  transition: background 0.2s;
}
.social-row a:hover { background: var(--red); }
.social-row svg { width: 15px; height: 15px; fill: white; }

/* ── LEGAL PAGE ── */
.legal-wrap { max-width: 800px; margin: 0 auto; padding: 5rem 2rem 6rem; }
.legal-wrap h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem,4vw,2.5rem);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 3rem;
  border-bottom: 2px solid var(--red); padding-bottom: 1rem;
}
.legal-section { margin-bottom: 3.5rem; }
.legal-section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.35rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 1rem; color: var(--black);
}
.legal-section p, .legal-section li {
  font-size: 14.5px; color: var(--muted);
  line-height: 1.9; margin-bottom: 0.85rem;
}
.legal-section ul { padding-left: 1.5rem; }
.legal-section li { margin-bottom: 0.5rem; }
.legal-date { font-size: 12px; color: #999; margin-bottom: 2rem; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .site-nav { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { padding: 1rem 20px 1.5rem; }
  .hero-content { padding: 2.5rem 1.5rem 3.5rem; }
  .focus-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-col { border-right: none; border-bottom: 1px solid #ddd; }
  .footer-col:last-child { border-bottom: none; }
  .contact-card { padding: 2rem 1.25rem; }
  .belt-band { height: 220px; }
}
