/* WHP Quick Test — Brand-Approximate Styles */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;0,700;1,400&family=Source+Sans+3:wght@300;400;500;600&display=swap');

:root {
  --cream: #FAF7F2;
  --linen: #F0EBE3;
  --charcoal: #2C2C2C;
  --stone: #7A7267;
  --pebble: #C4BBB0;
  --brass: #B8963E;
  --clay: #9B6B5B;
  --white: #FFFFFF;
}

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

body {
  font-family: 'Source Sans 3', 'Helvetica Neue', sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
}

/* Typography — Lora as stand-in for Freight Text */
h1, h2, h3 { font-family: 'Lora', Georgia, serif; font-weight: 400; line-height: 1.3; }
h1 { font-size: 2.4rem; font-weight: 600; margin-bottom: .5em; }
h2 { font-size: 1.6rem; margin-bottom: .4em; margin-top: 0; }
h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: .3em; }

p { margin-bottom: 1em; }
a { color: var(--charcoal); text-decoration: underline; text-decoration-color: var(--pebble); text-underline-offset: 3px; }
a:hover { text-decoration-color: var(--brass); }

/* Layout */
.page-wrapper { max-width: 100%; }
.section { padding: 56px 24px; }
.section .inner { max-width: 720px; margin: 0 auto; }
.section--cream { background: var(--cream); }
.section--linen { background: var(--linen); }

/* Hero */
.hero { padding: 80px 24px 56px; }
.hero .inner { max-width: 720px; margin: 0 auto; }
.hero .supporting { color: var(--stone); font-size: 1.05rem; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--charcoal);
  color: var(--cream);
  text-decoration: none;
  font-family: 'Source Sans 3', sans-serif;
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .02em;
  border: none;
  cursor: pointer;
  transition: background .2s;
}
.btn:hover { background: #444; text-decoration: none; }
.btn--outline {
  background: transparent;
  border: 1.5px solid var(--charcoal);
  color: var(--charcoal);
}
.btn--outline:hover { background: var(--linen); }

/* Lists */
ul, ol { margin-left: 1.4em; margin-bottom: 1em; }
li { margin-bottom: .4em; }

/* Forms (static/non-functional) */
.form-group { margin-bottom: 1.2em; }
.form-group label {
  display: block;
  font-size: .9rem;
  color: var(--stone);
  margin-bottom: .3em;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--pebble);
  background: var(--cream);
  font-family: 'Source Sans 3', sans-serif;
  font-size: .95rem;
  color: var(--charcoal);
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--brass);
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* Tables */
table { width: 100%; border-collapse: collapse; margin-bottom: 1.5em; }
th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--pebble); font-size: .92rem; }
th { font-weight: 600; background: var(--linen); }

/* Guarantee blocks */
.guarantee { margin-bottom: 1.5em; }
.guarantee h3 { color: var(--charcoal); }
.guarantee .commitment { font-weight: 500; margin-bottom: .5em; }
.guarantee .terms { color: var(--stone); font-size: .93rem; }

/* FAQ */
.faq-item { margin-bottom: 1.5em; }
.faq-item h3 { font-family: 'Source Sans 3', sans-serif; font-weight: 500; }
.faq-item p { color: var(--stone); }

/* Checklist */
.checklist { list-style: none; margin-left: 0; }
.checklist li { padding-left: 1.6em; position: relative; margin-bottom: .5em; }
.checklist li::before { content: '\2610'; position: absolute; left: 0; color: var(--pebble); }

/* Phone */
.phone-big { font-family: 'Lora', serif; font-size: 1.8rem; font-weight: 600; }

/* Split screen (homepage) */
.split { display: flex; min-height: 100vh; }
.split-panel { flex: 1; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 60px 32px; text-align: center; }
.split-panel--owner { background: var(--linen); }
.split-panel--resident { background: var(--charcoal); color: var(--cream); }
.split-panel--resident a { color: var(--cream); }
.split-panel h2 { font-size: 2rem; margin-bottom: .4em; }
.split-panel p { max-width: 360px; margin-bottom: 1.2em; }

/* Calculator placeholder */
.calculator-placeholder {
  background: var(--linen);
  border: 2px dashed var(--pebble);
  padding: 40px;
  text-align: center;
  color: var(--stone);
  font-style: italic;
  margin: 1em 0;
}

/* Metrics */
.metrics { display: flex; gap: 40px; margin: 1.2em 0; flex-wrap: wrap; }
.metric { font-family: 'Lora', serif; font-size: 1.4rem; font-weight: 600; }

/* Bottom CTA pattern */
.bottom-cta { text-align: center; }
.bottom-cta h2 { margin-bottom: .5em; }
.bottom-cta p { max-width: 560px; margin: 0 auto 1.2em; }
.bottom-cta .secondary { display: block; margin-top: .8em; color: var(--stone); font-size: .93rem; }

/* Site nav */
.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: var(--cream);
  border-bottom: 1px solid var(--pebble);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-nav .brand { font-family: 'Lora', serif; font-size: 1.1rem; font-weight: 600; text-decoration: none; color: var(--charcoal); }
.site-nav .nav-links { display: flex; gap: 20px; flex-wrap: wrap; }
.site-nav .nav-links a { font-size: .85rem; text-decoration: none; color: var(--stone); }
.site-nav .nav-links a:hover { color: var(--charcoal); }

/* Footer */
.site-footer {
  padding: 40px 24px;
  background: var(--cream);
  border-top: 1px solid var(--pebble);
  text-align: center;
  color: var(--stone);
  font-size: .85rem;
}
.site-footer a { color: var(--stone); }

/* Review badge */
.review-badge {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: var(--brass);
  color: var(--white);
  padding: 8px 16px;
  font-size: .8rem;
  font-weight: 600;
  z-index: 999;
  border-radius: 3px;
  font-family: 'Source Sans 3', sans-serif;
}

/* Page index */
.page-index { columns: 2; column-gap: 32px; }
.page-index a { display: block; padding: 6px 0; font-size: .93rem; }

/* Responsive */
@media (max-width: 700px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.3rem; }
  .split { flex-direction: column-reverse; }
  .split-panel { min-height: 50vh; }
  .metrics { flex-direction: column; gap: 12px; }
  .page-index { columns: 1; }
}
