/* ============================================================
   Premier Dryer Vent Cleaning -- Master Design System
   Redesigned 2026-04-25 per DESIGN.md / DESIGN_DIRECTION memo
   Aesthetic: Warm Editorial (Little Nell meets Stio)
   Fonts: Cormorant Garamond + Jost
   ============================================================ */

/* --- Design Tokens --- */
:root {
  --stone:        #F5F0E8;
  --stone-deep:   #E8E1D4;
  --bark:         #2C1F14;
  --bark-mid:     #5C4A38;
  --slate:        #3D4B56;
  --slate-light:  #7A8B96;
  --amber:        #C8862A;
  --amber-hover:  #A86D1C;
  --amber-mist:   rgba(200,134,42,0.10);
  --parchment:    #FAF7F2;
  --white:        #FFFFFF;
  --border:       #D8CFC4;

  --container:    1100px;
  --section-pad:  140px;
  --section-pad-m: 64px;
  --body-max:     680px;
}

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

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

body {
  font-family: 'Jost', system-ui, sans-serif;
  font-weight: 300;
  color: var(--bark);
  background: var(--stone);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- Typography --- */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

h1 {
  font-size: 3.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

h2 {
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

h3 {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.3;
}

/* --- Container --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: transparent;
  transition: background 0.3s ease;
}

.nav.scrolled {
  background: var(--stone-deep);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--container);
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  white-space: nowrap;
}

.nav-logo-text {
  white-space: nowrap;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-logo-text {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--stone);
  line-height: 1.3;
}

.nav.scrolled .nav-logo-text {
  color: var(--bark);
}

.nav-links {
  display: none;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav.scrolled .nav-links a {
  color: var(--slate);
}

.nav-links a:hover,
.nav.scrolled .nav-links a:hover {
  color: var(--bark);
}

.nav-cta {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--amber);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.nav-cta:hover {
  border-bottom-color: var(--amber);
}

/* Mobile overlay nav */
.nav-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--stone);
  transition: background 0.2s;
}

.nav.scrolled .nav-mobile-toggle span {
  background: var(--bark);
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--stone);
  z-index: 300;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.nav-overlay.open {
  display: flex;
}

.nav-overlay a {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--bark);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-overlay-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--bark);
  cursor: pointer;
}

/* === HERO === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

/* Hero rotator — 6-slide crossfade, 42s total cycle, ~7s per slide */
.hero-rotator {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: hero-fade 42s ease-in-out infinite;
  will-change: opacity;
}
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 7s; }
.hero-slide:nth-child(3) { animation-delay: 14s; }
.hero-slide:nth-child(4) { animation-delay: 21s; }
.hero-slide:nth-child(5) { animation-delay: 28s; }
.hero-slide:nth-child(6) { animation-delay: 35s; }

@keyframes hero-fade {
  0%, 14%  { opacity: 1; }
  17%, 95% { opacity: 0; }
  100%     { opacity: 1; }
}

/* Accessibility — pin to first slide for users who prefer no motion */
@media (prefers-reduced-motion: reduce) {
  .hero-slide { animation: none; }
  .hero-slide:nth-child(1) { opacity: 1; }
}

/* Legacy hero-bg fallback (used by markets without 3 hero images yet) */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: var(--hero-image-url);
  background-size: cover;
  background-position: center;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(44,31,20,0.20) 70%,
    rgba(44,31,20,0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px 80px;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
}

.hero-content h1 {
  color: var(--stone);
  max-width: 700px;
  margin-bottom: 20px;
}

.hero-content .hero-sub {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
  color: rgba(245,240,232,0.85);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 36px;
}

/* === BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--amber);
  color: var(--bark);
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0 28px;
  height: 52px;
  border-radius: 0;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-primary:hover {
  background: var(--amber-hover);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: var(--stone);
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0 28px;
  height: 52px;
  border-radius: 0;
  border: 1px solid rgba(245,240,232,0.5);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: rgba(245,240,232,0.08);
  border-color: var(--stone);
}

.btn-primary-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--amber);
  color: var(--bark);
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0 28px;
  height: 52px;
  border-radius: 0;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-primary-dark:hover {
  background: var(--amber-hover);
}

.btn-secondary-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: var(--bark);
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0 28px;
  height: 52px;
  border-radius: 0;
  border: 1px solid var(--bark);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-secondary-dark:hover {
  background: var(--stone-deep);
}

/* === TRUST BAR === */
.trust-bar {
  background: var(--stone-deep);
  padding: 36px 0;
}

