/* ═══════════════════════════════════════════
   Bay Consulting Brand Stylesheet
   Colors: Copper · Slate · Cream
   ═══════════════════════════════════════════ */

:root {
  --copper: #B87333;
  --copper-light: #C8894D;
  --copper-dark: #9A5F2A;
  --slate: #2D3A40;
  --slate-deep: #243036;
  --slate-light: #3A4A52;
  --cream: #FAF5F0;
  --sand: #F0EBE3;
  --sand-dark: #E5DED4;
  --dark: #2A2A2A;
  --body: #4A4A4A;
  --muted: #7A8A7E;
  --white: #FEFCF9;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  color: var(--body);
  background: var(--cream);
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--copper); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--copper-dark); }

/* ─── Typography ─── */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  color: var(--dark);
  font-weight: 500;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1.25rem; }
h2 { font-size: clamp(1.5rem, 4vw, 2.15rem); margin-bottom: 1rem; }
h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.text-large { font-size: 1.125rem; }
.text-small { font-size: 0.875rem; }
.text-muted { color: var(--muted); }
.text-copper { color: var(--copper); }
.text-cream { color: var(--cream); }
.text-white { color: var(--white); }

/* ─── Layout ─── */
.container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4.5rem 1.5rem;
}

.section--cream { background: var(--cream); }
.section--sand { background: var(--sand); }
.section--teal { background: var(--slate); }
.section--teal h1, .section--teal h2, .section--teal h3 { color: var(--white); }
.section--teal p { color: rgba(250, 245, 240, 0.8); }

.section-inner {
  max-width: 820px;
  margin: 0 auto;
}

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 245, 240, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(45, 58, 64, 0.08);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-logo span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--slate);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  color: var(--dark);
  padding: 0.5rem 0.875rem;
  border-radius: 6px;
  transition: all 0.2s;
  font-weight: 400;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--copper);
  background: rgba(184, 115, 51, 0.06);
}

.nav-links a.active {
  color: var(--copper);
  font-weight: 500;
}

.nav-cta {
  background: var(--copper) !important;
  color: var(--white) !important;
  padding: 0.625rem 1.25rem !important;
  border-radius: 6px;
  font-weight: 500 !important;
  margin-left: 0.5rem;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--copper-dark) !important;
  color: var(--white) !important;
}

/* Mobile menu */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--slate);
  font-size: 1.5rem;
  line-height: 1;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 0.5rem 1.5rem 1.25rem;
  background: rgba(250, 245, 240, 0.98);
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  display: block;
  padding: 0.75rem 0.75rem;
  font-size: 0.9375rem;
  color: var(--dark);
  text-decoration: none;
  border-radius: 6px;
}

.nav-mobile a:hover { background: rgba(184, 115, 51, 0.06); }

.nav-mobile a.nav-cta {
  text-align: center;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
}

/* ─── Hero ─── */
.hero {
  padding: 8rem 1.5rem 5.5rem;
  min-height: 480px;
  display: flex;
  align-items: center;
  background: var(--slate);
}

.hero .section-inner { width: 100%; }
.hero h1 { color: var(--white); font-size: clamp(2rem, 5.5vw, 3.2rem); }
.hero p { color: rgba(250, 245, 240, 0.8); font-size: 1.125rem; }
.hero .section-label { color: rgba(250, 245, 240, 0.7); }

.hero--copper {
  background: linear-gradient(165deg, var(--copper-dark) 0%, var(--copper) 60%, var(--copper-light) 100%);
}

/* ─── Buttons ─── */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn--copper {
  background: var(--copper);
  color: var(--white);
}
.btn--copper:hover {
  background: var(--copper-dark);
  color: var(--white);
}

.btn--teal {
  background: var(--slate);
  color: var(--white);
}
.btn--teal:hover {
  background: var(--slate-deep);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--copper);
  border: 1.5px solid var(--copper);
}
.btn--outline:hover {
  background: var(--copper);
  color: var(--white);
}

/* ─── Divider ─── */
.divider {
  width: 48px;
  height: 2px;
  background: var(--copper);
  opacity: 0.5;
  margin: 2rem 0;
}

.divider--short {
  width: 32px;
  margin: 1.25rem 0;
}

/* ─── Section Label ─── */
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1rem;
  font-weight: 700;
}

.section--teal .section-label { color: rgba(250, 245, 240, 0.5); }

/* ─── Two-column Grid ─── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 640px) {
  .grid-2 { grid-template-columns: 1fr; gap: 2rem; }
}

/* ─── Accordion ─── */
.accordion-item {
  border-bottom: 1px solid rgba(45, 58, 64, 0.12);
}

.accordion-trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.accordion-trigger:hover .accordion-prompt { color: var(--copper); }

.accordion-prompt {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--dark);
  font-weight: 500;
  line-height: 1.3;
  font-style: italic;
  transition: color 0.2s;
}

.accordion-icon {
  font-size: 1.25rem;
  color: var(--copper);
  flex-shrink: 0;
  transition: transform 0.25s;
  font-style: normal;
  line-height: 1;
  margin-top: 0.15rem;
}

.accordion-item.open .accordion-icon { transform: rotate(45deg); }

.accordion-body {
  display: none;
  padding: 0 0 1.25rem;
  font-size: 0.9375rem;
  color: var(--body);
  line-height: 1.7;
}

.accordion-item.open .accordion-body { display: block; }

