/* ============================================================
   BUDS IN BLOOM, LLC — Glasshouse Bench Run
   Light theme shared stylesheet
   ============================================================ */

:root {
  --glasshouse-day: #F0F2E8;
  --potting-ink: #2D3028;
  --bloom-magenta: #B94F6E;
  --stem-sage: #7E9478;
  --glazing-panel: #2C332E;
  --pot-shard: #F9F6EC;
  --root-cellar: #23271F;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.65;
  color: var(--potting-ink);
  background-color: var(--glasshouse-day);
  overflow-x: hidden;
}

a {
  color: var(--bloom-magenta);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

/* ------------------------------------------------------------
   Glazed Ridge Header (not sticky; scrolls away)
   ------------------------------------------------------------ */
.gh-ridge {
  position: relative;
  background-color: var(--glazing-panel);
  padding: 26px 28px 18px;
  border-bottom: 4px solid var(--stem-sage);
}

.gh-ridge::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 16px;
  background-image:
    linear-gradient(
      115deg,
      transparent 0px,
      transparent 7px,
      var(--stem-sage) 7px,
      var(--stem-sage) 8px,
      transparent 8px
    ),
    linear-gradient(
      65deg,
      transparent 0px,
      transparent 5px,
      var(--stem-sage) 5px,
      var(--stem-sage) 6px,
      transparent 6px
    );
  background-repeat: repeat;
}

.gh-ridge-inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 4px;
}

.gh-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.gh-brand-plate {
  display: inline-block;
  background-color: var(--bloom-magenta);
  color: #F9F6EC;
  font-weight: bold;
  font-size: 22px;
  letter-spacing: 2px;
  padding: 6px 14px;
  border-radius: 3px;
}

.gh-glyph {
  color: var(--pot-shard);
  font-size: 26px;
  line-height: 1;
}

.gh-navlist {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}

.gh-navitem a {
  display: inline-block;
  background-color: var(--pot-shard);
  color: var(--glazing-panel);
  font-size: 14px;
  font-weight: bold;
  padding: 5px 13px;
  border-radius: 3px;
  border: 1px solid var(--stem-sage);
  box-shadow: 1px 2px 0 var(--glazing-panel);
  transition: background-color 0.25s ease;
}

.gh-navitem a:hover {
  background-color: #FFFFFF;
  text-decoration: none;
}

.gh-cta {
  display: inline-block;
  background-color: var(--bloom-magenta);
  color: #F9F6EC;
  font-weight: bold;
  padding: 9px 16px;
  border-radius: 20px;
  border: none;
  box-shadow: 0 2px 0 var(--glazing-panel);
}

.gh-cta:hover {
  background-color: var(--stem-sage);
  text-decoration: none;
}

/* ------------------------------------------------------------
   Section / bench framework
   ------------------------------------------------------------ */
.bench {
  position: relative;
  padding: 44px 28px 58px;
}

.bench-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 4px;
}

.bench-vent {
  position: relative;
  height: 10px;
  background-color: var(--stem-sage);
  margin-bottom: 26px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.bench-vent::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 12px;
  right: 12px;
  height: 8px;
  background-color: #F0F2E8;
}

.bench-vent::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 60px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--bloom-magenta);
}

.bench-ventbar {
  position: absolute;
  top: 0;
  width: 7px;
  height: 10px;
  background-color: #EFEFE6;
  border-radius: 2px;
}

.bench-ventbar.one { left: 24%; }
.bench-ventbar.two { left: 52%; }
.bench-ventbar.three { left: 80%; }

.bench-plate {
  display: inline-block;
  background-color: var(--glazing-panel);
  color: #F9F6EC;
  font-family: "Trebuchet MS", sans-serif;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 2px;
  position: relative;
  margin-bottom: 18px;
}

.bench-plate::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 3px;
  bottom: 3px;
  width: 2px;
  background-color: var(--bloom-magenta);
  height: 60%;
}

/* ------------------------------------------------------------
   B1 Propagation House — the first screen
   ------------------------------------------------------------ */
.propagation {
  background-color: var(--glasshouse-day);
  text-align: left;
}

.propagation-head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  flex-wrap: wrap;
}

.propagation-glyph {
  font-size: 44px;
  color: var(--stem-sage);
  line-height: 1;
}

