/*
Theme Name: AmeriCorp Solutions
Theme URI: https://americorpsolutions.com/
Author: AIG Agent
Author URI: https://aigusa.com/
Description: Local WordPress rebuild draft styled to match the current AmeriCorp Solutions public Duda site. Local draft only.
Version: 0.3.0
Requires at least: 6.4
Tested up to: 7.0
Requires PHP: 8.0
License: Proprietary - AmeriCorp International Group internal draft
Text Domain: americorp-solutions
*/


:root {
  --acs-green: #185C43;
  --acs-text: #2c393f;
  --acs-muted: #8a8a8a;
  --acs-light: #f4f4f4;
  --acs-sage: #91b5a8;
  --acs-white: #ffffff;
  --acs-line: #163d4d;
  --acs-head: "Kumbh Sans", "Poppins", Arial, sans-serif;
  --acs-body: "Source Sans Pro", "Source Sans 3", Arial, sans-serif;
  --acs-ui: "Poppins", Arial, sans-serif;
  --acs-font: "Poppins", Arial, sans-serif;
}

h1, h2, h3 { font-family: var(--acs-head); }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--acs-white);
  color: var(--acs-muted);
  font-family: var(--acs-body);
  font-size: 16px;
  line-height: 1.65;
}
body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) { max-width: none; }
a { color: inherit; }
img { max-width: 100%; height: auto; }
.acs-container { max-width: 1120px; margin: 0 auto; padding: 0 28px; }

