/* ============================================
   VARIANT: CLASSIC
   Warm, traditional, trustworthy, serif headings
   ============================================ */

/* Typography — serif headings for authority */
:root {
  --font-heading: 'Georgia', 'Times New Roman', serif;
}

h1, h2, h3 {
  font-family: var(--font-heading);
}

/* Body — warm off-white background */
body {
  background: #fefdfb;
}

/* Warmer borders */
:root {
  --color-border: #e5ddd3;
  --color-bg-alt: #faf7f2;
}

/* Hero — classic solid overlay */
.hero {
  min-height: 65vh;
}

.hero-overlay {
  background: rgba(30, 20, 10, 0.6);
}

.hero h1 {
  font-weight: 700;
  font-family: var(--font-heading);
}

/* Service cards — bordered with top accent */
.service-card {
  border-radius: 4px;
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-primary);
  transition: box-shadow 0.3s;
}

.service-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* Buttons — squared off, traditional */
.btn {
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 0.8rem 2rem;
}

/* Section title — underline accent */
.section-title {
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--color-primary);
}

/* About image — framed look */
.about-image img {
  border-radius: 4px;
  border: 4px solid var(--color-border);
  box-shadow: 8px 8px 0 var(--color-bg-alt);
}

/* Stats — bordered boxes */
.stat {
  border: 1px solid var(--color-border);
  padding: 1rem 1.5rem;
  border-radius: 4px;
  background: var(--color-bg-alt);
}

/* Testimonial — quotation marks */
.testimonial-card {
  border-radius: 4px;
  border: 1px solid var(--color-border);
  position: relative;
  padding-top: 3rem;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  font-size: 3rem;
  color: var(--color-primary);
  font-family: var(--font-heading);
  line-height: 1;
  opacity: 0.3;
}

/* CTA section — solid warm tone */
.cta-section {
  background: var(--color-primary);
}

/* Contact CTA cards */
.cta-card {
  border-radius: 4px;
  border-top: 3px solid var(--color-primary);
}

/* Footer — dark warm */
.site-footer {
  background: #2c2418;
}

.footer-bottom {
  border-top-color: #4a3d2e;
}

/* Nav — solid background, classic */
.site-header {
  background: #fefdfb;
  border-bottom: 2px solid var(--color-border);
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
}

/* Page header — subtle texture */
.page-header {
  background: var(--color-bg-alt);
  border-bottom: 2px solid var(--color-border);
}
