/* Howell Cleaning Co. — boutique lifestyle landing
   Vibe: Handy Housewives / French Press Creative / Cantor House Media
   Ivory #F2EBDD · Sage #78947F · Emerald #185844 · Forest #102F27 · Antique Gold #B08A4F
*/

:root {
  --ivory: #F2EBDD;
  --ivory-deep: #E8DFD0;
  --cream: #F7F2E8;
  --sage: #78947F;
  --sage-soft: rgba(120, 148, 127, 0.18);
  --emerald: #185844;
  --forest: #102F27;
  --gold: #B08A4F;
  --gold-soft: rgba(176, 138, 79, 0.35);
  --taupe: #9A8F7E;
  --text: #102F27;
  --text-muted: #4A5C54;
  --max: 1120px;
  --narrow: 680px;
  --serif: "Cormorant Garamond", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--emerald);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
  transition: color 0.2s var(--ease);
}

a:hover { color: var(--forest); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--forest);
  color: var(--ivory);
  padding: 0.75rem 1rem;
  z-index: 100;
}
.skip-link:focus { left: 0; }

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}
.wrap.narrow { width: min(100% - 2.5rem, var(--narrow)); }

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(242, 235, 221, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}
.brand:hover { color: inherit; }

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px var(--gold-soft);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.brand-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.brand-tag {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 400;
}

.nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}
.nav a {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 400;
}
.nav a:hover { color: var(--forest); }
.nav-cta {
  padding: 0.55rem 1.15rem;
  border: 1px solid var(--gold);
  color: var(--forest) !important;
  letter-spacing: 0.1em !important;
}
.nav-cta:hover {
  background: var(--forest);
  color: var(--ivory) !important;
  border-color: var(--forest);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--forest);
  width: 100%;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--gold-soft);
  background: var(--cream);
  padding: 0.5rem 1.25rem 1rem;
}
.mobile-nav[hidden] { display: none !important; }
.mobile-nav a {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--sage-soft);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
}

@media (min-width: 880px) {
  .nav { display: flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }
}

/* ——— Hero: soft stripes + editorial type ——— */
.hero {
  position: relative;
  padding: clamp(3.5rem, 10vw, 7rem) 0 clamp(3rem, 8vw, 5.5rem);
  overflow: hidden;
  background: var(--cream);
}

.hero-stripes {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background: repeating-linear-gradient(
    90deg,
    var(--ivory) 0px,
    var(--ivory) 28px,
    #E4DDD0 28px,
    #E4DDD0 29px
  );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 0 0 1.25rem;
}
.eyebrow.light { color: var(--gold); }

.hero-script {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(3.4rem, 12vw, 5.75rem);
  line-height: 0.95;
  color: var(--forest);
  letter-spacing: -0.01em;
}

.hero-sub {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--serif);
  font-style: normal;
  font-weight: 500;
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--forest);
}

#hero-title {
  margin: 0 0 1rem;
  font-weight: inherit;
  font-size: inherit;
}

.hero-tagline {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 3vw, 1.55rem);
  font-weight: 400;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  font-style: italic;
}

.gold-rule {
  width: 64px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 1.75rem;
  position: relative;
}
.gold-rule::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 5px;
  background: var(--gold);
  transform: translate(-50%, -50%) rotate(45deg);
}
.gold-rule.left {
  margin-left: 0;
  margin-right: auto;
}
.gold-rule.left::before { left: 0; transform: translate(0, -50%) rotate(45deg); }

.hero-lede {
  max-width: 34em;
  margin: 0 auto 2.25rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

/* Soft CTAs — not neon service-flyer buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.75rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--forest);
  color: var(--ivory);
  border-color: var(--forest);
}
.btn-primary:hover {
  background: var(--emerald);
  border-color: var(--emerald);
  color: var(--ivory);
}

.btn-ghost {
  background: transparent;
  color: var(--forest);
  border-color: var(--sage);
}
.btn-ghost:hover {
  background: var(--sage-soft);
  color: var(--forest);
}

.btn-gold {
  background: var(--ivory);
  color: var(--forest);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold);
  color: var(--forest);
}

.btn-outline-ivory {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(242, 235, 221, 0.55);
}
.btn-outline-ivory:hover {
  background: rgba(242, 235, 221, 0.12);
  color: var(--ivory);
  border-color: var(--ivory);
}

/* ——— Lifestyle gallery ——— */
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.4rem;
  background: var(--forest);
  padding: 0.4rem;
}
.gallery figure {
  margin: 0;
  overflow: hidden;
  min-height: 220px;
}
.gallery img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s var(--ease);
}
.gallery figure:hover img { transform: scale(1.03); }

