/* ==========================================================================
   Area Indoor Plants — LUXE design system (site-wide)
   Lightened luxury: cream & parchment surfaces, deep pine, brass accents
   Type: Cormorant Garamond (display) · Jost (body)
   Keeps the class + variable vocabulary of the original styles.css so all
   existing page markup restyles without edits.
   ========================================================================== */

:root {
  --paper: #FAF7F0;
  --wash: #F2ECDF;
  --ink: #1C241E;
  --muted: #5A6459;
  --line: rgba(28, 36, 30, 0.14);
  --green-950: #0C100E;
  --green-900: #152119;
  --green-700: #1E4633;
  --green-600: #27614A;
  --leaf: #8FBFA4;
  --leaf-soft: #E7E9DC;
  --gold: #B08D5F;
  --brass: #C2A268;
  --brass-dark: #8F7440;
  --radius: 16px;
  --shadow: 0 24px 50px -36px rgba(28, 36, 30, 0.35);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", "Avenir Next", -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

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

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

a { color: var(--green-700); }
a:hover { color: var(--brass-dark); }
:focus-visible { outline: 3px solid var(--brass); outline-offset: 2px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--green-950); color: #fff; padding: .6rem 1rem;
}
.skip-link:focus { left: 0; }

/* ---------- Type scale ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.1; text-wrap: balance; margin: 0 0 .6em; letter-spacing: .005em; }
h1 { font-size: clamp(2.4rem, 5.5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.7rem); }
h3 { font-size: 1.45rem; line-height: 1.22; }
h1 em, h2 em, h3 em { font-style: italic; font-weight: 500; }
p { margin: 0 0 1rem; }
.lede { font-size: clamp(1.08rem, 2vw, 1.25rem); color: var(--muted); max-width: 44rem; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .76rem; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; color: var(--brass-dark);
  background: rgba(143, 116, 64, .1); border-radius: 999px;
  padding: .42rem 1.05rem; margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: .4rem; height: .4rem; border-radius: 50%; background: var(--brass-dark); flex: none; }
.center { text-align: center; }
.center .lede { margin-inline: auto; }

/* ---------- Layout ---------- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.25rem; }
.section { padding: clamp(3.2rem, 7vw, 6rem) 0; }
.section.wash { background: var(--wash); }
.grid { display: grid; gap: 1.5rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 4rem); align-items: center; }
.split > .split-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: 100%; min-height: clamp(20rem, 40vw, 34rem); object-fit: cover; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

/* ---------- Header ---------- */
.topbar {
  background: var(--green-950); color: #DCEAE0; font-size: .84rem; font-weight: 400;
  letter-spacing: .04em; padding: .5rem 0;
}
.topbar .container { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.topbar a { color: var(--brass); font-weight: 500; text-decoration: none; }
.topbar a:hover { color: #D8C298; text-decoration: underline; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 247, 240, 0.92); backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: .7rem; padding-bottom: .7rem; }
.brand { display: flex; align-items: center; gap: .65rem; text-decoration: none; color: var(--ink); }
.brand-mark { width: 42px; height: 42px; background: var(--green-700); border-radius: 50%; display: grid; place-items: center; }
.brand-mark img { width: 30px; height: 30px; }
.brand-name { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; line-height: 1.1; }
.brand-name small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }

.nav { display: flex; align-items: center; gap: 1.5rem; }
.nav a { text-decoration: none; color: var(--muted); font-weight: 400; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; transition: color .3s ease; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--green-700); }
.nav .btn { color: #fff; letter-spacing: .1em; }
.nav-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 10px; padding: .5rem .65rem; font-size: 1.2rem; line-height: 1; cursor: pointer; color: var(--ink); }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; padding: 1rem 1.25rem; gap: .9rem;
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; background: var(--green-900); color: #fff;
  font-weight: 500; font-size: .92rem; letter-spacing: .06em; text-decoration: none;
  padding: .85rem 1.7rem; border-radius: 999px; border: 1.5px solid var(--green-900);
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}
.btn:hover { background: var(--green-700); border-color: var(--green-700); color: #fff; transform: translateY(-2px); }
.btn.ghost { background: transparent; color: var(--green-900); border-color: var(--line); }
.btn.ghost:hover { background: transparent; color: var(--brass-dark); border-color: var(--brass-dark); }
.btn.on-dark { background: var(--brass); color: var(--green-950); border-color: var(--brass); }
.btn.on-dark:hover { background: #D8C298; border-color: #D8C298; color: var(--green-950); }
.btn.ghost.on-dark { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn.ghost.on-dark:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; }
.btn-row { display: flex; gap: .9rem; flex-wrap: wrap; }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(12, 16, 14, .84) 0%, rgba(12, 16, 14, .55) 52%, rgba(12, 16, 14, .18) 100%);
}
.hero-content { position: relative; padding: clamp(4.5rem, 11vw, 8.5rem) 0; max-width: 46rem; }
.hero-content .eyebrow { color: var(--brass); background: rgba(194, 162, 104, .14); }
.hero-content .eyebrow::before { background: var(--brass); }
.hero-content h1 { color: #fff; text-shadow: 0 2px 6px rgba(0,0,0,.3); }
.hero-content .lede { color: rgba(242, 237, 225, .92); text-shadow: 0 1px 3px rgba(0,0,0,.4); }
.hero-note { margin-top: 1.1rem; font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(242, 237, 225, .8); text-shadow: 0 1px 3px rgba(0,0,0,.5); }

/* Subpage hero */
.page-hero { background: var(--green-900); color: #fff; padding: clamp(2.8rem, 6vw, 4.5rem) 0; }
.page-hero h1 { color: #fff; margin-bottom: .3em; }
.page-hero h1 em { color: var(--brass); }
.page-hero .lede { color: rgba(242, 237, 225, .8); }
.page-hero .eyebrow { color: var(--brass); background: rgba(194, 162, 104, .14); }
.page-hero .eyebrow::before { background: var(--brass); }
.breadcrumbs { font-size: .82rem; letter-spacing: .06em; margin-bottom: 1.2rem; color: rgba(242, 237, 225, .55); }
.breadcrumbs a { color: rgba(242, 237, 225, .8); }
.breadcrumbs span[aria-current] { color: #fff; }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--green-900); color: rgba(242, 237, 225, .88); }
.trustbar ul {
  list-style: none; margin: 0; padding: 1rem 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem 2.4rem;
  font-size: .84rem; font-weight: 400; letter-spacing: .1em; text-transform: uppercase;
}
.trustbar li { display: flex; align-items: center; gap: .5rem; }
.trustbar li::before { content: "✓"; color: var(--brass); font-weight: 700; }

/* ---------- Cards ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform .4s ease, box-shadow .4s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -34px rgba(28, 36, 30, .42); }
.card img { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; }
.card-body { padding: 1.5rem 1.6rem 1.7rem; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.card-body h3 { margin-bottom: .1em; }
.card-body p { color: var(--muted); margin: 0; font-size: .98rem; }
.card-link { margin-top: auto; padding-top: .9rem; font-weight: 500; font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; text-decoration: none; color: var(--brass-dark); }
.card-link::after { content: " →"; }

/* ---------- Steps (process) ---------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; counter-reset: step; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }
.steps li { counter-increment: step; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem 1.6rem; }
.steps li::before {
  content: "0" counter(step);
  display: block; font-family: var(--font-display); font-style: italic;
  font-size: 2.4rem; font-weight: 500; line-height: 1; color: var(--brass-dark);
  margin-bottom: .9rem;
}
.steps h3 { margin-bottom: .35rem; }
.steps p { color: var(--muted); margin: 0; font-size: .98rem; }

/* ---------- Reviews ---------- */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .review-grid { grid-template-columns: 1fr; } }
.review {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem 1.6rem; box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: .7rem;
}
.stars { color: var(--gold); letter-spacing: .18em; font-size: .92rem; }
.review blockquote { margin: 0; font-family: var(--font-display); font-size: 1.15rem; line-height: 1.5; }
.review cite { font-style: normal; font-weight: 500; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--brass-dark); }
.review cite small { display: block; font-weight: 400; letter-spacing: .06em; color: var(--muted); text-transform: none; font-size: .85rem; }

/* ---------- Service area chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: .7rem; padding: 0; margin: 1.4rem 0 0; list-style: none; }
.chips a {
  display: inline-block; background: #fff; border: 1px solid var(--line);
  border-radius: 999px; padding: .6rem 1.3rem; text-decoration: none;
  font-weight: 400; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
  transition: border-color .3s ease, color .3s ease;
}
.chips a:hover { border-color: var(--brass-dark); color: var(--brass-dark); }

/* ---------- FAQ ---------- */
.faq { max-width: 50rem; margin: 0 auto; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: .4rem 1.4rem; margin-bottom: .7rem; }
.faq summary {
  cursor: pointer; font-weight: 500; font-size: 1.05rem; padding: .85rem 2rem .85rem 0;
  list-style: none; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: .25rem; top: .7rem; font-size: 1.4rem; color: var(--brass-dark); font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--muted); margin: 0 0 1rem; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--green-900); color: #fff; }
.cta-band .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; padding-top: clamp(2.8rem, 6vw, 4.5rem); padding-bottom: clamp(2.8rem, 6vw, 4.5rem); }
.cta-band h2 { color: #fff; margin: 0 0 .3em; }
.cta-band h2 em { color: var(--brass); }
.cta-band p { color: rgba(242, 237, 225, .8); margin: 0; max-width: 34rem; }

/* ---------- Tables (pricing) ---------- */
.tablewrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; margin: 1.5rem 0; }
table { border-collapse: collapse; width: 100%; font-size: .97rem; }
th { background: var(--wash); text-align: left; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--brass-dark); font-weight: 500; padding: .85rem 1rem; border-bottom: 2px solid var(--line); }
td { padding: .85rem 1rem; border-bottom: 1px solid var(--line); vertical-align: top; font-variant-numeric: tabular-nums; }
tr:last-child td { border-bottom: none; }

