/* ============================================================
   BLUEBONNET LAWN & LANDSCAPE - template stylesheet
   Bright, energetic, curb-appeal-forward. The signature device
   is the "yard sign": chunky soil-brown borders with hard
   offset shadows on cards and buttons. One blue band ties the
   name to the state flower.

   Palette : cream #FAF8F0 / leaf #35803B / soil #3E2E22
             bluebonnet #4A5FA5 / sunshine #EFC53F
   Type    : Bricolage Grotesque (display) + Hanken Grotesk
   ============================================================ */

:root {
  --cream: #faf8f0;
  --cream-2: #f1ecdc;
  --leaf: #35803b;
  --leaf-deep: #27632c;
  --leaf-tint: #e3efe0;
  --soil: #3e2e22;
  --soil-soft: #6d5c4d;
  --bluebonnet: #4a5fa5;
  --bluebonnet-deep: #39497f;
  --sun: #efc53f;
  --sun-deep: #e0b32a;
  --card: #ffffff;
  --line: #e4dcc9;

  --display: "Bricolage Grotesque", system-ui, sans-serif;
  --body: "Hanken Grotesk", system-ui, sans-serif;

  --radius: 16px;
  --radius-lg: 22px;
}

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

body {
  margin: 0;
  font-family: var(--body);
  font-size: 1.04rem;
  line-height: 1.65;
  color: var(--soil);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 0.55em;
  letter-spacing: -0.015em;
  color: var(--soil);
}

p {
  margin: 0 0 1em;
}

a {
  color: var(--bluebonnet);
}

a:hover {
  color: var(--bluebonnet-deep);
}

:focus-visible {
  outline: 3px solid var(--bluebonnet);
  outline-offset: 3px;
  border-radius: 6px;
}

.shell {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.section {
  padding: 4.4rem 0;
}

/* ---- Type helpers ------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  max-width: 100%;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--bluebonnet);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  margin: 0 0 1.2rem;
}

.section-head {
  max-width: 640px;
  margin-bottom: 2.4rem;
}

.section-head h2 {
  font-size: clamp(1.75rem, 3.8vw, 2.5rem);
}

.section-head .sub {
  color: var(--soil-soft);
  font-size: 1.04rem;
  margin: 0;
}

.lede {
  font-size: clamp(1.05rem, 1.8vw, 1.18rem);
  color: var(--soil-soft);
}

/* ---- The yard-sign device ------------------------------------ */
.sign {
  background: var(--card);
  border: 2px solid var(--soil);
  border-radius: var(--radius);
  box-shadow: 5px 5px 0 var(--soil);
}

a.sign,
.sign.lift {
  transition: transform 160ms ease, box-shadow 160ms ease;
}

a.sign:hover,
.sign.lift:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--soil);
}

/* ---- Buttons --------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.8rem 1.6rem;
  border: 2px solid var(--soil);
  border-radius: 999px;
  box-shadow: 4px 4px 0 var(--soil);
  text-decoration: none;
  cursor: pointer;
  color: var(--soil);
  background: var(--card);
  transition: transform 140ms ease, box-shadow 140ms ease,
    background-color 140ms ease;
}

.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--soil);
}

.btn:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--soil);
}

.btn-sun {
  background: var(--sun);
  color: var(--soil);
}

.btn-sun:hover {
  background: var(--sun-deep);
  color: var(--soil);
}

.btn-leaf {
  background: var(--leaf);
  color: #fff;
}

.btn-leaf:hover {
  background: var(--leaf-deep);
  color: #fff;
}

/* ---- Header ------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 130;
  background: var(--cream);
  border-bottom: 2px solid var(--soil);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--soil);
  min-width: 0;
}

.brand-mark {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--leaf-tint);
  border: 2px solid var(--soil);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.12;
  min-width: 0;
}

.brand-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.14rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.brand-sub {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--soil-soft);
  white-space: nowrap;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav a {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  color: var(--soil);
  text-decoration: none;
  padding: 0.3rem 0;
  border-bottom: 3px solid transparent;
}

.nav a:hover {
  color: var(--leaf-deep);
}

.nav a.active {
  color: var(--leaf-deep);
  border-bottom-color: var(--sun);
}

.nav-close {
  display: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.55rem;
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle-bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}

.nav-toggle-bar {
  height: 3px;
  border-radius: 2px;
  background: var(--soil);
}

.nav-scrim {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(62, 46, 34, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

.nav-scrim.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* ---- Hero ---------------------------------------------------------- */
.hero {
  padding: 3.6rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 3.2rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.3rem);
  font-weight: 800;
}

