*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --green-dark: #2d4a1e; --green-mid: #3d6b2a; --green-light: #a8c580;
  --brown-dark: #3b2a1a; --brown-mid: #7a5c3e; --brown-light: #c4a882;
  --tan: #f0e8d8; --tan-dark: #ddd0b8; --cream: #faf6ef;
  --white: #ffffff; --text-dark: #2a1f14; --text-mid: #5a4535; --text-light: #8a7060;
  --serif: 'Playfair Display', Georgia, serif; --sans: 'Source Sans 3', sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--cream); color: var(--text-dark); font-size: 18px; line-height: 1.7; overflow-x: hidden; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; background: linear-gradient(to right, rgba(110,170,55,0.97) 0%, rgba(40,75,18,0.97) 100%); backdrop-filter: blur(10px); display: flex; align-items: center; justify-content: center; padding: 0 3rem; height: 72px; }
.nav-logo { position: absolute; left: 3rem; text-decoration: none; display: flex; align-items: center; }
.nav-logo-img { height: 50px; width: auto; display: block; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { color: var(--tan); text-decoration: none; font-size: 0.9rem; font-weight: 400; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.8; transition: opacity 0.2s; }
.nav-links a:hover { opacity: 1; }
.nav-cta { background: var(--brown-light) !important; color: var(--brown-dark) !important; padding: 0.5rem 1.4rem; border-radius: 2px; font-weight: 700 !important; opacity: 1 !important; }
.nav-cta:hover { background: var(--tan) !important; }
.nav-cta-book { background: transparent !important; color: var(--tan) !important; padding: 0.45rem 1.2rem; border-radius: 2px; font-weight: 600 !important; opacity: 1 !important; border: 1.5px solid rgba(240,232,216,0.55) !important; transition: border-color 0.2s, background 0.2s !important; }
.nav-cta-book:hover { border-color: var(--tan) !important; background: rgba(240,232,216,0.08) !important; }
.nav-dropdown { position: relative; }
.nav-dropdown-menu { display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); background: rgba(30,50,16,0.97); backdrop-filter: blur(12px); border-radius: 4px; padding: 0.6rem 0; list-style: none; min-width: 220px; box-shadow: 0 8px 32px rgba(0,0,0,0.25); z-index: 300; border: 1px solid rgba(168,197,128,0.15); border-top: 8px solid transparent; }
.nav-dropdown-menu li a { display: block; padding: 0.65rem 1.4rem; color: var(--tan) !important; font-size: 0.85rem !important; letter-spacing: 0.04em; text-transform: none !important; opacity: 0.8; white-space: nowrap; transition: opacity 0.15s, background 0.15s; }
.nav-dropdown-menu li a:hover { opacity: 1 !important; background: rgba(168,197,128,0.1); }
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-arrow { font-size: 0.65rem; margin-left: 0.25rem; opacity: 0.7; }
.nav-hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.4rem 0.5rem; margin-left: auto; flex-shrink: 0; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--tan); transition: transform 0.25s, opacity 0.25s; border-radius: 1px; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0; z-index: 199; background: rgba(18,32,10,0.97); flex-direction: column; align-items: center; justify-content: center; gap: 1.4rem; overflow-y: auto; padding: 2rem; }
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a { color: var(--tan); font-size: 1.2rem; text-decoration: none; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.85; }
.nav-mobile-menu a:hover { opacity: 1; }
.nav-cta-mobile { background: var(--brown-light) !important; color: var(--brown-dark) !important; padding: 1rem 2.8rem; border-radius: 2px; font-weight: 700 !important; opacity: 1 !important; }
.mobile-cta-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; grid-template-columns: 1fr 1fr; border-top: 2px solid rgba(168,197,128,0.3); }
.mobile-cta-call { background: var(--green-dark); color: var(--tan); padding: 1rem 0.5rem; text-align: center; font-weight: 700; text-decoration: none; font-size: 0.9rem; letter-spacing: 0.05em; text-transform: uppercase; border-right: 1px solid rgba(168,197,128,0.2); }
.mobile-cta-quote { background: var(--brown-light); color: var(--brown-dark); padding: 1rem 0.5rem; text-align: center; font-weight: 700; text-decoration: none; font-size: 0.9rem; letter-spacing: 0.05em; text-transform: uppercase; }

/* PAGE HEADER */
.page-header { background: var(--green-dark); padding: 8rem 2rem 5rem; text-align: center; position: relative; background-size: cover; background-position: center; background-repeat: no-repeat; }
.page-header::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--green-light), var(--brown-light)); }
.section-label { display: flex; align-items: center; gap: 0.75rem; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brown-mid); justify-content: center; margin-bottom: 1rem; }
.section-label::before, .section-label::after { content: ''; width: 28px; height: 1.5px; background: var(--brown-mid); }
.page-header .section-label { color: var(--green-light); }
.page-header .section-label::before, .page-header .section-label::after { background: var(--green-light); }
.page-header h1 { font-family: var(--serif); font-size: clamp(2.2rem,4vw,3.2rem); color: var(--tan); margin-bottom: 1.2rem; line-height: 1.2; }
.page-header p { color: rgba(240,232,216,0.75); font-size: 1.15rem; max-width: 680px; margin: 0 auto; }

