/* ============================================================
   Passion Bookkeeping Co. — Stylesheet
   Palette: cream #F9F6F0 | gold #C9A452 | charcoal #2C2B26
   ============================================================ */

:root {
  --cream:        #F9F6F0;
  --cream-light:  #FBF8F2;
  --gold:         #C9A452;
  --gold-light:   #E8D5A3;
  --gold-dark:    #A8893D;
  --charcoal:     #2C2B26;
  --charcoal-mid: #4A4840;
  --charcoal-light: #7A776E;
  --white:        #FFFFFF;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-label:   'Montserrat', sans-serif;
  --font-body:    'Lato', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }

.label {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Layout ── */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section       { padding: 5.5rem 0; }
.section-alt   { background-color: var(--cream-light); }

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background-color 0.22s, color 0.22s, transform 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold    { background-color: var(--gold);  color: var(--white); }
.btn-gold:hover { background-color: var(--gold-dark); }
.btn-outline { background: transparent; border: 1.5px solid var(--gold); color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--white); }
.btn-white   { background-color: var(--white); color: var(--gold); }
.btn-white:hover { background-color: var(--cream); }

.link-arrow {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.2s;
}
.link-arrow:hover { gap: 0.8rem; }

/* ── Navigation ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background-color: var(--cream);
  border-bottom: 1px solid rgba(201, 164, 82, 0.2);
  padding: 0.9rem 0;
}
.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
}
.nav-logo img {
  height: 58px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal-mid);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-cta { margin-left: 1rem; }

/* hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--charcoal);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Section headers ── */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 {
  font-style: italic;
  font-weight: 300;
  margin-top: 0.75rem;
}
.section-header p {
  color: var(--charcoal-light);
  margin-top: 1rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.02rem;
}

/* ── Hero ── */
.hero {
  padding: 6rem 0 5.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201, 164, 82, 0.07) 0%, transparent 68%);
  pointer-events: none;
}
.hero .label { margin-bottom: 1.5rem; display: block; }
.hero h1 {
  font-style: italic;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}
.hero h1 em { color: var(--gold); font-style: italic; }
.hero-sub {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal-light);
  margin-bottom: 2.5rem;
}
.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.hero-divider::before,
.hero-divider::after {
  content: '';
  width: 70px;
  height: 1px;
  background: var(--gold);
}
.hero-divider span { color: var(--gold); font-size: 1.1rem; }
.hero-description {
  max-width: 540px;
  margin: 0 auto 3rem;
  color: var(--charcoal-light);
  font-size: 1.05rem;
  line-height: 1.85;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Service cards (homepage preview) ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: 14px;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(201, 164, 82, 0.18);
  transition: transform 0.22s, box-shadow 0.22s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(44, 43, 38, 0.08);
}
.service-icon {
  width: 50px;
  height: 50px;
  background: rgba(201, 164, 82, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--gold);
}
.service-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.service-card p { color: var(--charcoal-light); font-size: 0.96rem; line-height: 1.75; margin-bottom: 1.5rem; }

/* ── Trust pillars ── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.trust-item { padding: 2.5rem 1.5rem; }
.trust-icon {
  width: 60px;
  height: 60px;
  border: 1.5px solid rgba(201, 164, 82, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--gold);
}
.trust-icon svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.trust-item h3 { font-size: 1.4rem; margin-bottom: 0.75rem; }
.trust-item p  { color: var(--charcoal-light); font-size: 0.96rem; line-height: 1.75; }

/* ── About teaser (homepage) ── */
.about-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.about-teaser-image {
  display: flex;
  justify-content: center;
}
.placeholder-photo {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 3/4;
  background: var(--cream-light);
  border: 1px solid rgba(201, 164, 82, 0.2);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--charcoal-light);
}
.placeholder-photo svg { width: 48px; height: 48px; stroke: var(--gold-light); fill: none; stroke-width: 1.4; }
.placeholder-photo span { font-family: var(--font-label); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; }
.founder-photo {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top center;
  border-radius: 14px;
  border: 1px solid rgba(201, 164, 82, 0.2);
  display: block;
}
.about-teaser-content .label { display: block; margin-bottom: 1rem; }
.about-teaser-content h2 { font-style: italic; font-weight: 300; margin-bottom: 1.5rem; }
.about-teaser-content p { color: var(--charcoal-light); line-height: 1.85; margin-bottom: 1.5rem; }

/* ── CTA Banner ── */
.cta-banner {
  background-color: var(--gold);
  padding: 4.5rem 0;
  text-align: center;
}
.cta-banner h2 { font-style: italic; font-weight: 300; color: var(--white); margin-top: 0.75rem; margin-bottom: 0.75rem; }
.cta-banner p  { color: rgba(255,255,255,0.85); margin-bottom: 2.5rem; font-size: 1.05rem; }
.cta-banner .label { color: rgba(255,255,255,0.7); }

