/* ==========================================================
   THE FLOWER SEEKER — Design tokens
   Palette drawn from the logo: cream ground, deep botanical
   green, dusty pink, soft lavender.
   ========================================================== */
:root {
  --cream:        #faf6ed;   /* page background, as in the logo   */
  --cream-deep:   #f2ebdd;   /* alternate section band            */
  --green:        #2e4a39;   /* deep botanical green              */
  --green-soft:   #4c6b58;   /* secondary green                   */
  --pink:         #c17b92;   /* dusty rose                        */
  --pink-deep:    #a55f78;   /* darker rose for hover/accents     */
  --pink-text:    #8f4f66;   /* rose for small text — meets WCAG AA on cream */
  --lavender:     #a496c2;   /* soft lavender                     */
  --lavender-mist:#ece7f2;   /* pale lavender wash                */
  --ink:          #41493f;   /* body text                        */
  --ink-soft:     #5f665c;   /* secondary text — dark enough for WCAG AA on cream */

  --script: 'Great Vibes', cursive;
  --sans:   'Montserrat', 'Helvetica Neue', Arial, sans-serif;

  --shadow: 0 6px 30px rgba(46, 74, 57, 0.10);
  --shadow-lift: 0 14px 40px rgba(46, 74, 57, 0.16);
  --ease: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --header-h: 84px;
}

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

html {
  scroll-behavior: smooth;
  /* Firefox scrollbar in the site palette */
  scrollbar-color: var(--lavender) var(--cream-deep);
}

/* Chrome / Edge / Safari scrollbars — page and gallery strips alike */
::-webkit-scrollbar { width: 11px; height: 9px; }
::-webkit-scrollbar-track { background: var(--cream-deep); }
::-webkit-scrollbar-thumb {
  background: var(--lavender);
  border-radius: 8px;
  border: 2px solid var(--cream-deep);
}
::-webkit-scrollbar-thumb:hover { background: var(--pink-deep); }

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.9;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  /* Decorative offset frames may overhang the viewport on small
     screens — never let them cause horizontal scroll */
  overflow-x: hidden;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }
a { color: var(--pink-deep); text-decoration: none; }

.container { width: min(1140px, 90%); margin-inline: auto; }
section { padding: 6rem 0; }

/* --- Shared heading pattern: caps eyebrow + script title --- */
.eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--pink-text);
  margin-bottom: 0.9rem;
}
.script-title {
  font-family: var(--script);
  font-weight: 400;
  font-size: clamp(2.7rem, 5.5vw, 4.2rem);
  line-height: 1.15;
  color: var(--green);
  margin-bottom: 1.2rem;
}
.center { text-align: center; }

/* Thin botanical divider */
.divider {
  width: 200px;
  height: 1px;
  margin: 1.6rem auto 2.2rem;
  background: linear-gradient(to right, transparent, var(--lavender), transparent);
  position: relative;
}
.divider::after {
  content: "✿";
  position: absolute;
  top: -0.95em;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 0.7rem;
  background: var(--cream);
  color: var(--pink);
  font-size: 0.95rem;
}
.on-deep .divider::after   { background: var(--cream-deep); }
.on-mist .divider::after   { background: var(--lavender-mist); }

/* Buttons — slim, letter-spaced, romantic */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  padding: 1.05rem 2.6rem 1rem;
  border: 1px solid var(--green);
  color: var(--green);
  background: transparent;
  cursor: pointer;
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease);
}
.btn:hover { background: var(--green); color: var(--cream); transform: translateY(-2px); }
.btn-solid { background: var(--green); color: var(--cream); }
.btn-solid:hover { background: var(--pink-deep); border-color: var(--pink-deep); }
.btn-pink { border-color: var(--pink-deep); color: var(--pink-deep); }
.btn-pink:hover { background: var(--pink-deep); color: var(--cream); }

