/* ============================================
   TONY BOND — COACHING PRACTICE
   Shared Stylesheet v2
   ============================================ */

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

/* === VARIABLES === */
:root {
  --navy:         #1B2B52;
  --navy-dark:    #0F1A35;
  --navy-mid:     #243566;
  --charcoal:     #2C3E50;
  --bronze:       #B8712A;
  --bronze-light: #D4956C;
  --bronze-pale:  #F5EBE0;
  --teal:         #2A7A7A;
  --teal-light:   #3A9E9E;
  --teal-pale:    #E8F4F4;
  --sage:         #4A7B5A;
  --sage-light:   #6A9B7A;
  --sage-pale:    #EBF3ED;
  --off-white:    #F8F6F3;
  --warm-white:   #FDFCFB;
  --white:        #FFFFFF;
  --text-dark:    #1A1A2E;
  --text-mid:     #4A4A5A;
  --text-light:   #7A7A8A;
  --border:       #E5E3DF;
  --shadow-sm:    0 2px 12px rgba(27, 43, 82, 0.08);
  --shadow-md:    0 8px 32px rgba(27, 43, 82, 0.12);
  --shadow-lg:    0 16px 48px rgba(27, 43, 82, 0.16);
  --radius:       4px;
  --radius-lg:    8px;
  --max-width:    1200px;
  --section-pad:  96px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition:   all 0.25s ease;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); font-weight: 400; color: var(--text-dark); background: var(--white); line-height: 1.7; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul, ol { list-style: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.15; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.8rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { font-size: 1rem; line-height: 1.8; color: var(--text-mid); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 0.75rem;
  display: block;
}
.lead { font-size: 1.125rem; line-height: 1.85; color: var(--text-mid); }

/* === LAYOUT === */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 40px; }
.section { padding: var(--section-pad) 0; }
.section-sm { padding: 60px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* === NAVIGATION === */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 40px;
  height: 76px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-name { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; color: var(--navy); letter-spacing: 0.02em; }
.nav-logo-sub { font-family: var(--font-body); font-size: 0.65rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bronze); }
.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-links a { font-size: 0.875rem; font-weight: 500; letter-spacing: 0.04em; color: var(--text-mid); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--bronze); transition: width 0.25s ease; }
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--navy); }
.nav-links a.active::after { width: 100%; background: var(--navy); }
.nav-cta {
  display: inline-flex; align-items: center;
  padding: 10px 24px; background: var(--navy); color: var(--white) !important;
  font-size: 0.8rem !important; font-weight: 600 !important; letter-spacing: 0.08em !important;
  text-transform: uppercase; border-radius: var(--radius);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--bronze) !important; color: var(--white) !important; }
.nav-mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-mobile-toggle span { display: block; width: 24px; height: 1.5px; background: var(--navy); }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; font-family: var(--font-body); font-size: 0.85rem;
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: var(--radius); cursor: pointer; border: none; transition: var(--transition);
}
.btn-primary { background: var(--bronze); color: var(--white); }
.btn-primary:hover { background: var(--navy); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.6); }
.btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.9); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--bronze); padding-left: 0; letter-spacing: 0.06em; }
.btn-ghost::after { content: ' →'; font-size: 1rem; font-weight: 400; }
.btn-ghost:hover { color: var(--navy); }
.btn-group { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* === HERO === */
.hero {
  padding-top: 76px;
  background: var(--navy-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(184,113,42,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(42,122,122,0.10) 0%, transparent 60%);
  pointer-events: none;
}

.hero-home {
  display: grid;
  grid-template-columns: 1.85fr 1fr;
  min-height: 75vh;
  max-height: 700px;
  align-items: center;
}
.hero-content {
  padding: 80px 60px 80px 0;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--bronze-light); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before { content: ''; display: inline-block; width: 32px; height: 1px; background: var(--bronze-light); }
.hero h1 { color: var(--white); margin-bottom: 1.5rem; font-weight: 400; font-size: clamp(2.8rem, 4.5vw, 4.2rem); }
.hero h1 em { font-style: italic; color: var(--bronze-light); }
.hero-sub { font-size: 1.125rem; color: rgba(255,255,255,0.75); margin-bottom: 2.5rem; max-width: 520px; line-height: 1.8; }

.hero-photo {
  position: relative;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-photo img {
  width: 90%;
  height: 580px;
  object-fit: cover;
  object-position: center top;
  border-radius: 6px 6px 0 0;
}
.hero-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--navy-dark) 0%, transparent 28%);
  pointer-events: none;
}

