/* =============================================
   GLOBAL STYLES — accounting-website/style.css
   To change the firm name, search for "YOUR FIRM NAME"
   in all HTML files and replace it.
   ============================================= */

:root {
  --emerald:       #0B6E4F;
  --emerald-dark:  #084D37;
  --emerald-light: #E6F2EE;
  --pink:          #C9919A;
  --pink-light:    #F7ECED;
  --pink-dark:     #A8737B;
  --white:         #FFFFFF;
  --off-white:     #FAFAFA;
  --text-dark:     #1C2B2B;
  --text-mid:      #4A5568;
  --text-light:    #718096;
  --border:        #E2E8F0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
}

/* ── NAVIGATION ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 2px solid var(--emerald);
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.nav-logo {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--emerald);
  letter-spacing: 0.02em;
  text-decoration: none;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
}
.nav-logo span { color: var(--pink); }
.nav-logo small {
  font-size: 0.62rem;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.25rem;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-mid);
  font-family: Arial, sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--emerald); }

.nav-cta {
  background: var(--emerald) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.35rem;
  border-radius: 4px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--emerald-dark) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--emerald);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--emerald) 70%);
  color: var(--white);
  padding: 4.5rem 2rem 4rem;
  text-align: center;
}
.page-hero .eyebrow {
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.6rem;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}
.page-hero p {
  font-family: Arial, sans-serif;
  font-size: 1.05rem;
  opacity: 0.88;
  max-width: 540px;
  margin: 0 auto;
}

/* ── SECTION COMMON ── */
section { padding: 5rem 2rem; }

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

.section-label {
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--emerald-dark);
  margin-bottom: 0.75rem;
}

.section-sub {
  font-family: Arial, sans-serif;
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 580px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--pink);
  color: var(--white);
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-family: Arial, sans-serif;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--pink-dark); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 0.85rem 2rem;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 4px;
  font-size: 1rem;
  font-family: Arial, sans-serif;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn-emerald {
  display: inline-block;
  background: var(--emerald);
  color: var(--white);
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-family: Arial, sans-serif;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-emerald:hover { background: var(--emerald-dark); }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--pink-light);
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  font-family: Arial, sans-serif;
  font-size: 0.88rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.trust-item::before {
  content: '✓';
  color: var(--emerald);
  font-weight: bold;
}

/* ── FOOTER ── */
footer {
  background: var(--emerald-dark);
  color: rgba(255,255,255,0.75);
  padding: 2.5rem 2rem;
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 0.88rem;
}
footer .footer-inner {
  max-width: 900px;
  margin: 0 auto;
}
footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
footer .footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}
footer .footer-links a:hover { color: var(--pink); }
footer a { color: var(--pink); text-decoration: none; }
footer p { margin-top: 0.5rem; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  nav { padding: 0 1.25rem; }

  .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1rem 2rem 2rem;
    border-bottom: 2px solid var(--emerald);
    gap: 1.25rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateY(-200%);
    transition: transform 0.3s;
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateY(0);
    pointer-events: all;
  }
  .hamburger { display: flex; }

  .trust-bar { gap: 1.25rem; }

  section { padding: 3.5rem 1.25rem; }
}