/* SECTIONS */
section { padding: 6rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
h2.section-title { font-family: var(--serif); font-size: clamp(2rem,3.5vw,2.8rem); color: var(--green-dark); margin-bottom: 1rem; }
.section-sub { font-size: 1.05rem; color: var(--text-mid); max-width: 680px; margin: 0 auto 3rem; }

/* CONTENT */
.content-section { background: var(--cream); padding: 5rem 2rem; }
.content-inner { max-width: 900px; margin: 0 auto; }
.content-inner h2 { font-family: var(--serif); font-size: clamp(1.7rem,2.8vw,2.2rem); color: var(--green-dark); margin: 2.5rem 0 1rem; border-left: 4px solid var(--green-light); padding-left: 1rem; }
.content-inner h2:first-child { margin-top: 0; }
.content-inner h3 { font-family: var(--serif); font-size: 1.3rem; color: var(--green-dark); margin: 1.5rem 0 0.6rem; }
.content-inner p { color: var(--text-mid); line-height: 1.8; margin-bottom: 1.2rem; }
.content-inner ul { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.content-inner ul li { padding: 0.45rem 0 0.45rem 1.8rem; position: relative; color: var(--text-mid); line-height: 1.75; }
.content-inner ul li::before { content: '✓'; position: absolute; left: 0; color: var(--green-mid); font-weight: 700; }

/* WHY BOX */
.why-box { background: var(--tan); border-left: 4px solid var(--green-mid); border-radius: 0 4px 4px 0; padding: 1.8rem 2rem; margin: 2rem 0; }
.why-box h3 { font-family: var(--serif); color: var(--green-dark); margin-bottom: 0.75rem; font-size: 1.25rem; }

/* LINK GRID */
.link-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; margin-top: 1.5rem; }
.link-card { background: var(--white); border: 1.5px solid var(--tan-dark); border-radius: 4px; padding: 1.4rem 1.2rem; text-align: center; text-decoration: none; color: var(--green-dark); font-family: var(--serif); font-size: 1.05rem; font-weight: 700; transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s; display: block; }
.link-card:hover { box-shadow: 0 6px 24px rgba(45,74,30,0.12); transform: translateY(-3px); border-color: var(--green-light); }
.link-card span { display: block; font-family: var(--sans); font-size: 0.82rem; color: var(--text-light); font-weight: 400; margin-top: 0.3rem; }

/* CTA BAND */
.cta-band { background: var(--green-dark); padding: 5rem 2rem; text-align: center; }
.cta-band h2 { font-family: var(--serif); font-size: clamp(2rem,3.5vw,2.8rem); color: var(--tan); margin-bottom: 1rem; }
.cta-band p { color: rgba(240,232,216,0.75); font-size: 1.1rem; max-width: 620px; margin: 0 auto 2rem; }
.btn-primary { display: inline-block; background: var(--brown-light); color: var(--brown-dark); padding: 1.1rem 2.5rem; border-radius: 2px; font-weight: 700; font-size: 0.95rem; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; transition: background 0.2s, transform 0.2s; }
.btn-primary:hover { background: var(--tan); transform: translateY(-2px); }

/* FAQ */
.faq-section { background: var(--tan); padding: 5rem 2rem; }
.faq-list { max-width: 780px; margin: 0 auto; text-align: left; }
.faq-item { border-bottom: 1.5px solid var(--tan-dark); padding: 1.8rem 0; }
.faq-question { display: flex; justify-content: space-between; align-items: center; cursor: pointer; gap: 1rem; font-weight: 600; color: var(--text-dark); font-size: 1.05rem; }
.faq-toggle { font-size: 1.6rem; color: var(--brown-mid); flex-shrink: 0; transition: transform 0.25s; font-family: var(--sans); font-weight: 300; line-height: 1; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer { color: var(--text-mid); font-size: 1rem; line-height: 1.78; display: none; padding-top: 0.8rem; }
.faq-item.open .faq-answer { display: block; }

/* FOOTER */
footer { background: var(--brown-dark); padding: 4rem 2rem 2rem; color: rgba(240,232,216,0.65); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; }
.footer-brand { font-family: var(--serif); font-size: 1.3rem; color: var(--tan); margin-bottom: 0.4rem; }
.footer-tagline { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brown-light); margin-bottom: 1rem; }
.footer-desc { font-size: 0.9rem; line-height: 1.75; }
.footer-col h4 { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--brown-light); margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul a { color: rgba(240,232,216,0.65); text-decoration: none; font-size: 0.92rem; }
.footer-col ul a:hover { color: var(--tan); }
.footer-bottom { max-width: 1200px; margin: 2.5rem auto 0; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; }
.lic-badge { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); padding: 0.35rem 1rem; border-radius: 2px; font-size: 0.78rem; letter-spacing: 0.06em; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* BOOKING WIDGET FORM */
.form-step { display: none; }
.form-step.active { display: block; }
.form-step-label { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--brown-light); font-weight: 700; margin-bottom: 0.5rem; }
.form-step-question { font-family: var(--serif); font-size: 1.4rem; color: var(--green-dark); margin-bottom: 1.8rem; line-height: 1.35; }
.form-options { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-bottom: 1.5rem; }
.form-option { border: 1.5px solid var(--tan-dark); background: var(--white); border-radius: 3px; padding: 0.95rem 1.1rem; font-size: 0.95rem; color: var(--text-mid); cursor: pointer; font-family: var(--sans); text-align: left; transition: border-color 0.15s, background 0.15s; }
.form-option:hover, .form-option.selected { border-color: var(--green-mid); background: #f0f6ea; color: var(--green-dark); }
.form-input { width: 100%; border: 1.5px solid var(--tan-dark); background: var(--white); border-radius: 3px; padding: 1rem 1.1rem; font-size: 1rem; color: var(--text-dark); font-family: var(--sans); outline: none; transition: border-color 0.15s; resize: vertical; margin-bottom: 1rem; }
.form-input:focus { border-color: var(--green-mid); }
.form-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 1.5rem; }
.form-progress { display: flex; gap: 7px; }
.form-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--tan-dark); transition: background 0.2s; }
.form-dot.done { background: var(--green-mid); }
.form-dot.active { background: var(--green-dark); }
.btn-next { background: var(--green-dark); color: var(--tan); border: none; padding: 0.85rem 2rem; border-radius: 3px; font-family: var(--sans); font-size: 0.9rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; transition: background 0.2s; }
.btn-next:hover { background: var(--green-mid); }
.btn-back { background: none; border: none; color: var(--text-light); font-family: var(--sans); font-size: 0.9rem; cursor: pointer; padding: 0.5rem 0; }
.btn-back:hover { color: var(--text-mid); }
.form-success { display: none; text-align: center; padding: 2.5rem 0; }
.form-success-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.form-success h3 { font-family: var(--serif); font-size: 1.7rem; color: var(--green-dark); margin-bottom: 0.6rem; }
.form-success p { color: var(--text-mid); font-size: 1rem; }

