/* =============================================
   GREG SAMUELS COACHING — Global Stylesheet
   Brand: Trophy Black + Trophy Yellow
   ============================================= */

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

/* ---- Variables ---- */
:root {
  --black:    #111111;
  --yellow:   #F2C200;
  --charcoal: #2A2A2A;
  --titanium: #9A9A96;
  --white:    #FAFAF8;
  --yellow-dim: rgba(242,194,0,0.12);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;

  --max-w: 1100px;
  --nav-h: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }

p { color: var(--white); opacity: 0.85; }

.label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
}

/* ---- Layout helpers ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 96px 0;
}

.section--dark    { background: var(--black); }
.section--medium  { background: var(--charcoal); }
.section--accent  { background: var(--yellow-dim); border-top: 1px solid rgba(242,194,0,0.2); border-bottom: 1px solid rgba(242,194,0,0.2); }

.section-header {
  margin-bottom: 56px;
}

.section-header .label {
  display: block;
  margin-bottom: 16px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 16px 36px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
}
.btn-primary:hover {
  background: #e0b300;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--yellow);
  border: 1.5px solid var(--yellow);
}
.btn-outline:hover {
  background: var(--yellow);
  color: var(--black);
  transform: translateY(-1px);
}

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(17,17,17,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  z-index: 100;
  display: flex;
  align-items: center;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.nav__logo {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--white);
}
.nav__logo span { color: var(--yellow); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav__links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--titanium);
  transition: color 0.2s;
}
.nav__links a:hover,
.nav__links a.active { color: var(--white); }

.nav__cta {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow) !important;
  border: 1.5px solid var(--yellow);
  padding: 8px 20px;
  border-radius: 2px;
  transition: all 0.2s !important;
}
.nav__cta:hover {
  background: var(--yellow) !important;
  color: var(--black) !important;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--charcoal);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 24px 32px 32px;
  z-index: 99;
  flex-direction: column;
  gap: 0;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  display: block;
  padding: 14px 0;
  font-size: 1rem;
  font-family: var(--serif);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}
.nav__mobile a:hover { color: var(--yellow); }
.nav__mobile .btn { margin-top: 24px; width: 100%; text-align: center; }

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(242,194,0,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.hero__inner {
  max-width: 820px;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1.5px;
  background: var(--yellow);
}

.hero h1 {
  margin-bottom: 28px;
}

.hero h1 em {
  font-style: italic;
  color: var(--yellow);
}

.hero__sub {
  font-size: 1.1rem;
  color: var(--titanium);
  max-width: 580px;
  margin-bottom: 44px;
  opacity: 1;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---- Yellow accent line ---- */
.accent-rule {
  width: 60px;
  height: 2px;
  background: var(--yellow);
  margin-bottom: 24px;
}

/* ---- Two-column grid ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.two-col--tight { gap: 48px; }

/* ---- Three-column grid ---- */
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* ---- Essentials grid ---- */
.essentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  margin-top: 48px;
}

.essential-item {
  background: var(--black);
  padding: 32px 36px;
  transition: background 0.2s;
}
.essential-item:hover { background: var(--charcoal); }

.essential-item__num {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--yellow);
  margin-bottom: 10px;
}

.essential-item h4 {
  font-family: var(--serif);
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--white);
}

.essential-item p {
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ---- Quote block ---- */
.quote-block {
  border-left: 3px solid var(--yellow);
  padding: 8px 0 8px 32px;
  margin: 48px 0;
}

.quote-block p {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--white);
  opacity: 1;
}

/* ---- Credentials list ---- */
.credentials {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.credentials li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--white);
  opacity: 0.85;
}

.credentials li::before {
  content: '—';
  color: var(--yellow);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---- Cadence list ---- */
.cadence-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
}

.cadence-list li {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.cadence-list li:first-child { border-top: 1px solid rgba(255,255,255,0.08); }

.cadence-list__num {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--yellow);
  opacity: 0.4;
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}

