﻿/* =====================================================
   TCC — The Chronograph Collective
   Luxury Dark Theme
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* ── Variables ───────────────────────────────────────── */
:root {
  --bg:          #080808;
  --bg-2:        #0f0f0f;
  --bg-card:     #121212;
  --bg-card-h:   #181818;
  --gold:        #C9A96E;
  --gold-light:  #E8D4A8;
  --gold-dark:   #8B6F40;
  --text:        #F5F0E8;
  --text-muted:  #B0A89E;
  --text-dim:    #706A64;
  --border:      rgba(201, 169, 110, 0.12);
  --border-h:    rgba(201, 169, 110, 0.35);
  --serif:       'Cormorant Garamond', Georgia, serif;
  --sans:        'Jost', system-ui, sans-serif;
  --radius:      2px;
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17.1px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--sans); }

/* ── Typography ──────────────────────────────────────── */
.serif { font-family: var(--serif); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.section-label {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold-light);
}

.section-body {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 52ch;
  line-height: 1.9;
}

/* ── Gold Divider ────────────────────────────────────── */
.gold-line {
  width: 3rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 1.5rem;
}

.gold-line.center { margin-left: auto; margin-right: auto; }

/* ── Layout Helpers ──────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 7rem 0; }
.section-sm { padding: 4rem 0; }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: var(--transition);
  border-radius: var(--radius);
}

.btn-gold {
  background: var(--gold);
  color: #080808;
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.25);
}

.btn-outline {
  border: 1px solid var(--border-h);
  color: var(--text);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}

.btn-ghost {
  color: var(--gold);
  padding-left: 0;
}
.btn-ghost::after {
  content: '→';
  transition: transform 0.25s;
}
.btn-ghost:hover::after { transform: translateX(4px); }

/* ═══════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: background 0.4s, padding 0.4s, border-bottom 0.4s;
}

#navbar.scrolled {
  background: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(12px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  line-height: 1;
}

.nav-logo-img {
  height: 32px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-logo-img {
  height: 42px;
  width: auto;
  opacity: 0.9;
  display: block;
  margin-bottom: 8px;
}

/* Legacy text spans kept for graceful fallback */
.nav-logo-main {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text);
}

.nav-logo-sub {
  font-size: 1.0rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.25s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border-h);
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-cta:hover {
  background: var(--gold);
  color: #080808;
  border-color: var(--gold);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  padding: 2px 0;
}
.nav-toggle span {
  display: block;
  height: 1px;
  background: var(--text);
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(8,8,8,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--text);
  transition: color 0.25s;
}
.nav-mobile a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/Chronograh-1.jpg');
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.22) saturate(0.6);
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,8,8,0.85) 0%,
    rgba(8,8,8,0.4) 50%,
    rgba(8,8,8,0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero-eyebrow::before {
  content: '';
  width: 2.5rem;
  height: 1px;
  background: var(--gold);
}
.hero-eyebrow span {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero-title em {
  display: block;
  font-style: italic;
  color: var(--gold-light);
}

.hero-body {
  font-size: 1.1rem;
  color: rgba(240, 234, 224, 0.82);
  max-width: 44ch;
  margin-bottom: 2.5rem;
  line-height: 1.85;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s 1.4s forwards;
}
.hero-scroll span {
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-line {
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s 2s infinite;
}

/* ═══════════════════════════════════════════════════════
   MARQUEE TICKER
═══════════════════════════════════════════════════════ */
.ticker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 0;
  overflow: hidden;
  background: var(--bg-2);
}

.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  padding: 0 2rem;
  font-size: 1.02rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.ticker-item .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-images {
  position: relative;
  height: 560px;
}

.about-img-main {
  position: absolute;
  right: 0; top: 0;
  width: 75%;
  height: 78%;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-img-accent {
  position: absolute;
  left: 0; bottom: 0;
  width: 52%;
  height: 50%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 3px solid var(--bg);
}

.about-badge {
  position: absolute;
  right: -1rem; bottom: 5rem;
  width: 110px;
  height: 110px;
  background: var(--gold);
  color: #080808;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}
.about-badge .num {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
}
.about-badge .sub {
  font-size: 1.0rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 3px;
}

.about-content { padding: 1rem 0; }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.stat-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-label {
  font-size: 1.02rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════════ */
.services-bg { background: var(--bg-2); }

.services-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 4rem;
}
.services-header .section-body { margin: 0 auto; text-align: left; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.service-card {
  background: var(--bg-card);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.service-card:hover {
  background: var(--bg-card-h);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1.25rem;
  opacity: 0.7;
}

.service-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════
   BUY / SELL SPLIT
═══════════════════════════════════════════════════════ */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  min-height: 600px;
}

.split-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 4rem;
}

.split-panel-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.2) saturate(0.5);
  transition: filter 0.5s, transform 0.6s;
}

.split-panel:hover .split-panel-bg {
  filter: brightness(0.28) saturate(0.7);
  transform: scale(1.04);
}

.split-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.9) 0%, rgba(8,8,8,0.1) 60%);
}

.split-panel-content {
  position: relative;
  z-index: 2;
}

.split-panel-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 1rem;
  color: var(--text);
}