.hero h1 em {
  font-style: normal;
  color: var(--leaf);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.7rem 0 1.4rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-row li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.94rem;
  color: var(--soil-soft);
  font-weight: 600;
}

.trust-row svg {
  flex: none;
  color: var(--leaf);
}

.hero-photo {
  position: relative;
  min-width: 0;
}

.hero-photo .sign {
  overflow: hidden;
  transform: rotate(-1.2deg);
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 5 / 3.8;
  object-fit: cover;
}

.hero-sticker {
  position: absolute;
  right: 1rem;
  bottom: -0.9rem;
  transform: rotate(2deg);
  background: var(--sun);
  border: 2px solid var(--soil);
  border-radius: 999px;
  box-shadow: 3px 3px 0 var(--soil);
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.5rem 1.1rem;
}

/* ---- Season strip (signature) ----------------------------------------- */
.season-band {
  background: var(--cream-2);
  border-top: 2px solid var(--soil);
  border-bottom: 2px solid var(--soil);
  padding: 3.8rem 0 4.2rem;
}

.season-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.season-card {
  position: relative;
  background: var(--card);
  border: 2px solid var(--soil);
  border-radius: var(--radius);
  box-shadow: 4px 4px 0 var(--soil);
  padding: 1.4rem 1.3rem 1.2rem;
  min-width: 0;
}

.season-card h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.12rem;
  margin-bottom: 0.6em;
}

.season-card h3 svg {
  flex: none;
  color: var(--leaf);
}

.season-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.season-card li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.92rem;
  color: var(--soil-soft);
}

.season-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--sun);
  border: 1px solid var(--soil);
}

.season-card.is-now {
  border-color: var(--soil);
  background: #fffdf4;
  box-shadow: 6px 6px 0 var(--soil);
}

.now-badge {
  display: none;
  position: absolute;
  top: -0.85rem;
  left: 1rem;
  background: var(--sun);
  border: 2px solid var(--soil);
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.18rem 0.7rem;
}

.season-card.is-now .now-badge {
  display: inline-block;
}

/* ---- Service cards ------------------------------------------------------ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.svc-card {
  padding: 1.6rem 1.5rem 1.4rem;
  min-width: 0;
}

.svc-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--leaf-tint);
  border: 2px solid var(--soil);
  color: var(--leaf-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.svc-card h3 {
  font-size: 1.16rem;
  margin-bottom: 0.35em;
}

.svc-card p {
  color: var(--soil-soft);
  font-size: 0.96rem;
  margin: 0;
}

.section-cta {
  margin-top: 2.3rem;
}

/* ---- Before / after teaser ------------------------------------------------ */
.ba-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.ba-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.ba-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.ba-tag {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border: 2px solid var(--soil);
  border-radius: 999px;
  box-shadow: 2px 2px 0 var(--soil);
}

.ba-tag.before {
  background: var(--cream);
  color: var(--soil);
}

.ba-tag.after {
  background: var(--leaf);
  color: #fff;
}

.ba-caption {
  padding: 0.9rem 1.1rem 1rem;
  border-top: 2px solid var(--soil);
  background: var(--card);
  font-weight: 600;
  font-size: 0.95rem;
}

/* ---- Plan cards ------------------------------------------------------------- */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.plan-card {
  padding: 1.7rem 1.6rem 1.5rem;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.plan-tag {
  width: fit-content;
  max-width: 100%;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--leaf-tint);
  border: 1.5px solid var(--soil);
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  margin-bottom: 0.9rem;
}

.plan-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.3em;
}

.plan-card > p {
  color: var(--soil-soft);
  font-size: 0.96rem;
}

.plan-list {
  list-style: none;
  margin: 0.4rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.plan-list li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.94rem;
}

.plan-list svg {
  flex: none;
  color: var(--leaf);
  margin-top: 0.25rem;
}

/* ---- Bluebonnet band ----------------------------------------------------------- */
.bonnet-band {
  background: var(--bluebonnet);
  border-top: 2px solid var(--soil);
  border-bottom: 2px solid var(--soil);
  color: #fff;
  padding: 3.8rem 0;
  text-align: center;
}

.bonnet-band .flower-row {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
  color: #cdd7f2;
}

.bonnet-band h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  max-width: 640px;
  margin-inline: auto;
}

.bonnet-band p {
  color: #d9e0f4;
  max-width: 560px;
  margin: 0 auto 1.4rem;
}

.town-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}