/* Inner page hero */
.hero-inner {
  padding: calc(76px + 80px) 0 80px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-inner h1 { color: var(--white); margin-bottom: 1rem; font-weight: 400; }
.hero-inner .hero-sub { margin: 0 auto; text-align: center; }

/* === SECTION HEADERS === */
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-header h2 { color: var(--navy); margin-bottom: 0.75rem; }

/* === INTRO SECTION === */
.intro-section { background: var(--off-white); }
.intro-text-block { max-width: 820px; margin: 0 auto; text-align: center; }
.intro-text-block h2 { color: var(--navy); margin-bottom: 1.5rem; }
.intro-text-block p { font-size: 1.05rem; margin-bottom: 1.25rem; }
.intro-text-block p:last-child { margin-bottom: 0; }

/* === OFFERING CARDS === */
.offering-card {
  padding: 48px 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.offering-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  transform: scaleX(0); transition: transform 0.3s ease;
}
.offering-card.leadership::before { background: var(--navy); }
.offering-card.lifedesign::before { background: var(--teal); }
.offering-card.immersion::before { background: var(--sage); }
.offering-card:hover { box-shadow: var(--shadow-md); border-color: transparent; transform: translateY(-4px); }
.offering-card:hover::before { transform: scaleX(1); }
.offering-icon {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; font-size: 1.4rem;
}
.offering-card.leadership .offering-icon { background: rgba(27,43,82,0.08); color: var(--navy); }
.offering-card.lifedesign .offering-icon { background: var(--teal-pale); color: var(--teal); }
.offering-card.immersion .offering-icon { background: var(--sage-pale); color: var(--sage); }
.offering-card h4 { color: var(--navy); margin-bottom: 0.75rem; font-size: 1.3rem; }
.offering-card p { font-size: 0.95rem; margin-bottom: 1.5rem; }

/* === ACCENT SECTIONS === */
.accent-section { background: var(--charcoal); color: var(--white); padding: var(--section-pad) 0; }
.accent-section h2 { color: var(--white); }
.accent-section p { color: rgba(255,255,255,0.8); }
.accent-section-navy { background: var(--navy); color: var(--white); padding: var(--section-pad) 0; }
.accent-section-navy h2 { color: var(--white); }
.accent-section-navy p { color: rgba(255,255,255,0.8); }

/* === CALLOUT / QUOTE === */
.callout { border-left: 3px solid var(--bronze); padding: 24px 32px; background: var(--off-white); border-radius: 0 var(--radius-lg) var(--radius-lg) 0; margin: 32px 0; }
.callout p { font-family: var(--font-display); font-size: 1.4rem; font-style: italic; color: var(--navy); line-height: 1.5; }

/* === CTA SECTIONS === */
.cta-section { background: var(--navy); color: var(--white); padding: 80px 0; text-align: center; }
.cta-section h2 { color: var(--white); max-width: 640px; margin: 0 auto 1rem; }
.cta-section p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto 2.5rem; font-size: 1.05rem; }
.cta-section-light { background: var(--bronze-pale); }
.cta-section-light h2 { color: var(--navy); }
.cta-section-light p { color: var(--text-mid); }
.cta-section-sage { background: var(--sage-pale); border-top: 1px solid rgba(74,123,90,0.2); }
.cta-section-sage h2 { color: var(--navy); }
.cta-section-sage p { color: var(--text-mid); }

/* === ABOUT PAGE === */
.bio-photo img { width: 100%; height: 600px; object-fit: cover; object-position: center top; border-radius: var(--radius-lg); }
.credentials-badge { background: var(--navy); color: var(--white); padding: 24px 32px; border-radius: var(--radius-lg); margin-top: 32px; }
.credentials-badge .eyebrow { color: var(--bronze-light); }
.credentials-badge h4 { color: var(--white); font-size: 1rem; font-family: var(--font-body); font-weight: 500; margin-bottom: 4px; }
.credentials-badge p { color: rgba(255,255,255,0.7); font-size: 0.85rem; line-height: 1.5; }
.philosophy-section { background: var(--off-white); }

.commitment-photo {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center 55%;
  border-radius: var(--radius-lg);
}

/* === WORK WITH ME PAGE === */
.service-number { font-family: var(--font-display); font-size: 5rem; font-weight: 300; color: var(--border); line-height: 1; margin-bottom: -16px; }
.outcomes-list { margin-top: 24px; }
.outcomes-list li { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.95rem; color: var(--text-mid); align-items: flex-start; }
.outcomes-list li:last-child { border-bottom: none; }
.outcomes-list li::before { content: '—'; color: var(--bronze); font-weight: 600; flex-shrink: 0; margin-top: 2px; }