/* ─── Shape Cards ─── */
.shape-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.shape-icon {
  font-size: 1.75rem;
  color: var(--copper);
  flex-shrink: 0;
  margin-top: 0.2rem;
  line-height: 1;
}

.shapes-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* ─── Investment Box ─── */
.investment-box {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(184, 115, 51, 0.05);
  border-radius: 8px;
  border-left: 3px solid var(--copper);
  font-size: 0.875rem;
  color: var(--body);
}

.investment-box strong { color: var(--dark); }

/* ─── Pricing Cards ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (max-width: 580px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

.pricing-card {
  padding: 1.75rem;
  background: var(--sand);
  border-radius: 10px;
}

.pricing-card--featured {
  border: 2px solid var(--copper);
}

.pricing-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.pricing-amount {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.75rem;
  color: var(--copper);
  font-weight: 600;
  margin: 0.5rem 0 1rem;
}

.pricing-card p {
  font-size: 0.875rem;
  color: var(--muted);
}

/* ─── Bullet List ─── */
.bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bullet-list li {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}

.bullet-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--copper);
  flex-shrink: 0;
  margin-top: 0.5rem;
}

/* ─── Credential List ─── */
.credential-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.credential-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.9375rem;
}

.credential-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--copper);
  flex-shrink: 0;
  margin-top: 0.55rem;
}

/* ─── Credentials Strip ─── */
.credentials-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.credentials-strip span {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(45, 58, 64, 0.14);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.5);
}

/* ─── About page specifics ─── */
.about-lead {
  font-size: 1.125rem;
}

.how-i-work-item {
  margin-bottom: 2rem;
}

.how-i-work-item:last-child { margin-bottom: 0; }

/* ─── Booking placeholder ─── */
.booking-placeholder {
  background: var(--sand);
  border-radius: 12px;
  padding: 3rem 2.5rem;
  text-align: center;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.booking-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--copper);
}

/* ─── Footer ─── */
.footer {
  background: var(--slate-deep);
  padding: 3rem 1.5rem 2rem;
}

.footer-inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.footer-contact {
  font-size: 0.8125rem;
  color: rgba(250, 245, 240, 0.45);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.8125rem;
  color: rgba(250, 245, 240, 0.45);
  transition: color 0.2s;
}

.footer-links a:hover { color: rgba(250, 245, 240, 0.8); }

.footer-bottom {
  max-width: 820px;
  margin: 1.5rem auto 0;
  border-top: 1px solid rgba(250, 245, 240, 0.08);
  padding-top: 1.25rem;
  font-size: 0.6875rem;
  color: rgba(250, 245, 240, 0.25);
}

/* ─── Credential Badges ─── */
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.badge-row img {
  height: 84px;
  width: auto;
  background: #fff;
  border-radius: 10px;
  padding: 10px 14px;
  box-shadow: 0 2px 10px rgba(45, 58, 64, 0.08);
}

/* ─── About headshot ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-photo {
  border-radius: 12px;
  width: 100%;
  box-shadow: 0 8px 30px rgba(45, 58, 64, 0.18);
}

/* Headshot sitting on a dark hero needs a darker shadow to lift off the slate */
.hero .about-photo { box-shadow: 0 14px 44px rgba(0, 0, 0, 0.38); }

@media (max-width: 640px) {
  .about-grid { grid-template-columns: 1fr; gap: 1.75rem; }
}

/* ─── Hero ripple texture ─── */
.hero--ripple {
  background-image: linear-gradient(rgba(45, 58, 64, 0.85), rgba(36, 48, 54, 0.93)), url('images/pond-ripples.png');
  background-size: cover;
  background-position: center;
}

/* Quieter ripple — a faint echo of the homepage hero */
.hero--ripple-soft {
  background-image: linear-gradient(rgba(45, 58, 64, 0.91), rgba(36, 48, 54, 0.96)), url('images/pond-ripples.png');
  background-size: cover;
  background-position: center;
}

/* ─── Full-width hero (matches body section width) ─── */
.hero--wide .section-inner { width: 100%; max-width: 820px; }
.hero--wide h1, .hero--wide p { max-width: none; }

/* ─── Watercolor hero (light background, dark text) ─── */
.hero--watercolor {
  background-image: linear-gradient(rgba(250, 245, 240, 0.32), rgba(250, 245, 240, 0.32)), url('images/hero-watercolor.png');
  background-size: cover;
  background-position: center;
}
.hero--watercolor h1 { color: var(--dark); }
.hero--watercolor p { color: rgba(42, 42, 42, 0.88); }

/* ─── Testimonials ─── */
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-top: 2rem;
}

.testimonial {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.4;
  color: var(--dark);
  padding-left: 1.25rem;
  border-left: 2px solid var(--copper);
}

/* ─── Service Block ─── */
.service-item {
  margin-bottom: 2.75rem;
}

.service-item:last-child { margin-bottom: 0; }

.service-item h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

/* ─── CTA Section ─── */
.cta-section {
  text-align: center;
}

/* ─── Utilities ─── */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.text-center { text-align: center; }

/* ─── Responsive tweaks ─── */
@media (max-width: 480px) {
  .section { padding: 3rem 1.25rem; }
  .hero { padding: 6.5rem 1.25rem 4rem; min-height: 400px; }
  .credentials-strip { gap: 0.5rem; }
  .credentials-strip span { font-size: 0.6875rem; padding: 0.375rem 0.75rem; }
}