.split-panel-content p {
  font-size: 1.0rem;
  color: rgba(240,234,224,0.6);
  margin-bottom: 2rem;
  max-width: 38ch;
  line-height: 1.8;
}

.split-divider {
  width: 1px;
  background: var(--border);
  position: relative;
  z-index: 2;
}

/* ═══════════════════════════════════════════════════════
   IMAGE GALLERY (Watch Grid)
═══════════════════════════════════════════════════════ */
.gallery-section { background: var(--bg); }

.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 8px;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  background: var(--bg-card);
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.gallery-item:nth-child(1) { min-height: 440px; }
.gallery-item:not(:nth-child(1)) { min-height: 212px; }

.gallery-item:hover img { transform: scale(1.06); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0);
  transition: background 0.35s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-item-overlay {
  background: rgba(8,8,8,0.35);
}

/* ═══════════════════════════════════════════════════════
   COURSES
═══════════════════════════════════════════════════════ */
.courses-bg { background: var(--bg-2); }

.courses-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: center;
}

.courses-image {
  position: relative;
}
.courses-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius);
}

.courses-image::after {
  content: '';
  position: absolute;
  inset: -1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  z-index: -1;
}

.course-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.course-feature {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.feature-icon {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}

.feature-icon svg { width: 100%; height: 100%; }

.feature-title {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.feature-body {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════
   TESTIMONIAL / QUOTE BAND
═══════════════════════════════════════════════════════ */
.quote-band {
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-band::before {
  content: '\201C';
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 18rem;
  color: rgba(201, 169, 110, 0.04);
  line-height: 1;
  pointer-events: none;
}

.quote-text {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  max-width: 750px;
  margin: 0 auto 2rem;
  line-height: 1.45;
}

.quote-source {
  font-size: 1.02rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════
   CONTACT / LOCATION
═══════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-detail {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-detail-icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}

.contact-detail-icon svg { width: 100%; height: 100%; }

.contact-detail-label {
  font-size: 1.0rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.contact-detail-value {
  font-size: 1.0rem;
  color: var(--text);
  line-height: 1.7;
}

.contact-detail-value a {
  color: var(--text-muted);
  transition: color 0.25s;
}
.contact-detail-value a:hover { color: var(--gold); }

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 2rem;
  margin-top: 0.5rem;
}
.hours-day { font-size: 1.02rem; color: var(--text-muted); }
.hours-time { font-size: 1.02rem; color: var(--text); }

.contact-map {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.contact-map iframe {
  width: 100%;
  height: 420px;
  display: block;
  filter: none;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1.02rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: var(--transition);
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.footer-main {
  padding: 5rem 0 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
}

.footer-brand p {
  font-size: 1.0rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 1rem;
  max-width: 30ch;
}

.footer-reg {
  font-size: 1.02rem;
  color: var(--text-dim);
  margin-top: 0.75rem;
}

.footer-col-title {
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col ul li a {
  font-size: 1.0rem;
  color: var(--text-muted);
  transition: color 0.25s;
}
.footer-col ul li a:hover { color: var(--text); }

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 1.0rem;
  color: var(--text-dim);
}

.footer-bottom a {
  color: var(--text-dim);
  transition: color 0.25s;
}
.footer-bottom a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════════════════════ */
.page-hero {
  padding: 12rem 0 5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/Chronograh-3.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.12) saturate(0.4);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, var(--bg) 100%);
}

.page-hero-content { position: relative; z-index: 2; }

.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--text);
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 50ch;
  margin: 0 auto;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════
   TERMS PAGE
═══════════════════════════════════════════════════════ */
.terms-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 5rem 0 8rem;
}

.terms-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 4rem;
  padding: 1.5rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.terms-nav a {
  font-size: 1.0rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.terms-nav a:hover {
  color: var(--gold);
  background: rgba(201,169,110,0.06);
}

.terms-part-title {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--gold);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  margin: 3.5rem 0 2rem;
}

.terms-section { margin-bottom: 2.5rem; }

.terms-section h3 {
  font-family: var(--sans);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}

.terms-section p,
.terms-section li {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 0.75rem;
}

.terms-section ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.terms-section ul li { margin-bottom: 0.5rem; }

.terms-effective {
  font-size: 1.0rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.75rem 1.25rem;
  background: rgba(201,169,110,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: inline-block;
  margin-bottom: 2rem;
}

/* ═══════════════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════════════════
   KEYFRAMES
═══════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; transform: scaleY(1); }
  50%      { opacity: 1;   transform: scaleY(0.6); }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-images { height: 420px; }
}

@media (max-width: 768px) {
  .ticker-track { animation-duration: 12s; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .about-grid,
  .courses-inner,
  .contact-grid,
  .split-section { grid-template-columns: 1fr; }

  .split-section { grid-template-columns: 1fr; }
  .split-divider { display: none; }
  .split-panel { min-height: 400px; }
  .split-panel { min-height: 400px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; }

  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .about-images { height: 360px; }
  .about-badge { right: 1rem; }

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

  .hero-actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  html { font-size: 14.9px; }
  .container { padding: 0 1.25rem; }
  .section { padding: 5rem 0; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 1; }
}




