:root {
  --teal: #085668;
  --teal-dark: #063f4d;
  --navy: #112132;
  --off-white: #f8f8f9;
  --ink: #1b2430;
  --text-muted: #4b5666;
  --border: #dfe3e8;
  --font-display: "Fraunces", serif;
  --font-body: "Inter", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: #fff;
  line-height: 1.55;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

img { max-width: 100%; display: block; }

/* Header */
.site-header {
  background: var(--navy);
  padding: 22px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.01em;
  justify-content: center;
}
.logo em { color: #6fb8c9; font-style: italic; font-weight: 500; }

/* Hero */
.hero {
  background: var(--off-white);
  padding: 72px 0 88px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 20px;
}
.eyebrow::before {
  content: "";
  display: block;
  width: 34px;
  height: 1px;
  background: var(--teal);
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
  color: var(--navy);
}
.hero-copy h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--teal);
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 0 30px;
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.check-list li {
  padding-left: 30px;
  position: relative;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  color: #fff;
  background: var(--teal);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Form card */
.hero-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 20px 45px rgba(17, 33, 50, 0.1);
  padding: 32px;
}

.hero-form-card h2 {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.005em;
  margin: 0 0 8px;
  color: var(--navy);
}

.form-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 24px;
}

#valuation-form label {
  display: block;
  margin-bottom: 14px;
}
#valuation-form label span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 5px;
}
#valuation-form input,
#valuation-form select {
  width: 100%;
  padding: 11px 14px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 5px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 14px;
}
#valuation-form input:focus,
#valuation-form select:focus {
  outline: none;
  border-color: var(--teal);
  background: #fff;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field-row label { margin-bottom: 14px; }

.field-group-label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin: 6px 0 14px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  padding: 15px 28px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: var(--teal);
  color: #fff;
}
.btn-primary:hover { background: var(--teal-dark); }

.btn-block { width: 100%; margin-top: 6px; }

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 26px 0;
  font-size: 13px;
}
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 8px;
}

/* Responsive */
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy h1 { font-size: 36px; }
  .hero { padding: 48px 0 56px; }
  .field-row { grid-template-columns: 1fr; }
}
