/* ============================================================
   Well House Floral and Design — wellhousefloral.com
   Palette: Ink #2E3A2C · Linen #FBF9F4 · Rose #B76E79
            Fern #5C7355 · Stone #8B8578
   Type: Cormorant Garamond (display) · Mulish (body)
   ============================================================ */

:root {
  --ink: #2e3a2c;
  --linen: #fbf9f4;
  --paper: #ffffff;
  --rose: #b76e79;
  --rose-deep: #9c5a65;
  --fern: #5c7355;
  --stone: #8b8578;
  --hairline: #e4dfd3;
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Mulish", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--body);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--linen);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--fern); text-decoration: none; }
a:hover { color: var(--rose-deep); }
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
}

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--display); font-weight: 500; line-height: 1.15; }
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); }
h3 { font-size: 1.45rem; }

.eyebrow {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 0.9rem;
}

.lede { font-size: 1.15rem; color: #4a5245; max-width: 46ch; }

.italic-accent { font-style: italic; color: var(--rose-deep); }

/* ---------- Layout ---------- */
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 720px; margin: 0 auto; padding: 0 24px; }

section { padding: 4.5rem 0; }

/* ---------- Stem divider (signature) ---------- */
.stem {
  display: block;
  width: 120px;
  height: 34px;
  margin: 0 auto;
  color: var(--fern);
}
.stem--left { margin: 0; }

/* ---------- Header / nav ---------- */
.site-header {
  background: var(--linen);
  border-bottom: 1px solid var(--hairline);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.brand {
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1.1;
}
.brand em { color: var(--rose-deep); font-style: italic; }
.nav-links { display: flex; gap: 1.6rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--rose-deep); }
.nav-links .nav-cta {
  border: 1px solid var(--rose);
  color: var(--rose-deep);
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
}
.nav-links .nav-cta:hover { background: var(--rose); color: #fff; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--hairline);
  border-radius: 6px;
  padding: 0.45rem 0.7rem;
  font-family: var(--body);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--linen);
    border-bottom: 1px solid var(--hairline);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0 1rem;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block; padding: 0.8rem 0; }
  .nav-links .nav-cta { display: inline-block; margin-top: 0.6rem; }
}