/* ---------- Gallery ---------- */
.masonry { columns: 3 280px; column-gap: 1.1rem; }
.masonry figure { margin: 0 0 1.1rem; break-inside: avoid; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: .6rem; box-shadow: var(--shadow); }
.masonry img { border-radius: 8px; width: 100%; }
.masonry figcaption { font-family: var(--font-display); font-style: italic; font-size: .98rem; color: var(--muted); padding: .55rem .3rem .2rem; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 1.1rem; max-width: 40rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
label { font-weight: 500; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; display: block; margin-bottom: .35rem; }
input, select, textarea {
  width: 100%; padding: .8rem 1rem; font: inherit; color: var(--ink);
  border: 1px solid var(--line); border-radius: 12px; background: #fff;
}
input:focus, select:focus, textarea:focus { outline: 3px solid var(--leaf-soft); border-color: var(--brass-dark); }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-950); color: rgba(242, 237, 225, .68); font-size: .95rem; }
.footer-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr 1fr 1.05fr; gap: 2rem; padding: clamp(2.8rem, 6vw, 4rem) 0 2rem; }
@media (max-width: 1080px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h3 { color: var(--brass); font-family: var(--font-body); font-size: .74rem; font-weight: 500; letter-spacing: .24em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.site-footer a { color: rgba(242, 237, 225, .8); text-decoration: none; }
.site-footer a:hover { color: #D8C298; text-decoration: underline; }
.footer-brand img { width: 74px; margin-bottom: .9rem; }
.footer-brand p { margin: 0 0 .5rem; }
.footer-bottom { border-top: 1px solid rgba(242, 237, 225, .12); padding: 1.2rem 0 1.6rem; display: flex; flex-wrap: wrap; gap: .8rem 2rem; justify-content: space-between; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(242, 237, 225, .4); }
.footer-bottom a { color: rgba(242, 237, 225, .6); }

/* ---------- Utilities ---------- */
.note { font-size: .9rem; color: var(--muted); }
.tag {
  display: inline-block; background: rgba(143, 116, 64, .1); color: var(--brass-dark);
  font-size: .72rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  border-radius: 999px; padding: .35rem .95rem;
}
.checklist { list-style: none; padding: 0; margin: 1rem 0; display: grid; gap: .6rem; }
.checklist li { padding-left: 1.7rem; position: relative; }
.checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--brass-dark); font-weight: 700; }
.prose { max-width: 46rem; }
.prose h2 { margin-top: 2.2rem; }
.prose h3 { margin-top: 1.6rem; }