.hero-title {
  font-size: 44px;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--glazing-panel);
  margin: 6px 0 6px;
}

.hero-title em {
  color: var(--bloom-magenta);
  font-style: normal;
}

.hero-standfirst {
  max-width: 62ch;
  margin: 16px 0 0;
  color: var(--potting-ink);
  font-size: 18px;
}

.watering-line {
  position: relative;
  margin-top: 28px;
  max-width: 480px;
}

.watering-line .wp-start {
  position: absolute;
  left: 12px;
  top: 0;
  font-size: 24px;
  color: var(--stem-sage);
}

.watering-cup {
  font-size: 26px;
  color: var(--stem-sage);
}

.watering-drop {
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: var(--bloom-magenta);
  border-radius: 50%;
}

/* ------------------------------------------------------------
   B2 Staging Bench — terracotta pots
   ------------------------------------------------------------ */
.staging {
  background-color: #EAEBDD;
}

.pot-run {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin: 0;
}

.pot-run-item {
  width: 100%;
}

.pot {
  position: relative;
  background-color: var(--pot-shard);
  color: var(--glazing-panel);
  border: 1px solid #CFD0B9;
  border-radius: 8px 8px 16px 16px;
  padding: 54px 22px 26px;
  min-height: 240px;
}

.pot-rim {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 26px;
  border-radius: 8px 8px 0 0;
  background-color: #C27944;
}

.pot-bud {
  position: absolute;
  top: 8px;
  left: 10px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: var(--bloom-magenta);
}

.pot-icon {
  font-size: 30px;
  color: var(--stem-sage);
  margin-bottom: 10px;
}

.pot h3 {
  font-size: 20px;
  color: var(--glazing-panel);
  margin-bottom: 8px;
}

.pot h3 a {
  color: var(--glazing-panel);
}

.pot h3 a:hover {
  color: var(--bloom-magenta);
  text-decoration: none;
}

.pot p {
  color: var(--potting-ink);
  font-size: 15px;
}

/* ------------------------------------------------------------
   B3 Misting Line — prose + diagram
   ------------------------------------------------------------ */
.misting {
  background-color: var(--glasshouse-day);
}

.misting-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 40px;
  align-items: start;
}

.prose-col {
  max-width: 62ch;
}

.prose-col h2 {
  font-size: 28px;
  color: var(--glazing-panel);
  margin-bottom: 12px;
}

.prose-col p {
  margin-bottom: 16px;
  color: var(--potting-ink);
}

.diagram-side {
  position: relative;
  background-color: var(--pot-shard);
  border: 1px solid var(--stem-sage);
  border-radius: 6px;
  padding: 18px 14px;
  min-height: 170px;
}

.digram-label {
  position: absolute;
  bottom: 6px;
  left: 12px;
  font-size: 12px;
  color: var(--stem-sage);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pipe-line {
  position: relative;
  height: 8px;
  background-color: var(--stem-sage);
  border-radius: 4px;
  margin-top: 34px;
}

.pipe-rose {
  position: absolute;
  bottom: 7px;
  width: 18px;
  height: 8px;
  background-color: var(--bloom-magenta);
  border-radius: 4px 4px 0 0;
}

.pipe-rose.r1 { left: 10px; }
.pipe-rose.r2 { left: 120px; }
.pipe-rose.r3 { left: 235px; }

.pipe-droplet {
  position: absolute;
  bottom: -12px;
  width: 5px;
  height: 5px;
  background-color: #7E9478;
  border-radius: 50%;
}

.pipe-droplet.d1 { left: 14px; }
.pipe-droplet.d2 { left: 27px; }
.pipe-droplet.d3 { left: 128px; }
.pipe-droplet.d4 { left: 142px; }
.pipe-droplet.d5 { left: 241px; }
.pipe-droplet.d6 { left: 256px; }

/* ------------------------------------------------------------
   B4 Potting Shed — contact
   ------------------------------------------------------------ */
.shed {
  background-color: #EAEBDD;
}

.shed-layout {
  max-width: 1080px;
}

.shed-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.shed-form {
  background-color: var(--pot-shard);
  border: 1px solid #CFD0B9;
  border-radius: 6px;
  box-shadow: 0 3px 0 #C6C7B2;
}

.shed-form::before {
  content: "";
  display: block;
  height: 6px;
  background-color: var(--bloom-magenta);
  border-radius: 6px 6px 0 0;
}

.form-inner {
  padding: 22px 20px 24px;
}

.form-row {
  margin-bottom: 16px;
}

.form-row label {
  display: block;
  font-weight: bold;
  color: var(--glazing-panel);
  margin-bottom: 5px;
  font-size: 15px;
}

.form-row input,
.form-row textarea {
  width: 100%;
  background-color: #FFFFFF;
  color: var(--potting-ink);
  border: 1px solid #C6C7B2;
  border-radius: 4px;
  padding: 9px 11px;
  font-family: inherit;
  font-size: 15px;
}

.form-row textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  background-color: var(--bloom-magenta);
  color: #F9F6EC;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  padding: 12px 22px;
  cursor: pointer;
  font-size: 16px;
}