/* FLOATING ESTIMATE WIDGET */
.estimate-widget { position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 300; width: 380px; max-width: calc(100vw - 2rem); background: var(--cream); border: 1.5px solid var(--tan-dark); border-radius: 10px; box-shadow: 0 20px 50px rgba(0,0,0,0.3); overflow: hidden; }
.estimate-widget-header { background: var(--green-dark); color: var(--tan); padding: 0.9rem 1.2rem; display: flex; align-items: center; justify-content: space-between; cursor: pointer; font-weight: 700; font-family: var(--sans); font-size: 0.95rem; }
.estimate-widget-toggle { font-size: 1.3rem; line-height: 1; }
.estimate-widget-body { padding: 1.4rem 1.4rem 1.6rem; max-height: 70vh; overflow-y: auto; }
.estimate-widget.collapsed .estimate-widget-body { display: none; }
.slot-option.selected { border-color: var(--green-mid); background: #f0f6ea; color: var(--green-dark); }

/* RESPONSIVE */
@media (max-width: 900px) {
  body { padding-bottom: 58px; }
  nav { padding: 0 1.5rem; justify-content: flex-start; }
  .nav-logo { position: static; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-cta-bar { display: grid; }
  section { padding: 4rem 1.5rem; }
  .content-section { padding: 4rem 1.5rem; }
  .link-grid { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.8rem; text-align: center; }
  .page-header { padding: 7rem 1.5rem 4rem; }
  .form-options { grid-template-columns: 1fr; }
  .estimate-widget { right: 0.75rem; left: 0.75rem; bottom: 4.5rem; width: auto; max-width: none; }
  .estimate-widget-body { max-height: 60vh; }
}
@media (max-width: 600px) {
  nav { padding: 0 1rem; }
  .nav-logo-img { height: 40px; }
  section { padding: 3.5rem 1rem; }
  .content-section { padding: 3.5rem 1rem; }
  h2.section-title { font-size: 1.9rem; }
  .link-grid { grid-template-columns: 1fr; }
  .page-header h1 { font-size: 2rem; }
  .why-box { padding: 1.4rem 1.2rem; }
  .form-step-question { font-size: 1.2rem; margin-bottom: 1.4rem; }
  .btn-next { padding: 0.85rem 1.5rem; }
  .estimate-widget-header { padding: 1rem 1.2rem; }
}
