:root {
  --green-950: #0d2a1b;
  --green-900: #123820;
  --green-800: #17492c;
  --green-700: #25623c;
  --sage-100: #edf3e7;
  --sage-200: #dce8d1;
  --cream: #fbfaf5;
  --paper: #ffffff;
  --gold: #c99a2e;
  --gold-dark: #9a6f17;
  --clay: #b85f39;
  --berry: #8f3249;
  --ink: #213127;
  --muted: #5f6e64;
  --line: #d8dfd2;
  --shadow: 0 18px 50px rgba(18, 56, 32, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  display: none;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 20;
  background: var(--gold);
  color: var(--green-950);
  padding: 0.7rem 1rem;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.top-alert {
  position: relative;
  z-index: 12;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  background: var(--green-950);
  color: var(--paper);
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.top-alert span {
  color: #f4d078;
  font-weight: 800;
}

.top-alert a {
  color: var(--paper);
  font-weight: 700;
  text-decoration: none;
}

.top-alert a:hover {
  text-decoration: underline;
}

.top-alert-sale {
  padding-block: 0.5rem;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.sale-alert-link {
  color: #00843d;
  font-size: clamp(1rem, 1.35vw, 1.28rem);
  font-weight: 950;
  line-height: 1.12;
  text-align: center;
  text-decoration: none;
}

.top-alert .sale-alert-link {
  color: #00843d;
}

.sale-alert-link:hover {
  text-decoration: underline;
}

.sale-emphasis {
  display: inline-block;
  margin-left: 0.12em;
  color: #8f1d2c;
  text-decoration: none;
}

.top-alert .sale-emphasis,
.hero-panel .sale-emphasis,
.sale-page .sale-emphasis {
  color: #b42035;
}

.hero-sale-pill .sale-emphasis {
  margin-left: 0.28em;
}

.top-alert .sale-emphasis {
  padding: 0 0.18em;
  border-radius: 0.2em;
  background: rgba(251, 250, 245, 0.9);
}

.top-social {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-left: 0.65rem;
  color: var(--green-900);
  font-size: 0.82rem;
}

.top-social a {
  padding-left: 0.55rem;
  border-left: 1px solid rgba(18, 56, 32, 0.22);
  color: var(--green-900);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.8rem 1.25rem;
  padding: 0.55rem clamp(1rem, 3vw, 3rem) 0.75rem;
  background: rgba(251, 250, 245, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

@media (min-width: 1281px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .brand {
    grid-column: 1;
    grid-row: 2;
    justify-items: start;
    text-align: left;
    z-index: 1;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: stretch;
    justify-content: center;
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--green-900);
  line-height: 1;
}

.brand-wordmark {
  display: block;
  text-align: left;
  white-space: nowrap;
}

.brand-main {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.95rem, 3.7vw, 3rem);
  line-height: 0.9;
  letter-spacing: 0.12em;
}

.brand-sub {
  display: block;
  margin-top: 0.2rem;
  font-size: clamp(0.58rem, 0.9vw, 0.8rem);
  line-height: 1;
  letter-spacing: 0.42em;
  font-weight: 800;
  text-transform: uppercase;
}

.brand-location {
  display: block;
  margin-top: 0.36rem;
  font-size: clamp(0.52rem, 0.72vw, 0.66rem);
  line-height: 1;
  letter-spacing: 0.36em;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(18, 56, 32, 0.68);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(0.4rem, 1.2vw, 0.95rem);
  flex-wrap: wrap;
  font-size: clamp(0.94rem, 1vw, 1.03rem);
  font-weight: 900;
}

.site-nav a {
  min-width: 0;
  max-width: 100%;
  padding: 0.55rem 0.2rem;
  text-decoration: none;
  color: var(--green-900);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  border-bottom-color: var(--gold);
}

.site-nav a[href="sale.html"] {
  color: #00843d;
  font-weight: 950;
}

.site-nav a[href="sale.html"] .sale-emphasis {
  color: inherit;
}

.hours-link {
  justify-self: end;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--green-950);
  font-weight: 900;
  font-size: 0.85rem;
  text-decoration: none;
  max-width: 260px;
  text-align: center;
  line-height: 1.15;
}

.hours-link:hover {
  background: #d9ad44;
}

.weather-ribbon {
  order: -1;
  grid-column: 1 / -1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-width: 0;
  padding: 0 0 0.3rem;
  border-bottom: 1px solid rgba(216, 223, 210, 0.8);
  text-align: center;
}

.weather-ribbon > strong {
  position: static;
  flex: 0 0 auto;
  color: var(--green-900);
  font-size: 0.64rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.weather-ribbon .weather-list {
  flex: 0 1 auto;
  display: flex;
  justify-content: center;
  gap: 0.28rem;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: thin;
}

.weather-ribbon .weather-list li {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: baseline;
  gap: 0.22rem;
  min-height: 20px;
  padding: 0.12rem 0.35rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--green-900);
  white-space: nowrap;
}

.weather-ribbon .weather-list span {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
}

.weather-ribbon .weather-list strong,
.weather-ribbon .weather-list b {
  color: var(--green-900);
  font-size: 0.66rem;
}

.weather-ribbon .weather-list small,
.weather-ribbon .weather-list em {
  color: var(--muted);
  font-size: 0.62rem;
  font-style: normal;
}

.hero {
  min-height: 74vh;
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(13, 42, 27, 0.75), rgba(13, 42, 27, 0.28) 55%, rgba(13, 42, 27, 0.08));
}

.hero > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-panel {
  width: min(1120px, calc(100% - 2rem));
  color: var(--paper);
}

.home-hero .hero-panel {
  display: grid;
  justify-items: center;
  text-align: center;
}

.hero-sale-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-bottom: 1.15rem;
  padding: 0.82rem 1.55rem;
  border: 1px solid rgba(244, 208, 120, 0.95);
  border-radius: 999px;
  background: rgba(251, 250, 245, 0.84);
  color: var(--green-900);
  font-weight: 900;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(13, 42, 27, 0.24);
  backdrop-filter: blur(10px);
}

.hero-panel h1 {
  color: var(--paper);
  text-shadow: 0 3px 24px rgba(13, 42, 27, 0.5);
}

.hero-panel .hero-copy {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 18px rgba(13, 42, 27, 0.55);
}

.hero-panel h1,
.page-hero h1,
.sale-landing h1,
.hero-split h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 720px;
  margin: 1.1rem 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.home-hero .hero-copy {
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow,
.sale-landing .eyebrow {
  color: #f4d078;
}

.hero .location-alert {
  color: #e63f35;
  text-shadow: 0 2px 12px rgba(13, 42, 27, 0.75);
}

.location-strip {
  position: absolute;
  top: clamp(2rem, 3.05vw, 2.55rem);
  left: 50%;
  z-index: 1;
  width: max-content;
  max-width: calc(100% - 2rem);
  margin: 0;
  transform: translateX(-50%);
  text-align: center;
  color: #ce2029;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 1.75vw, 1.55rem);
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: none;
  white-space: nowrap;
  pointer-events: none;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-top: 1.5rem;
}

.home-hero .hero-actions {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.9rem 1.28rem;
  border: 1px solid var(--green-800);
  border-radius: 999px;
  background: var(--green-800);
  color: var(--paper);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.92rem;
}

.button:hover {
  background: var(--green-700);
}

.button-gold {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--green-950);
}

.button-gold:hover {
  background: #d9ad44;
}

.button-light {
  border-color: var(--line);
  background: var(--paper);
  color: var(--green-900);
}

.button-light:hover {
  background: var(--sage-100);
}

.text-link {
  color: var(--green-800);
  font-weight: 900;
  text-decoration-color: var(--gold);
  text-underline-offset: 0.2em;
}

section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.section-tight {
  padding: 1rem 0 0;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  width: min(980px, calc(100% - 2rem));
  transform: translateY(-2.5rem);
}

.quick-actions:has(.action-card:only-child) {
  grid-template-columns: minmax(260px, 420px);
  justify-content: center;
}

.action-card {
  min-height: 155px;
  display: grid;
  align-content: start;
  gap: 0.6rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
  box-shadow: var(--shadow);
}

.action-card span {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--sage-100);
  color: var(--green-800);
  font-weight: 900;
}

.action-card strong {
  color: var(--green-900);
  font-size: 1.1rem;
  line-height: 1.2;
}

.action-card small {
  color: var(--muted);
  font-size: 0.92rem;
}

.split-section,
.form-section,
.sale-landing,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.reverse {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
}

.reverse > :first-child {
  order: 2;
}

h1,
h2,
h3 {
  color: var(--green-900);
  line-height: 1.08;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: 0;
}

h3 {
  margin: 0 0 0.7rem;
  font-size: 1.15rem;
}

p {
  color: var(--muted);
}

.image-frame,
.category-card,
.map-panel,
.about-gallery figure {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.image-frame.vertical img {
  aspect-ratio: 4 / 5;
}

.small-frame img {
  min-height: 220px;
}

.gift-card-hero-frame {
  transform: scaleX(1.08);
  transform-origin: center;
}

.gift-card-lower-frame {
  width: min(112%, 620px);
  max-width: calc(100vw - 2rem);
  margin: 1.1rem 0 0 clamp(-2rem, -6%, -1.25rem);
}

.gift-card-lower-frame img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

@media (max-width: 640px) {
  .gift-card-hero-frame {
    transform: none;
  }

  .gift-card-lower-frame {
    width: 100%;
    margin-left: 0;
  }
}

.week-grid {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  gap: 1rem;
  align-items: start;
}

.floating-hours {
  position: fixed;
  top: 11rem;
  left: 3rem;
  z-index: 8;
  width: 112px;
  max-height: calc(100vh - 8rem);
  overflow: auto;
  padding: 0.12rem 0.2rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  text-align: center;
  opacity: 0.78;
  transition: opacity 160ms ease;
}

.floating-hours:hover,
.floating-hours:focus-within {
  opacity: 1;
}

.floating-hours.simple-hours {
  overflow: visible;
  padding: 0.35rem 0.15rem;
}

.floating-hours.simple-hours a {
  display: inline-block;
  color: var(--green-950);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1.2;
  text-decoration-color: var(--gold);
  text-underline-offset: 0.18em;
}

.floating-hours .hours-card-header {
  display: block;
  position: relative;
  padding: 0 0.05rem 0.5rem;
  border-bottom: 0;
  text-align: center;
}

.floating-hours .hours-card-header span {
  display: block;
  width: 100%;
  justify-self: stretch;
  color: rgba(18, 56, 32, 0.58);
  font-size: 0.56rem;
  letter-spacing: 0.08em;
}

.floating-hours .hours-card-header strong {
  display: block;
  width: 100%;
  justify-self: stretch;
  margin-top: 0.25rem;
  text-align: center;
  font-size: 0.64rem;
  line-height: 1.2;
}

.floating-hours .hours-list {
  gap: 0;
}

.floating-hours .hours-list li {
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 0.08rem;
  position: relative;
  padding: 0.36rem 0.05rem 0.42rem;
  border-bottom: 0;
  text-align: center;
}

.floating-hours .hours-card-header::after,
.floating-hours .hours-list li::after {
  content: "";
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0, rgba(18, 56, 32, 0.15) 25%, rgba(18, 56, 32, 0.15) 75%, transparent 100%);
}

.floating-hours .hours-list span {
  display: block;
  width: 100%;
  font-size: 0.62rem;
  line-height: 1.15;
}

.floating-hours .hours-list small {
  font-size: 0.57rem;
}

.floating-hours .hours-list strong {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 0.62rem;
  line-height: 1.18;
}

.floating-hours .hours-updated {
  display: block;
  color: var(--green-950);
  margin-top: 0.35rem;
  font-size: 0.54rem;
  line-height: 1.25;
  text-decoration-color: var(--gold);
  text-underline-offset: 0.16em;
}

.google-hours-card {
  display: grid;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 1.7rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.hours-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.hours-card-header span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hours-card-header strong {
  color: var(--green-900);
  text-align: right;
}

.hours-list {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hours-list li {
  display: grid;
  grid-template-columns: minmax(8rem, 0.8fr) minmax(0, 1.2fr);
  gap: 1rem;
  align-items: center;
  padding: 0.72rem 0;
  border-bottom: 1px solid rgba(216, 223, 210, 0.75);
}

.hours-list li:last-child {
  border-bottom: 0;
}

.hours-list span {
  color: var(--green-900);
  font-weight: 900;
}

.hours-list small {
  display: block;
  margin-top: 0.1rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.hours-list strong {
  color: var(--ink);
  text-align: right;
  font-size: 0.98rem;
}

.hours-updated {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.section-band {
  width: 100%;
  max-width: none;
  padding: clamp(3rem, 7vw, 5rem) max(1rem, calc((100vw - 1180px) / 2));
  background: var(--sage-100);
  border-block: 1px solid var(--line);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.section-heading h2 {
  max-width: 900px;
  font-size: clamp(2rem, 3vw, 3.05rem);
}

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

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

.category-card {
  display: grid;
  color: var(--green-900);
  text-decoration: none;
}

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

.buddha-photo {
  object-position: center top;
}

.category-card img.tropical-buddha-photo {
  object-fit: contain;
  object-position: center center;
  background: #f3f0e8;
}

.category-card strong {
  padding: 1rem;
  font-size: 1.1rem;
}

.detail-card {
  align-content: start;
}

.detail-card div {
  padding: 1.1rem;
}

.detail-card h2 {
  margin-bottom: 0.45rem;
  font-size: 1.55rem;
}

.detail-card p {
  margin: 0.35rem 0 0.8rem;
}

.plant-page-grid {
  padding-top: 0;
}

.plant-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  margin-bottom: 4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.plant-detail-hero {
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

.plant-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  padding-top: 0;
}

.plant-detail-copy {
  max-width: 720px;
}

.plant-detail-copy p {
  font-size: 1.05rem;
}

.plant-list-panel {
  display: grid;
  gap: 1rem;
  padding: clamp(1.2rem, 3vw, 1.6rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.plant-list-panel h3 {
  margin: 0;
}

.plant-list {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plant-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--green-900);
  font-weight: 800;
}

.plant-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: var(--gold);
}

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

.related-category-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  padding-top: 0;
}

.related-category-links a,
.mls-reference {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.65rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(251, 250, 245, 0.78);
  color: var(--green-900);
  font-weight: 900;
  text-decoration: none;
}

.sale-feature {
  width: min(1180px, calc(100% - 2rem));
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  align-items: center;
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: var(--radius);
  background: var(--green-900);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.sale-feature h2,
.sale-feature p {
  color: var(--paper);
}

.sale-feature h2 {
  max-width: 520px;
  font-size: clamp(1.9rem, 3vw, 2.85rem);
}

.sale-photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.sale-photos img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 6px;
}

.sale-photos img:first-child {
  grid-column: 1 / -1;
  height: 330px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}

.social-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
}

.social-live {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.75fr) minmax(280px, 0.8fr);
  gap: 1rem;
  align-items: stretch;
}

.social-copy,
.instagram-carousel,
.facebook-updates {
  min-width: 0;
}

.instagram-carousel {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.instagram-carousel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: carouselFade 24s infinite;
  animation-delay: calc(var(--slide) * 4s);
}

@keyframes carouselFade {
  0%,
  15% {
    opacity: 1;
  }

  21%,
  100% {
    opacity: 0;
  }
}

.facebook-updates {
  display: grid;
  gap: 0.8rem;
  align-content: start;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.facebook-updates iframe {
  width: 100%;
  max-width: 100%;
  min-height: 360px;
  border-radius: 12px;
  background: var(--sage-100);
}

.page-hero {
  text-align: center;
}

.page-hero.compact {
  width: min(900px, calc(100% - 2rem));
  padding-bottom: 2rem;
}

.page-hero p {
  max-width: 720px;
  margin-inline: auto;
}

.hero-split h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.form-section {
  align-items: start;
  padding-top: 2rem;
}

.form-copy {
  position: sticky;
  top: 7rem;
}

.contact-form {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  color: var(--green-900);
  font-weight: 900;
  font-size: 0.9rem;
}

.captcha-field {
  padding: 0.85rem;
  border: 1px solid rgba(201, 154, 46, 0.45);
  border-radius: 6px;
  background: var(--sage-100);
}

.captcha-field span {
  color: var(--muted);
  font-weight: 800;
}

.form-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.sale-inquiry-section {
  width: min(980px, calc(100% - 2rem));
  margin-top: 0;
  padding-top: 1.5rem;
}

.purchase-panel {
  display: grid;
  gap: 1rem;
  align-content: center;
  justify-items: start;
  min-height: 280px;
  padding: clamp(1.35rem, 3vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.purchase-panel p {
  max-width: 34rem;
  margin: 0;
}

.purchase-range {
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 3.3rem);
  font-weight: 900;
  line-height: 1;
}

.paypal-gift-card-form {
  display: grid;
  gap: 0.9rem;
  width: min(100%, 30rem);
}

.paypal-gift-card-form label {
  display: grid;
  gap: 0.4rem;
  color: var(--green-900);
  font-size: 0.9rem;
  font-weight: 900;
}

.paypal-gift-card-form .button {
  width: fit-content;
  margin-top: 0.25rem;
}

.response-page {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 80px);
  padding: clamp(2rem, 6vw, 5rem) 1rem;
}

.response-card {
  width: min(680px, 100%);
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.response-card h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  letter-spacing: 0;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c9d2c3;
  border-radius: 6px;
  background: #fffdfa;
  color: var(--ink);
  font: inherit;
  padding: 0.78rem 0.85rem;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.check-list {
  display: grid;
  gap: 0.65rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: var(--gold);
}

.sale-landing {
  width: 100%;
  max-width: none;
  min-height: 76vh;
  padding: clamp(3rem, 7vw, 5.5rem) max(1rem, calc((100vw - 1180px) / 2));
  background: var(--green-950);
  color: var(--paper);
}

.sale-page::before {
  display: none;
}

.sale-page .sale-landing {
  width: min(1180px, calc(100% - 2rem));
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  margin-top: clamp(1rem, 2vw, 1.4rem);
  margin-bottom: clamp(1rem, 2vw, 1.4rem);
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  gap: clamp(2rem, 4vw, 3.2rem);
  align-items: start;
  padding: clamp(2.15rem, 4vw, 3.4rem) clamp(1.5rem, 4vw, 3rem);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.sale-page .sale-landing h1 {
  font-size: clamp(2.85rem, 5vw, 4.85rem);
  line-height: 0.98;
}

.sale-page .sale-landing .hero-copy {
  max-width: 620px;
  margin-top: 0.9rem;
  font-size: clamp(1rem, 1.45vw, 1.15rem);
}

.sale-page .floating-hours {
  color: var(--green-950);
  text-shadow: none;
}

.sale-page .floating-hours .hours-card-header span,
.sale-page .floating-hours .hours-list small,
.sale-page .floating-hours .hours-updated {
  color: var(--green-950);
}

.sale-page .floating-hours .hours-card-header strong,
.sale-page .floating-hours .hours-list span,
.sale-page .floating-hours .hours-list strong {
  color: var(--green-950);
  font-weight: 900;
}

.sale-page .floating-hours .hours-card-header::after,
.sale-page .floating-hours .hours-list li::after {
  background: linear-gradient(90deg, transparent 0, rgba(13, 42, 27, 0.28) 25%, rgba(13, 42, 27, 0.28) 75%, transparent 100%);
}

.sale-page .sale-landing-images {
  margin-top: clamp(2.6rem, 4.5vw, 3.75rem);
  transform: none;
}

.sale-included-box {
  margin-top: 1.35rem;
  padding: 1rem;
  border: 1px solid rgba(244, 208, 120, 0.5);
  border-radius: var(--radius);
  background: rgba(251, 250, 245, 0.1);
}

.sale-included-box h2 {
  margin: 0 0 0.35rem;
  color: #f4d078;
  font-size: 1.1rem;
}

.sale-included-box p,
.sale-email-note {
  margin: 0;
}

.sale-included-box p + p {
  margin-top: 0.65rem;
}

.sale-email-note {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.sale-landing h1,
.sale-landing p {
  color: var(--paper);
}

.sale-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.sale-stat-grid div {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.sale-stat-grid strong {
  display: block;
  color: #f4d078;
  font-size: 1.4rem;
}

.sale-stat-grid span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

@media (min-width: 981px) {
  .sale-stat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.sale-landing-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.sale-landing-images img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 6px;
}

.sale-landing-images .large {
  grid-column: 1 / -1;
  height: 390px;
}

.feature-grid article {
  min-height: 180px;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.about-difference .section-heading {
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  max-width: 760px;
  margin: 0 auto 1.75rem;
  text-align: center;
}

.about-difference .section-heading h2 {
  max-width: 680px;
}

.about-difference .feature-grid {
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  max-width: 900px;
  margin: 0 auto;
  gap: 1.15rem;
}

.about-difference .feature-grid article {
  min-height: 160px;
  display: grid;
  align-content: start;
}

.about-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 1rem;
}

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

.about-gallery figcaption {
  padding: 0.8rem 1rem 1rem;
  color: var(--green-900);
  font-weight: 900;
}

.contact-layout {
  align-items: stretch;
  padding-top: 1rem;
}

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

.contact-cards article {
  min-height: 150px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.contact-cards h2 {
  font-size: 1.45rem;
}

.map-panel iframe {
  width: 100%;
  min-height: 360px;
  height: 100%;
  border: 0;
}

.site-footer {
  position: relative;
  z-index: 7;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 1.4rem;
  padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 3vw, 3rem);
  background: var(--green-950);
  color: var(--paper);
}

.site-footer strong {
  color: #f4d078;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer a {
  text-decoration-color: rgba(244, 208, 120, 0.75);
  text-underline-offset: 0.2em;
}

@media (min-width: 981px) {
  body::before {
    display: none;
  }
}

@media (max-width: 1280px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.58rem;
    padding: 0.5rem clamp(0.85rem, 2.5vw, 1.3rem) 0.7rem;
  }

  .brand {
    justify-self: center;
  }

  .location-strip {
    position: static;
    grid-column: 1 / -1;
    width: auto;
    max-width: min(100%, 32rem);
    margin: 0.05rem 0 0.12rem;
    transform: none;
    font-size: clamp(1.05rem, 3vw, 1.35rem);
    line-height: 1.15;
    white-space: normal;
  }

  .weather-ribbon {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    justify-content: flex-start;
  }

  .weather-ribbon > strong {
    position: static;
  }

  .weather-ribbon .weather-list {
    flex: 1 1 auto;
    justify-content: flex-start;
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .weather-ribbon .weather-list::-webkit-scrollbar {
    display: none;
  }

  .site-nav {
    width: min(100%, 48rem);
    justify-content: center;
    gap: 0.32rem 0.72rem;
    font-size: clamp(0.86rem, 1.9vw, 0.98rem);
  }

  .site-nav a {
    padding: 0.36rem 0.1rem;
    line-height: 1.12;
  }

  .site-nav a[href="sale.html"] {
    flex: 1 0 100%;
    text-align: center;
  }

  .hours-link {
    justify-self: start;
  }

  .floating-hours {
    position: static;
    width: min(420px, calc(100% - 2rem));
    max-height: none;
    margin: 0.9rem auto 1rem;
  }

  .sale-page .sale-landing {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 0;
    border-radius: 0;
  }

  .sale-page .sale-landing-images {
    margin-top: 1.25rem;
    transform: none;
  }

  .floating-hours .hours-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 1rem;
  }

  .quick-actions,
  .category-grid,
  .feature-grid,
  .about-gallery,
  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-section,
  .form-section,
  .sale-feature,
  .sale-landing,
  .social-live,
  .contact-layout,
  .week-grid,
  .plant-detail-layout,
  .reverse {
    grid-template-columns: 1fr;
  }

  .reverse > :first-child {
    order: 0;
  }

  .form-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .top-alert {
    display: flex;
    flex-direction: column;
    gap: 0.35rem 0.55rem;
    justify-content: center;
    align-items: center;
    padding-inline: 0.75rem;
    text-align: center;
    font-size: 0.86rem;
    line-height: 1.25;
  }

  .sale-alert-link {
    max-width: 22rem;
    font-size: clamp(1rem, 4.4vw, 1.2rem);
  }

  .top-alert > span:first-child,
  .top-alert > a {
    display: block;
  }

  .top-social {
    justify-content: center;
    margin-left: 0;
  }

  .site-header {
    gap: 0.5rem;
    justify-items: center;
    padding-inline: 0.85rem;
  }

  .brand {
    justify-items: center;
    text-align: center;
  }

  .location-strip {
    position: static;
    grid-column: 1 / -1;
    width: auto;
    max-width: min(100%, 32rem);
    margin: 0.1rem 0 0.15rem;
    transform: none;
    font-size: clamp(1rem, 4.4vw, 1.2rem);
    line-height: 1.15;
    white-space: normal;
  }

  .site-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.24rem 0.58rem;
    width: min(100%, 26rem);
    font-size: clamp(0.84rem, 3.2vw, 0.92rem);
  }

  .site-nav a {
    flex: 0 0 auto;
    padding: 0.32rem 0.05rem;
    text-align: center;
    line-height: 1.15;
    white-space: nowrap;
  }

  .site-nav a[href="sale.html"] {
    flex: 1 0 100%;
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    white-space: normal;
  }

  .weather-ribbon {
    gap: 0.25rem;
    padding-bottom: 0.2rem;
  }

  .weather-ribbon > strong {
    display: none;
  }

  .weather-ribbon .weather-list li {
    min-height: 18px;
    padding: 0.08rem 0.32rem;
  }

  .weather-ribbon .weather-list strong,
  .weather-ribbon .weather-list b,
  .weather-ribbon .weather-list em {
    font-size: 0.6rem;
  }

  .hero {
    min-height: 68vh;
    align-items: end;
    padding-bottom: 2rem;
  }

  .hero-panel h1,
  .page-hero h1,
  .sale-landing h1,
  .hero-split h1 {
    max-width: 21rem;
    font-size: clamp(2rem, 7.8vw, 2.35rem);
    line-height: 1;
    overflow-wrap: break-word;
  }

  .hero-panel h1,
  .page-hero h1,
  .hero-split h1 {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-copy,
  .page-hero p,
  .hero-split p,
  .sale-landing p,
  .form-copy p {
    width: min(100%, 19.75rem);
    max-width: 19.75rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    line-height: 1.55;
    overflow-wrap: break-word;
  }

  .sale-landing p {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-actions,
  .inline-actions {
    justify-content: center;
    width: 100%;
    gap: 0.65rem;
  }

  .inline-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .button,
  .inline-actions .button {
    min-width: min(100%, 13.5rem);
    max-width: 100%;
    padding-inline: 1rem;
    text-align: center;
  }

  .inline-actions .text-link {
    max-width: 100%;
    text-align: center;
  }

  .hero::after {
    background: linear-gradient(0deg, rgba(13, 42, 27, 0.86), rgba(13, 42, 27, 0.22));
  }

  .quick-actions,
  .category-grid,
  .feature-grid,
  .about-gallery,
  .contact-cards,
  .site-footer,
  .sale-stat-grid,
  .sale-photos,
  .social-grid,
  .plant-list-columns,
  .floating-hours .hours-list {
    grid-template-columns: 1fr;
  }

  .about-difference .feature-grid {
    grid-template-columns: 1fr;
  }

  section {
    width: 100%;
    padding: 2.5rem 1rem;
  }

  .section-tight {
    padding-top: 1rem;
  }

  .section-band {
    padding-inline: 1rem;
  }

  .page-hero,
  .page-hero.compact,
  .hero-panel,
  .sale-landing-copy,
  .form-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .sale-included-box,
  .contact-form,
  .category-card,
  .image-frame,
  .about-gallery figure {
    max-width: 100%;
    min-width: 0;
  }

  .split-section,
  .form-section,
  .sale-feature,
  .sale-landing,
  .sale-page .sale-landing,
  .contact-layout,
  .plant-detail-layout,
  .reverse {
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100%;
    max-width: 100%;
    gap: 1.5rem;
  }

  .sale-page .sale-landing {
    padding: 2.25rem 1rem;
  }

  .sale-page .sale-landing h1 {
    max-width: 20.5rem;
    font-size: clamp(2rem, 7.8vw, 2.35rem);
  }

  .quick-actions {
    transform: none;
    padding-top: 1rem;
  }

  .image-frame img,
  .small-frame img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .category-card img {
    aspect-ratio: 4 / 3;
  }

  .about-gallery img {
    aspect-ratio: 4 / 3;
  }

  .gift-card-lower-frame img {
    aspect-ratio: 16 / 9;
  }

  .section-heading,
  .plant-note {
    display: grid;
    align-items: start;
  }

  h2,
  .section-heading h2 {
    max-width: 100%;
    font-size: clamp(1.85rem, 7.8vw, 2.3rem);
    overflow-wrap: break-word;
  }

  .sale-landing-images,
  .sale-landing-images .large {
    display: block;
  }

  .sale-landing-images img,
  .sale-landing-images .large {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    margin-bottom: 0.8rem;
  }

  .sale-photos img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .instagram-carousel {
    min-height: 320px;
  }

  .hours-card-header,
  .hours-list li {
    grid-template-columns: 1fr;
  }

  .hours-card-header {
    display: grid;
  }

  .hours-card-header strong,
  .hours-list strong {
    text-align: left;
  }
}