/* ---------- Hero banner variant (image carries its own text) ---------- */
.hero-banner { padding: 0; line-height: 0; background: #2e3a2c; }
.hero-banner img { width: 100%; height: auto; }

.hero-intro {
  background: var(--paper);
  border-bottom: 1px solid var(--hairline);
  text-align: center;
  padding: 3.6rem 0 4rem;
}
.hero-intro h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.hero-intro .lede { margin: 1rem auto 0; }
.hero-intro .hero-actions { justify-content: center; margin-top: 2rem; display: flex; gap: 0.9rem; flex-wrap: wrap; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background: linear-gradient(160deg, #3a4a38 0%, #2e3a2c 55%, #22301f 100%);
  overflow: hidden;
  padding: 0;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 38, 28, 0.78) 0%, rgba(30, 38, 28, 0.15) 55%, rgba(30, 38, 28, 0.25) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px 4.5rem;
}
.hero .eyebrow { color: #e8c9ce; }
.hero h1 { max-width: 14ch; }
.hero h1 em { font-style: italic; }
.hero p { max-width: 52ch; margin-top: 1rem; font-size: 1.08rem; color: #eef0ea; }
.hero-actions { margin-top: 1.8rem; display: flex; gap: 0.9rem; flex-wrap: wrap; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn-rose { background: var(--rose); color: #fff; }
.btn-rose:hover { background: var(--rose-deep); color: #fff; }
.btn-ghost { border-color: rgba(255, 255, 255, 0.7); color: #fff; }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.14); color: #fff; }
.btn-outline { border-color: var(--fern); color: var(--fern); background: transparent; }
.btn-outline:hover { background: var(--fern); color: #fff; }

/* ---------- Cards / packages ---------- */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.6rem;
  margin-top: 2.5rem;
}
.pkg {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 2.2rem 1.9rem;
  display: flex;
  flex-direction: column;
}
.pkg--feature { border-color: var(--rose); box-shadow: 0 10px 30px rgba(156, 90, 101, 0.1); }
.pkg-tier {
  font-family: var(--display);
  font-style: italic;
  font-size: 1rem;
  color: var(--stone);
}
.pkg h3 { margin: 0.3rem 0 0.4rem; }
.pkg-price {
  font-family: var(--display);
  font-size: 2.1rem;
  color: var(--rose-deep);
  margin-bottom: 1.1rem;
}
.pkg ul { list-style: none; margin-bottom: 1.6rem; }
.pkg li {
  padding: 0.42rem 0 0.42rem 1.4rem;
  position: relative;
  font-size: 0.95rem;
  border-bottom: 1px dashed var(--hairline);
}
.pkg li:last-child { border-bottom: none; }
.pkg li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rose);
}
.pkg .btn { margin-top: auto; text-align: center; }
.pkg-note { font-size: 0.9rem; color: var(--stone); margin-top: 1.4rem; }

/* ---------- Testimonials ---------- */
.quotes { background: var(--paper); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.2rem;
  margin-top: 2.4rem;
}
blockquote {
  font-family: var(--display);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.5;
  color: #3d4a3a;
}
blockquote footer {
  font-family: var(--body);
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-top: 1rem;
}

/* ---------- Split sections ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.split-photo {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  background: #e9e5da;
  aspect-ratio: 4 / 5;
}
.split-photo img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 780px) { .split { grid-template-columns: 1fr; gap: 2rem; } }

/* ---------- Service tiles (home) ---------- */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
  margin-top: 2.4rem;
}
.tile {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 1.9rem 1.6rem;
  color: var(--ink);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.tile:hover { border-color: var(--rose); transform: translateY(-3px); color: var(--ink); }
.tile h3 { margin-bottom: 0.5rem; }
.tile p { font-size: 0.95rem; color: #4a5245; }
.tile .tile-go {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-deep);
}

/* ---------- Forms ---------- */
.form-card {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 2.4rem;
  margin-top: 2.2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 1.2rem; }
label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fern);
  margin-bottom: 0.4rem;
}
input, select, textarea {
  width: 100%;
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--linen);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  padding: 0.75rem 0.9rem;
}
textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 0.85rem; color: var(--stone); margin-top: 1rem; }

/* ---------- Gallery ---------- */
.masonry { columns: 3 260px; column-gap: 14px; margin-top: 2.4rem; }
.masonry figure {
  break-inside: avoid;
  margin: 0 0 14px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  cursor: zoom-in;
  background: #eae6db;
}
.masonry img { width: 100%; transition: transform 0.35s ease; }
.masonry figure:hover img { transform: scale(1.025); }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(30, 38, 28, 0.93);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 4vh 4vw;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 6px; }
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
}

/* ---------- Page intro band ---------- */
.page-intro {
  background: var(--paper);
  border-bottom: 1px solid var(--hairline);
  padding: 3.6rem 0 3rem;
  text-align: center;
}
.page-intro .lede { margin: 0.9rem auto 0; }

/* ---------- Calendly embed ---------- */
.calendly-shell {
  margin-top: 2.2rem;
  border: 1px solid var(--hairline);
  border-radius: 10px;
  overflow: hidden;
  background: var(--paper);
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--ink);
  color: #eef0ea;
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band h2 em { color: #e8c9ce; font-style: italic; }
.cta-band p { max-width: 52ch; margin: 1rem auto 1.8rem; color: #cfd6ca; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--linen);
  border-top: 1px solid var(--hairline);
  padding: 2.6rem 0 2.2rem;
  text-align: center;
  font-size: 0.88rem;
  color: var(--stone);
}
.site-footer .brand { display: block; margin-bottom: 0.5rem; }
.footer-links { list-style: none; display: flex; justify-content: center; gap: 1.4rem; flex-wrap: wrap; margin: 0.8rem 0; }
.footer-links a { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; }

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.hidden { display: none !important; }