@media (min-width: 560px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.45rem;
    padding: 0.45rem;
  }
}

@media (min-width: 960px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    padding: 0.5rem;
  }
  .gallery figure,
  .gallery img {
    min-height: 240px;
  }
}

/* ——— Sections ——— */
.section {
  padding: clamp(3.5rem, 9vw, 6.5rem) 0;
}

.section h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  line-height: 1.15;
  margin: 0 0 1.25rem;
  color: var(--forest);
  letter-spacing: -0.01em;
}

.section h2 .soft {
  font-weight: 400;
  font-style: italic;
  color: var(--sage);
}

.lede {
  font-size: 1.12rem;
  color: var(--text-muted);
  margin: 0 0 2.5rem;
  max-width: 38em;
}

.section-tint {
  background: var(--cream);
  border-top: 1px solid var(--gold-soft);
  border-bottom: 1px solid var(--gold-soft);
  /* soft journal pinstripe */
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 47px,
    rgba(120, 148, 127, 0.07) 47px,
    rgba(120, 148, 127, 0.07) 48px
  );
}

.service-grid {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

.service-grid li {
  padding: 1.75rem 1.5rem;
  background: var(--cream);
  border: 1px solid var(--gold-soft);
}
.service-grid h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  margin: 0 0 0.65rem;
  color: var(--forest);
}
.service-grid p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.fine {
  font-size: 0.88rem;
  color: var(--taupe);
  margin: 0;
}

/* Area split */
.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 800px) {
  .split { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
}

.area-card {
  margin: 0;
  border: 1px solid var(--gold-soft);
  background: var(--ivory);
  padding: 0.6rem;
  box-shadow: 0 20px 50px rgba(16, 47, 39, 0.06);
}
.area-card img { width: 100%; }

/* About — editorial journal */
.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 800px) {
  .about-grid { grid-template-columns: 0.9fr 1.1fr; gap: 3.5rem; }
}

.about-visual {
  margin: 0;
  padding: 0.75rem;
  background: var(--cream);
  border: 1px solid var(--gold-soft);
  box-shadow: 0 24px 60px rgba(16, 47, 39, 0.07);
}
.about-visual img { width: 100%; }

blockquote {
  margin: 0 0 1.5rem;
  padding: 0;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--forest);
  font-weight: 400;
}

/* ——— Forest CTA band ——— */
.section-forest {
  background: var(--forest);
  color: var(--ivory);
  /* subtle soft stripe */
  background-image: repeating-linear-gradient(
    90deg,
    var(--forest) 0,
    var(--forest) 36px,
    #0d2821 36px,
    #0d2821 37px
  );
}

.section-forest h2 {
  color: var(--ivory);
  margin-bottom: 0.85rem;
}

.section-forest p {
  color: rgba(242, 235, 221, 0.82);
}

.cta-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 720px) {
  .cta-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

.cta-card {
  padding: 2.25rem 2rem;
  border: 1px solid rgba(176, 138, 79, 0.4);
  background: rgba(16, 47, 39, 0.55);
  backdrop-filter: blur(4px);
}
.cta-card .btn { margin-top: 0.5rem; }

.placeholder-note {
  margin: 1rem 0 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--taupe);
  letter-spacing: 0.02em;
}
.section-forest .placeholder-note {
  color: rgba(242, 235, 221, 0.45);
}
.placeholder-note code {
  font-size: 0.85em;
  color: var(--gold);
  background: transparent;
}

/* ——— Footer ——— */
.site-footer {
  background: var(--ivory);
  border-top: 1px solid var(--gold-soft);
  padding: 3rem 0 2rem;
}

.footer-inner {
  display: grid;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gold-soft);
}
@media (min-width: 720px) {
  .footer-inner {
    grid-template-columns: 1.2fr 1fr 0.8fr;
    gap: 2.5rem;
  }
}

.footer-brand img {
  width: 140px;
  height: auto;
  margin-bottom: 0.75rem;
}
.footer-brand p {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  color: var(--text-muted);
}

.footer-meta p { margin: 0 0 0.35rem; font-size: 0.92rem; }
.footer-meta a { text-decoration: none; color: var(--emerald); }

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-nav a {
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.footer-nav a:hover { color: var(--forest); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  padding-top: 1.5rem;
}
.footer-bottom p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--taupe);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .gallery img { transition: none; }
  .btn:hover { transform: none; }
}
