/* ── Forestview Calculator Styles ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&family=DM+Sans:wght@300;400;500&display=swap');

.fvc-wrap {
  --fvc-forest:      #2D4A3E;
  --fvc-forest-lt:   #3a5f51;
  --fvc-sage:        #7FA688;
  --fvc-sage-lt:     #a8c4ae;
  --fvc-cream:       #F8F4EF;
  --fvc-white:       #FDFAF7;
  --fvc-gold:        #C4924A;
  --fvc-gold-lt:     #d9a96a;
  --fvc-text:        #1e2d27;
  --fvc-text-mid:    #4a5e55;
  --fvc-text-lt:     #8a9e95;
  --fvc-border:      #dde8e2;
  --fvc-shadow:      0 4px 24px rgba(45,74,62,0.10);
  --fvc-radius:      12px;
  font-family: 'DM Sans', sans-serif;
  color: var(--fvc-text);
  background: var(--fvc-cream);
}

/* Hero */
.fvc-hero {
  background: var(--fvc-forest);
  padding: 56px 24px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: var(--fvc-radius) var(--fvc-radius) 0 0;
}
.fvc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(127,166,136,0.18) 0%, transparent 65%),
    radial-gradient(ellipse at 20% 80%, rgba(196,146,74,0.10) 0%, transparent 55%);
  pointer-events: none;
}
.fvc-hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fvc-sage-lt);
  margin-bottom: 14px;
}
.fvc-hero-title {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(28px, 5vw, 44px) !important;
  font-weight: 500 !important;
  color: #fff !important;
  line-height: 1.2 !important;
  margin-bottom: 16px !important;
  border: none !important;
}
.fvc-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.68);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Inner */
.fvc-inner {
  padding: 0 16px 64px;
}

/* Cards */
.fvc-card {
  background: var(--fvc-white);
  border: 1px solid var(--fvc-border);
  border-radius: var(--fvc-radius);
  padding: 32px;
  margin-top: 28px;
  box-shadow: var(--fvc-shadow);
  transition: opacity 0.3s;
}
.fvc-card.fvc-locked {
  opacity: 0.45;
  pointer-events: none;
}
.fvc-step-label {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fvc-gold);
  margin-bottom: 8px;
}
.fvc-card h2 {
  font-family: 'Playfair Display', serif !important;
  font-size: 20px !important;
  font-weight: 500 !important;
  color: var(--fvc-forest) !important;
  margin-bottom: 24px !important;
  border: none !important;
}

/* Select */
.fvc-select-wrap { position: relative; }
.fvc-select-wrap select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background: #fff;
  border: 1.5px solid var(--fvc-border);
  border-radius: 8px;
  padding: 14px 44px 14px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--fvc-text);
  cursor: pointer;
  transition: border-color 0.2s;
}
.fvc-select-wrap select:focus { outline: none; border-color: var(--fvc-sage); }
.fvc-select-wrap::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--fvc-text-mid);
  pointer-events: none;
}

/* Suite pills */
.fvc-suite-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}
.fvc-suite-pill {
  border: 1.5px solid var(--fvc-border);
  border-radius: 10px;
  padding: 18px 16px;
  cursor: pointer;
  transition: all 0.2s;
  background: #fff;
  text-align: left;
}
.fvc-suite-pill:hover { border-color: var(--fvc-sage); background: #f0f7f2; }
.fvc-suite-pill.fvc-selected {
  border-color: var(--fvc-forest);
  background: var(--fvc-forest);
  color: #fff;
}
.fvc-suite-name { font-weight: 500; font-size: 14px; margin-bottom: 4px; }
.fvc-suite-price { font-size: 13px; color: var(--fvc-text-lt); }
.fvc-suite-pill.fvc-selected .fvc-suite-price { color: var(--fvc-sage-lt); }

/* Expense grid */
.fvc-expense-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 580px) { .fvc-expense-grid { grid-template-columns: 1fr; } }

.fvc-field label {
  display: block;
  font-size: 12.5px;
  color: var(--fvc-text-mid);
  margin-bottom: 6px;
  line-height: 1.4;
}
.fvc-input-wrap { position: relative; }
.fvc-input-wrap span {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--fvc-text-lt);
  font-size: 15px;
  pointer-events: none;
}
.fvc-input-wrap input {
  width: 100%;
  border: 1.5px solid var(--fvc-border);
  border-radius: 8px;
  padding: 12px 12px 12px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--fvc-text);
  background: #fff;
  transition: border-color 0.2s;
  box-shadow: none;
}
.fvc-input-wrap input:focus { outline: none; border-color: var(--fvc-sage); }
.fvc-input-wrap input::placeholder { color: #c8d4cf; }

/* Calculate button */
.fvc-calc-btn {
  display: block;
  width: 100%;
  margin-top: 28px;
  padding: 17px;
  background: var(--fvc-forest);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.1s;
}
.fvc-calc-btn:hover { background: var(--fvc-forest-lt); }
.fvc-calc-btn:active { transform: scale(0.99); }

/* Results */
.fvc-results-card {
  background: var(--fvc-forest);
  border-radius: var(--fvc-radius);
  padding: 36px;
  color: #fff;
  box-shadow: 0 8px 40px rgba(45,74,62,0.22);
  margin-top: 28px;
}
.fvc-results-card h2 {
  font-family: 'Playfair Display', serif !important;
  font-size: 22px !important;
  font-weight: 500 !important;
  color: #fff !important;
  margin-bottom: 32px !important;
  border: none !important;
}
.fvc-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
@media (max-width: 600px) { .fvc-results-grid { grid-template-columns: 1fr; } }

.fvc-result-box {
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 22px 18px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.12);
}
.fvc-result-box.fvc-highlight {
  background: var(--fvc-gold);
  border-color: var(--fvc-gold-lt);
}
.fvc-r-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  margin-bottom: 10px;
}
.fvc-highlight .fvc-r-label { color: rgba(255,255,255,0.85); }
.fvc-r-value {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 500;
  color: #fff;
  line-height: 1;
}
.fvc-result-message {
  background: rgba(255,255,255,0.07);
  border-left: 3px solid var(--fvc-gold);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  font-size: 14.5px;
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
  margin-bottom: 28px;
}
.fvc-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.fvc-btn-outline {
  flex: 1;
  min-width: 140px;
  padding: 13px 20px;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 8px;
  background: transparent;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.fvc-btn-outline:hover { background: rgba(255,255,255,0.10); color: #fff; text-decoration: none; }
.fvc-btn-solid {
  flex: 1;
  min-width: 140px;
  padding: 13px 20px;
  background: #fff;
  color: var(--fvc-forest);
  border: none;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.fvc-btn-solid:hover { background: var(--fvc-cream); text-decoration: none; }

.fvc-disclaimer {
  font-size: 12px;
  color: var(--fvc-text-lt);
  text-align: center;
  margin-top: 20px;
  line-height: 1.6;
  padding: 0 8px;
}

/* Print */
@media print {
  .fvc-hero { background: #fff !important; }
  .fvc-hero-title, .fvc-hero-sub, .fvc-hero-eyebrow { color: #000 !important; }
  .fvc-actions, .fvc-calc-btn { display: none !important; }
  .fvc-results-card { background: #fff !important; color: #000 !important; border: 2px solid #2D4A3E; }
  .fvc-result-box { background: #f9f9f9 !important; border: 1px solid #ccc !important; }
  .fvc-r-label, .fvc-r-value { color: #000 !important; }
}