.town-chip {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.88rem;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  padding: 0.3rem 0.95rem;
  color: #fff;
}

/* ---- Quote CTA -------------------------------------------------------------------- */
.quote-panel {
  background: var(--sun);
  border: 2px solid var(--soil);
  border-radius: var(--radius-lg);
  box-shadow: 7px 7px 0 var(--soil);
  padding: 3rem clamp(1.4rem, 5vw, 3.6rem);
  text-align: center;
}

.quote-panel h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
}

.quote-panel p {
  color: #5c4a34;
  max-width: 520px;
  margin: 0 auto 1.7rem;
}

.quote-panel .phone-line {
  margin: 1.5rem 0 0;
  font-size: 0.96rem;
  color: #5c4a34;
  font-weight: 600;
}

.quote-panel .phone-line a {
  color: var(--soil);
  font-weight: 800;
  text-decoration: none;
}

.quote-panel .phone-line a:hover {
  text-decoration: underline;
}

/* ---- Footer -------------------------------------------------------------------------- */
.site-footer {
  background: var(--soil);
  color: #d9cfc2;
  padding: 3.6rem 0 2rem;
  font-size: 0.96rem;
}

.footer-grid {
  display: grid;
  /* Contact column gets extra width so the long email fits unbroken. */
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.85fr) minmax(0, 1.25fr) minmax(0, 0.7fr);
  gap: 2.2rem;
}

.footer-brand .brand-mark {
  background: rgba(250, 248, 240, 0.12);
  border-color: #d9cfc2;
  margin-bottom: 1rem;
}

.footer-brand p {
  margin: 0;
}

.footer-head {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sun);
  margin: 0 0 0.9rem;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-list a {
  color: #d9cfc2;
  text-decoration: none;
  width: fit-content;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.footer-list a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-fine {
  border-top: 1px solid rgba(217, 207, 194, 0.3);
  margin-top: 2.7rem;
  padding-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: #b3a695;
}

.footer-fine p {
  margin: 0;
}

/* ---- Page hero (interior pages) ------------------------------------------------------------ */
.page-hero {
  padding: 3.4rem 0 2.6rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 4.4vw, 3rem);
  font-weight: 800;
  max-width: 680px;
}

.page-hero .lede {
  max-width: 620px;
}

/* Dashed placeholder note */
.note-card {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  max-width: 680px;
  background: #fffdf4;
  border: 2px dashed var(--soil);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  font-size: 0.94rem;
  color: var(--soil-soft);
  margin-top: 1.6rem;
}

.note-card svg {
  flex: none;
  color: var(--soil);
  margin-top: 0.2rem;
}

/* ---- Service detail rows (Services page) ---------------------------------------------------- */
.svc-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  overflow: hidden;
  min-width: 0;
}

.svc-detail + .svc-detail {
  margin-top: 1.6rem;
}

.svc-main {
  padding: 1.8rem 1.8rem 1.6rem;
}

.svc-main h2 {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.4rem;
  margin-bottom: 0.5em;
}

.svc-main h2 .svc-icon {
  margin: 0;
}

.svc-main p {
  color: var(--soil-soft);
  font-size: 0.98rem;
}

.svc-main p:last-child {
  margin-bottom: 0;
}

.include-panel {
  background: var(--leaf-tint);
  border-left: 2px solid var(--soil);
  padding: 1.8rem 1.7rem 1.6rem;
  min-width: 0;
}

.include-panel .include-head {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 0.9rem;
}

.include-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.include-list li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.95rem;
}

.include-list svg {
  flex: none;
  color: var(--leaf-deep);
  margin-top: 0.25rem;
}

/* ---- Our Work projects ------------------------------------------------------------------------ */
.project {
  padding: 2.6rem 0;
}

.project + .project {
  border-top: 2px dashed var(--line);
}

.project-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem 1rem;
  margin-bottom: 1.4rem;
}

.project-head h3 {
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  margin: 0;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.chip {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.8rem;
  background: var(--cream-2);
  border: 1.5px solid var(--soil);
  border-radius: 999px;
  padding: 0.2rem 0.75rem;
}

.chip.town {
  background: var(--bluebonnet);
  border-color: var(--bluebonnet-deep);
  color: #fff;
}

.ba-pair.tight {
  margin-bottom: 0;
}

/* ---- Finished-work grid -------------------------------------------------------------------------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

/* ---- Word on the street --------------------------------------------------------------------------- */
.quote-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.quote-card {
  padding: 1.7rem 1.6rem 1.5rem;
  min-width: 0;
}

.quote-card blockquote {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.12rem;
  line-height: 1.45;
}

.quote-card blockquote::before {
  content: "\201C";
  color: var(--leaf);
  font-size: 1.6em;
  line-height: 0;
  vertical-align: -0.35em;
  margin-right: 0.1em;
}

.quote-attr {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--soil-soft);
  font-weight: 600;
}

