/* She Cleans House — Modern Luxury Static Site
   Palette: warm bone/cream + charcoal + muted gold accents
   Typography: elegant serif headings + modern sans body
*/
:root{
  --bg: #F7F1E8;        /* warm bone */
  --bg-2:#FBF7F1;       /* lighter cream */
  --ink:#171717;        /* near-black charcoal */
  --ink-2:#2A2A2A;      /* charcoal */
  --muted:#6B6B6B;      /* muted text */
  --line:rgba(23,23,23,.10);
  --card: rgba(255,255,255,.62);
  --card-solid:#FFFFFF;
  --gold:#B79B5B;       /* muted gold */
  --gold-2:#9E844B;
  --shadow: 0 18px 50px rgba(23,23,23,.10);
  --shadow-soft: 0 10px 30px rgba(23,23,23,.08);
  --radius: 22px;
  --radius-sm: 16px;
  --max: 1180px;
  --header-h: 84px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  background:
    radial-gradient(1100px 550px at 20% 0%, rgba(183,155,91,.16), transparent 60%),
    radial-gradient(900px 500px at 85% 8%, rgba(23,23,23,.10), transparent 60%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Inter, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  letter-spacing: .2px;
  line-height: 1.55;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
p{ margin:0 0 1rem; color: var(--ink-2); }
small{ color: var(--muted); }
::selection{ background: rgba(183,155,91,.28); }

/* Type */
.h-serif{
  font-family: ui-serif, "Iowan Old Style", "Palatino Linotype", Palatino, Garamond, serif;
  letter-spacing: .4px;
}
h1,h2,h3{
  margin:0;
  font-weight: 520;
  color: var(--ink);
}
h1{ font-size: clamp(2.2rem, 5vw, 3.6rem); line-height:1.05; }
h2{ font-size: clamp(1.5rem, 3vw, 2.1rem); line-height:1.15; }
h3{ font-size: 1.15rem; line-height:1.25; }
.kicker{
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: .76rem;
  color: var(--muted);
}

/* Layout */
.container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px;
}
.section{
  padding: 64px 0;
}
.section.tight{ padding: 44px 0; }

/* Header */
header.site-header{
  position: sticky;
  top:0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(247,241,232,.72);
  border-bottom: 1px solid var(--line);

  padding: 32px 0;
}
.nav{
  height: var(--header-h);
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 22px;
}
.brand{
  display:flex;
  align-items:center;
  gap: 14px;
  min-width: 220px;
}
.brand img{
  height: 115px;
  width:auto;
  opacity: .98;
}
.nav-links{
  display:flex;
  align-items:center;
  gap: 18px;
}
.nav-links a{
  font-size: .95rem;
  color: var(--ink-2);
  padding: 10px 10px;
  border-radius: 12px;
  transition: background .2s ease, color .2s ease;
}
.nav-links a:hover{
  background: rgba(183,155,91,.12);
}
.nav-links a.active{
  color: var(--ink);
  background: rgba(23,23,23,.06);
}

.cta{
  display:flex;
  align-items:center;
  gap: 10px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(23,23,23,.18);
  background: rgba(255,255,255,.60);
  box-shadow: var(--shadow-soft);
  font-weight: 560;
  font-size: .95rem;
  transition: transform .12s ease, background .2s ease, border-color .2s ease;
}
.btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,.78); border-color: rgba(23,23,23,.28); }
.btn.primary{
  border-color: rgba(183,155,91,.55);
  background: linear-gradient(180deg, rgba(183,155,91,.18), rgba(183,155,91,.08));
}
.btn.primary:hover{ border-color: rgba(183,155,91,.75); }
.btn.ghost{
  background: transparent;
  box-shadow: none;
}
.btn.ghost:hover{ background: rgba(23,23,23,.06); }

/* Mobile nav */
.burger{ display:none; }
@media (max-width: 980px){
  .nav-links{ display:none; }
  .burger{ display:inline-flex; }
}
@media (max-width: 420px){
  .brand{ min-width:auto; }
  .btn{ padding: 12px 14px; }
}

/* Hero */
.hero{
  padding: 56px 0 24px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 28px;
  align-items: stretch;
}
.hero-card{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.55);
  box-shadow: var(--shadow);
  padding: 34px;
  overflow:hidden;
  position:relative;
}
.hero-card:before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(600px 220px at 25% 0%, rgba(183,155,91,.18), transparent 55%),
    radial-gradient(520px 280px at 95% 10%, rgba(23,23,23,.12), transparent 60%);
  pointer-events:none;
  opacity:.85;
}
.hero-card > *{ position:relative; }

