/* MillHouse Property Pros Website */
:root {
  --green-900: #163d2a;
  --green-800: #1f5a3a;
  --green-700: #2f754d;
  --green-100: #eaf3ed;
  --cream: #f7f3ea;
  --sand: #e5d9c7;
  --gold: #c89745;
  --ink: #17201b;
  --muted: #5e6a62;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(22, 61, 42, 0.12);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Source Sans 3", sans-serif;
  font-size: 18px;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 100px 0; }
h1, h2, h3, .brand { font-family: "Montserrat", sans-serif; }
h1, h2, h3 { margin-top: 0; line-height: 1.15; }
h1 { font-size: clamp(2.8rem, 6vw, 5.4rem); letter-spacing: -0.05em; max-width: 850px; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); letter-spacing: -0.035em; }
h3 { font-size: 1.35rem; }
p { margin-top: 0; }
.eyebrow {
  margin-bottom: 14px;
  color: var(--green-700);
  font-family: "Montserrat", sans-serif;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow.light { color: #cce0d2; }
.skip-link {
  position: absolute;
  left: -9999px;
  top: 10px;
  z-index: 999;
  padding: 10px 16px;
  background: var(--white);
}
.skip-link:focus { left: 10px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(22,61,42,.08);
  backdrop-filter: blur(12px);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: var(--green-800);
  border-radius: 14px;
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: -.03em;
}
.brand-text { display: grid; line-height: 1.05; }
.brand-text strong { color: var(--green-900); font-size: 1.08rem; }
.brand-text small { margin-top: 4px; color: var(--muted); font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 28px; font-size: .95rem; font-weight: 600; }
.site-nav > a:not(.btn):hover { color: var(--green-700); }
.menu-toggle { display: none; background: transparent; border: 0; padding: 8px; cursor: pointer; }
.menu-toggle span { display: block; width: 26px; height: 2px; margin: 5px; background: var(--green-900); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  color: var(--white);
  background: var(--green-800);
  border: 2px solid var(--green-800);
  border-radius: 999px;
  font-family: "Montserrat", sans-serif;
  font-size: .92rem;
  font-weight: 800;
  cursor: pointer;
  transition: .2s ease;
}
.btn:hover { transform: translateY(-2px); background: var(--green-700); border-color: var(--green-700); }
.btn-small { min-height: 44px; padding: 0 18px; font-size: .82rem; }
.btn-outline { color: var(--green-900); background: transparent; border-color: rgba(22,61,42,.3); }
.btn-outline:hover { color: var(--white); }
.btn-full { width: 100%; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 115px 0 105px;
  background: linear-gradient(135deg, var(--cream) 0%, #f2f8f3 100%);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.5fr .65fr; gap: 70px; align-items: center; }
.hero-text { max-width: 700px; color: var(--muted); font-size: 1.25rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 32px; }
.trust-list { display: flex; flex-wrap: wrap; gap: 28px; margin: 0; padding: 0; list-style: none; color: var(--green-900); font-weight: 600; }
.trust-list li::before { content: "✓"; margin-right: 9px; color: var(--green-700); }
.hero-card {
  padding: 34px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(22,61,42,.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}
.hero-card-icon { display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 24px; color: white; background: var(--gold); border-radius: 16px; font-weight: 800; }
.hero-card h2 { font-size: 1.6rem; }
.hero-card p { color: var(--muted); }
.hero-card a { color: var(--green-700); font-weight: 700; }
.hero-shape { position: absolute; border-radius: 50%; filter: blur(1px); opacity: .45; }
.hero-shape-one { right: -110px; top: -120px; width: 380px; height: 380px; background: #bfd7c5; }
.hero-shape-two { left: -180px; bottom: -220px; width: 430px; height: 430px; background: #eadcc7; }

.intro { padding: 80px 0; }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.intro-grid p:last-child { color: var(--muted); font-size: 1.16rem; }

.services { background: #f7faf8; }
.section-heading { max-width: 760px; margin-bottom: 50px; }
.section-heading > p:last-child { color: var(--muted); }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  position: relative;
  padding: 34px;
  background: var(--white);
  border: 1px solid #dde7df;
  border-radius: var(--radius);
  box-shadow: 0 12px 35px rgba(22,61,42,.07);
}
.service-card.featured { border-color: #a9c7b3; transform: translateY(-10px); }
.service-icon { display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 24px; color: var(--green-900); background: var(--green-100); border-radius: 16px; font-size: 1.35rem; }
.card-label { position: absolute; top: 24px; right: 24px; padding: 5px 10px; color: var(--green-900); background: #e4f0e8; border-radius: 999px; font-size: .72rem; font-weight: 800; text-transform: uppercase; }
.service-card p, .service-card li { color: var(--muted); }
.service-card ul { margin: 20px 0 0; padding: 0; list-style: none; }
.service-card li { margin: 9px 0; }
.service-card li::before { content: "✓"; margin-right: 9px; color: var(--green-700); font-weight: 800; }

.band { color: var(--white); background: var(--green-900); }
.band-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.benefits-grid div { display: flex; gap: 16px; align-items: center; padding: 22px; border: 1px solid rgba(255,255,255,.14); border-radius: 16px; background: rgba(255,255,255,.04); }
.benefits-grid strong { color: #b8d2c0; font-family: "Montserrat", sans-serif; font-size: .8rem; }
.benefits-grid span { font-weight: 600; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 85px; align-items: center; }
.about-copy p { color: var(--muted); }
.text-link { color: var(--green-700); font-weight: 800; }
.about-visual { position: relative; min-height: 440px; overflow: hidden; background: linear-gradient(#dcebdc 0 63%, #8ab97c 63%); border-radius: 32px; box-shadow: var(--shadow); }
.sun { position: absolute; right: 55px; top: 48px; width: 72px; height: 72px; background: #e7c87f; border-radius: 50%; }
.house { position: absolute; left: 50%; bottom: 95px; width: 230px; transform: translateX(-50%); }
.roof { width: 0; height: 0; border-left: 130px solid transparent; border-right: 130px solid transparent; border-bottom: 115px solid var(--green-900); transform: translateX(-15px); }
.home-body { position: relative; width: 230px; height: 150px; background: var(--cream); }
.door { position: absolute; left: 94px; bottom: 0; width: 46px; height: 82px; background: #a86e45; }
.window { position: absolute; right: 32px; top: 35px; width: 48px; height: 48px; background: #c7dfdf; border: 5px solid var(--white); }
.lawn { position: absolute; bottom: -35px; border-radius: 50%; }
.lawn-one { left: -70px; width: 390px; height: 160px; background: #5e9c5d; }
.lawn-two { right: -100px; width: 430px; height: 180px; background: #4d8a4e; }

.area { background: var(--cream); }
.area-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: center; }
.area-grid > div > p { color: var(--muted); }
.area-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.area-tags span { padding: 9px 14px; background: var(--white); border: 1px solid var(--sand); border-radius: 999px; font-size: .9rem; font-weight: 600; }
.quote-box { padding: 42px; color: var(--white); background: var(--green-800); border-radius: var(--radius); box-shadow: var(--shadow); }
.quote-box p { color: #d4e5d9 !important; }
.quote-box .btn { color: var(--green-900); background: var(--white); border-color: var(--white); }

.contact { color: var(--white); background: #102f21; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.contact-copy > p { color: #cfddd3; }
.contact-details { display: grid; gap: 14px; margin-top: 38px; }
.contact-details a { display: grid; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.contact-details span { color: #9fb5a6; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; }
.contact-details strong { margin-top: 4px; font-weight: 600; overflow-wrap: anywhere; }
.contact-form { padding: 34px; color: var(--ink); background: var(--white); border-radius: var(--radius); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: grid; gap: 7px; margin-bottom: 16px; font-size: .92rem; font-weight: 700; }
input, textarea, select { width: 100%; padding: 14px 15px; color: var(--ink); background: #fbfcfb; border: 1px solid #d9e1db; border-radius: 10px; outline: none; }
input:focus, textarea:focus, select:focus { border-color: var(--green-700); box-shadow: 0 0 0 3px rgba(47,117,77,.12); }
textarea { resize: vertical; }
.form-note { margin: 12px 0 0; color: var(--muted); font-size: .76rem; text-align: center; }

.site-footer { padding: 65px 0 25px; background: #f5f7f5; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .6fr .8fr; gap: 60px; }
.footer-grid > div { display: grid; align-content: start; gap: 9px; }
.footer-grid p { max-width: 430px; color: var(--muted); }
.footer-grid h3 { margin-bottom: 6px; font-size: 1rem; }
.footer-grid a:not(.brand) { color: var(--muted); }
.footer-grid a:hover { color: var(--green-700); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 45px; padding-top: 24px; border-top: 1px solid #dde4df; color: var(--muted); font-size: .85rem; }
.mobile-call { display: none; }

@media (max-width: 900px) {
  body { font-size: 17px; }
  .section { padding: 78px 0; }
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    background: var(--white);
    border: 1px solid #e1e7e2;
    border-radius: 16px;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px; }
  .site-nav .btn { margin-top: 8px; }
  .hero { padding: 85px 0; }
  .hero-grid, .intro-grid, .band-grid, .about-grid, .area-grid, .contact-grid { grid-template-columns: 1fr; gap: 45px; }
  .hero-card { max-width: 620px; }
  .card-grid { grid-template-columns: 1fr; }
  .service-card.featured { transform: none; }
  .about-visual { min-height: 370px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .container { width: min(100% - 28px, 1160px); }
  h1 { font-size: 2.65rem; }
  h2 { font-size: 2rem; }
  .hero { padding: 65px 0 75px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .trust-list { display: grid; gap: 10px; }
  .benefits-grid, .field-row, .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .contact-form { padding: 24px 18px; }
  .mobile-call {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    color: var(--white);
    background: var(--green-800);
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
    font-family: "Montserrat", sans-serif;
    font-size: .9rem;
    font-weight: 800;
  }
  .site-footer { padding-bottom: 95px; }
}


/* Branded logo and video hero update */
.brand-logo {
  display: block;
  width: 250px;
  height: 62px;
  object-fit: contain;
  object-position: left center;
}
.footer-logo { width: 270px; height: 95px; }
.hero-video {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  background: #173d2a;
}
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,24,15,.88) 0%, rgba(10,34,21,.72) 48%, rgba(12,38,24,.28) 100%);
}
.hero-video .hero-copy,
.hero-video .hero-card { color: #fff; }
.hero-video .hero-text { color: rgba(255,255,255,.88); }
.hero-video .trust-list { color: #fff; }
.hero-video .btn-outline { color: #fff; border-color: rgba(255,255,255,.7); }
.hero-video .btn-outline:hover { background: #fff; color: var(--green-900); border-color: #fff; }
.hero-video .hero-card {
  background: rgba(9,35,21,.72);
  border-color: rgba(255,255,255,.2);
}
.hero-video .hero-card p { color: rgba(255,255,255,.8); }
.hero-video .hero-card a { color: #d8efdf; }
.hero-video .hero-shape { display: none; }
@media (max-width: 900px) {
  .brand-logo { width: 205px; height: 54px; }
  .hero-video { min-height: auto; }
  .hero-overlay { background: rgba(7,24,15,.72); }
}
@media (max-width: 600px) {
  .brand-logo { width: 175px; height: 48px; }
  .hero-video { padding-top: 72px; }
}