/* ── Footer ── */
.footer {
  background-color: var(--charcoal);
  color: rgba(255,255,255,0.65);
  padding: 4rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3.5rem;
  margin-bottom: 3rem;
}
.footer-logo {
  height: 52px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  margin-bottom: 1rem;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.75; max-width: 240px; }
.footer h4 {
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-nav a { font-size: 0.9rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-nav a:hover { color: var(--gold-light); }
.footer-contact p { font-size: 0.9rem; margin-bottom: 0.8rem; }
.footer-contact a { color: var(--gold-light); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ── Page header (inner pages) ── */
.page-header {
  padding: 4.5rem 0 3.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(201, 164, 82, 0.15);
}
.page-header h1 { font-style: italic; font-weight: 300; margin-top: 0.75rem; }

/* ── Services page full list ── */
.services-list { display: flex; flex-direction: column; gap: 2rem; }
.service-full {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 2.5rem;
  padding: 2.75rem 2.5rem;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid rgba(201, 164, 82, 0.18);
  align-items: start;
  transition: box-shadow 0.22s;
}
.service-full:hover { box-shadow: 0 12px 40px rgba(44, 43, 38, 0.07); }
.service-full .service-icon { width: 64px; height: 64px; border-radius: 16px; margin: 0; flex-shrink: 0; }
.service-full .service-icon svg { width: 28px; height: 28px; }
.service-full h3 { font-size: 1.8rem; margin-bottom: 0.75rem; }
.service-full > div > p { color: var(--charcoal-light); margin-bottom: 1.25rem; line-height: 1.85; }
.service-full ul { display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; }
.service-full ul li {
  color: var(--charcoal-light);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.service-full ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── About page ── */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
  padding: 5rem 0;
}
.about-hero-content .label { display: block; margin-bottom: 1rem; }
.about-hero-content h2 { font-style: italic; font-weight: 300; margin-bottom: 1.75rem; }
.about-hero-content p { color: var(--charcoal-light); line-height: 1.9; margin-bottom: 1.25rem; }

.stats-row {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(201, 164, 82, 0.2);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  margin-top: 0.4rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.value-card {
  background: var(--white);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  border: 1px solid rgba(201, 164, 82, 0.18);
  border-top: 3px solid var(--gold);
}
.value-card h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.value-card p { color: var(--charcoal-light); font-size: 0.92rem; line-height: 1.75; }

.team-section {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.team-section h2 { font-style: italic; font-weight: 300; margin-top: 0.75rem; margin-bottom: 0; }
.team-section p { color: var(--charcoal-light); font-size: 1.04rem; line-height: 1.9; margin-top: 1.5rem; }

/* ── Contact page ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
  padding: 4.5rem 0;
}
.contact-intro .label { display: block; margin-bottom: 1rem; }
.contact-intro h2 { font-style: italic; font-weight: 300; margin-bottom: 1.5rem; }
.contact-intro p { color: var(--charcoal-light); line-height: 1.9; margin-bottom: 1.25rem; }
.contact-details { margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid rgba(201, 164, 82, 0.2); }
.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--charcoal-light);
}
.contact-detail-item svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.contact-detail-item a { color: var(--gold); }
.contact-detail-item a:hover { color: var(--gold-dark); }

.calendly-card {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid rgba(201, 164, 82, 0.18);
  overflow: hidden;
}
.calendly-card-header {
  background: var(--gold);
  padding: 1.5rem 2rem;
  text-align: center;
}
.calendly-card-header p {
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.25rem;
}
.calendly-card-header h3 { font-style: italic; color: var(--white); font-size: 1.6rem; }
.calendly-card-body {
  padding: 2rem;
  text-align: center;
}
.calendly-card-body p { color: var(--charcoal-light); font-size: 0.92rem; margin-bottom: 1.5rem; line-height: 1.75; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .about-teaser-grid  { grid-template-columns: 1fr; gap: 3rem; }
  .about-hero-grid    { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 0; }
  .contact-layout     { grid-template-columns: 1fr; }
  .footer-inner       { grid-template-columns: 1fr 1fr; }
  .trust-grid         { grid-template-columns: 1fr; }
  .service-full ul    { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 2rem;
    gap: 1.25rem;
    border-bottom: 1px solid rgba(201, 164, 82, 0.2);
    box-shadow: 0 12px 30px rgba(44,43,38,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-toggle     { display: flex; }
  .nav-cta        { display: none; }

  .section { padding: 4rem 0; }
  .hero    { padding: 4rem 0 3.5rem; }
  .service-full { grid-template-columns: 1fr; gap: 1.25rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .stats-row { flex-wrap: wrap; gap: 1.75rem; }
}