/* ==========================================================
   HEADER
   ========================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 200;
  display: flex;
  align-items: center;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: background var(--ease), backdrop-filter var(--ease), -webkit-backdrop-filter var(--ease), box-shadow var(--ease);
}
.site-header.scrolled {
  background: rgba(250, 246, 237, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 24px rgba(46, 74, 57, 0.12);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(1240px, 94%);
  margin-inline: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.brand img { height: 58px; width: 58px; }
.brand-name {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--green);
  white-space: nowrap;
}

.main-nav ul { display: flex; align-items: center; gap: 1.9rem; list-style: none; }
.main-nav a {
  white-space: nowrap;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--green);
  padding-bottom: 5px;
  border-bottom: 1px solid transparent;
  transition: color var(--ease), border-color var(--ease);
}
.main-nav a:hover { color: var(--pink-deep); border-color: var(--pink); }

/* Instagram link stands out in the nav */
.nav-insta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--cream) !important;
  background: var(--pink-deep);
  padding: 0.55rem 1.15rem !important;
  border: none !important;
  transition: background var(--ease);
}
.nav-insta:hover { background: var(--green); }
.nav-insta svg { width: 15px; height: 15px; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle span {
  display: block; width: 26px; height: 1px; margin: 7px 0;
  background: var(--green); transition: var(--ease);
}

/* ==========================================================
   HERO — quiet, cream, logo-led
   ========================================================== */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + 3rem) 1.5rem 4.5rem;
  position: relative;
  overflow: hidden;
}
/* Slow crossfading garden photos behind a cream veil */
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2.8s ease-in-out;
  z-index: 0;
}
.hero-slide.active { opacity: 1; }
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(250, 246, 237, 0.92),
    rgba(250, 246, 237, 0.76) 45%,
    rgba(250, 246, 237, 0.92)
  );
}
.hero > :not(.hero-slide):not(.hero-veil) { position: relative; z-index: 2; }
.hero-logo {
  /* Cap by viewport height too, so the CTA buttons stay above the
     fold on short laptop screens (16:9 at ~650-760px visible) */
  width: min(340px, 62vw);
  max-height: 34svh;
  object-fit: contain;
  margin-bottom: 0.5rem;
}
.hero-script {
  font-family: var(--script);
  font-weight: 400; /* it's an <h1>; browser default bold would fake-embolden the script face */
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: var(--pink-deep);
  line-height: 1.2;
  margin-bottom: 1.4rem;
}
.hero-sub {
  max-width: 560px;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 2.6rem;
  line-height: 2.3;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* Short viewports (most 16:9 laptops): tighten the hero's vertical
   rhythm so logo, title and CTA buttons all fit above the fold */
@media (max-height: 760px) {
  .hero { padding: calc(var(--header-h) + 1.2rem) 1.5rem 3.2rem; }
  .hero-script { margin-bottom: 0.9rem; }
  .hero-sub { margin-bottom: 1.5rem; line-height: 2; }
  .scroll-cue { display: none; }
}

.scroll-cue {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--lavender);
  font-size: 1.3rem;
  animation: drift 2.6s ease-in-out infinite;
}
@keyframes drift {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 9px); }
}

/* ==========================================================
   POLLINATORS — two-photo feature band
   ========================================================== */
.pollinators { background: var(--cream-deep); }
.pollinator-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 3rem;
  align-items: center;
}
.pollinator-grid figure { position: relative; margin: 0; }
.pollinator-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  box-shadow: var(--shadow);
}
/* Inset lavender frame for a romantic, editorial feel — drawn inside
   the photo itself so it never spills over the caption */
.frame-l img, .frame-r img {
  outline: 1px solid var(--lavender);
  outline-offset: -18px;
}
.pollinator-grid figcaption {
  margin-top: 0.9rem;
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-align: center;
}
.pollinator-copy p { color: var(--ink-soft); margin-bottom: 1.2rem; }
/* Keep "Gardens that give back" on one line inside the narrow middle
   column of the three-across desktop band (below 960px the copy spans
   the full width, where the default size already fits) */
@media (min-width: 961px) {
  .pollinator-copy .script-title {
    font-size: clamp(2rem, 2.9vw, 2.5rem);
    white-space: nowrap;
  }
}

/* ==========================================================
   ABOUT
   ========================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.about-copy p { margin-bottom: 1.25rem; color: var(--ink); }
.about-copy .signature {
  font-family: var(--script);
  font-size: 2.3rem;
  color: var(--pink-deep);
  margin-top: 1.8rem;
}
.about-photo { position: relative; }
.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.about-photo::before {
  content: "";
  position: absolute;
  inset: 1.4rem -1.4rem -1.4rem 1.4rem;
  border: 1px solid var(--pink);
  z-index: -1;
}

/* ==========================================================
   SERVICES
   ========================================================== */
.services { background: var(--lavender-mist); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--cream);
  padding: 2.8rem 2.2rem 2.6rem;
  text-align: center;
  border-top: 2px solid var(--pink);
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease);
}
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lift); }
.service-num {
  font-family: var(--script);
  font-size: 2.6rem;
  color: var(--lavender);
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
}
.service-card h3 {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.3rem;
}
.service-card p { font-size: 0.92rem; color: var(--ink-soft); text-align: left; }

/* ==========================================================
   PORTFOLIO
   ========================================================== */