.form-submit:hover {
  background-color: var(--stem-sage);
}

.form-note {
  font-size: 13px;
  margin-top: 12px;
  color: var(--potting-ink);
}

.shed-label {
  background-color: var(--glazing-panel);
  color: var(--pot-shard);
  border-radius: 6px;
  padding: 24px 20px;
}

.shed-label h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #F9F6EC;
  letter-spacing: 0.5px;
}

.shed-label p {
  margin-bottom: 10px;
  color: #E8E6DA;
  font-size: 15px;
}

.shed-label a {
  color: #FFFFFF;
}

/* ------------------------------------------------------------
   Scroll reveal (noscript-safe: visible by default)
   ------------------------------------------------------------ */
.reveal {
  opacity: 1;
}

.reveal.visible {
  opacity: 1;
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(16px);
}

.js-enabled .reveal.visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* ------------------------------------------------------------
   Go to top button
   ------------------------------------------------------------ */
.go-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--bloom-magenta);
  color: #F9F6EC;
  font-size: 22px;
  line-height: 1;
  border: none;
  cursor: pointer;
  box-shadow: 0 3px 0 var(--glazing-panel);
  z-index: 90;
  display: none;
}

.go-top.is-shown {
  display: block;
}

.go-top:hover {
  background-color: var(--stem-sage);
}

/* ------------------------------------------------------------
   Footer (root cellar base band)
   ------------------------------------------------------------ */
.site-footer {
  position: relative;
  background-color: var(--root-cellar);
  color: #DFE3D6;
  padding: 46px 24px 30px;
}

.site-footer::before {
  content: "";
  display: block;
  height: 6px;
  background-image: repeating-linear-gradient(
    90deg,
    var(--glazing-panel) 0px,
    var(--glazing-panel) 46px,
    var(--bloom-magenta) 46px,
    var(--bloom-magenta) 51px
  );
  margin: -46px auto 26px;
  max-width: 1080px;
  border-radius: 3px;
}

.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 4px;
  text-align: center;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 26px;
  margin-bottom: 22px;
}

.footer-links a {
  color: #F9F6EC;
  font-size: 15px;
}

.footer-links a:hover {
  color: var(--bloom-magenta);
  text-decoration: none;
}

.footer-company {
  font-weight: bold;
  font-size: 18px;
  color: #FFFFFF;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.footer-address {
  font-size: 14px;
  color: #D6DBCB;
  font-style: normal;
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer-legal {
  font-size: 13px;
  color: #B3BBA8;
  margin-top: 10px;
}

/* ------------------------------------------------------------
   Secondary page shared bits
   ------------------------------------------------------------ */
.page-lead {
  max-width: 72ch;
}

.page-lead h1 {
  font-size: 34px;
  color: var(--glazing-panel);
  margin-bottom: 10px;
}

.page-lead p {
  color: var(--potting-ink);
}

.heading-rule {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--stem-sage);
  margin-top: 10px;
}

/* Services detail rows inside pots (services page extra) */
.stage-note {
  margin: 18px auto 0;
  max-width: 62ch;
  color: var(--potting-ink);
}

/* Responsive adjustments */
@media (max-width: 860px) {
  .pot-run {
    grid-template-columns: repeat(2, 1fr);
  }
  .misting-layout {
    grid-template-columns: 1fr;
  }
  .shed-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .pot-run {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 32px;
  }
}