.approach-feature { padding: 28px 0; border-bottom: 1px solid var(--border); }
.approach-feature:last-child { border-bottom: none; }
.approach-feature h4 { color: var(--navy); font-size: 1.1rem; margin-bottom: 0.5rem; }

.checklist { margin-top: 20px; }
.checklist li { display: flex; gap: 14px; padding: 10px 0; font-size: 0.95rem; color: var(--text-mid); align-items: flex-start; border-bottom: 1px solid var(--border); }
.checklist li:last-child { border-bottom: none; }
.checklist li::before { content: ''; display: inline-block; width: 20px; height: 20px; min-width: 20px; background: var(--bronze); border-radius: 50%; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; margin-top: 1px; }

.engagement-box { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; }
.engagement-box h4 { color: var(--navy); margin-bottom: 16px; }

/* === IMMERSION SECTION === */
.immersion-section { background: var(--navy-dark); }
.immersion-section h2 { color: var(--white); }
.immersion-section .eyebrow { color: var(--bronze-light); }
.immersion-section p { color: rgba(255,255,255,0.78); }

.immersion-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  border-top: 3px solid var(--bronze);
}
.immersion-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-3px); }
.immersion-card h4 { color: var(--white); font-size: 1.1rem; font-family: var(--font-body); font-weight: 600; margin-bottom: 0.5rem; }
.immersion-card p { font-size: 0.9rem; color: rgba(255,255,255,0.65); }
.immersion-card .immersion-detail { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bronze-light); margin-top: 16px; display: block; }

/* === LIFE DESIGN SECTION === */
.dyl-section { background: var(--teal-pale); border-top: 3px solid var(--teal); }
.dyl-section h2 { color: var(--teal); }
.dyl-section-ww { background: var(--off-white); }

/* === CONTACT PAGE === */
.contact-form { background: var(--white); padding: 48px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label { display: block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); margin-bottom: 6px; }
input[type="text"], input[type="email"], select, textarea {
  width: 100%; padding: 12px 16px; font-family: var(--font-body); font-size: 0.95rem; color: var(--text-dark);
  background: var(--off-white); border: 1.5px solid var(--border); border-radius: var(--radius); outline: none; transition: var(--transition); -webkit-appearance: none; appearance: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--navy); background: var(--white); box-shadow: 0 0 0 3px rgba(27,43,82,0.08); }
select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A4A5A' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }
textarea { resize: vertical; min-height: 140px; }
.btn-submit { width: 100%; justify-content: center; padding: 16px; background: var(--navy); color: var(--white); }
.btn-submit:hover { background: var(--bronze); }
.contact-info-item { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon { width: 40px; height: 40px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 0.9rem; flex-shrink: 0; }
.contact-info-text .label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-light); margin-bottom: 2px; display: block; }
.contact-info-text a, .contact-info-text p { color: var(--navy); font-size: 0.95rem; font-weight: 500; margin: 0; }
.contact-info-text a:hover { color: var(--bronze); }

/* === FOOTER === */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.6); padding: 60px 0 32px; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 32px; }
.footer-brand .nav-logo-name { color: var(--white); font-size: 1.4rem; margin-bottom: 4px; display: block; }
.footer-brand .nav-logo-sub { font-size: 0.62rem; margin-bottom: 1.25rem; display: block; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.875rem; line-height: 1.7; margin-bottom: 0; }
.footer-col h5 { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.9); margin-bottom: 1rem; }
.footer-col ul li { padding: 5px 0; }
.footer-col ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.5); }
.footer-col ul li a:hover { color: var(--bronze-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: rgba(255,255,255,0.35); }

/* === UTILITIES === */
.text-center { text-align: center; }
.mt-4 { margin-top: 1rem; } .mt-6 { margin-top: 1.5rem; } .mt-8 { margin-top: 2rem; } .mt-12 { margin-top: 3rem; }
.mb-4 { margin-bottom: 1rem; } .mb-6 { margin-bottom: 1.5rem; } .mb-8 { margin-bottom: 2rem; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  :root { --section-pad: 72px; }
  .container { padding: 0 32px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --section-pad: 56px; }
  .container { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  .hero-home { grid-template-columns: 1fr; min-height: auto; max-height: none; }
  .hero-photo { height: 45vh; }
  .hero-photo img { height: 100%; max-width: 100%; border-radius: 0; }
  .hero-content { padding: 56px 0 40px; order: -1; }
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .nav-inner { padding: 0 20px; }
  .commitment-photo { height: 380px; }
}