.project { margin-top: 4.2rem; }
.project-head {
  display: flex;
  align-items: baseline;
  gap: 1.4rem;
  margin-bottom: 1.6rem;
}
.project-num {
  font-family: var(--script);
  font-size: 2.4rem;
  color: var(--pink);
  line-height: 1;
}
.project-head h3 {
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--green);
}
.project-head .rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--lavender), transparent);
}

.gallery {
  display: flex;
  gap: 1.1rem;
  overflow-x: auto;
  padding-bottom: 1.1rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--lavender) transparent;
}
.gallery figure {
  flex: 0 0 auto;
  margin: 0;
  scroll-snap-align: start;
  position: relative;
  cursor: zoom-in;
}
.gallery img {
  height: 320px;
  width: auto;
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease);
  background: #fff;
}
.gallery figure:hover img { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.gallery .tag {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  background: rgba(250, 246, 237, 0.92);
  color: var(--green);
  padding: 0.35rem 0.8rem 0.3rem;
}
.gallery-hint {
  margin-top: 0.4rem;
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  background: rgba(37, 48, 40, 0.93);
  padding: 3.5rem 1.2rem 1.2rem;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(1100px, 96vw);
  max-height: 88vh;
  width: auto;
  height: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
/* Instagram captions: leave room below the image when present */
.lightbox.has-caption img { max-height: 64vh; }
.lb-caption {
  max-width: min(680px, 92vw);
  max-height: 22vh;
  overflow-y: auto;
  color: var(--cream);
  font-size: 0.82rem;
  line-height: 1.9;
  text-align: center;
  white-space: pre-line; /* keep the caption's own line breaks */
}
.lb-caption:empty { display: none; }
.lb-caption a.tag { color: var(--lavender); }
.lb-caption a.tag:hover { color: var(--pink); }
.lb-caption a.lb-view {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--pink);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.lb-caption a.lb-view:hover { color: var(--cream); }
.lb-btn {
  position: absolute;
  background: none;
  border: none;
  color: var(--cream);
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 300;
  opacity: 0.85;
  transition: opacity var(--ease);
}
.lb-btn:hover { opacity: 1; }
.lb-close { top: 1rem; right: 1.4rem; font-size: 2.2rem; line-height: 1; }
.lb-prev, .lb-next { top: 50%; transform: translateY(-50%); font-size: 2.6rem; padding: 1rem; }
.lb-prev { left: 0.6rem; }
.lb-next { right: 0.6rem; }

/* --- Contact form success popup --- */
.form-modal {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(37, 48, 40, 0.55);
  backdrop-filter: blur(4px);
}
.form-modal.open { display: flex; }
.form-modal-card {
  background: var(--cream);
  text-align: center;
  max-width: 440px;
  width: 100%;
  padding: 3rem 2.4rem 2.6rem;
  border: 1px solid var(--lavender-mist);
  box-shadow: var(--shadow-lift);
  animation: fm-pop 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}
@keyframes fm-pop {
  from { opacity: 0; transform: translateY(16px) scale(0.96); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .form-modal-card { animation: none; }
}
.fm-flower {
  display: block;
  color: var(--pink);
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}
.form-modal-card .script-title { margin-bottom: 0.6rem; font-size: 2.9rem; }
.fm-text {
  color: var(--ink-soft);
  margin-bottom: 1.8rem;
  line-height: 2;
}

/* ==========================================================
   TESTIMONIALS — gentle fade carousel
   ========================================================== */
.testimonials { background: var(--cream-deep); }
.quote-stage { position: relative; max-width: 800px; margin: 0 auto; min-height: 340px; }
.quote {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s ease, visibility 0.9s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
}
.quote.active { opacity: 1; visibility: visible; }
.quote-mark {
  font-family: var(--script);
  font-size: 4rem;
  line-height: 0.5;
  color: var(--pink);
  display: block;
  margin-bottom: 1.6rem;
}
.quote p {
  font-size: 0.98rem;
  font-style: italic;
  color: var(--ink);
  line-height: 2.1;
}
.quote-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  margin-top: 2.4rem;
}
.q-arrow {
  background: none;
  border: none;
  color: var(--green);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.4rem 0.8rem;
  transition: color var(--ease);
  font-family: var(--sans);
  font-weight: 300;
}
.q-arrow:hover { color: var(--pink-deep); }
.q-dots { display: flex; gap: 0.7rem; }
.q-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1px solid var(--pink-deep);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background var(--ease);
}
.q-dot.active { background: var(--pink-deep); }

/* ==========================================================
   INSTAGRAM — deep green band, meant to be noticed
   ========================================================== */
.instagram {
  background: var(--green);
  text-align: center;
}
.instagram .eyebrow { color: var(--lavender); }
.instagram .script-title { color: var(--cream); }
.instagram p { color: rgba(250, 246, 237, 0.75); max-width: 520px; margin: 0 auto 2.4rem; }
.insta-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.8rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--pink-deep);
  padding: 1.15rem 2.6rem 1.05rem;
  transition: background var(--ease), transform var(--ease);
}
.insta-cta:hover { background: var(--lavender); color: var(--green); transform: translateY(-3px); }
.insta-cta svg { width: 19px; height: 19px; flex: none; }

