:root {
  --bg: #faf9f5;
  --bg-deep: #f0eee7;
  --fg: #1a1a18;
  --fg-muted: #5c5c52;
  --accent: #2d6a30;
  --accent-light: #e8f3e8;
  --accent-dark: #1d4a1f;
  --warm: #c4a35a;
  --warm-light: #fdf6e3;
  --border: #ddd8cc;
  --radius: 12px;
  --radius-lg: 20px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.section-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 32px 0;
  overflow: hidden;
  background: linear-gradient(175deg, #1a2e1a 0%, #2d4a2d 40%, #3a5c3a 100%);
  color: #fff;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(ellipse 600px 400px at 80% 20%, rgba(196, 163, 90, 0.15), transparent),
    radial-gradient(ellipse 400px 600px at 10% 80%, rgba(45, 106, 48, 0.2), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.hero-badge {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warm);
  border: 1px solid rgba(196, 163, 90, 0.3);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero h1 .accent {
  color: var(--warm);
}

.hero .lede {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin-bottom: 48px;
}

.hero-stripe {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 20px 32px;
  margin-top: auto;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}

.stripe-item {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.stripe-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

/* ── SERVICES ── */
.services {
  padding: 100px 32px;
  background: var(--bg);
}

.services-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.services h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 48px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.service-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-card p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ── WHY ── */
.why {
  padding: 100px 32px;
  background: var(--bg-deep);
}

.why-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}

.why-text h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.why-intro {
  color: var(--fg-muted);
  margin-bottom: 40px;
  font-size: 1.05rem;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-number {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--accent);
  opacity: 0.3;
  min-width: 40px;
  line-height: 1.3;
}

.why-point h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.why-point p {
  color: var(--fg-muted);
  font-size: 0.95rem;
}

.why-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 40px;
}

.stat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--accent-dark);
  letter-spacing: -1px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-top: 4px;
}

/* ── CLOSING ── */
.closing {
  padding: 100px 32px;
  background: var(--bg);
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 40px;
}

.closing-tagline {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--accent-dark);
  padding-top: 24px;
  border-top: 2px solid var(--accent);
  display: inline-block;
}

/* ── FOOTER ── */
.site-footer {
  padding: 48px 32px;
  background: var(--fg);
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-brand {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 4px;
}

.footer-location {
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.footer-email {
  font-size: 0.9rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
    padding: 60px 20px 0;
  }

  .hero h1 {
    letter-spacing: -1px;
  }

  .hero-stripe {
    gap: 12px;
    padding: 16px 20px;
  }

  .stripe-divider {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-visual {
    flex-direction: row;
    flex-wrap: wrap;
    position: static;
  }

  .stat-card {
    flex: 1;
    min-width: 140px;
  }

  .services, .why, .closing {
    padding: 64px 20px;
  }
}

@media (max-width: 480px) {
  .stripe-item {
    font-size: 12px;
  }

  .why-visual {
    flex-direction: column;
  }

  .stat-card {
    min-width: 100%;
  }
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--warm);
  color: #1a1a18;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 16px rgba(196, 163, 90, 0.25);
  letter-spacing: 0.3px;
}

.btn-primary:hover {
  background: #d4b36a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 163, 90, 0.35);
}

.btn-primary.btn-large {
  font-size: 1.1rem;
  padding: 18px 44px;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--accent-dark);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 100px;
  border: 2px solid var(--accent);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
  letter-spacing: 0.3px;
}

.btn-secondary:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

/* ── HERO CTA ── */
.hero-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hero-cta-note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.3px;
}

/* ── CLOSING CTA ── */
.closing .btn-primary {
  margin-bottom: 40px;
}

/* ── FOOTER LINKS ── */
.footer-links {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-link:hover {
  color: rgba(255, 255, 255, 0.85);
}

.footer-sep {
  color: rgba(255, 255, 255, 0.25);
}

/* ── SITE NAV (quote + inner pages) ── */
.site-nav {
  background: var(--fg);
  padding: 16px 32px;
}

.nav-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-brand {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-tagline {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  font-family: 'Outfit', sans-serif;
}

/* ── QUOTE PAGE ── */
.page-quote {
  background: var(--bg);
}

.quote-section {
  padding: 60px 32px 100px;
}

.quote-container {
  max-width: 720px;
  margin: 0 auto;
}

.quote-header {
  margin-bottom: 48px;
}

.quote-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--fg);
}

.quote-subtitle {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 520px;
}

/* ── FORM ── */
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-section-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.82rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
}

.form-row.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--fg);
}

.required {
  color: var(--accent);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--fg);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(45, 106, 48, 0.1);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235c5c52' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

/* ── SERVICE OPTION CARDS ── */
.service-option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.service-option {
  cursor: pointer;
}

.service-option input[type="radio"] {
  display: none;
}

.service-option-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.service-option input:checked + .service-option-card {
  border-color: var(--accent);
  background: var(--accent-light);
  box-shadow: 0 0 0 3px rgba(45, 106, 48, 0.1);
}