.quote-attr .dot {
  width: 9px;
  height: 9px;
  border-radius: 3px;
  background: var(--sun);
  border: 1.5px solid var(--soil);
}

/* ---- Mini steps strip ------------------------------------------------------------------------------- */
.mini-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.mini-step {
  padding: 1.5rem 1.4rem 1.3rem;
  min-width: 0;
}

.mini-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sun);
  border: 2px solid var(--soil);
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 0.9rem;
}

.mini-step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3em;
}

.mini-step p {
  color: var(--soil-soft);
  font-size: 0.94rem;
  margin: 0;
}

/* ---- Plans page ------------------------------------------------------------------------------ */
.plan-card .plan-list {
  margin-bottom: 1.4rem;
}

.plan-card .plan-cta {
  margin-top: auto;
}

.plan-card .btn {
  width: 100%;
}

.plan-card.featured {
  position: relative;
  background: #fffdf4;
  box-shadow: 7px 7px 0 var(--soil);
}

.plan-badge {
  position: absolute;
  top: -0.9rem;
  right: 1.2rem;
  background: var(--sun);
  border: 2px solid var(--soil);
  border-radius: 999px;
  box-shadow: 2px 2px 0 var(--soil);
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.8rem;
}

.price-note {
  font-family: var(--display);
  font-weight: 700;
  color: var(--leaf-deep);
  font-size: 0.98rem;
  margin: 0.2rem 0 0.9rem;
}

/* Add-ons / a-la-carte */
.addon-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.addon-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 1.1rem 1.3rem;
  min-width: 0;
}

.addon-item svg {
  flex: none;
  color: var(--leaf-deep);
  margin-top: 0.15rem;
}

.addon-item h3 {
  font-size: 1.02rem;
  margin: 0 0 0.15em;
}

.addon-item p {
  margin: 0;
  color: var(--soil-soft);
  font-size: 0.9rem;
}

/* Reassurance row */
.assure-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.assure {
  text-align: center;
  min-width: 0;
}

.assure .assure-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.9rem;
  border-radius: 50%;
  background: var(--leaf-tint);
  border: 2px solid var(--soil);
  color: var(--leaf-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.assure h3 {
  font-size: 1.08rem;
  margin-bottom: 0.3em;
}

.assure p {
  color: var(--soil-soft);
  font-size: 0.93rem;
  margin: 0;
}

/* ---- About page ------------------------------------------------------------------------------ */
.about-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 3.2rem;
  align-items: center;
}

.about-split.flip .about-photo {
  order: 2;
}

.about-photo {
  position: relative;
  min-width: 0;
}

.about-photo .sign {
  overflow: hidden;
  transform: rotate(-1deg);
}

.about-photo.right .sign {
  transform: rotate(1deg);
}

.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 3.3;
  object-fit: cover;
}

.about-copy h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
}

.about-copy p {
  color: var(--soil-soft);
}

.crew-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.crew-card {
  padding: 1.6rem 1.5rem 1.4rem;
  min-width: 0;
}

.crew-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bluebonnet);
  border: 2px solid var(--soil);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.crew-card h3 {
  font-size: 1.14rem;
  margin-bottom: 0.1em;
}

.crew-role {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--leaf-deep);
  margin-bottom: 0.7rem;
}

.crew-card p {
  color: var(--soil-soft);
  font-size: 0.94rem;
  margin: 0;
}

/* ---- Map placeholder (About + Contact) ------------------------------------------------------- */
.map-frame {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
  background:
    repeating-linear-gradient(0deg, transparent 0 34px, rgba(62, 46, 34, 0.06) 34px 35px),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(62, 46, 34, 0.06) 34px 35px),
    var(--leaf-tint);
}

.map-frame-inner {
  position: relative;
}

.map-pin {
  width: 46px;
  height: 46px;
  margin: 0 auto 0.7rem;
  border-radius: 50%;
  background: var(--sun);
  border: 2px solid var(--soil);
  box-shadow: 3px 3px 0 var(--soil);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--soil);
}

.map-frame .map-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 0.2rem;
}

.map-frame p {
  margin: 0;
  color: var(--soil-soft);
  font-size: 0.92rem;
}

