/* ════════════════════════════════════════
   COACH CHABEDI — Global Styles
   ════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* ── TOKENS ── */
:root {
  --teal:        #1a5c6b;
  --teal-light:  #2a8a9f;
  --teal-bright: #0fc4dc;
  --dark:        #0d1b1e;
  --charcoal:    #1c2e32;
  --slate:       #3a5560;
  --olive:       #8fa86b;
  --olive-light: #b8cc96;
  --cream:       #f4f0e8;
  --white:       #ffffff;
  --gray:        #6b8088;
  --light-bg:    #eef4f6;
  --border:      rgba(15,196,220,0.15);
  --nav-h:       72px;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── UTILITY ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.section-tag {
  display: flex; align-items: center; gap: .5rem;
  font-family: 'Syne', sans-serif; font-size: .72rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; color: var(--teal);
  margin-bottom: .75rem;
}
.section-tag::before {
  content: ''; display: block; width: 24px; height: 2px; background: var(--teal);
}
.section-tag.light { color: var(--teal-bright); }
.section-tag.light::before { background: var(--teal-bright); }
.section-tag.center { justify-content: center; }
.section-tag.center::before { display: none; }

.section-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400; line-height: 1.15; color: var(--dark); margin-bottom: 1rem;
}
.section-h2.light { color: var(--white); }
.section-h2.center { text-align: center; }
.section-sub {
  font-size: 1rem; line-height: 1.7; color: var(--gray); max-width: 560px;
}
.section-sub.center { margin: 0 auto; text-align: center; }
.section-sub.light { color: rgba(255,255,255,.55); }

.btn-primary {
  display: inline-block;
  background: var(--teal-bright); color: var(--dark);
  padding: .85rem 2rem;
  border: none; border-radius: 4px;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: .85rem;
  letter-spacing: .06em; text-transform: uppercase;
  cursor: pointer; transition: all .2s;
}
.btn-primary:hover {
  background: var(--olive-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15,196,220,.3);
}
.btn-outline {
  display: inline-block;
  background: transparent; color: var(--white);
  padding: .85rem 2rem;
  border: 1px solid rgba(255,255,255,.3); border-radius: 4px;
  font-family: 'Syne', sans-serif; font-weight: 600; font-size: .85rem;
  letter-spacing: .06em; text-transform: uppercase;
  cursor: pointer; transition: all .2s;
}
.btn-outline:hover { border-color: var(--teal-bright); color: var(--teal-bright); }

.fade-up { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: var(--nav-h);
  background: rgba(13,27,30,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}
.nav-logo {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.1rem;
  color: var(--teal-bright); letter-spacing: .05em;
}
.nav-logo span { color: var(--olive-light); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a {
  font-family: 'Syne', sans-serif; font-size: .82rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.75); transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal-bright); }
.nav-cta {
  background: var(--teal-bright); color: var(--dark) !important;
  padding: .5rem 1.4rem; border-radius: 4px; font-weight: 700 !important;
  letter-spacing: .06em !important; transition: background .2s, transform .2s !important;
}
.nav-cta:hover { background: var(--olive-light) !important; transform: translateY(-1px); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: all .3s;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--charcoal); padding: 1.25rem 5%;
  display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
}
.trust-item {
  display: flex; align-items: center; gap: .6rem;
  font-family: 'Syne', sans-serif; font-size: .78rem; font-weight: 600;
  letter-spacing: .08em; color: rgba(255,255,255,.7); text-transform: uppercase;
}
.trust-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal-bright); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--dark); padding: calc(var(--nav-h) + 4rem) 5% 4rem;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal-bright), transparent);
}
.page-hero-inner { max-width: 760px; position: relative; z-index: 2; }
.page-hero-inner .section-tag { margin-bottom: 1rem; }
.page-hero-inner h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 300; color: var(--white); line-height: 1.1; margin-bottom: 1rem;
}
.page-hero-inner h1 em { font-style: italic; color: var(--teal-bright); }
.page-hero-inner p { font-size: 1.05rem; line-height: 1.7; color: rgba(255,255,255,.65); }

/* ── QUOTE BAND ── */
.quote-band {
  background: var(--teal); padding: 5rem 5%; text-align: center;
  position: relative; overflow: hidden;
}
.quote-band::before {
  content: '"'; position: absolute; top: -2rem; left: 50%; transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif; font-size: 20rem;
  color: rgba(255,255,255,.04); line-height: 1; pointer-events: none;
}
.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-style: italic; font-weight: 300; color: var(--white);
  max-width: 800px; margin: 0 auto 1.5rem; line-height: 1.4; position: relative; z-index: 1;
}
.quote-attr {
  font-family: 'Syne', sans-serif; font-size: .8rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.6); position: relative; z-index: 1;
}

/* ── DISCOVERY CTA ── */
.discovery-cta {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--teal) 100%);
  padding: 5rem 5%; text-align: center;
}
.discovery-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300; color: var(--white);
  margin-bottom: 1rem;
}
.discovery-cta p { font-size: 1rem; color: rgba(255,255,255,.65); margin-bottom: 2rem; }

/* ── FOOTER ── */
footer {
  background: var(--dark); padding: 4rem 5% 2rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem;
}
.footer-logo {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.2rem;
  color: var(--teal-bright); letter-spacing: .05em; margin-bottom: 1rem;
}
.footer-logo span { color: var(--olive-light); }
.footer-tagline { font-size: .88rem; line-height: 1.7; color: rgba(255,255,255,.45); margin-bottom: 1.5rem; }
.social-links { display: flex; gap: .75rem; }
.social-link {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.15); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); font-size: .8rem; transition: all .2s;
}
.social-link:hover { border-color: var(--teal-bright); color: var(--teal-bright); }
.footer-col h4 {
  font-family: 'Syne', sans-serif; font-size: .75rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.7);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul li a { font-size: .88rem; color: rgba(255,255,255,.45); transition: color .2s; }
.footer-col ul li a:hover { color: var(--teal-bright); }
.footer-contact-item {
  font-size: .88rem; color: rgba(255,255,255,.45); margin-bottom: .6rem;
  display: flex; align-items: center; gap: .5rem;
}
.footer-contact-item a { color: rgba(255,255,255,.45); transition: color .2s; }
.footer-contact-item a:hover { color: var(--teal-bright); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: .8rem; color: rgba(255,255,255,.3); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 0 4%; }
  .nav-links {
    display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--dark); flex-direction: column;
    padding: 2rem 4%; gap: 1.5rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .trust-bar { gap: 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
}