.hero-sub{
  margin-top: 18px;
  max-width: 56ch;
  color: var(--ink-2);
  font-size: 1.05rem;
}
.hero-actions{
  margin-top: 22px;
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}
.pills{
  margin-top: 26px;
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}
.pill{
  padding: 8px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.60);
  font-size: .9rem;
  color: var(--ink-2);
}

/* Side panel */
.hero-panel{
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.45);
  box-shadow: var(--shadow-soft);
  padding: 26px;
}
.panel-row{
  display:flex;
  align-items:flex-start;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.panel-row:first-child{ border-top:0; padding-top: 0; }
.panel-dot{
  width: 10px;
  height: 10px;
  border-radius: 14px;
  margin-top: 6px;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(183,155,91,.14);
}
.panel-title{ font-weight: 650; }
.panel-meta{ color: var(--muted); font-size: .92rem; margin-top: 4px; }

@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
}

/* Cards / grids */
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.grid-2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (max-width: 980px){
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
}
.card{
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.55);
  box-shadow: var(--shadow-soft);
  padding: 22px;
}
.card h3{ margin-bottom: 8px; }
.card p{ color: var(--muted); }
.card .meta{
  margin-top: 14px;
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
}
.chip{
  display:inline-flex;
  padding: 7px 10px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.56);
  font-size: .85rem;
  color: var(--ink-2);
}

/* Luxury divider */
.divider{
  height:1px;
  background: var(--line);
  margin: 24px 0;
}

/* Pricing */
.price-table{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 980px){
  .price-table{ grid-template-columns: 1fr; }
}
.price-card{
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.60);
  box-shadow: var(--shadow);
  padding: 26px;
}
.price-top{
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  gap: 12px;
}
.price{
  font-size: 1.9rem;
  font-weight: 700;
}
.price small{
  display:block;
  margin-top: 3px;
}
.list{
  margin: 16px 0 0;
  padding:0;
  list-style:none;
}
.list li{
  padding: 10px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-2);
}
.list li:first-child{ border-top:0; }
.note{
  border-left: 2px solid rgba(183,155,91,.65);
  padding-left: 14px;
  color: var(--muted);
}

/* Policies */
.policy{
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.policy:first-child{ border-top:0; }
.policy h3{ margin-bottom: 6px; }

/* Contact form */
.form{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form .full{ grid-column: 1 / -1; }
@media (max-width: 760px){
  .form{ grid-template-columns: 1fr; }
}
label{ display:block; font-size:.9rem; color: var(--muted); margin: 0 0 6px; }
input, select, textarea{
  width:100%;
  border-radius: 16px;
  border: 1px solid rgba(23,23,23,.18);
  background: rgba(255,255,255,.72);
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  outline: none;
}
textarea{ min-height: 140px; resize: vertical; }
input:focus, select:focus, textarea:focus{
  border-color: rgba(183,155,91,.70);
  box-shadow: 0 0 0 6px rgba(183,155,91,.14);
}

/* Footer */
footer{
  padding: 42px 0 54px;
  border-top: 1px solid var(--line);
  margin-top: 36px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
}
@media (max-width: 980px){
  .footer-grid{ grid-template-columns: 1fr; }
}
.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap: 12px 16px;
  justify-content:flex-end;
}
@media (max-width: 980px){
  .footer-links{ justify-content:flex-start; }
}
.footer-links a{
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 12px;
}
.footer-links a:hover{ background: rgba(23,23,23,.06); color: var(--ink); }

/* Utility */
.lead{ font-size:1.05rem; color: var(--ink-2); }
.center{ text-align:center; }
.right{ text-align:right; }
.mt-10{ margin-top: 10px; }
.mt-14{ margin-top: 14px; }
.mt-18{ margin-top: 18px; }
.mt-24{ margin-top: 24px; }
.mt-32{ margin-top: 32px; }
.mb-10{ margin-bottom: 10px; }
.mb-14{ margin-bottom: 14px; }
.mb-18{ margin-bottom: 18px; }
.mb-24{ margin-bottom: 24px; }

/* Simple mobile menu (CSS-only) */
#nav-toggle{ display:none; }
.mobile-menu{
  display:none;
  border-top: 1px solid var(--line);
  padding: 10px 0 16px;
}
.mobile-menu a{
  display:block;
  padding: 12px 10px;
  border-radius: 12px;
  color: var(--ink-2);
}
.mobile-menu a:hover{ background: rgba(183,155,91,.12); }
#nav-toggle:checked ~ .mobile-menu{ display:block; }

/* Subpage header */
.page-hero{
  padding: 42px 0 18px;
}
.page-hero .title{
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.breadcrumb{
  color: var(--muted);
  font-size: .9rem;
}

/* Brand eyebrow above hero */
.brand-eyebrow{
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 14px;
}
.brand-eyebrow .brand-name{
  font-weight: 600;
}
.brand-eyebrow .brand-desc{
  font-weight: 400;
}