/* ---- Contact page ---------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.85fr);
  gap: 2.4rem;
  align-items: start;
}

.form-card {
  padding: 2rem clamp(1.4rem, 3vw, 2.2rem);
}

.form-card h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.demo-flag {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  background: #fffdf4;
  border: 2px dashed var(--soil);
  border-radius: var(--radius);
  padding: 0.85rem 1.05rem;
  margin-bottom: 1.6rem;
  font-size: 0.9rem;
  color: var(--soil-soft);
}

.demo-flag svg {
  flex: none;
  color: var(--soil);
  margin-top: 0.15rem;
}

.field {
  margin-bottom: 1.1rem;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.field label {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.82rem;
  margin-bottom: 0.4rem;
}

.field .req {
  color: var(--leaf-deep);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--body);
  font-size: 1rem;
  color: var(--soil);
  background: var(--cream);
  border: 2px solid var(--soil);
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
  transition: box-shadow 140ms ease;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  box-shadow: 3px 3px 0 var(--leaf);
}

.form-note {
  margin: 0.4rem 0 0;
  font-size: 0.85rem;
  color: var(--soil-soft);
}

.form-card .btn {
  margin-top: 0.4rem;
}

.form-status {
  display: none;
  margin: 1.2rem 0 0;
  padding: 1rem 1.15rem;
  background: var(--leaf-tint);
  border: 2px solid var(--soil);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
}

.form-status.is-shown {
  display: block;
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.info-card {
  padding: 1.4rem 1.5rem;
}

.info-card h3 {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.info-card h3 svg {
  flex: none;
  color: var(--leaf-deep);
}

.info-card p {
  margin: 0;
  color: var(--soil-soft);
  font-size: 0.95rem;
}

.info-card a {
  color: var(--bluebonnet);
  font-weight: 600;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.info-card a:hover {
  text-decoration: underline;
}

/* ---- Scroll reveal ---------------------------------------------------------------------- */
html.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 550ms ease, transform 550ms ease;
}

html.js .reveal.is-in {
  opacity: 1;
  transform: none;
}

html.js .reveal[data-delay="1"] {
  transition-delay: 90ms;
}

html.js .reveal[data-delay="2"] {
  transition-delay: 180ms;
}

/* ---- Responsive ---------------------------------------------------------------------------- */
@media (max-width: 920px) {
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    width: min(320px, 84vw);
    background: var(--leaf-deep);
    border-left: 2px solid var(--soil);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    padding: 4.6rem 1.9rem 2rem;
    transform: translateX(105%);
    transition: transform 240ms ease;
    visibility: hidden;
    overflow-y: auto;
  }

  .nav.is-open {
    transform: none;
    visibility: visible;
  }

  .nav a {
    font-size: 1.2rem;
    color: #f3f8f0;
    width: 100%;
    padding: 0.65rem 0;
    border-bottom: 0;
  }

  .nav a:hover {
    color: #fff;
  }

  .nav a.active {
    color: var(--sun);
  }

  .nav-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 42px;
    height: 42px;
    border: 2px solid #f3f8f0;
    border-radius: 50%;
    background: transparent;
    color: #f3f8f0;
    cursor: pointer;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.6rem;
  }

  .hero-photo {
    max-width: 480px;
  }

  .season-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plan-grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: 480px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .svc-detail {
    grid-template-columns: minmax(0, 1fr);
  }

  .include-panel {
    border-left: 0;
    border-top: 2px solid var(--soil);
  }

  .mini-steps {
    grid-template-columns: minmax(0, 1fr);
    max-width: 460px;
  }

  .assure-row,
  .crew-grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: 460px;
  }

  .about-split {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.4rem;
  }

  .about-split.flip .about-photo {
    order: 0;
  }

  .about-photo {
    max-width: 480px;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.8rem;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 3.3rem 0;
  }

  .card-grid,
  .season-grid,
  .ba-pair,
  .work-grid,
  .quote-cards,
  .addon-grid,
  .field-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.8rem;
  }

  .hero {
    padding-top: 2.6rem;
  }

  .hero-sticker {
    right: 0.7rem;
  }

  .brand-sub {
    display: none;
  }

  /* The full name is too wide to stay on one line at phone widths. */
  .brand-name {
    white-space: normal;
    font-size: 1rem;
    line-height: 1.15;
  }
}

@media (max-width: 480px) {
  .btn.header-cta {
    display: none;
  }
}

/* ---- Reduced motion ---------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  html.js .reveal {
    opacity: 1;
    transform: none;
  }
}
