/* =========================================================
   Chela's Concierge Services — Stylesheet
   Design tokens: warm cream ground, deep forest + gold from
   the logo, with a quiet plum accent for a touch of purple.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500&family=Work+Sans:wght@300;400;500;600;700&family=Alex+Brush&display=swap');

:root{
  /* --- Color tokens --- */
  --cream:        #FBF6EA;
  --cream-deep:    #F2EAD6;
  --paper:         #FFFFFF;
  --forest:        #1F3B2C;
  --forest-dark:   #142C1F;
  --sage:          #5C7A5A;
  --sage-light:    #8FA888;
  --gold:          #BE9A3F;
  --gold-light:    #E4CE8F;
  --gold-deep:     #9C7B24;
  --plum:          #4B2745;
  --plum-light:    #7A5473;
  --ink:           #2B291F;
  --ink-soft:      #55503F;
  --line:          #E1D6BB;

  /* --- Type tokens --- */
  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body:    'Work Sans', 'Helvetica Neue', Arial, sans-serif;
  --font-script:  'Alex Brush', cursive;

  /* --- Layout tokens --- */
  --maxw: 1180px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-soft: 0 10px 30px rgba(31,59,44,0.08);
  --shadow-card: 0 4px 18px rgba(31,59,44,0.07);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body{
  margin:0;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img{ max-width:100%; display:block; }

a{ color: var(--forest); text-decoration: none; }

h1,h2,h3,h4{
  font-family: var(--font-display);
  color: var(--forest);
  margin: 0 0 0.5em;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1{ font-size: clamp(2.3rem, 4.2vw, 3.6rem); font-weight: 600; }
h2{ font-size: clamp(1.7rem, 3vw, 2.5rem); }
h3{ font-size: 1.35rem; }
p{ margin: 0 0 1em; color: var(--ink-soft); }

.eyebrow{
  display:inline-block;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--gold-deep);
  margin-bottom: 0.75em;
}

.script{ font-family: var(--font-script); color: var(--gold-deep); font-size: 1.5em; line-height: 1; font-weight:400;}

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

section{ padding: 72px 0; }
@media (max-width: 720px){ section{ padding: 52px 0; } }

.section-alt{ background: var(--cream-deep); }
.section-forest{ background: var(--forest); color: #F3EEDD; }
.section-forest h2, .section-forest h3{ color: #F7F2E2; }
.section-forest p{ color: #D8E0D1; }

.center{ text-align:center; }

/* --- Buttons --- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor:pointer;
  border: 1.5px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  text-align:center;
}
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible{
  outline: 3px solid var(--gold-deep);
  outline-offset: 2px;
}
.btn-primary{ background: var(--forest); color: #FBF6EA; }
.btn-primary:hover{ background: var(--forest-dark); transform: translateY(-1px); box-shadow: var(--shadow-soft); }
.btn-gold{ background: var(--gold); color: var(--forest-dark); }
.btn-gold:hover{ background: var(--gold-deep); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-soft); }
.btn-outline{ background: transparent; border-color: var(--forest); color: var(--forest); }
.btn-outline:hover{ background: var(--forest); color: #fff; }
.btn-outline-light{ background: transparent; border-color: rgba(255,255,255,0.6); color:#fff; }
.btn-outline-light:hover{ background: rgba(255,255,255,0.12); border-color:#fff; }
.btn-sm{ padding: 10px 20px; font-size: 0.85rem; }
.btn-block{ width:100%; }

/* =========================================================
   Header / Navigation
   ========================================================= */
.site-header{
  position: sticky; top:0; z-index: 100;
  background: rgba(251,246,234,0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap{
  max-width: var(--maxw);
  margin:0 auto;
  padding: 10px 24px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
}
.brand{ display:flex; align-items:center; gap:10px; }
.brand img{ height: 56px; width:auto; }
.brand-text{ display:none; }

.nav-links{
  display:flex;
  align-items:center;
  gap: 28px;
  list-style:none;
  margin:0; padding:0;
}
.nav-links a{
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--forest);
  position:relative;
  padding: 6px 0;
}
.nav-links a::after{
  content:''; position:absolute; left:0; right:0; bottom:0; height:2px;
  background: var(--gold); transform: scaleX(0); transform-origin:left;
  transition: transform .2s ease;
}
.nav-links a:hover::after, .nav-links a.active::after{ transform: scaleX(1); }
.nav-links a.active{ color: var(--gold-deep); }

.nav-cta{ display:flex; align-items:center; gap:14px; }

.nav-toggle{
  display:none;
  background:none; border:none; cursor:pointer; padding:8px;
}
.nav-toggle span{ display:block; width:26px; height:2px; background: var(--forest); margin:5px 0; transition: all .2s ease; }

@media (max-width: 940px){
  .nav-links{
    position:fixed; inset: 72px 0 0 0; background: var(--cream);
    flex-direction:column; align-items:flex-start; padding: 28px 28px;
    gap: 22px; transform: translateX(100%); transition: transform .25s ease;
    overflow-y:auto;
  }
  .nav-links.open{ transform: translateX(0); }
  .nav-links a{ font-size: 1.15rem; }
  .nav-toggle{ display:block; }
  .nav-cta .btn-sm{ padding: 9px 16px; font-size:0.8rem; }
  .brand img{ height:46px; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero{
  position:relative;
  overflow:hidden;
  padding: 64px 0 80px;
  background:
    radial-gradient(600px 300px at 100% -10%, rgba(190,154,63,0.14), transparent 60%),
    radial-gradient(500px 260px at -10% 110%, rgba(31,59,44,0.08), transparent 60%),
    var(--cream);
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items:center;
}
@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
}
.hero h1{ margin-bottom: 0.4em; }
.hero .lede{ font-size: 1.15rem; max-width: 46ch; }
.hero-ctas{ display:flex; gap:14px; flex-wrap:wrap; margin-top: 28px; }

.hero-badge-wrap{
  display:flex; align-items:center; justify-content:center;
  position:relative;
  align-self:start;
  margin-top:32px;
}
@media (max-width: 900px){
  .hero-badge-wrap{
    align-self:center;
    margin-top:0;
  }
}
.badge-seal{
  width: min(340px, 100%);
  height:auto;
}

.trust-row{
  display:flex; align-items:center; gap: 26px; flex-wrap:wrap;
  margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--line);
}
.trust-row .stat{ display:flex; flex-direction:column; }
.trust-row .stat strong{ font-family: var(--font-display); color: var(--forest); font-size:1.5rem; }
.trust-row .stat span{ font-size: 0.82rem; color: var(--ink-soft); text-transform:uppercase; letter-spacing:0.06em; }

/* =========================================================
   Divider (signature element): leaf + heart, echoing the logo
   ========================================================= */
.leaf-divider{
  display:flex; align-items:center; justify-content:center; gap:14px;
  margin: 8px 0 36px;
  color: var(--gold-deep);
}
.leaf-divider svg{
  width: 52px;
  height: auto;
  flex: 0 0 auto;
}
.leaf-divider svg[viewBox="0 0 24 24"]{
  width: 26px;
}
.leaf-divider.on-dark{ color: var(--gold-light); }

/* =========================================================
   Why choose us strip
   ========================================================= */
.why-grid{
  display:grid; grid-template-columns: repeat(5, 1fr); gap: 22px;
}
@media (max-width: 980px){ .why-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .why-grid{ grid-template-columns: 1fr; } }
.why-item{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align:center;
  box-shadow: var(--shadow-card);
}
.why-item .icon{
  width:50px; height:50px; margin: 0 auto 14px;
  display:flex; align-items:center; justify-content:center;
  border-radius:50%; background: var(--cream-deep); color: var(--forest);
}
.why-item h3{ font-size: 1.02rem; margin-bottom: 6px; }
.why-item p{ font-size: 0.9rem; margin:0; }

/* =========================================================
   Service cards
   ========================================================= */
.card-grid{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
@media (max-width: 980px){ .card-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px){ .card-grid{ grid-template-columns: 1fr; } }

.service-card{
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 30px 26px;
  box-shadow: var(--shadow-card);
  transition: transform .2s ease, box-shadow .2s ease;
  display:flex; flex-direction:column;
}
.service-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.service-card .icon{
  width:56px; height:56px; border-radius:50%;
  background: var(--forest); color: var(--cream);
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 18px;
}
.service-card.gold .icon{ background: var(--gold); color: var(--forest-dark); }
.service-card h3{ margin-bottom: 10px; }
.service-card ul{ margin: 12px 0 18px; padding-left: 20px; color: var(--ink-soft); font-size:0.95rem; }
.service-card ul li{ margin-bottom: 6px; }
.service-card .tag-line{
  margin-top:auto;
  font-size: 0.86rem;
  font-style: italic;
  color: var(--sage);
  border-top: 1px dashed var(--line);
  padding-top: 12px;
}

/* =========================================================
   Testimonials
   ========================================================= */
.testi-grid{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 900px){ .testi-grid{ grid-template-columns: 1fr; } }
.testi-card{
  background: var(--paper);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--line);
  position:relative;
}
.testi-card .quote-mark{
  font-family: var(--font-display); font-size: 2.6rem; color: var(--gold-light);
  line-height:0; display:block; margin-bottom: 10px;
}
.testi-card p.quote{ color: var(--ink); font-style: italic; }
.testi-card .who{ display:flex; align-items:center; gap:10px; margin-top: 16px; }
.testi-card .avatar{
  width:40px; height:40px; border-radius:50%; background: var(--cream-deep);
  display:flex; align-items:center; justify-content:center; color: var(--forest); font-family: var(--font-display); font-weight:600;
}
.testi-card .who strong{ display:block; font-size:0.92rem; color: var(--forest); }
.testi-card .who span{ font-size: 0.8rem; color: var(--ink-soft); }
.testi-note{
  text-align:center; font-size:0.85rem; color: var(--ink-soft); margin-top:22px;
}

/* =========================================================
   CTA banner
   ========================================================= */
.cta-banner{
  background: var(--forest);
  color: #F5F1E3;
  border-radius: var(--radius);
  padding: 48px;
  display:flex; align-items:center; justify-content:space-between; gap: 28px; flex-wrap:wrap;
}
.cta-banner h2{ color:#fff; margin-bottom: 6px; }
.cta-banner p{ color: #D8E0D1; margin:0; }
@media (max-width: 720px){ .cta-banner{ flex-direction:column; text-align:center; padding: 36px 26px; } }

/* =========================================================
   Forms
   ========================================================= */
.form-card{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow-card);
}
.form-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px){ .form-grid{ grid-template-columns: 1fr; } }
.field{ display:flex; flex-direction:column; gap:6px; margin-bottom: 18px; }
.field.full{ grid-column: 1 / -1; }
.field label{ font-size: 0.85rem; font-weight:600; color: var(--forest); }
.field .hint{ font-size:0.78rem; color: var(--ink-soft); font-weight:400; }
input, textarea, select{
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: var(--cream);
  color: var(--ink);
}
input:focus, textarea:focus, select:focus{ border-color: var(--gold-deep); }
textarea{ resize: vertical; min-height: 110px; }
.form-msg{ margin-top: 14px; font-size: 0.9rem; padding: 12px 14px; border-radius: var(--radius-sm); display:none; }
.form-msg.show{ display:block; }
.form-msg.success{ background: #E7EFE2; color: var(--forest-dark); border: 1px solid var(--sage-light); }
.form-msg.error{ background: #F6E7E2; color: #7A2E1E; border: 1px solid #E0B7A6; }
fieldset{ border:none; padding:0; margin:0 0 18px; }
.checkbox-row{ display:flex; align-items:flex-start; gap:10px; font-size:0.85rem; color: var(--ink-soft); }
.checkbox-row input{ margin-top:3px; width:auto; }

/* =========================================================
   Pricing
   ========================================================= */
.price-hero{
  display:flex; align-items:center; gap: 42px; flex-wrap:wrap; justify-content:center;
}
.price-tile{
  background: var(--paper);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 40px 46px;
  text-align:center;
  box-shadow: var(--shadow-soft);
}
.price-tile .amount{ font-family: var(--font-display); font-size: 3.4rem; color: var(--forest); font-weight:700; }
.price-tile .amount span{ font-size: 1.1rem; font-weight: 500; color: var(--ink-soft); }
.price-tile .sub{ margin-top: 6px; color: var(--gold-deep); font-weight:600; letter-spacing:0.03em; }

.policy-grid{ display:grid; grid-template-columns: repeat(2,1fr); gap:20px; margin-top: 40px; }
@media (max-width:720px){ .policy-grid{ grid-template-columns:1fr; } }
.policy-item{
  background: var(--paper); border:1px solid var(--line); border-radius: var(--radius-sm);
  padding: 20px 22px;
}
.policy-item h3{ font-size:1rem; display:flex; align-items:center; gap:10px; }

/* =========================================================
   FAQ accordion
   ========================================================= */
.faq-list{ max-width: 800px; margin: 0 auto; }
.faq-item{
  border-bottom: 1px solid var(--line);
}
.faq-q{
  width:100%; text-align:left; background:none; border:none; cursor:pointer;
  padding: 20px 0; display:flex; align-items:center; justify-content:space-between;
  font-family: var(--font-display); font-size: 1.08rem; color: var(--forest); gap: 16px;
}
.faq-q .plus{ font-size:1.4rem; color: var(--gold-deep); transition: transform .2s ease; flex-shrink:0; }
.faq-item.open .plus{ transform: rotate(45deg); }
.faq-a{
  max-height:0; overflow:hidden; transition: max-height .25s ease;
  color: var(--ink-soft); font-size:0.95rem;
}
.faq-item.open .faq-a{ padding-bottom: 20px; }

/* =========================================================
   Service area
   ========================================================= */
.area-list{
  display:grid; grid-template-columns: repeat(3,1fr); gap: 10px 24px; list-style:none; padding:0; margin: 0;
}
@media (max-width:720px){ .area-list{ grid-template-columns: repeat(2,1fr); } }
.area-list li{
  display:flex; align-items:center; gap:8px; font-weight:500; color: var(--forest);
  padding: 8px 0; border-bottom: 1px dotted var(--line);
}
.map-frame{
  border-radius: var(--radius); overflow:hidden; border:1px solid var(--line); box-shadow: var(--shadow-card);
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer{
  background: var(--forest-dark);
  color: #D8E0D1;
  padding: 56px 0 26px;
}
.footer-grid{
  display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
}
@media (max-width: 820px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px){ .footer-grid{ grid-template-columns: 1fr; } }
.site-footer h4{ color:#F3EEDD; font-family: var(--font-body); font-size:0.85rem; text-transform:uppercase; letter-spacing:0.08em; margin-bottom: 16px; }
.site-footer .brand img{ height:64px; margin-bottom: 14px; filter: brightness(1.15); }
.site-footer a{ color:#D8E0D1; }
.site-footer a:hover{ color: var(--gold-light); }
.site-footer ul{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px; font-size:0.92rem; }
.footer-bottom{
  border-top: 1px solid rgba(216,224,209,0.15);
  margin-top: 40px; padding-top: 22px;
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:10px;
  font-size: 0.82rem; color: #9FB09A;
}
.social-row{ display:flex; gap:12px; margin-top:6px; }
.social-row a{
  width:36px; height:36px; border-radius:50%; border:1px solid rgba(216,224,209,0.3);
  display:flex; align-items:center; justify-content:center;
}

/* =========================================================
   Page hero (interior pages)
   ========================================================= */
.page-hero{
  padding: 52px 0 44px;
  background: var(--cream-deep);
  border-bottom: 1px solid var(--line);
  text-align:center;
}
.page-hero .eyebrow{ display:block; }
.page-hero p{ max-width: 62ch; margin: 0 auto; }

/* Utility */
.mt-0{ margin-top:0; } .mb-0{ margin-bottom:0; }
.two-col{ display:grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items:center; }
@media (max-width:860px){ .two-col{ grid-template-columns: 1fr; } }
.pill{ display:inline-block; background: var(--gold-light); color: var(--forest-dark); padding: 4px 14px; border-radius:999px; font-size:0.78rem; font-weight:700; letter-spacing:0.03em; }
.values-grid{ display:grid; grid-template-columns: repeat(5,1fr); gap:18px; }
@media (max-width:900px){ .values-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width:540px){ .values-grid{ grid-template-columns: 1fr 1fr; } }
.value-chip{ text-align:center; padding: 18px 10px; background: var(--paper); border:1px solid var(--line); border-radius: var(--radius-sm); font-weight:600; color: var(--forest); font-size:0.92rem; }

/* =========================================================
   Services page polish — visual grouping only
   ========================================================= */
.services-jump-section{
  padding: 34px 0 24px;
  background: var(--cream);
}
.service-jump-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:14px;
}
.service-jump-card{
  background:rgba(255,255,255,0.72);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px 14px;
  min-height:132px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  box-shadow:var(--shadow-card);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.service-jump-card:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow-soft);
  border-color:var(--gold-light);
}
.service-jump-icon{
  width:38px;
  height:38px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--forest);
  color:var(--gold-light);
  font-family:var(--font-display);
  font-size:1.15rem;
  margin-bottom:9px;
}
.service-jump-card strong{
  color:var(--forest);
  font-family:var(--font-display);
  font-size:1.03rem;
  line-height:1.15;
}
.service-jump-card small{
  color:var(--ink-soft);
  font-size:.76rem;
  line-height:1.35;
  margin-top:5px;
}

.services-detail-section{ padding: 44px 0 56px; }
.service-detail{
  position:relative;
  padding:44px;
  margin-bottom:28px;
  border:1px solid var(--line);
  border-radius:calc(var(--radius) + 4px);
  background:rgba(255,255,255,.36);
  overflow:hidden;
}
.service-detail::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:5px;
  height:100%;
  background:linear-gradient(var(--gold), var(--gold-light));
}
.service-detail-alt{
  background:var(--cream-deep);
}
.service-detail-last{ margin-bottom:0; }
.service-detail .pill{ margin-bottom:4px; }
.service-detail h2{ max-width:18ch; }
.service-detail > div:not(.form-card) p,
.service-copy p{ max-width:47ch; }
.service-list-card{
  position:relative;
  padding:28px 30px;
  box-shadow:none;
  border-color:rgba(190,154,63,.38);
}
.service-list-card::before{
  content:'SERVICES INCLUDE';
  display:block;
  margin-bottom:16px;
  color:var(--gold-deep);
  font-size:.69rem;
  font-weight:700;
  letter-spacing:.13em;
}
.service-list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  grid-template-columns:1fr 1fr;
  column-gap:24px;
}
.service-list li{
  position:relative;
  padding:9px 6px 9px 19px;
  border-bottom:1px dotted var(--line);
  color:var(--ink-soft);
  font-size:.92rem;
  break-inside:avoid;
}
.service-list li::before{
  content:'';
  position:absolute;
  left:1px;
  top:17px;
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--gold);
}
.service-list li:last-child{ color:var(--sage); font-style:italic; }

.custom-request-section{ padding:18px 0 70px; }
.custom-request-card{
  max-width:900px;
  margin:0 auto;
  display:grid;
  grid-template-columns:76px 1fr auto;
  gap:24px;
  align-items:center;
  text-align:left;
  border-color:var(--gold-light);
  background:linear-gradient(135deg, #fff 0%, var(--cream-deep) 100%);
}
.custom-request-icon{
  width:72px;
  height:72px;
  object-fit:contain;
}
.custom-request-card .eyebrow{ margin-bottom:5px; }
.custom-request-card h3{ margin-bottom:5px; }
.custom-request-card p{ margin:0; }

@media (max-width: 980px){
  .service-jump-grid{ grid-template-columns:repeat(3,1fr); }
}
@media (max-width: 860px){
  .service-detail{ padding:34px 28px; }
  .service-detail-alt .service-list-card{ order:2; }
  .service-detail-alt .service-copy{ order:1; }
  .custom-request-card{ grid-template-columns:64px 1fr; }
  .custom-request-card .btn{ grid-column:1 / -1; justify-self:center; }
  .custom-request-icon{ width:60px; height:60px; }
}
@media (max-width: 640px){
  .service-jump-grid{ grid-template-columns:1fr 1fr; }
  .service-jump-card{ min-height:112px; }
  .service-detail{ padding:30px 22px; }
  .service-list{ grid-template-columns:1fr; }
  .custom-request-card{ display:flex; flex-direction:column; text-align:center; gap:14px; }
}
@media (max-width: 420px){
  .service-jump-grid{ grid-template-columns:1fr; }
}


/* =========================================================
   Brand story + professional experience polish
   ========================================================= */
.story-wide{
  max-width: 900px;
  margin: 0 auto;
}
.story-wide > p{
  font-size: 1.05rem;
}
.story-promise{
  margin-top: 34px;
  padding: 28px 30px;
  border-left: 4px solid var(--gold);
  background: var(--paper);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow-card);
}
.story-promise .script{
  font-size: 2rem;
  color: var(--gold-deep);
  margin-bottom: 12px;
}
.story-promise p:last-child{
  margin-bottom: 0;
}
.experience-grid{
  align-items: stretch;
}
.experience-card{
  height: 100%;
  border-top: 3px solid var(--gold);
}
.experience-card h3{
  margin-bottom: 12px;
}
@media (max-width: 720px){
  .story-wide > p{
    font-size: 1rem;
  }
  .story-promise{
    padding: 24px 22px;
  }
}

.service-note{
  margin-top:16px;
  padding:16px 18px;
  background:var(--cream-deep);
  border-left:3px solid var(--gold);
  border-radius:0 var(--radius-sm) var(--radius-sm) 0;
  font-size:0.92rem;
}


/* =========================================================
   Final homepage flow
   ========================================================= */
.hero{
  padding-bottom: 64px;
}
.home-story{
  padding-top: 64px;
  padding-bottom: 64px;
}
.home-story-copy{
  max-width: 940px;
}
.home-story-copy h2{
  margin-bottom: 18px;
}
.home-story-copy p{
  font-size: 1.06rem;
  max-width: 82ch;
}
.home-story-copy .btn{
  margin-top: 10px;
}
.experience-grid{
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.experience-card{
  display:flex;
  flex-direction:column;
}
@media (max-width: 860px){
  .experience-grid{
    grid-template-columns: 1fr;
  }
  .home-story-copy p{
    font-size: 1rem;
  }
}


.experience-shared-note{
  max-width: 900px;
  margin: 28px auto 0;
  padding: 22px 26px;
  text-align: center;
  background: rgba(255,255,255,0.65);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.experience-shared-note p{
  margin:0;
  font-size:1rem;
  color:var(--ink-soft);
}


/* =========================================================
   Unboxed homepage experience section
   ========================================================= */
.experience-story > p{
  font-size:1.06rem;
  max-width:82ch;
}
.experience-person{
  padding:30px 0;
  border-top:1px solid var(--line);
}
.experience-person:first-of-type{
  margin-top:28px;
}
.experience-person h3{
  margin-top:14px;
  margin-bottom:14px;
  max-width:30ch;
}
.experience-person p{
  max-width:82ch;
  font-size:1.02rem;
}
.experience-shared-note{
  max-width:none;
  margin:12px 0 0;
  padding:24px 0 0;
  text-align:left;
  background:transparent;
  border:none;
  border-top:1px solid var(--line);
  border-radius:0;
}
.experience-shared-note p{
  max-width:82ch;
  font-size:1.02rem;
}


/* =========================================================
   Simplified homepage services + brand signature
   ========================================================= */
.home-services-intro{
  padding:64px 0;
}
.home-services-intro .story-wide p{
  font-size:1.06rem;
  max-width:82ch;
}
.home-services-intro .btn{
  margin-top:12px;
}
.brand-signature-section{
  padding:52px 0 64px;
  background:var(--cream);
  border-top:1px solid var(--line);
}
.brand-signature{
  max-width:760px;
  margin:0 auto;
}
.brand-signature img{
  width:100%;
  height:auto;
  display:block;
  margin:0 auto;
}
@media (max-width:720px){
  .home-services-intro .story-wide p{
    font-size:1rem;
  }
  .brand-signature{
    max-width:520px;
  }
}


/* =========================================================
   Final clean homepage hero + full-width brand finish
   ========================================================= */
.hero-clean{
  padding:72px 0 70px;
  text-align:center;
}
.hero-clean-inner{
  max-width:1040px;
}
.hero-clean .eyebrow{
  display:block;
  text-align:center;
  margin-bottom:18px;
}
.hero-brand-name{
  font-family:var(--font-script);
  font-size:clamp(2.3rem, 5vw, 4.6rem);
  line-height:1;
  color:var(--forest);
  margin-bottom:10px;
}
.hero-clean h1{
  max-width:900px;
  margin:0 auto 28px;
}
.hero-clean .lede{
  max-width:78ch;
  margin:0 auto;
  font-size:1.12rem;
}
.brand-signature-section.brand-signature-full{
  padding:0;
  margin:0;
  background:var(--cream);
  border-top:1px solid var(--line);
  overflow:hidden;
}
.brand-signature-full img{
  display:block;
  width:100%;
  max-width:none;
  height:auto;
  margin:0;
}
@media (max-width:720px){
  .hero-clean{
    padding:56px 0 54px;
  }
  .hero-clean .lede{
    font-size:1rem;
  }
}


/* =========================================================
   Refined trust section + restrained closing logo
   ========================================================= */
.why-clean-section{
  padding:64px 0;
}
.why-clean-list{
  margin-top:34px;
  border-top:1px solid var(--line);
}
.why-clean-row{
  display:grid;
  grid-template-columns:minmax(220px, 0.75fr) 1.75fr;
  gap:36px;
  padding:24px 0;
  border-bottom:1px solid var(--line);
  align-items:start;
}
.why-clean-row h3{
  margin:0;
}
.why-clean-row p{
  margin:0;
  max-width:70ch;
}
.brand-signature-section.brand-signature-full{
  padding:52px 24px 58px;
  background:var(--cream);
  border-top:1px solid var(--line);
}
.brand-signature-full img{
  width:min(1100px, 92vw);
  max-width:1100px;
  height:auto;
  margin:0 auto;
  display:block;
  object-fit:contain;
}
@media (max-width:720px){
  .why-clean-row{
    grid-template-columns:1fr;
    gap:8px;
    padding:20px 0;
  }
  .brand-signature-section.brand-signature-full{
    padding:36px 16px 42px;
  }
  .brand-signature-full img{
    width:100%;
  }
}






/* Restrained closing logo */
.brand-signature-section.brand-signature-full{
  padding:42px 24px 46px;
}
.brand-signature-full img{
  width:min(880px, 84vw);
  max-width:880px;
  height:auto;
  margin:0 auto;
  display:block;
  object-fit:contain;
}
@media (max-width:720px){
  .brand-signature-section.brand-signature-full{
    padding:30px 14px 34px;
  }
  .brand-signature-full img{
    width:min(96vw, 620px);
  }
}


/* Homepage bottom LLC logo */
.brand-signature-section.brand-signature-full{
  padding: 34px 24px 40px;
}
.brand-signature-full img{
  width: min(980px, 88vw);
  max-width: 980px;
  height: auto;
  margin: 0 auto;
  display: block;
  object-fit: contain;
}
@media (max-width: 720px){
  .brand-signature-section.brand-signature-full{
    padding: 24px 14px 30px;
  }
  .brand-signature-full img{
    width: min(96vw, 620px);
  }
}


@media (max-width: 720px){
  .hero .brand-script,
  .hero .hero-brand,
  .hero h1.brand-script{
    font-size: clamp(2.65rem, 11vw, 4.5rem) !important;
    line-height: 1 !important;
    margin-bottom: 16px !important;
  }

  .hero .hero-tagline,
  .hero .tagline,
  .hero h2{
    font-size: clamp(1.8rem, 8vw, 3rem) !important;
  }
}


@media (max-width: 720px){
  .hero .brand-script,
  .hero .hero-brand,
  .hero h1.brand-script{
    font-size: clamp(2.7rem, 11vw, 4.6rem) !important;
    line-height: .98 !important;
  }

  .hero .hero-tagline,
  .hero .tagline,
  .hero h2{
    font-size: clamp(1.65rem, 7vw, 2.8rem) !important;
  }
}


/* Homepage hero brand - large gold statement */
.hero .brand-script,
.hero .hero-brand,
.hero h1.brand-script{
  width: 100% !important;
  max-width: 1650px !important;
  font-size: clamp(4.9rem, 10.2vw, 10.2rem) !important;
  line-height: 0.93 !important;
  letter-spacing: -0.015em !important;
  white-space: nowrap !important;
  margin: 0 auto 22px auto !important;
  color: #b2871f !important;
  text-shadow: none !important;
  background: none !important;
  border: 0 !important;
  filter: none !important;
}

.hero .brand-script *,
.hero .hero-brand *,
.hero h1.brand-script *{
  color: #b2871f !important;
  text-shadow: none !important;
  background: none !important;
  border: 0 !important;
  filter: none !important;
}

.hero .hero-tagline,
.hero .tagline,
.hero h2{
  max-width: 1080px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  font-size: clamp(2rem, 3.9vw, 3.9rem) !important;
}

@media (max-width: 1100px){
  .hero .brand-script,
  .hero .hero-brand,
  .hero h1.brand-script{
    white-space: normal !important;
    font-size: clamp(3.6rem, 9.5vw, 7rem) !important;
    line-height: 0.96 !important;
  }
}

@media (max-width: 720px){
  .hero .brand-script,
  .hero .hero-brand,
  .hero h1.brand-script{
    font-size: clamp(2.8rem, 11vw, 4.9rem) !important;
    line-height: 0.98 !important;
    white-space: normal !important;
  }

  .hero .hero-tagline,
  .hero .tagline,
  .hero h2{
    font-size: clamp(1.7rem, 7vw, 2.9rem) !important;
  }
}


/* FINAL homepage opening title treatment */
.hero-clean{
  padding: 78px 0 68px;
}
.hero-clean-inner{
  width: min(96vw, 1700px) !important;
  max-width: 1700px !important;
}
.hero-brand-name{
  font-family: var(--font-script) !important;
  color: var(--gold-deep, #a77b17) !important;
  font-size: clamp(5.2rem, 7.7vw, 9rem) !important;
  line-height: .92 !important;
  letter-spacing: -0.02em !important;
  white-space: nowrap !important;
  margin: 0 auto 28px !important;
  width: 100% !important;
  max-width: none !important;
  text-align: center !important;
  text-shadow: none !important;
  border: 0 !important;
  background: none !important;
}
.hero-clean h1{
  max-width: 980px !important;
  margin: 0 auto 30px !important;
}

/* Return the closing/bottom logo area to its restrained regular size */
.brand-signature-section.brand-signature-full{
  padding: 42px 24px 46px !important;
  margin: 0 !important;
  background: var(--cream) !important;
  border-top: 1px solid var(--line) !important;
  overflow: visible !important;
}
.brand-signature-full img{
  display: block !important;
  width: min(880px, 84vw) !important;
  max-width: 880px !important;
  height: auto !important;
  margin: 0 auto !important;
  object-fit: contain !important;
}

@media (max-width: 1100px){
  .hero-brand-name{
    white-space: normal !important;
    font-size: clamp(4rem, 9.5vw, 7rem) !important;
    line-height: .96 !important;
  }
}
@media (max-width: 720px){
  .hero-clean{ padding: 54px 0 50px; }
  .hero-clean-inner{ width: min(94vw, 680px) !important; }
  .hero-brand-name{
    white-space: normal !important;
    font-size: clamp(3rem, 12vw, 5rem) !important;
    margin-bottom: 20px !important;
  }
  .brand-signature-section.brand-signature-full{
    padding: 30px 14px 34px !important;
  }
  .brand-signature-full img{
    width: min(96vw, 620px) !important;
  }
}


/* Final homepage closing logo size */
.brand-signature-section.brand-signature-full{
  padding: 30px 24px 34px !important;
  text-align: center !important;
  overflow: visible !important;
}

.brand-signature-full img{
  display: block !important;
  width: min(620px, 68vw) !important;
  max-width: 620px !important;
  height: auto !important;
  margin: 0 auto !important;
  object-fit: contain !important;
}

@media (max-width: 720px){
  .brand-signature-section.brand-signature-full{
    padding: 24px 14px 28px !important;
  }

  .brand-signature-full img{
    width: min(88vw, 480px) !important;
    max-width: 480px !important;
  }
}

/* =========================================================
   Homepage final spacing refinement
   ========================================================= */
.experience-story-section{
  padding-bottom: 28px;
}

.why-clean-section{
  padding-top: 28px;
}

.brand-signature-section.brand-signature-full{
  padding: 18px 24px 22px;
}

.brand-signature-full img{
  width: min(700px, 72vw);
  max-width: 700px;
}

@media (max-width: 720px){
  .experience-story-section{
    padding-bottom: 22px;
  }

  .why-clean-section{
    padding-top: 22px;
  }

  .brand-signature-section.brand-signature-full{
    padding: 14px 12px 18px;
  }

  .brand-signature-full img{
    width: min(88vw, 500px);
  }
}



/* =========================================================
   Final mobile safeguard
   Prevents sideways blank space and makes the hamburger menu
   behave like a true phone-height panel.
   ========================================================= */
html, body{
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 940px){
  .site-header{
    width: 100%;
  }

  .nav-wrap{
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .nav-links{
    top: 67px;
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    height: calc(100dvh - 67px);
    max-height: calc(100vh - 67px);
    padding: 24px 28px 96px;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    visibility: hidden;
    pointer-events: none;
  }

  .nav-links.open{
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  body.menu-open{
    overflow: hidden;
  }
}

@media (max-width: 420px){
  .brand img{ height: 42px; }
  .nav-cta .btn-sm{
    padding: 8px 13px;
    font-size: 0.76rem;
  }
  .nav-toggle{
    padding: 6px;
  }
}


/* =========================================================
   Final mobile inquiry form fix
   Keeps the full inquiry form inside the phone screen.
   ========================================================= */
form,
.form-card,
.contact-form,
.inquiry-form,
.form-grid,
.form-row,
.form-group{
  max-width: 100%;
  box-sizing: border-box;
}

input,
select,
textarea,
button{
  max-width: 100%;
  box-sizing: border-box;
}

@media (max-width: 720px){
  .form-card,
  .contact-form,
  .inquiry-form{
    width: 100%;
    max-width: 100%;
    padding-left: 18px;
    padding-right: 18px;
    overflow: hidden;
  }

  .form-grid,
  .form-row{
    display: grid;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 16px;
    width: 100%;
  }

  .form-group,
  .form-field{
    width: 100%;
    min-width: 0;
  }

  input,
  select,
  textarea{
    width: 100% !important;
    min-width: 0 !important;
  }

  textarea{
    resize: vertical;
  }
}


/* =========================================================
   Final phone alignment fix for Contact quick-info cards
   ========================================================= */
@media (max-width: 720px){
  .why-grid[style*="grid-template-columns"]{
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100%;
  }

  .why-grid .why-item{
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .why-grid .why-item p,
  .why-grid .why-item a{
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}


/* =========================================================
   Final contact top-card alignment
   Two cards on desktop, one full-width card on phone/tablet.
   ========================================================= */
.contact-info-grid{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-info-grid .why-item{
  min-width: 0;
}

.contact-info-grid .why-item a{
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 820px){
  .contact-info-grid{
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .contact-info-grid .why-item{
    width: 100%;
  }
}