.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 48px;
  justify-content: center;
  align-items: flex-start;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

.trust-label {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
}

.trust-detail {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  color: var(--bark-mid);
  max-width: 200px;
  line-height: 1.5;
}

/* === SECTIONS === */
.section {
  padding: var(--section-pad) 0;
}

.section-label {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--bark);
  margin-bottom: 24px;
}

.section-body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--bark-mid);
  max-width: var(--body-max);
}

/* === PROBLEM SECTION === */
.problem-section {
  background: var(--stone);
  padding: var(--section-pad) 0;
}

.problem-text p {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--bark-mid);
  max-width: var(--body-max);
  margin-bottom: 20px;
}

.problem-text p:last-child {
  margin-bottom: 0;
}

.problem-text strong {
  font-weight: 500;
  color: var(--bark);
}

/* === SERVICES === */
.services-section {
  background: var(--stone-deep);
  padding: var(--section-pad) 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  background: var(--parchment);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 40px 36px;
}

.service-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--amber);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  color: var(--bark);
  margin-bottom: 12px;
}

.service-card p {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--bark-mid);
}

/* === TESTIMONIAL === */
.testimonial-section {
  background: var(--stone);
  padding: var(--section-pad) 0;
}

.testimonial-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-rule {
  width: 80px;
  height: 1px;
  background: var(--amber);
  margin: 0 auto 40px;
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bark);
  margin-bottom: 32px;
}

.testimonial-attribution {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
}

/* === CWRC URGENCY === */
.cwrc-section {
  background: var(--stone-deep);
  padding: 80px 0;
}

.cwrc-inner {
  border-left: 2px solid var(--amber);
  padding-left: 32px;
  max-width: 700px;
}

.cwrc-label {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

.cwrc-inner h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--bark);
  margin-bottom: 16px;
}

.cwrc-inner p {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--bark-mid);
}

/* === PRICING === */
.pricing-section {
  background: var(--stone);
  padding: var(--section-pad) 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  margin-top: 48px;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.pricing-tier {
  background: var(--parchment);
  padding: 40px 36px;
  border-bottom: 1px solid var(--border);
}

.pricing-tier:last-child {
  border-bottom: none;
}

.pricing-tier-label {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
}

.pricing-tier-price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--bark);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.pricing-tier p {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--bark-mid);
  margin-bottom: 24px;
}

/* === CONTACT FORM === */
.contact-section {
  background: var(--stone-deep);
  padding: var(--section-pad) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: start;
}

.contact-intro h2 {
  color: var(--bark);
  margin-bottom: 20px;
}

.contact-intro p {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--bark-mid);
  margin-bottom: 16px;
  max-width: 480px;
}

.contact-detail {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.9375rem;
  color: var(--bark-mid);
  margin-bottom: 8px;
}

.contact-detail a {
  color: var(--amber);
  text-decoration: none;
}

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

.contact-form-wrap {
  background: var(--parchment);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 48px 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: var(--bark);
  transition: border-color 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--amber);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--slate-light);
}

.form-submit {
  width: 100%;
  height: 52px;
  background: var(--amber);
  color: var(--bark);
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.2s ease;
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--amber-hover);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: wait;
}

.form-note {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.8125rem;
  color: var(--slate-light);
  margin-top: 12px;
  text-align: center;
}

/* Honeypot */
.form-honeypot {
  display: none;
}

/* === AREAS SERVED === */
.areas-section {
  background: var(--stone);
  padding: 80px 0;
}

.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.area-tag {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.9375rem;
  color: var(--bark-mid);
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: 1px;
  background: var(--parchment);
}

/* === FOOTER === */
.footer {
  background: var(--bark);
  color: var(--stone);
  padding: 64px 0 40px;
}

.footer-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  margin-bottom: 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-logo img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1) sepia(1) saturate(0) brightness(1.5);
}

.footer-brand {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--stone);
}

.footer-address {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  color: rgba(245,240,232,0.55);
  line-height: 1.7;
}

.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.9375rem;
  color: rgba(245,240,232,0.7);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--stone);
}

.footer-contact {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.9375rem;
  color: rgba(245,240,232,0.7);
  line-height: 1.8;
}

