/* Georgia Owner Financing — Custom CSS */

:root {
  --gof-stone:      #1A1208;
  --gof-stone-mid:  #2C2415;
  --gof-gold:       #C9A84C;
  --gof-gold-light: #E8C96B;
  --gof-forest:     #2D4A2A;
  --gof-cream:      #F5F0E8;
  --gof-muted:      #9B8E77;
  --gof-serif:      'Playfair Display', Georgia, serif;
  --gof-sans:       'Inter', system-ui, sans-serif;
}

/* ── Base ── */
body { background: var(--gof-stone); color: var(--gof-cream); font-family: var(--gof-sans); }
*, *::before, *::after { box-sizing: border-box; }
img { max-width: 100%; height: auto; }

/* ── Hero ── */
.gof-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0D0B05 0%, #1A1208 40%, #2D4A2A 100%);
  overflow: hidden;
}
.gof-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  opacity: 0.5;
}
.gof-hero__inner {
  position: relative; z-index: 1;
  max-width: 800px;
  padding: 5rem 2rem;
}
.gof-hero__eyebrow {
  font-family: var(--gof-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gof-gold);
  margin-bottom: 1.25rem;
}
.gof-hero__h1 {
  font-family: var(--gof-serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  color: #FFFFFF;
  margin: 0 0 1.5rem;
}
.gof-hero__sub {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 300;
  color: rgba(245,240,232,0.85);
  line-height: 1.65;
  margin-bottom: 2.5rem;
}
.gof-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gof-gold);
  color: var(--gof-stone) !important;
  font-family: var(--gof-sans);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.gof-hero__cta:hover {
  background: var(--gof-gold-light);
  transform: translateY(-2px);
}
.gof-hero__phone {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--gof-muted);
}
.gof-hero__phone a { color: var(--gof-gold); text-decoration: none; }

/* ── Section wrapper ── */
.gof-section { padding: 5rem 2rem; }
.gof-section--alt { background: var(--gof-stone-mid); }
.gof-section--forest { background: var(--gof-forest); }
.gof-section--cream { background: var(--gof-cream); color: var(--gof-stone); }
.gof-container { max-width: 1100px; margin: 0 auto; }
.gof-section__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gof-gold);
  margin-bottom: 0.75rem;
}
.gof-section__h2 {
  font-family: var(--gof-serif);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1rem;
}
.gof-section__intro {
  font-size: 1.1rem;
  color: var(--gof-muted);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

/* ── How It Works steps ── */
.gof-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 2rem; }
.gof-step {
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px;
  padding: 2rem 1.5rem;
}
.gof-step__num {
  font-family: var(--gof-serif);
  font-size: 3rem;
  font-weight: 800;
  color: var(--gof-gold);
  line-height: 1;
  margin-bottom: 1rem;
}
.gof-step__title {
  font-family: var(--gof-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gof-gold);
  margin-bottom: 0.75rem;
}
.gof-step__body { font-size: 0.95rem; line-height: 1.65; color: rgba(245,240,232,0.8); }

/* ── Georgia Wide Overview ── */
.gof-overview {
  background: var(--gof-stone-mid);
  border-left: 4px solid var(--gof-gold);
  border-radius: 0 8px 8px 0;
  padding: 2.5rem 2rem;
  margin: 3rem 0;
  max-width: 860px;
}
.gof-overview__headline {
  font-family: var(--gof-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gof-gold-light);
  margin-bottom: 1rem;
}
.gof-overview p { font-size: 1.05rem; line-height: 1.75; color: rgba(245,240,232,0.88); margin: 0 0 1rem; }

