:root {
  --bg: #0D1B14;
  --bg-alt: #142A1E;
  --fg: #E4DDD2;
  --fg-muted: #9B9485;
  --accent: #D4A854;
  --accent-dim: rgba(212, 168, 84, 0.15);
  --green: #4A7C59;
  --green-light: #6B9E78;
  --radius: 12px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ========== HERO ========== */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(74, 124, 89, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.hero-tag {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, var(--fg) 30%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lede {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--fg-muted);
  max-width: 600px;
}

.hero-accent {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}

.accent-line {
  width: 2px;
  height: 200px;
  background: linear-gradient(180deg, transparent, var(--accent), transparent);
}

/* ========== SECTION LABELS ========== */
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
}

/* ========== SERVICES ========== */
.services {
  padding: 8rem 2rem;
  background: var(--bg-alt);
}

.services-header {
  max-width: 900px;
  margin: 0 auto 4rem;
}

.services-header h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.services-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.service-card {
  padding: 3rem 2.5rem;
  background: var(--bg);
  border-radius: 2px;
  transition: background 0.3s ease;
}

.service-card:hover {
  background: rgba(74, 124, 89, 0.08);
}

.service-num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  display: block;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--fg);
}

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

/* ========== SEASONS ========== */
.seasons {
  padding: 8rem 2rem;
  position: relative;
}

.seasons::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  height: 80vw;
  background: radial-gradient(circle, var(--accent-dim) 0%, transparent 60%);
  pointer-events: none;
}

.seasons-header {
  max-width: 700px;
  margin: 0 auto 4rem;
  text-align: center;
  position: relative;
}

.seasons-header h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.seasons-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
}

.seasons-track {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.season-item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px solid rgba(74, 124, 89, 0.2);
  border-radius: var(--radius);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.season-item:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.season-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.season-item h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  color: var(--accent);
}

.season-item p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ========== DIFFERENCE ========== */
.difference {
  padding: 8rem 2rem;
  background: var(--bg-alt);
}

.diff-content {
  max-width: 900px;
  margin: 0 auto;
}

.diff-content h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}

.diff-points {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.diff-point {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(74, 124, 89, 0.15);
}

.diff-point:last-child {
  border-bottom: 1px solid rgba(74, 124, 89, 0.15);
}

.diff-point h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  color: var(--green-light);
}

.diff-point p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 700px;
}

/* ========== CLOSING ========== */
.closing {
  padding: 10rem 2rem;
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}

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

.closing h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--fg) 40%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.closing-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
}

/* ========== FOOTER ========== */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid rgba(74, 124, 89, 0.1);
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
}

.footer-tagline {
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-info {
  text-align: right;
}

.footer-info p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
    padding: 4rem 1.5rem 3rem;
  }

  .hero-accent {
    display: none;
  }

  .services,
  .seasons,
  .difference,
  .closing {
    padding: 5rem 1.5rem;
  }

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

  .seasons-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-info {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .seasons-track {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.5rem;
  }
}

/* ========== NAV ========== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13, 27, 20, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(74, 124, 89, 0.15);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-cta {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  border: 1px solid var(--accent);
  padding: 0.45rem 1rem;
  border-radius: 6px;
  transition: background 0.2s ease, color 0.2s ease;
  letter-spacing: 0.02em;
}

.nav-cta:hover,
.nav-cta--active {
  background: var(--accent);
  color: #0D1B14;
}

.nav-admin-badge {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  border: 1px solid rgba(74, 124, 89, 0.3);
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
}

/* ========== BUTTONS ========== */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #0D1B14;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.8rem;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
  letter-spacing: 0.01em;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid rgba(74, 124, 89, 0.4);
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ========== HERO ACTIONS ========== */
.hero-actions {
  margin-top: 2.5rem;
}

/* ========== CLOSING ACTIONS ========== */
.closing-actions {
  margin-top: 2.5rem;
}

/* ========== QUOTE PAGE ========== */
.quote-page {
  padding-top: 5rem;
  min-height: 100vh;
}

.quote-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

.quote-header {
  margin-bottom: 3rem;
}

.quote-header h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--fg) 30%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.quote-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  max-width: 560px;
}

/* ========== FORM ========== */
.form-section {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(74, 124, 89, 0.12);
}

.form-section:last-of-type {
  border-bottom: none;
}

.form-section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--fg);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.form-group--half {
  max-width: 50%;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg);
  letter-spacing: 0.01em;
}

.form-group .optional {
  font-weight: 400;
  color: var(--fg-muted);
  font-size: 0.8rem;
}