.insta-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 820px;
  margin: 3rem auto 0;
}
.insta-strip img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  opacity: 0.94;
  transition: opacity var(--ease), transform var(--ease);
}
.insta-strip a:hover img { opacity: 1; transform: scale(1.02); }

/* ==========================================================
   CONTACT
   ========================================================== */
.contact-intro { max-width: 620px; margin: 0 auto 1.2rem; color: var(--ink-soft); }
.contact-email {
  display: inline-block;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  color: var(--pink-deep);
  border-bottom: 1px solid var(--pink);
  padding-bottom: 3px;
  margin-bottom: 3.2rem;
  transition: color var(--ease), border-color var(--ease);
  overflow-wrap: anywhere;
}
.contact-email:hover { color: var(--green); border-color: var(--green); }

.inquiry-form {
  max-width: 720px;
  margin: 0 auto;
  background: #fffdf8;
  border-top: 2px solid var(--lavender);
  box-shadow: var(--shadow);
  padding: 2.8rem 2.6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  text-align: left;
}
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green);
}
.field input, .field textarea {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid #d8d2c2;
  padding: 0.65rem 0.1rem;
  transition: border-color var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; border: 1px solid #d8d2c2; padding: 0.9rem; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--pink-deep); }
.inquiry-form .btn { grid-column: 1 / -1; justify-self: center; margin-top: 0.6rem; }

/* Styles for service-areas listing at contact section */
.service-areas {
  max-width: 820px;
  margin: 0.5rem auto 2.5rem;
  text-align: center;
}
.service-areas .contact-intro {
  margin-bottom: 1.8rem;
  font-weight: 400;
  color: var(--green);
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: left;
}
.area-col h4 {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink-text);
  margin-bottom: 0.6rem;
  border-bottom: 1px dashed var(--lavender);
  padding-bottom: 0.3rem;
}
.area-col p {
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

@media (max-width: 760px) {
  .areas-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 0 1rem;
  }
}

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer {
  background: var(--green);
  color: rgba(250, 246, 237, 0.8);
  text-align: center;
  padding: 3.6rem 0 2.4rem;
}
.footer-script {
  font-family: var(--script);
  font-size: 2.4rem;
  color: var(--cream);
  margin-bottom: 0.4rem;
}
.footer-tag {
  font-size: 0.66rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 2rem;
}
.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.6rem;
  list-style: none;
  margin-bottom: 2rem;
}
.footer-nav a {
  color: rgba(250, 246, 237, 0.8);
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  transition: color var(--ease);
}
.footer-nav a:hover { color: var(--pink); }
.copyright { font-size: 0.72rem; letter-spacing: 0.1em; color: rgba(250, 246, 237, 0.45); }
.site-credit {
  margin-top: 0.4rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: rgba(250, 246, 237, 0.38);
}
.site-credit a { color: rgba(250, 246, 237, 0.55); }
.site-credit a:hover { color: var(--pink); }

/* ==========================================================
   Scroll reveal
   ========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 960px) {
  .pollinator-grid { grid-template-columns: 1fr 1fr; }
  .pollinator-copy { grid-column: 1 / -1; order: -1; text-align: center; }
  .about-grid { grid-template-columns: 1fr; gap: 3.2rem; }
  .about-photo { max-width: 440px; margin-inline: auto; }
  .services-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }

  /* Hamburger below 960px so the brand name always fits next to the logo */
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(250, 246, 237, 0.98);
    box-shadow: 0 16px 30px rgba(46, 74, 57, 0.14);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease;
  }
  .main-nav.open { max-height: 440px; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 0.8rem 0; }
  .main-nav a { display: block; padding: 0.85rem 7%; border-bottom: none; }
  .nav-insta { margin: 0.6rem 7%; justify-content: center; }
}

@media (max-width: 760px) {
  section { padding: 4.4rem 0; }
  .gallery img { height: 240px; }
  .inquiry-form { grid-template-columns: 1fr; padding: 2rem 1.5rem; }
  .insta-strip { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
  .quote-stage { min-height: 420px; }

  /* Slightly tighter lockup so logo + name + hamburger fit small phones */
  .brand img { height: 48px; width: 48px; }
  .brand-name { font-size: 0.7rem; letter-spacing: 0.26em; }
}