.service-option:hover .service-option-card {
  border-color: var(--accent);
}

.service-option-icon {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.service-option-card strong {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--fg);
}

.service-option-card span {
  font-size: 0.82rem;
  color: var(--fg-muted);
}

/* ── FORM SUBMISSION ── */
.form-submit {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.submit-note {
  font-size: 0.88rem;
  color: var(--fg-muted);
}

/* ── FORM ERROR ── */
.form-error-banner {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius);
  padding: 14px 20px;
  color: #991b1b;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

/* ── QUOTE SUCCESS ── */
.quote-success {
  text-align: center;
  padding: 60px 24px;
}

.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent-light);
  border: 2px solid var(--accent);
  color: var(--accent);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-weight: 700;
}

.quote-success h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.quote-success p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  max-width: 420px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── ADMIN ── */
.page-admin {
  background: #f4f3ef;
  min-height: 100vh;
}

.admin-layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.admin-header {
  background: var(--fg);
  padding: 16px 32px;
}

.admin-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-brand-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: -0.5px;
}

.admin-brand-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warm);
  background: rgba(196, 163, 90, 0.12);
  border: 1px solid rgba(196, 163, 90, 0.25);
  padding: 3px 9px;
  border-radius: 100px;
}

.admin-view-site {
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.admin-view-site:hover {
  color: rgba(255, 255, 255, 0.85);
}

.admin-stats-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 0;
}

.admin-stat {
  flex: 1;
  padding: 20px 32px;
  border-right: 1px solid var(--border);
  text-align: center;
}

.admin-stat:last-child {
  border-right: none;
}

.admin-stat-highlight .admin-stat-num {
  color: var(--accent-dark);
}

.admin-stat-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: -1px;
  color: var(--fg);
  line-height: 1.1;
}

.admin-stat-label {
  font-size: 0.82rem;
  color: var(--fg-muted);
  margin-top: 4px;
}

.admin-main {
  flex: 1;
  padding: 32px;
}

.admin-main-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.admin-empty {
  text-align: center;
  padding: 80px 24px;
  color: var(--fg-muted);
}

.admin-empty-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.admin-empty h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--fg);
  margin-bottom: 8px;
}

.admin-empty a {
  color: var(--accent);
}

/* ── ADMIN TABLE ── */
.admin-table-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.admin-table thead th {
  background: var(--bg-deep);
  padding: 12px 16px;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--fg-muted);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.admin-table tbody tr {
  border-bottom: 1px solid var(--border);
}

.admin-table tbody tr:last-child {
  border-bottom: none;
}

.quote-row--new {
  background: #fff;
}

.quote-row--contacted {
  background: #fffbf0;
}

.quote-row--booked {
  background: #f0faf0;
}

.quote-row--declined {
  background: #fafafa;
  opacity: 0.7;
}

.quote-row--notes td {
  padding-top: 0 !important;
}

.admin-table td {
  padding: 14px 16px;
  vertical-align: top;
}

.td-date {
  white-space: nowrap;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--fg);
}

.td-time {
  display: block;
  font-weight: 400;
  font-size: 0.78rem;
  color: var(--fg-muted);
}

.td-name strong {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}

.td-contact a {
  color: var(--accent-dark);
  text-decoration: none;
  font-size: 0.88rem;
}

.td-contact a:hover {
  text-decoration: underline;
}

.td-property {
  font-size: 0.88rem;
}

.td-city {
  color: var(--fg-muted);
  font-size: 0.82rem;
}

.td-lot {
  color: var(--fg-muted);
  font-size: 0.78rem;
  margin-top: 2px;
  font-style: italic;
}

.td-none {
  color: var(--fg-muted);
}

.service-tag {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent-dark);
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
}

.status-badge {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 100px;
}

.status-badge--new {
  background: #dbeafe;
  color: #1e40af;
}

.status-badge--contacted {
  background: #fef3c7;
  color: #92400e;
}

.status-badge--booked {
  background: var(--accent-light);
  color: var(--accent-dark);
}

.status-badge--declined {
  background: #f3f4f6;
  color: #6b7280;
}

.status-select {
  padding: 6px 10px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--fg);
  background: #fff;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.status-select:focus {
  outline: none;
  border-color: var(--accent);
}

.td-notes {
  padding-top: 0;
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-style: italic;
  border-bottom: 2px solid var(--border) !important;
}

.notes-label {
  font-weight: 600;
  font-style: normal;
  color: var(--fg);
  margin-right: 4px;
}

/* ── QUOTE PAGE RESPONSIVE ── */
@media (max-width: 640px) {
  .quote-section {
    padding: 40px 20px 80px;
  }

  .form-row.two-col {
    grid-template-columns: 1fr;
  }

  .service-option-grid {
    grid-template-columns: 1fr;
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .admin-stat {
    padding: 16px 20px;
  }

  .admin-stat-num {
    font-size: 1.5rem;
  }

  .admin-main {
    padding: 16px;
  }
}