/* ===== DADU BEE — design tokens ===== */
:root {
  --c-yellow: #FFC107;
  --c-black: #000000;
  --c-dark: #242424;
  --c-grey-light: #F4F4F4;
  --c-grey: #ECECEC;
  --c-grey-text: #989898;
  --c-grey-text-2: #7B7B7B;
  --c-white: #FFFFFF;
  --font: 'Montserrat', -apple-system, sans-serif;
  --radius: 24px;
  --radius-pill: 28px;
  --container: 1200px;
  --header-h: 84px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--c-black);
  background: var(--c-white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, opacity .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-yellow { background: var(--c-yellow); color: var(--c-black); }
.btn-outline-yellow { background: transparent; border-color: var(--c-yellow); color: var(--c-yellow); }
.btn-white { background: var(--c-white); color: var(--c-black); }
.btn-black { background: var(--c-black); color: var(--c-white); }
.btn-outline-dark { background: transparent; border-color: #2E2E2E; color: var(--c-white); }
.btn.full { width: 100%; justify-content: center; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--c-black);
  height: var(--header-h);
  display: flex; align-items: center;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.logo { display: flex; align-items: center; gap: 8px; }
.logo-text { color: var(--c-white); font-weight: 700; font-size: 20px; letter-spacing: .5px; }
.logo-text b { color: var(--c-yellow); }
.main-nav { display: flex; gap: 32px; }
.main-nav a { color: var(--c-white); font-weight: 700; font-size: 15px; }
.main-nav a:hover { color: var(--c-yellow); }
.header-actions { display: flex; align-items: center; gap: 24px; }
.phone-link { color: var(--c-white); font-weight: 700; font-size: 15px; border: 2px solid #EEEEEE; padding: 10px 20px; border-radius: var(--radius-pill); }
.nav-toggle { display: none; background: none; border: none; color: var(--c-white); font-size: 24px; cursor: pointer; }

/* ===== Hero ===== */
.hero { background: var(--c-black); padding: 60px 0 0; overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 40px; }
.hero-text h1 { font-size: 40px; line-height: 1.22; font-weight: 700; margin-bottom: 32px; }
.hero-yellow { color: var(--c-yellow); }
.hero-italic { color: var(--c-white); font-style: italic; font-weight: 400; }
.hero-image img { border-radius: 24px 24px 0 0; width: 100%; height: 440px; object-fit: cover; }

/* ===== Stats bar ===== */
.stats-bar { background: var(--c-yellow); padding: 36px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { display: flex; align-items: center; gap: 14px; }
.stat-icon { font-size: 26px; }
.stat strong { display: block; font-size: 20px; font-weight: 700; }
.stat span { font-size: 15px; }

/* ===== Property check forms ===== */
.check-property { background: var(--c-grey-light); padding: 80px 0; text-align: center; }
.check-property--dark { background: var(--c-black); color: var(--c-white); }
.check-property h2, .final-cta h2 { font-size: 28px; font-weight: 700; margin-bottom: 8px; }
.subhead { color: var(--c-grey-text); font-size: 18px; margin-bottom: 32px; }
.property-form {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr auto;
  gap: 0;
  background: var(--c-white);
  border: 2px solid var(--c-yellow);
  border-radius: var(--radius);
  padding: 12px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.property-form--dark { border-color: var(--c-white); }
.property-form input {
  border: none;
  border-right: 1px solid #eee;
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 14px;
  outline: none;
  background: transparent;
  min-width: 0;
}
.property-form input::placeholder { color: #989898; text-transform: uppercase; font-size: 12px; letter-spacing: .5px; }
.property-form button { margin-left: 12px; }
.no-obligation { margin-top: 14px; font-size: 13px; letter-spacing: .5px; text-transform: uppercase; color: var(--c-grey-text); }
.check-property--dark .no-obligation { color: var(--c-white); }

/* ===== Section titles ===== */
.section-title { font-size: 28px; font-weight: 700; text-align: center; margin-bottom: 48px; }
.section-title--light { color: var(--c-white); }

/* ===== Projects ===== */
.projects { padding: 100px 0; }
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.project-card {
  background: var(--c-white);
  border-radius: var(--radius);
  box-shadow: 1px 1px 10px rgba(0,0,0,.06);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.project-card img { height: 220px; width: 100%; object-fit: cover; background: var(--c-grey); }
.project-body { padding: 24px; flex: 1; }
.project-body h3 { font-size: 22px; margin-bottom: 8px; }
.project-meta { color: var(--c-yellow); font-size: 14px; font-weight: 500; margin-bottom: 12px; }
.project-desc { color: var(--c-grey-text); font-size: 14px; line-height: 1.5; }
.project-footer { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; background: var(--c-grey-light); }
.price { font-size: 20px; font-weight: 700; }
.link-arrow { font-size: 13px; font-weight: 500; text-transform: uppercase; letter-spacing: .5px; }

.project-card--dark { background: #020202; color: var(--c-white); }
.project-body--dark { display: flex; flex-direction: column; gap: 12px; padding: 32px; }
.home-icon { font-size: 28px; color: var(--c-yellow); }
.project-body--dark h3 { color: var(--c-yellow); font-size: 22px; }
.project-desc--dark { color: #B7B7B7; margin-bottom: 8px; }
.mini-form { display: flex; flex-direction: column; gap: 10px; }
.mini-form input {
  background: #272727; border: none; border-radius: var(--radius-pill);
  padding: 12px 16px; color: var(--c-white); font-family: var(--font); font-size: 13px;
}
.mini-form input::placeholder { color: #BABABA; text-transform: uppercase; font-size: 12px; }

/* ===== Process ===== */
.process { background: var(--c-white); padding: 100px 0; }
.process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 60px; }
.process-step { display: flex; gap: 24px; align-items: flex-start; }
.step-number { font-size: 64px; font-weight: 700; line-height: 1; color: var(--c-black); flex-shrink: 0; }
.step-body h3 { font-size: 22px; margin-bottom: 10px; }
.step-body p { color: var(--c-grey-text); font-size: 14px; line-height: 1.6; margin-bottom: 12px; }
.step-tag { display: inline-block; font-weight: 500; font-size: 16px; color: var(--c-yellow); }
.step-tag--free { color: #FF0000; }
.step-tag--free a { font-size: 13px; text-transform: uppercase; color: var(--c-black); margin-left: 8px; }

/* ===== Budget mistake ===== */
.budget-mistake {
  position: relative;
  min-height: 500px;
  background: linear-gradient(135deg, #2b2b2b, #4a4a4a) center/cover;
  display: flex; align-items: center;
  padding: 60px 0;
}
.budget-card {
  background: rgba(255,255,255,.9);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 520px;
}
.budget-card h2 { font-size: 32px; margin-bottom: 16px; }
.budget-card p { font-size: 15px; line-height: 1.6; }
.budget-tags { position: absolute; inset: 0; pointer-events: none; }
.budget-tags span {
  position: absolute;
  left: var(--x); top: var(--y);
  background: rgba(255,255,255,.85);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  font-weight: 700; font-size: 13px;
  white-space: nowrap;
}
@media (max-width: 900px) { .budget-tags { display: none; } }

/* ===== Feasibility ===== */
.feasibility { background: var(--c-yellow); padding: 100px 0; }
.feasibility-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.feasibility-text h2 { font-size: 32px; margin-bottom: 18px; }
.feasibility-text p { font-size: 15px; margin-bottom: 24px; max-width: 460px; }
.feasibility-meta { display: flex; gap: 24px; margin-top: 18px; font-size: 14px; font-weight: 700; }
.feasibility-card {
  background: var(--c-white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 1px 1px 10px rgba(0,0,0,.06);
}
.feasibility-card h3 { font-size: 20px; margin-bottom: 20px; }
.feasibility-card li { font-size: 15px; font-weight: 700; padding: 10px 0; border-top: 1px solid #EEEEEE; }
.feasibility-card li:first-child { border-top: none; }

/* ===== Backyard return ===== */
.backyard-return { padding: 100px 0; }
.return-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; text-align: center; }
.return-card { display: flex; flex-direction: column; gap: 12px; }
.return-label { font-size: 20px; font-weight: 700; }
.return-number { font-size: 48px; font-weight: 700; color: var(--c-yellow); }
.return-sub { font-size: 13px; text-transform: uppercase; letter-spacing: .5px; color: var(--c-grey-text); }

/* ===== Testimonials ===== */
.testimonials { background: var(--c-black); padding: 100px 0; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.testimonial-card { position: relative; border-radius: var(--radius); overflow: hidden; }
.testimonial-card img { height: 260px; width: 100%; object-fit: cover; background: #333; }
.play-btn {
  position: absolute; top: 50%; left: 24px; transform: translateY(-50%);
  width: 45px; height: 45px; border: 2px solid var(--c-white); border-radius: 50%;
  color: var(--c-white); display: flex; align-items: center; justify-content: center;
}
.testimonial-name { position: absolute; bottom: 16px; left: 24px; color: #BABABA; font-size: 13px; text-transform: uppercase; letter-spacing: .5px; }
.testimonials-cta { text-align: center; }

/* ===== FAQ ===== */
.faq { background: var(--c-grey-light); padding: 100px 0; }
.faq-list { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #E8E8E8; border-radius: 31px; overflow: hidden; }
.faq-item--open { background: var(--c-white); }
.faq-question {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: var(--font); font-weight: 700; font-size: 15px;
  padding: 22px 28px; display: flex; justify-content: space-between; align-items: center;
}
.faq-question span { font-size: 20px; color: var(--c-grey-text); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; padding: 0 28px; }
.faq-answer p { color: #7B7B7B; font-size: 15px; line-height: 1.6; padding-bottom: 22px; }
.faq-answer--open { max-height: 300px; }

/* ===== Final CTA ===== */
.final-cta { background: var(--c-yellow); padding: 100px 0; text-align: center; }
.final-cta p { max-width: 650px; margin: 0 auto 32px; color: #333; font-size: 18px; }

/* ===== Footer ===== */
.site-footer { background: var(--c-black); color: var(--c-white); padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; }
.footer-brand p { color: #818181; font-size: 15px; margin-top: 20px; max-width: 320px; }
.logo--footer { margin-bottom: 8px; }
.footer-nav { display: flex; flex-direction: column; gap: 16px; }
.footer-nav a { font-weight: 700; font-size: 15px; }
.footer-nav a:hover { color: var(--c-yellow); }
.footer-contact { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.footer-contact a[href^="mailto"], .footer-contact a[href^="tel"] { color: var(--c-yellow); font-weight: 700; }
.social-links { display: flex; gap: 12px; margin-top: 8px; }
.social-links a {
  width: 34px; height: 34px; border-radius: 50%; background: #1a1a1a;
  display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--c-yellow);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { order: -1; }
  .property-form { grid-template-columns: 1fr; gap: 10px; }
  .property-form input { border-right: none; border-bottom: 1px solid #eee; }
  .property-form button { margin-left: 0; width: 100%; justify-content: center; }
  .project-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .feasibility-grid { grid-template-columns: 1fr; }
  .return-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .hero-text h1 { font-size: 30px; }
  .project-grid { grid-template-columns: 1fr; }
  .header-actions .btn { display: none; }
}
