/* Glenhold Bookkeeping — website kit */
@import url("./colors_and_type.css");

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--color-bg);
  color: var(--color-fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

.gh-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 48px);
}

.gh-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-fg-muted);
  margin: 0;
}

.gh-h1 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--color-brand);
  font-size: clamp(40px, 5.6vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
}
.gh-h1 em { font-style: italic; }

.gh-h2 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--color-brand);
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.15;
  margin: 0;
}
.gh-h2 em { font-style: italic; }

.gh-h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  color: var(--color-fg);
  margin: 0;
}

.gh-body { color: var(--color-fg); margin: 0; }
.gh-muted { color: var(--color-fg-muted); }

/* ---------- Buttons ---------- */
.gh-btn {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 200ms cubic-bezier(0.2,0.6,0.2,1), color 200ms;
  text-align: center;
  white-space: nowrap;
}
.gh-btn-primary { background: #2C4A6B; color: #FAF7F0; }
.gh-btn-primary:hover { background: #243d59; }
.gh-btn-secondary {
  background: transparent;
  color: #2C4A6B;
  border: 1.5px solid #2C4A6B;
  padding: 12.5px 26.5px;
}
.gh-btn-secondary:hover { background: rgba(44,74,107,0.05); }
.gh-btn-inverted { background: #FAF7F0; color: #2C4A6B; }
.gh-btn-inverted:hover { background: #f1ecdf; }

/* ---------- Pills ---------- */
.gh-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500;
  padding: 6px 14px;
  border-radius: 999px;
  line-height: 1.2;
}
.gh-pill-popular { background: #A5BFD6; color: #2C4A6B; }
.gh-pill-trust { background: #FAF7F0; border: 1px solid #E5E2D8; color: #2C4A6B; }
.gh-pill-review { background: #fff; border: 1px solid #E5E2D8; color: #1F2A2A; }
.gh-star { color: #F5B400; letter-spacing: 1px; }

/* ---------- Card ---------- */
.gh-card {
  background: #fff;
  border: 1px solid #E5E2D8;
  border-radius: 12px;
  padding: 32px 28px;
}
.gh-card-elev {
  border: 1.5px solid #A5BFD6;
  box-shadow: 0 12px 40px rgba(31,42,42,0.10), 0 2px 6px rgba(31,42,42,0.05);
  position: relative;
}

/* ---------- Form ---------- */
.gh-field { display: flex; flex-direction: column; gap: 6px; }
.gh-field label { font-size: 13px; font-weight: 500; color: #1F2A2A; }
.gh-input, .gh-select, .gh-textarea {
  font-family: var(--font-body); font-size: 15px;
  padding: 12px 14px;
  border: 1px solid #E5E2D8; border-radius: 8px;
  background: #fff; color: #1F2A2A;
  outline: none; transition: border 200ms, box-shadow 200ms;
}
.gh-input:focus, .gh-select:focus, .gh-textarea:focus {
  border-color: #2C4A6B;
  box-shadow: 0 0 0 3px rgba(44,74,107,0.12);
}
.gh-textarea { resize: vertical; min-height: 96px; }

/* ---------- Header ---------- */
.gh-header {
  position: sticky; top: 0; z-index: 10;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}
.gh-header-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
}
.gh-nav { display: flex; gap: 28px; align-items: center; }
.gh-nav a { font-size: 15px; font-weight: 500; color: #1F2A2A; }
.gh-nav a:hover { color: #2C4A6B; }
.gh-phone { display: inline-flex; align-items: center; gap: 6px; font-weight: 500; color: #2C4A6B; }

/* Wordmark + mark (CSS-drawn placeholder) */
.gh-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: #2C4A6B; color: #FAF7F0;
  border-radius: 8px;
  font-family: var(--font-display); font-size: 22px; line-height: 1;
  padding-bottom: 2px;
}
.gh-mark-cream { background: #FAF7F0; color: #2C4A6B; }
.gh-wordmark {
  font-family: var(--font-display); font-weight: 400;
  font-size: 22px; color: #2C4A6B; line-height: 1;
  letter-spacing: -0.005em;
}
.gh-wordmark-cream { color: #FAF7F0; }

/* ---------- Hero ---------- */
.gh-hero { padding: 80px 0 96px; }
.gh-hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; }
.gh-hero-eye { margin-bottom: 18px; }
.gh-hero-sub { color: var(--color-fg); margin: 24px 0 32px; max-width: 52ch; font-size: 18px; }
.gh-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.gh-hero-trust { display: flex; gap: 10px; flex-wrap: wrap; }
.gh-hero-photo {
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(31,42,42,0.10), 0 2px 6px rgba(31,42,42,0.05);
  background: #D4E0EC;
  max-width: 380px;
  margin-left: auto;
}
.gh-hero-photo img, .gh-hero-photo svg { width: 100%; height: 100%; }

/* ---------- Section ---------- */
.gh-section { padding: 96px 0; }
.gh-section-head { margin-bottom: 56px; max-width: 720px; }
.gh-section-head .gh-eyebrow { margin-bottom: 12px; }

/* 3-up grid */
.gh-three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ---------- Pricing ---------- */
.gh-guarantee {
  text-align: center; color: var(--color-fg-muted);
  margin-bottom: 32px; font-size: 15px;
}
.gh-guarantee em { font-style: italic; color: #2C4A6B; }
.gh-tier-name { font-weight: 700; font-size: 18px; color: #1F2A2A; margin-bottom: 8px; }
.gh-tier-price { font-family: var(--font-display); font-size: 42px; color: #2C4A6B; line-height: 1; }
.gh-tier-per { font-size: 14px; color: #5C6A6A; margin-left: 4px; }
.gh-tier hr { border: 0; border-top: 1px solid #E5E2D8; margin: 20px 0; }
.gh-tier ul { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 10px; }
.gh-tier li { padding-left: 24px; position: relative; font-size: 15px; line-height: 1.5; }
.gh-tier li::before { content: "✓"; position: absolute; left: 0; color: #2C4A6B; font-weight: 700; }
.gh-tier .gh-btn { display: block; width: 100%; text-align: center; justify-content: center; }
.gh-tier-popular-pill {
  position: absolute; top: -14px; left: 28px;
}

/* ---------- Service card ---------- */
.gh-svc-icon { font-size: 36px; line-height: 1; margin-bottom: 18px; }
.gh-svc-promise { color: #5C6A6A; font-size: 15px; margin: 8px 0 18px; line-height: 1.55; }
.gh-svc ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.gh-svc li { padding-left: 22px; position: relative; font-size: 14px; line-height: 1.5; }
.gh-svc li::before { content: "✓"; position: absolute; left: 0; color: #2C4A6B; font-weight: 700; }

/* ---------- About ---------- */
.gh-about-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: center; }
.gh-about-photo {
  aspect-ratio: 1; border-radius: 50%; overflow: hidden;
  box-shadow: 0 12px 40px rgba(31,42,42,0.10);
  background: #D4E0EC; max-width: 360px;
}
.gh-about-photo svg { width: 100%; height: 100%; }
.gh-about-copy p { margin: 0 0 16px; max-width: 56ch; }
.gh-about-creds { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }

/* ---------- CTA banner ---------- */
.gh-cta-banner {
  background: #2C4A6B;
  color: #FAF7F0;
  padding: 80px 0;
  text-align: center;
}
.gh-cta-banner .gh-h2 { color: #FAF7F0; margin-bottom: 32px; }
.gh-cta-banner .gh-h2 em { color: #A5BFD6; }
.gh-cta-banner-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.gh-contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.gh-contact-row {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid #E5E2D8;
}
.gh-contact-row:last-child { border-bottom: none; }
.gh-contact-row .ic { font-size: 22px; line-height: 1.3; }
.gh-contact-row .lbl { font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: #5C6A6A; margin-bottom: 4px; }
.gh-contact-row .val { font-size: 17px; color: #1F2A2A; }
.gh-form { display: flex; flex-direction: column; gap: 16px; background: #fff; border: 1px solid #E5E2D8; border-radius: 12px; padding: 32px; }
.gh-form .gh-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ---------- Footer ---------- */
.gh-footer { background: #2C4A6B; color: #FAF7F0; padding: 48px 0; }
.gh-footer-grid { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; flex-wrap: wrap; }
.gh-footer-tag { color: #A5BFD6; font-size: 14px; margin-top: 4px; }
.gh-footer h4 { font-family: var(--font-body); font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: #A5BFD6; margin: 0 0 12px; }
.gh-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; font-size: 15px; }
.gh-footer-bottom {
  border-top: 1px solid rgba(165,191,214,0.2);
  padding-top: 24px;
  margin-top: 32px;
  font-size: 13px;
  color: #A5BFD6;
}