/* Header: tall white Duda-style bar */
.acs-topbar { display: none; }
.acs-header {
  background: #fff;
  min-height: 168px;
  display: flex;
  align-items: center;
  border: 0;
  position: relative;
  z-index: 20;
}
.acs-header-inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 26px 34px;
  display: grid;
  grid-template-columns: 150px 1fr 205px;
  gap: 42px;
  align-items: center;
}
.acs-logo-link { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; }
.acs-logo { width: auto; height: 54px; max-width: 100%; object-fit: contain; display: block; }
.acs-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  color: var(--acs-green);
  font-size: 15px;
  line-height: 1.2;
  white-space: nowrap;
}
.acs-menu a {
  color: var(--acs-green);
  text-decoration: none;
  font-weight: 400;
}
.acs-menu a:hover,
.acs-menu a.active { text-decoration: underline; text-underline-offset: 4px; }
.acs-header .acs-button { width: 100%; }
.acs-button,
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 16px 28px;
  border: 0;
  border-radius: 4px;
  background: var(--acs-green);
  color: #fff !important;
  font-family: var(--acs-ui);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .01em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: none;
}
.acs-button:hover { filter: brightness(.95); }
.acs-button.white { background: #fff; color: var(--acs-green) !important; }
.acs-button.big { min-width: 260px; }

/* Front page */
.acs-hero {
  min-height: 728px;
  position: relative;
  overflow: hidden;
  background: #0f5c43;
  display: flex;
  align-items: center;
  color: #fff;
}
.acs-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.acs-hero-content { position: relative; z-index: 1; }
.acs-hero-content {
  width: min(900px, calc(100% - 72px));
  margin-left: clamp(36px, 6vw, 82px);
  margin-top: 150px;
}
.acs-hero h1 {
  margin: 0 0 30px;
  color: #fff;
  font-size: clamp(40px, 4.6vw, 54px);
  line-height: 1.17;
  font-weight: 300;
  letter-spacing: -.02em;
}
.acs-hero h1 strong {
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0;
  white-space: nowrap;
}

.acs-welcome {
  background: var(--acs-light);
  padding: 88px 0 56px;
}
.acs-welcome-inner {
  max-width: 1070px;
  margin: 0 auto;
  padding: 0 36px;
  display: grid;
  grid-template-columns: 370px 2px 1fr;
  gap: 36px;
  align-items: start;
}
.acs-welcome h2 {
  margin: 0;
  color: var(--acs-text);
  font-size: clamp(38px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.24;
  letter-spacing: -.02em;
}
.acs-welcome h2 span { color: inherit; }
.acs-divider { width: 2px; min-height: 226px; background: #111; }
.acs-welcome p {
  margin: 0;
  color: #8f8f8f;
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.6;
  font-weight: 400;
}

/* Trust badges between Welcome and Services */
.acs-badges {
  background: var(--acs-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 54px;
  padding: 0 28px 84px;
}
.acs-badges img { height: 74px; width: auto; display: block; }

/* Testimonial carousel */
.acs-testimonial-slide { display: none; }
.acs-testimonial-slide.is-active { display: block; animation: acsFade .9s ease; }
@keyframes acsFade { from { opacity: 0; } to { opacity: 1; } }

.acs-services {
  min-height: 728px;
  background: var(--acs-green);
  color: #fff;
  text-align: center;
  padding: 92px 0 104px;
}
.acs-services h2,
.acs-registered h2,
.acs-difference h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 44px);
  line-height: 1.16;
  font-weight: 400;
  letter-spacing: -.02em;
}
.acs-services .acs-rule {
  width: 40px;
  height: 3px;
  background: #fff;
  margin: 22px auto 24px;
}
.acs-services .acs-subtitle {
  margin: 0 0 40px;
  color: #fff;
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
}
.acs-service-card {
  width: 222px;
  height: 430px;
  margin: 0 auto 28px;
  background-image: linear-gradient(rgba(15,92,67,.45), rgba(15,92,67,.62)), url('assets/images/service-housekeeping.jpeg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 18px 28px;
  color: #fff;
  text-decoration: none;
}
.acs-service-card h3 { margin: 0; color: #fff; font-size: 18px; font-weight: 400; }

.acs-difference {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  color: var(--acs-green);
  max-width: none !important;
  width: 100% !important;
}
.acs-difference > * {
  max-width: none !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.acs-difference-image {
  min-height: 1080px;
  background-image: url('assets/images/difference-meeting.jpeg');
  background-size: cover;
  background-position: center;
}
.acs-difference-content {
  padding: 90px 76px 82px;
  max-width: 660px;
}
.acs-difference h2 { color: var(--acs-green); }
.acs-difference .acs-rule {
  width: 48px;
  height: 2px;
  background: var(--acs-line);
  margin: 28px 0 34px;
}
.acs-difference ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.acs-difference li {
  position: relative;
  padding-left: 28px;
  margin: 0 0 22px;
  color: var(--acs-green);
  font-size: 18px;
  line-height: 1.56;
  font-weight: 300;
}
.acs-difference li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--acs-green);
  font-weight: 800;
}
.acs-difference strong { font-weight: 800; }

.acs-sage-block {
  height: 512px;
  background: linear-gradient(rgba(74, 105, 92, .62), rgba(74, 105, 92, .62)), url('assets/images/testimonial-bg.jpeg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.acs-testimonial { width: min(980px, calc(100% - 96px)); margin: 0 auto; }
.acs-testimonial blockquote { margin: 0 0 24px; color: #fff; font-size: 25px; line-height: 1.58; font-weight: 300; }
.acs-testimonial p { margin: 0; color: #fff; font-size: 20px; font-weight: 300; }
.acs-registered {
  min-height: 385px;
  background: var(--acs-light);
  text-align: center;
  padding: 70px 28px 180px;
}
.acs-registered h2 { color: var(--acs-green); margin-bottom: 40px; }
.acs-registered img { max-width: 260px; opacity: .96; }
.acs-registered-row { display: grid; grid-template-columns: repeat(5, 183px); justify-content: center; align-items: center; margin: 0 auto; }
.acs-registered-row img { width: 183px; height: 183px; max-width: 100%; object-fit: contain; display: block; }

.acs-project-cta {
  background: var(--acs-green);
  color: #fff;
  text-align: center;
  padding: 86px 28px 92px;
}
.acs-project-cta h2 {
  margin: 0 0 32px;
  color: #fff;
  font-size: clamp(44px, 5vw, 54px);
  line-height: 1.2;
  font-weight: 300;
  letter-spacing: -.02em;
}

/* Footer matching the current public layout */
.acs-footer { background: #fff; color: var(--acs-green); padding: 0; font-size: 16px; }
.acs-footer a { color: var(--acs-green); text-decoration: none; }
.acs-footer a:hover,
.acs-footer a.active { text-decoration: underline; text-underline-offset: 4px; }
.acs-footer-top {
  max-width: 1080px;
  margin: 0 auto;
  min-height: 252px;
  padding: 45px 34px;
  display: grid;
  grid-template-columns: 220px 1fr 245px;
  gap: 78px;
  align-items: start;
}
.acs-footer-logo { width: 145px; display: block; }
.acs-footer-nav { display: flex; flex-direction: column; gap: 22px; line-height: 1.2; }
.acs-footer-bottom {
  min-height: 104px;
  background: var(--acs-light);
  padding: 18px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.acs-bbb { width: 184px; height: auto; display: block; }
.acs-socials { display: flex; gap: 10px; align-items: center; }
.acs-socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 17px;
  text-decoration: none;
  font-family: Arial, sans-serif;
}
.acs-social-x { background: #111; }
.acs-social-f { background: #1877f2; }
.acs-social-i { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }
.acs-social-l { background: #0a66c2; }

/* Interior pages matching the current public Duda site */
.acs-page-main { background: #fff; padding: 0; }
body.home .nav-home,
body.page-housekeeping .nav-housekeeping,
body.page-parent-maintenance .nav-housekeeping,
body.page-contact .nav-contact,
body.page-hiring .nav-hiring { text-decoration: underline; text-underline-offset: 4px; }
.acs-inner-hero {
  min-height: 352px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-size: cover;
  background-position: center;
  position: relative;
}
.acs-inner-hero::before { content: ""; position: absolute; inset: 0; background: rgba(13, 63, 47, .45); }
.acs-inner-hero > * { position: relative; z-index: 1; }
.acs-inner-hero h1,
.acs-inner-hero .acs-hero-title { margin: 0; color: #fff; font-size: clamp(46px, 5vw, 62px); line-height: 1.08; font-weight: 400; letter-spacing: -.02em; }
.acs-hero-housekeeping { background-image: url('assets/images/housekeeping-hero.png'); min-height: 455px; justify-content: flex-start; text-align: left; }
.acs-hero-housekeeping .acs-hero-copy { width: min(670px, calc(100% - 80px)); margin-left: clamp(42px, 6vw, 84px); }
.acs-hero-housekeeping h1 { margin-bottom: 18px; }
.acs-hero-housekeeping p { margin: 0; color: #fff; font-size: 19px; line-height: 1.55; font-weight: 300; }
.acs-hero-contact { background-image: url('assets/images/contact-hero.jpeg'); }
.acs-hero-quote,
.acs-hero-hiring { background-image: url('assets/images/quote-hiring-hero.png'); }
.acs-gray-band { height: auto; background: #fff; }
.acs-big-spacer { height: auto; background: #fff; }
.acs-define, .acs-offered { max-width: 1120px; margin: 0 auto; padding: 40px 28px; }
.acs-define h2, .acs-offered h2 { color: var(--acs-green); font-size: 30px; font-weight: 400; line-height: 1.3; margin: 0 0 16px; }
.acs-define p, .acs-offered p { color: #8a8a8a; font-size: 16px; line-height: 1.5; font-weight: 300; margin: 0; }
.acs-offered-list { list-style: none; margin: 0 0 16px; padding: 0; }
.acs-offered-list li { position: relative; padding-left: 22px; color: #8a8a8a; font-size: 16px; line-height: 1.6; font-weight: 300; }
.acs-offered-list li::before { content: "\2713"; position: absolute; left: 0; color: var(--acs-green); }
.acs-two-col-band { background: var(--acs-light); padding: 48px 0 60px; }
.acs-two-col { max-width: 1120px; margin: 0 auto; padding: 0 38px; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; }
.acs-two-col h2 { margin: 0 0 16px; color: var(--acs-green); font-size: clamp(28px, 3vw, 34px); line-height: 1.2; font-weight: 800; }
.acs-two-col p { margin: 0 0 22px; color: #8b8b8b; font-size: 17px; line-height: 1.64; font-weight: 300; }
.acs-page-intro { max-width: 960px; margin: 0 auto; padding: 70px 28px 34px; text-align: center; }
.acs-page-intro p { margin: 0 0 16px; color: var(--acs-green); font-size: clamp(20px, 2.1vw, 25px); line-height: 1.55; font-weight: 700; }
.acs-form-frame { max-width: 880px; margin: 0 auto 78px; padding: 0 28px; }
.acs-lacrm-form-frame { max-width: 960px; }
.acs-lacrm-form-frame .lacrm-embed { display: block; margin: 0; }
.acs-lacrm-form-frame iframe { width: 100%; border: 0; min-height: 650px; display: block; }
.acs-local-form { background: #fff; border: 1px solid #e5e5e5; box-shadow: 0 8px 30px rgba(0,0,0,.05); padding: 32px; color: #333; }
.acs-local-form h2 { margin: 0 0 22px; color: #222; font-size: 32px; }
.acs-field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.acs-local-form label { display: grid; gap: 7px; color: #333; font-size: 14px; font-weight: 600; }
.acs-local-form input,
.acs-local-form textarea,
.acs-local-form select { width: 100%; border: 1px solid #d7d7d7; background: #f7f7f7; padding: 12px 13px; min-height: 44px; font: inherit; color: #333; }
.acs-local-form textarea { min-height: 110px; resize: vertical; }
.acs-local-form .full { grid-column: 1 / -1; }
.acs-local-form button { margin-top: 18px; min-width: 132px; }
.acs-contact-wrap { max-width: 1180px; margin: 0 auto; padding: 72px 38px 80px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: 58px; align-items: start; }
.acs-contact-wrap h3,
.acs-locations h3 { color: var(--acs-green); font-size: 30px; margin: 0 0 16px; line-height: 1.18; }
.acs-contact-wrap p,
.acs-location-card p { color: #8b8b8b; font-size: 17px; line-height: 1.62; font-weight: 300; }
.acs-map-placeholder { min-height: 520px; background: linear-gradient(135deg, #edf1ef, #d9e2df); border: 1px solid #d5dddd; position: relative; overflow: hidden; }
.acs-map-placeholder iframe { width: 100%; height: 520px; border: 0; display: block; filter: saturate(.78) contrast(.98); }
.acs-map-placeholder::before { content: ""; position: absolute; inset: 0; opacity: .55; background-image: linear-gradient(90deg, transparent 48%, rgba(20,95,70,.13) 49%, transparent 51%), linear-gradient(0deg, transparent 48%, rgba(20,95,70,.13) 49%, transparent 51%); background-size: 72px 72px; }
.acs-map-pin { position: absolute; left: 49%; top: 43%; transform: translate(-50%, -100%); width: 28px; height: 28px; background: #2d8cff; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); box-shadow: 0 4px 14px rgba(0,0,0,.25); }
.acs-map-pin::after { content: ""; position: absolute; width: 10px; height: 10px; border-radius: 50%; background: #fff; left: 9px; top: 9px; }
.acs-locations { max-width: 1160px; margin: 0 auto; padding: 0 38px 92px; }
.acs-locations-title { text-align: center; color: var(--acs-text); font-size: 42px; font-weight: 400; margin: 0 0 56px; }
.acs-state { color: var(--acs-green); font-size: 20px; margin-bottom: 40px; border-bottom: 2px solid var(--acs-green); padding-bottom: 12px; width: 240px; }
.acs-location-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 54px 72px; }
.acs-location-card h3 { font-size: 25px; }
.acs-split-cta { display: grid; grid-template-columns: 1fr 1fr; min-height: 440px; }
.acs-split-cta-image { background-image: url('assets/images/bed-housekeeping.jpeg'); background-size: cover; background-position: center; }
.acs-split-cta-panel { background: var(--acs-green); display: flex; align-items: center; justify-content: center; }
.acs-split-cta .acs-button.white { min-width: 162px; }
.acs-page-card { max-width: 960px; margin: 90px auto; background: #fff; padding: 70px 76px; color: var(--acs-green); }
.acs-page-card h1, .acs-page-card h2 { color: var(--acs-green); font-weight: 800; line-height: 1.16; }
.acs-page-card p, .acs-page-card li { font-size: 18px; color: var(--acs-green); font-weight: 300; }

@media (max-width: 980px) {
  .acs-header { min-height: auto; }
  .acs-header-inner { grid-template-columns: 1fr; text-align: center; gap: 22px; }
  .acs-menu { flex-wrap: wrap; gap: 18px 28px; }
  .acs-header .acs-button { width: auto; justify-self: center; }
  .acs-welcome-inner { grid-template-columns: 1fr; }
  .acs-divider { width: 64px; min-height: 2px; }
  .acs-difference { grid-template-columns: 1fr; }
  .acs-difference-image { min-height: 460px; }
  .acs-difference-content { max-width: none; padding: 58px 34px; }
  .acs-footer-top { grid-template-columns: 1fr; gap: 28px; text-align: center; justify-items: center; }
  .acs-footer-bottom { flex-direction: column; }
  .acs-two-col,
  .acs-contact-wrap,
  .acs-location-grid,
  .acs-split-cta,
  .acs-field-grid { grid-template-columns: 1fr; }
  .acs-big-spacer { height: 180px; }
  .acs-hero-housekeeping { text-align: center; justify-content: center; }
  .acs-hero-housekeeping .acs-hero-copy { margin: 0 auto; padding: 0 26px; width: 100%; }
  .acs-map-placeholder { min-height: 360px; }
}

@media (max-width: 640px) {
  .acs-hero { min-height: 540px; }
  .acs-hero-content { margin: 0 auto; padding: 0 24px; width: 100%; }
  .acs-welcome, .acs-services, .acs-project-cta { padding-left: 0; padding-right: 0; }
  .acs-sage-block { height: 260px; }
  .acs-page-card { padding: 42px 28px; }
}

/* AmeriCorp Solutions cosmetic fidelity pass 0.1.9 — desktop Duda geometry alignment. */
@media (min-width: 981px) {
  /* Responsive flexbox header (replaces fixed-pixel Duda geometry). */
  .acs-header{
    min-height:96px;
    display:flex;
    align-items:center;
  }
  .acs-header-inner{
    position:relative; /* keep for any z-index children */
    display:flex;
    align-items:center;
    justify-content:space-between;
    max-width:1280px;
    width:100%;
    height:auto;
    margin:0 auto;
    padding:0 40px;
    min-height:96px;
    gap:32px;
  }
  .acs-logo-link{
    position:static;
    flex-shrink:0;
    width:auto;
    height:auto;
    justify-content:flex-start;
  }
  .acs-logo{
    width:auto;
    height:64px;
  }
  .acs-menu{
    position:static;
    display:flex;
    align-items:center;
    gap:32px;
    flex:1;
    justify-content:center;
    height:auto;
  }
  .acs-menu a{
    display:flex;
    align-items:center;
    height:auto;
    line-height:1.2;
    width:auto;
  }
  .acs-header .acs-button{
    position:static;
    flex-shrink:0;
    width:auto;
    min-height:53px;
    height:53px;
    padding:0 24px;
  }
  .acs-hero{
    min-height:733px;
    background-position:center center;
    display:block;
    position:relative;
    margin-top:0 !important;
  }
  main.wp-block-group{
    margin-block-start:0 !important;
  }
  .acs-hero-content{
    position:absolute;
    left:60px;
    top:312px;
    width:727px;
    margin:0;
  }
  .acs-hero h1{
    width:727px;
    max-width:727px;
    font-size:50px;
    line-height:1.24;
  }
  .acs-welcome{
    padding-top:55px;
  }
  .acs-services{
    min-height:819px;
    padding-top:92px;
    padding-bottom:40px;
  }
  .acs-services .acs-subtitle{
    margin-bottom:2px;
  }
  .acs-service-card{
    margin-bottom:28px;
  }
  .acs-difference{
    min-height:1256px;
  }
  .acs-difference-image{
    min-height:1256px;
  }
  .acs-difference-content{
    padding-top:42px;
  }
  .acs-sage-block{
    height:512px;
  }
  .acs-registered{
    min-height:302px;
    padding-top:30px;
    padding-bottom:0;
  }
  .acs-registered h2{
    margin-bottom:1px;
  }
  .acs-project-cta h2{
    margin-bottom:17px;
  }
  .acs-footer{
    min-height:385px;
  }
  .acs-footer-top{
    position:relative;
    max-width:none;
    width:1280px;
    min-height:228px;
    height:228px;
    margin:0;
    padding:0;
    display:block;
  }
  .acs-footer-logo{
    position:absolute;
    left:75px;
    top:35px;
    width:205px;
    height:205px;
    object-fit:contain;
  }
  .acs-footer-nav{
    position:absolute;
    left:385px;
    top:41px;
    gap:22px;
    width:363px;
  }
  .acs-footer-nav a{
    min-height:19px;
  }
  .acs-footer-top > .acs-button{
    position:absolute;
    left:857px;
    top:50px;
    width:225px;
    min-height:53px;
    height:53px;
    padding:0 20px;
  }
  .acs-footer-bottom{
    min-height:133px;
    height:133px;
    align-items:center;
  }
  .acs-bbb{
    transform:translateY(-11px);
  }
  .acs-socials{
    margin-right:87px;
  }

  /* Interior Housekeeping page: desktop Duda geometry fidelity. */
  .acs-page-main .entry-content > *{
    margin-block-start:0 !important;
    margin-block-end:0 !important;
  }

  /* Contact page: match Duda spacing and left-aligned title. */
  body.page-contact .acs-inner-hero{height:352px; min-height:352px; display:block; text-align:left;}
  body.page-contact .acs-inner-hero::before{display:none;}
  body.page-contact .acs-inner-hero h1,
  body.page-contact .acs-inner-hero .acs-hero-title{position:absolute; left:40px; top:130px; width:1200px; margin:0; text-align:left; font-size:55px; line-height:1.52; font-weight:400; color:#2c393f;}
  body.page-contact .acs-locations{margin-top:-40px; min-height:845px; height:845px; transform:translateY(-40px);}
  body.page-contact .acs-project-cta{margin-top:-40px; transform:translateY(-40px);}
  body.page-contact .acs-project-cta h2{margin-bottom:42px;}
  body.page-contact .acs-footer{transform:translateY(-65px);}

  /* Interior Housekeeping page: desktop Duda geometry fidelity. */
  body.page-housekeeping .acs-inner-hero,
  body.page-parent-maintenance .acs-inner-hero{
    min-height:621px;
    height:621px;
    display:block;
    background-image:linear-gradient(rgba(13,63,47,.30), rgba(13,63,47,.30)), url('assets/images/hk-hero.jpeg');
    background-size:cover;
    background-position:center center;
    text-align:left;
  }
  body.page-housekeeping .acs-inner-hero::before,
  body.page-parent-maintenance .acs-inner-hero::before{display:none;}
  body.page-housekeeping .acs-inner-hero .acs-hero-copy,
  body.page-parent-maintenance .acs-inner-hero .acs-hero-copy{
    position:absolute; left:40px; top:220px; width:542px; margin:0;
  }
  body.page-housekeeping .acs-inner-hero h1,
  body.page-parent-maintenance .acs-inner-hero h1{
    width:1200px; max-width:1200px; margin:0 0 8px; font-size:55px; line-height:1.24; font-weight:400;
  }
  body.page-housekeeping .acs-inner-hero p,
  body.page-parent-maintenance .acs-inner-hero p{
    width:542px; max-width:542px; font-size:18px; line-height:1.5; font-weight:300;
  }
  body.page-housekeeping .acs-gray-band,
  body.page-parent-maintenance .acs-gray-band{position:relative; height:734px; background:#fff;}
  body.page-housekeeping .acs-gray-band::before,
  body.page-parent-maintenance .acs-gray-band::before{
    content:""; position:absolute; left:40px; top:80px; width:500px; height:574px;
    background:url('assets/images/housekeeping-hero.png') center/cover no-repeat;
  }
  body.page-housekeeping .acs-big-spacer,
  body.page-parent-maintenance .acs-big-spacer{position:relative; height:633px; background:#fff;}
  body.page-housekeeping .acs-big-spacer::after,
  body.page-parent-maintenance .acs-big-spacer::after{
    content:""; position:absolute; left:740px; top:0; width:500px; height:553px;
    background:url('assets/images/maintenance-bottom.png') center/cover no-repeat;
  }
  body.page-housekeeping .acs-two-col-band,
  body.page-parent-maintenance .acs-two-col-band{height:404px; min-height:404px; padding:15px 0 0; background:#fff;}
  body.page-housekeeping .acs-two-col,
  body.page-parent-maintenance .acs-two-col{max-width:none; width:1200px; padding:0; gap:0; grid-template-columns:600px 600px;}
  body.page-housekeeping .acs-two-col h2,
  body.page-parent-maintenance .acs-two-col h2{margin:0 0 12px; color:#8a8a8a; font-size:30px; line-height:1.5; font-weight:400;}
  body.page-housekeeping .acs-two-col p,
  body.page-parent-maintenance .acs-two-col p{color:#8a8a8a; font-size:18px; line-height:1.5; font-weight:300;}
  body.page-housekeeping .acs-two-col > div:first-child,
  body.page-parent-maintenance .acs-two-col > div:first-child{width:600px; padding:0;}
  body.page-housekeeping .acs-two-col > div:last-child,
  body.page-parent-maintenance .acs-two-col > div:last-child{width:600px; padding-left:52px;}
  body.page-housekeeping .acs-two-col > div:last-child p,
  body.page-parent-maintenance .acs-two-col > div:last-child p{font-size:16px; line-height:1.4; margin-bottom:12px;}
  body.page-housekeeping .acs-project-cta,
  body.page-parent-maintenance .acs-project-cta{height:474px; padding-top:115px; padding-bottom:0;}
  body.page-housekeeping .acs-project-cta h2,
  body.page-parent-maintenance .acs-project-cta h2{margin-bottom:48px;}
  body.page-housekeeping .acs-footer-top,
  body.page-parent-maintenance .acs-footer-top{height:208px; min-height:208px;}
  body.page-housekeeping .acs-footer-bottom,
  body.page-parent-maintenance .acs-footer-bottom{margin-block-start:0 !important;}
  body.page-housekeeping .acs-footer-logo,
  body.page-parent-maintenance .acs-footer-logo{top:-9px;}
  body.page-housekeeping .acs-footer-nav,
  body.page-parent-maintenance .acs-footer-nav{top:-2px;}
  body.page-housekeeping .acs-footer-top > .acs-button,
  body.page-parent-maintenance .acs-footer-top > .acs-button{top:6px;}

  body.page-housekeeping .acs-define,
  body.page-parent-maintenance .acs-define{ position:absolute; left:610px; top:120px; width:560px; max-width:560px; margin:0; padding:0; }
  body.page-housekeeping .acs-offered,
  body.page-parent-maintenance .acs-offered{ position:absolute; left:40px; top:60px; width:600px; max-width:600px; margin:0; padding:0; }
}


/* ===== Claude fidelity pass 0.2.0 ===== */
/* Flat Duda-style form inputs everywhere */
.acs-local-form input,
.acs-local-form textarea,
.acs-local-form select {
  border: 0;
  background: #ececec;
  border-radius: 0;
}
.acs-local-form label { color: #8a8a8a; font-size: 13px; font-weight: 400; }

/* Contact page: bare form (no card), lighter map, hero shows skyline */
body.page-contact .acs-local-form {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}
body.page-contact .acs-hero-contact { background-position: center top; }
body.page-contact .acs-contact-wrap h3 { font-weight: 400; }

/* Difference bullets: muted to match Duda */
.acs-difference li { color: #4f5b57; }

/* Heavier testimonial overlay to match live */
.acs-sage-block { background: linear-gradient(rgba(74,105,92,.7), rgba(74,105,92,.7)), url('assets/images/testimonial-bg.jpeg'); background-size: cover; background-position: center; }


/* Application / quote form: bilingual labels, sections, single column */
.acs-form-sub { margin: 4px 0 0; font-weight: 700; color: #333; font-size: 14px; }
.acs-form-rule { height: 3px; background: var(--acs-green); margin: 14px 0 26px; }
.acs-form-section { margin: 26px 0 4px; color: #222; font-size: 20px; font-weight: 700; }
.acs-form-section span { display: block; font-size: 13px; font-weight: 400; color: #555; }
.acs-local-form label span { display: block; font-weight: 400; color: #8a8a8a; font-size: 12px; }
body.page-hiring .acs-field-grid,
body.page-get-a-quote .acs-field-grid { grid-template-columns: 1fr; }

/* Hiring & Quote hero: pale washed treatment, shorter */
body.page-hiring .acs-inner-hero,
body.page-get-a-quote .acs-inner-hero { min-height: 300px; }
body.page-hiring .acs-inner-hero::before,
body.page-get-a-quote .acs-inner-hero::before { background: rgba(225,230,226,.42); }
body.page-hiring .acs-inner-hero h1,
body.page-get-a-quote .acs-inner-hero h1 { color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,.3); }

/* Page intros: small bold green like live */
.acs-page-intro p { font-size: clamp(14px, 1.3vw, 15px); }

/* Split CTA copy panel */
.acs-split-cta-copy { max-width: 460px; padding: 0 48px; color: #fff; }
.acs-split-cta-copy h2 { margin: 0; color: #fff; font-size: clamp(26px, 2.4vw, 30px); font-weight: 400; line-height: 1.2; }
.acs-split-cta-copy .acs-rule { width: 40px; height: 2px; background: rgba(255,255,255,.6); margin: 18px 0 18px; }
.acs-split-cta-copy p { margin: 0 0 24px; color: #fff; font-size: 16px; font-weight: 300; line-height: 1.55; }
.acs-split-cta-panel { justify-content: flex-start; }


/* Static raster map (no WebGL dependency) */
.acs-map-placeholder { background: url('assets/images/map-glendale.png') center/cover no-repeat #e9edeb; }
.acs-map-placeholder::before { display: none; }


/* LACRM embedded forms */
.acs-embed-frame { max-width: 900px; }
.acs-embed-frame .lacrm-embed,
.acs-embed-frame iframe { width: 100%; max-width: 100%; border: 0; margin: 0 auto; display: block; }


/* ===== 404 page (v0.3.0) ===== */
.acs-404-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 80px;
  padding-bottom: 80px;
}
.acs-404-heading {
  font-family: var(--acs-head);
  font-size: 2.5rem;
  color: var(--acs-green);
  margin-bottom: 1rem;
}
.acs-404-message {
  font-family: var(--acs-body);
  font-size: 1.125rem;
  color: var(--acs-text);
  max-width: 540px;
}
.acs-404-message a {
  color: var(--acs-green);
  text-decoration: underline;
}


/* ===== Footer contact details (v0.3.0) ===== */
.acs-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--acs-ui);
  font-size: 15px;
  line-height: 1.4;
  text-align: center;
}
.acs-footer-contact a { color: var(--acs-green); text-decoration: none; }
.acs-footer-contact a:hover { text-decoration: underline; text-underline-offset: 4px; }
.acs-footer-phone { font-weight: 600; }
@media (max-width: 980px) {
  .acs-footer-contact { margin: 8px 0; }
}