.footer-contact a {
  color: rgba(245,240,232,0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: var(--stone);
}

.footer-legal {
  border-top: 1px solid rgba(245,240,232,0.1);
  padding-top: 24px;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  color: rgba(245,240,232,0.35);
  text-align: center;
  line-height: 1.6;
}

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(20px);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal:nth-child(1) { transition-delay: 0ms; }
.reveal:nth-child(2) { transition-delay: 100ms; }
.reveal:nth-child(3) { transition-delay: 200ms; }

/* === RESPONSIVE === */
@media (min-width: 640px) {
  .hero-content h1 { font-size: 3.5rem; }
  .trust-bar-inner { gap: 20px 64px; }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-tier { border-bottom: none; border-right: 1px solid var(--border); }
  .pricing-tier:last-child { border-right: none; }
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-mobile-toggle { display: none; }

  .hero { height: 100vh; }

  .services-grid { grid-template-columns: repeat(3, 1fr); }

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

  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }

  .section-title { font-size: 2.25rem; }

  h1 { font-size: 3.5rem; }
}

@media (min-width: 1024px) {
  .hero-content h1 { font-size: 4rem; }
}

/* Mobile hero height override */
@media (max-width: 767px) {
  .hero { height: 70vh; }
  .hero-bg { background-attachment: scroll; }
  .section { padding: var(--section-pad-m) 0; }
  .cwrc-section { padding: 48px 0; }
  .contact-section { padding: var(--section-pad-m) 0; }
  .pricing-section { padding: var(--section-pad-m) 0; }
  .testimonial-section { padding: var(--section-pad-m) 0; }
  .problem-section { padding: var(--section-pad-m) 0; }
  .services-section { padding: var(--section-pad-m) 0; }
  .areas-section { padding: 48px 0; }
  .footer { padding: 48px 0 32px; }
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.875rem; }
  .section-title { font-size: 1.875rem; }
  .testimonial-quote { font-size: 1.375rem; }
  .contact-form-wrap { padding: 32px 24px; }
}

/* ============================================================
   PRICING CALCULATOR (warm-stone restyle of original widget)
   ============================================================ */
.calc-wrapper {
  max-width: 920px;
  margin: 48px auto 0;
  background: var(--parchment);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.calc-grid {
  display: grid;
  grid-template-columns: 1fr;
}
.calc-inputs {
  padding: 40px 36px;
  background: var(--parchment);
}
.calc-result {
  padding: 40px 36px;
  background: var(--bark);
  color: var(--stone);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.calc-input-label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--bark-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.calc-input-group { margin-bottom: 22px; }
.calc-input-group:last-child { margin-bottom: 0; }
.calc-input-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  background: var(--white);
  color: var(--bark);
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%235C4A38' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 10px;
  padding-right: 40px;
  cursor: pointer;
}
.calc-input-group select:focus {
  outline: none;
  border-color: var(--amber);
}
.calc-result-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.calc-price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3.75rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--stone);
  letter-spacing: -0.01em;
}
.calc-per-unit {
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(245,240,232,0.7);
  margin-bottom: 28px;
}
.calc-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--amber);
  color: var(--bark);
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}
.calc-cta:hover { background: var(--amber-hover); }
.calc-note {
  font-family: 'Jost', sans-serif;
  font-size: 0.8125rem;
  font-weight: 300;
  color: rgba(245,240,232,0.55);
  margin-top: 18px;
  line-height: 1.55;
  max-width: 320px;
}

/* Inline capture row */
.calc-capture {
  padding: 32px 36px 36px;
  background: var(--stone-deep);
  border-top: 1px solid var(--border);
}
.calc-capture-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--bark);
  margin: 0 0 18px;
  letter-spacing: -0.005em;
}
.calc-capture-form .form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
}
.calc-capture-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 14px;
}
.calc-capture-row input {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  background: var(--white);
  color: var(--bark);
}
.calc-capture-row input:focus {
  outline: none;
  border-color: var(--amber);
}
.calc-capture-submit {
  width: 100%;
  background: var(--amber);
  color: var(--bark);
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 16px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.calc-capture-submit:hover { background: var(--amber-hover); }
.calc-capture-submit:disabled { opacity: 0.6; cursor: wait; }
.calc-capture-note {
  font-family: 'Jost', sans-serif;
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--bark-mid);
  text-align: center;
  margin: 12px 0 0;
}

/* Desktop layout */
@media (min-width: 720px) {
  .calc-grid { grid-template-columns: 1.1fr 1fr; }
  .calc-capture-row { grid-template-columns: 1fr 1fr 1fr; }
}