/* ── Calculator Teaser ── */
.gof-calc-teaser {
  background: linear-gradient(135deg, #0D0B05 0%, #1A1208 60%, #2C2415 100%);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 8px;
  padding: 3rem 2rem;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.gof-calc-teaser__icon { font-size: 2.5rem; margin-bottom: 1rem; }
.gof-calc-teaser__title {
  font-family: var(--gof-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}
.gof-calc-teaser p { font-size: 1rem; color: rgba(245,240,232,0.8); margin-bottom: 1.5rem; }
/* ── GPR CTA Banner ── */
.gof-gpr-cta {
  background: linear-gradient(135deg, var(--gof-forest) 0%, #1E3A1B 100%);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 8px;
  padding: 3rem 2rem;
  text-align: center;
  margin: 0 auto;
  max-width: 900px;
}
.gof-gpr-cta__headline {
  font-family: var(--gof-serif);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
}
.gof-gpr-cta__body { font-size: 1.05rem; color: rgba(245,240,232,0.85); margin-bottom: 1.75rem; line-height: 1.65; }
.gof-gpr-cta__btn {
  display: inline-block;
  background: var(--gof-gold);
  color: var(--gof-stone) !important;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1rem 2.25rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
}
.gof-gpr-cta__btn:hover { background: var(--gof-gold-light); }
.gof-gpr-cta__phone { margin-top: 0.75rem; font-size: 0.9rem; color: rgba(245,240,232,0.6); }
.gof-gpr-cta__phone a { color: var(--gof-gold-light); text-decoration: none; }

/* ── FAQ ── */
.gof-faq { max-width: 800px; margin: 0 auto; }
.gof-faq__item { border-bottom: 1px solid rgba(201,168,76,0.15); padding: 1.75rem 0; }
.gof-faq__q {
  font-family: var(--gof-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gof-gold);
  margin-bottom: 0.75rem;
}
.gof-faq__a { font-size: 0.975rem; line-height: 1.75; color: rgba(245,240,232,0.85); }
.gof-faq__a a { color: var(--gof-gold); }

/* ── Blog grid ── */
.gof-posts { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.gof-card {
  background: var(--gof-stone-mid);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s;
}
.gof-card:hover { transform: translateY(-4px); }
.gof-card__body { padding: 1.5rem; }
.gof-card__cat { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gof-gold); margin-bottom: 0.5rem; }
.gof-card__title { font-family: var(--gof-serif); font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem; line-height: 1.3; }
.gof-card__title a { color: var(--gof-cream); text-decoration: none; }
.gof-card__title a:hover { color: var(--gof-gold); }
.gof-card__excerpt { font-size: 0.9rem; line-height: 1.65; color: var(--gof-muted); }
/* ── Footer ── */
.gof-footer {
  background: #0D0B05;
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 3rem 2rem;
  text-align: center;
}
.gof-footer__gpr {
  font-family: var(--gof-serif);
  font-size: 1rem;
  color: rgba(245,240,232,0.7);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}
.gof-footer__gpr a { color: var(--gof-gold); font-weight: 600; text-decoration: none; }
.gof-footer__meta { font-size: 0.8rem; color: var(--gof-muted); }
.gof-footer__meta a { color: var(--gof-muted); text-decoration: none; }

/* ── Single post ── */
.gof-article { max-width: 780px; margin: 0 auto; padding: 4rem 2rem; }
.gof-article__cat { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gof-gold); margin-bottom: 0.75rem; }
.gof-article h1 { font-family: var(--gof-serif); font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 800; line-height: 1.1; margin-bottom: 1rem; }
.gof-article__meta { font-size: 0.85rem; color: var(--gof-muted); margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(201,168,76,0.15); }
.gof-article__body { font-size: 1.05rem; line-height: 1.8; }
.gof-article__body h2 { font-family: var(--gof-serif); font-size: 1.75rem; font-weight: 700; margin: 3rem 0 1rem; color: var(--gof-gold-light); }
.gof-article__body h3 { font-family: var(--gof-serif); font-size: 1.35rem; font-weight: 700; margin: 2rem 0 0.75rem; }
.gof-article__body p { margin: 0 0 1.25rem; color: rgba(245,240,232,0.9); }
.gof-article__body ul, .gof-article__body ol { padding-left: 1.5rem; margin: 0 0 1.25rem; }
.gof-article__body li { margin-bottom: 0.5rem; color: rgba(245,240,232,0.9); }
.gof-article__body strong { color: #FFFFFF; }

/* ── CTA in article ── */
.gof-article__cta {
  background: linear-gradient(135deg, var(--gof-forest) 0%, #1E3A1B 100%);
  border-left: 4px solid var(--gof-gold);
  border-radius: 0 8px 8px 0;
  padding: 1.75rem 2rem;
  margin: 3rem 0;
}
.gof-article__cta p { color: rgba(245,240,232,0.9); margin: 0 0 1rem; font-size: 1rem; }
.gof-article__cta a.gof-btn {
  display: inline-block;
  background: var(--gof-gold);
  color: var(--gof-stone) !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
}
.gof-article__cta a.gof-btn:hover { background: var(--gof-gold-light); }
/* ── Nav ── */
.gof-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(26,18,8,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gof-nav__brand {
  font-family: var(--gof-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gof-gold);
  text-decoration: none;
}
.gof-nav__phone {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.7);
}
.gof-nav__phone a { color: var(--gof-gold); text-decoration: none; font-weight: 600; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .gof-steps { grid-template-columns: 1fr; }
  .gof-posts  { grid-template-columns: 1fr; }
  .gof-section { padding: 3rem 1.25rem; }
  .gof-hero__inner { padding: 4rem 1.25rem; }
  .gof-nav { flex-direction: column; gap: 0.5rem; text-align: center; }
}