.form-hint {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 1rem;
  margin-top: -0.5rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  background: var(--bg-alt);
  border: 1px solid rgba(74, 124, 89, 0.25);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  width: 100%;
  transition: border-color 0.2s ease;
  appearance: none;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--green-light);
}

input::placeholder,
textarea::placeholder {
  color: var(--fg-muted);
  opacity: 0.6;
}

select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239B9485' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

/* ========== SERVICE CHECKBOXES ========== */
.services-check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.check-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--bg-alt);
  border: 1px solid rgba(74, 124, 89, 0.2);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  user-select: none;
}

.check-card:hover {
  border-color: var(--green-light);
  background: rgba(74, 124, 89, 0.08);
}

.check-card input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--accent);
  cursor: pointer;
  background: transparent;
  padding: 0;
  border: none;
}

.check-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg);
}

.check-card:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-dim);
}

/* ========== FORM FEEDBACK ========== */
.form-errors {
  background: rgba(200, 80, 80, 0.1);
  border: 1px solid rgba(200, 80, 80, 0.3);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
}

.form-error {
  font-size: 0.9rem;
  color: #e88;
  margin-bottom: 0.25rem;
}

.form-error:last-child {
  margin-bottom: 0;
}

.form-submit {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
  margin-top: 1rem;
}

.form-privacy {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* ========== QUOTE SUCCESS ========== */
.quote-success {
  text-align: center;
  padding: 4rem 0;
}

.success-icon {
  width: 64px;
  height: 64px;
  background: rgba(74, 124, 89, 0.2);
  border: 1px solid var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--green-light);
  margin: 0 auto 2rem;
}

.quote-success h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--fg);
}

.quote-success p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

/* ========== ADMIN PAGE ========== */
.admin-page {
  padding-top: 5rem;
  min-height: 100vh;
}

.admin-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 2rem 6rem;
}

.admin-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.admin-header h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 0.4rem;
}

.admin-sub {
  font-size: 0.9rem;
  color: var(--fg-muted);
}

.badge-new {
  color: var(--accent);
  font-weight: 600;
}

.admin-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.4rem 0.9rem;
  border-radius: 6px;
  text-decoration: none;
  color: var(--fg-muted);
  border: 1px solid rgba(74, 124, 89, 0.2);
  transition: all 0.2s ease;
  letter-spacing: 0.02em;
}

.filter-btn:hover {
  color: var(--fg);
  border-color: var(--green);
}

.filter-btn--active {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-dim);
}

.admin-empty {
  text-align: center;
  padding: 5rem 0;
  color: var(--fg-muted);
}

/* ========== QUOTE ROWS ========== */
.quotes-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(74, 124, 89, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.quote-row {
  background: var(--bg);
  padding: 1.75rem 2rem;
  transition: background 0.2s ease;
}

.quote-row:hover {
  background: var(--bg-alt);
}

.quote-row-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.quote-row-identity {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.quote-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--fg);
}

.quote-contact {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.quote-contact a {
  color: var(--green-light);
  text-decoration: none;
}

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

.quote-row-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.quote-date {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* Status badges */
.status-badge {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

.status-badge--new { background: rgba(212, 168, 84, 0.15); color: var(--accent); border: 1px solid rgba(212, 168, 84, 0.3); }
.status-badge--contacted { background: rgba(74, 124, 89, 0.15); color: var(--green-light); border: 1px solid rgba(74, 124, 89, 0.3); }
.status-badge--quoted { background: rgba(100, 140, 200, 0.12); color: #8aabdc; border: 1px solid rgba(100, 140, 200, 0.25); }
.status-badge--closed { background: rgba(100, 100, 100, 0.12); color: var(--fg-muted); border: 1px solid rgba(100,100,100,0.2); }

.quote-row-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem 1.5rem;
  margin-bottom: 1rem;
}

.quote-detail {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.quote-detail--full {
  grid-column: 1 / -1;
}

.detail-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  font-weight: 500;
}

.detail-value {
  font-size: 0.9rem;
  color: var(--fg);
  text-transform: capitalize;
}

.quote-row-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid rgba(74, 124, 89, 0.1);
}

.actions-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.action-btn {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: capitalize;
  padding: 0.3rem 0.7rem;
  border-radius: 5px;
  background: var(--bg-alt);
  color: var(--fg-muted);
  border: 1px solid rgba(74, 124, 89, 0.2);
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.02em;
}

.action-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ========== RESPONSIVE ADDITIONS ========== */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-group--half {
    max-width: 100%;
  }

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

  .quote-row-details {
    grid-template-columns: 1fr 1fr;
  }

  .admin-header {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .quote-row-details {
    grid-template-columns: 1fr;
  }
}