.cadence-list__content h4 {
  margin-bottom: 6px;
}

.cadence-list__content p { font-size: 0.9rem; }

/* ---- Included list ---- */
.included-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
}

.included-list li {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.included-list li:first-child { border-top: 1px solid rgba(255,255,255,0.08); }

.included-list h4 {
  font-family: var(--serif);
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--yellow);
}

.included-list p { font-size: 0.9rem; }

/* ---- Fit check ---- */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}

.fit-card {
  background: var(--charcoal);
  padding: 32px;
  border-radius: 2px;
}

.fit-card h4 {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.fit-card--yes h4 { color: var(--yellow); }
.fit-card--no h4  { color: var(--titanium); }

.fit-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fit-card li {
  font-size: 0.9rem;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--white);
  opacity: 0.85;
}

.fit-card--yes li::before { content: '✓'; color: var(--yellow); flex-shrink: 0; }
.fit-card--no  li::before { content: '✕'; color: var(--titanium); flex-shrink: 0; }

/* ---- CTA section ---- */
.cta-section {
  text-align: center;
  padding: 112px 0;
}

.cta-section h2 { margin-bottom: 20px; }
.cta-section p  { margin-bottom: 40px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ---- Stat strip ---- */
.stat-strip {
  display: flex;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.08);
}

.stat-item {
  flex: 1;
  padding: 36px 40px;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.stat-item:last-child { border-right: none; }

.stat-item__num {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item__label {
  font-size: 0.8rem;
  color: var(--titanium);
  letter-spacing: 0.06em;
}

/* ---- Testimonial ---- */
.testimonial-card {
  background: var(--charcoal);
  padding: 40px;
  border-top: 2px solid var(--yellow);
}

.testimonial-card blockquote {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 24px;
  color: var(--white);
}

.testimonial-card cite {
  font-size: 0.82rem;
  color: var(--titanium);
  font-style: normal;
  letter-spacing: 0.06em;
}

/* ---- Contact form ---- */
.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--titanium);
  margin-bottom: 10px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  padding: 14px 18px;
  font-size: 0.95rem;
  font-family: var(--sans);
  border-radius: 2px;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--yellow);
}

.form-group textarea { resize: vertical; min-height: 140px; }

/* ---- Booking placeholder ---- */
.booking-placeholder {
  background: var(--charcoal);
  border: 1px dashed rgba(242,194,0,0.3);
  border-radius: 2px;
  padding: 64px 40px;
  text-align: center;
}

.booking-placeholder p {
  font-size: 0.85rem;
  color: var(--titanium);
  margin-top: 12px;
}

/* ---- Footer ---- */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 56px 0 40px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
}

.footer__brand {
  font-family: var(--serif);
  font-size: 1.2rem;
}
.footer__brand span { color: var(--yellow); }

.footer__tagline {
  font-size: 0.82rem;
  color: var(--titanium);
  margin-top: 8px;
  font-style: italic;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.85rem;
  color: var(--titanium);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--white); }

.footer__bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy {
  font-size: 0.78rem;
  color: var(--titanium);
}

.footer__bloom {
  font-size: 0.78rem;
  color: var(--titanium);
}
.footer__bloom a { color: var(--yellow); }

/* ---- Page hero (inner pages) ---- */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.page-hero__inner { max-width: 720px; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .three-col { grid-template-columns: 1fr; gap: 32px; }
  .essentials-grid { grid-template-columns: 1fr; }
  .fit-grid { grid-template-columns: 1fr; }
  .stat-strip { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:last-child { border-bottom: none; }
  .footer__inner { flex-direction: column; gap: 32px; }
}

@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .container { padding: 0 20px; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; }
  .cta-section { padding: 72px 0; }
  .testimonial-card { padding: 28px 24px; }
  .booking-placeholder { padding: 40px 24px; }
}
