/* FlowerPale — garden + bright mockup blend */

:root {
  --bg: #f3f6f3;
  --bg-soft: #e2eae4;
  --surface: #ffffff;
  --ink: #152019;
  --ink-muted: #526158;
  --brand: #24382c;
  --brand-hover: #1a2920;
  --accent: #5f7466;
  --line: #c4cfc7;
  --danger: #8b3a3a;
  --ok: #24382c;
  --shadow: 0 18px 42px rgba(21, 32, 25, 0.1);
  --radius: 4px;
  --radius-media: 10px;
  --max: 1160px;
  --font-display: "Source Serif 4", "Iowan Old Style", Georgia, serif;
  --font-logo: "Fraunces", "Source Serif 4", Georgia, serif;
  --font-body: "Nunito Sans", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(900px 380px at 8% 12%, rgba(176, 196, 178, 0.18) 0%, transparent 60%),
    linear-gradient(180deg, #fafbfa 0%, var(--bg) 42%, #eef3ef 100%);
  font-family: var(--font-body);
  font-size: 1.04rem;
  line-height: 1.55;
  min-height: 100vh;
}

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

a {
  color: var(--brand);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--brand-hover);
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.trust-bar {
  background: #eef2ef;
  border-bottom: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: 0.84rem;
  font-weight: 600;
}

.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.55rem 1.25rem;
  padding: 0.55rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(250, 251, 250, 0.92);
  border-bottom: 1px solid rgba(215, 224, 217, 0.85);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.85rem;
}

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

.logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: inherit;
}

.logo-wordmark {
  display: grid;
  justify-items: center;
  gap: 0.18rem;
}

.logo-word {
  font-family: var(--font-logo);
  font-size: clamp(1.95rem, 2.7vw, 2.4rem);
  font-weight: 450;
  font-style: italic;
  font-optical-sizing: auto;
  font-variation-settings: "SOFT" 40, "WONK" 0.35;
  letter-spacing: -0.018em;
  line-height: 1;
  color: var(--brand);
}

.logo-vine {
  width: min(12.25rem, 108%);
  height: auto;
  color: var(--accent);
  opacity: 0.38;
  transition: transform 0.4s ease, color 0.35s ease, opacity 0.35s ease;
  transform-origin: center;
}

.logo-flourish {
  flex: 0 0 auto;
  color: var(--accent);
  opacity: 0.7;
  transition: transform 0.35s ease, color 0.35s ease, opacity 0.35s ease;
}

.logo-flourish--left {
  transform: translateY(0.15rem) rotate(-6deg);
}

.logo-flourish--right {
  transform: translateY(0.15rem) rotate(6deg);
}

.logo:hover .logo-word {
  color: var(--brand-hover);
}

.logo:hover .logo-flourish--left {
  transform: translateY(0.05rem) translateX(-1px) rotate(-10deg);
  opacity: 0.95;
  color: var(--brand);
}

.logo:hover .logo-flourish--right {
  transform: translateY(0.05rem) translateX(1px) rotate(10deg);
  opacity: 0.95;
  color: var(--brand);
}

.logo:hover .logo-vine {
  transform: scaleX(1.02);
  color: var(--brand);
  opacity: 0.55;
}

.logo-lockup--footer .logo-word {
  font-size: 1.85rem;
  font-weight: 450;
  color: var(--brand);
}

.logo-lockup--footer .logo-vine {
  width: 9.5rem;
  color: var(--accent);
}

.logo-lockup--footer .logo-flourish {
  opacity: 0.65;
}

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

.main-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--brand);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 1.35rem;
  margin-inline: auto;
  background: var(--brand);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-drawer {
  border-top: 1px solid var(--line);
  background: rgba(250, 251, 250, 0.98);
  padding: 0.75rem 0 1.25rem;
}

.nav-drawer[hidden] {
  display: none;
}

.nav-drawer-inner {
  display: grid;
  gap: 0.55rem;
  padding-top: 0.5rem;
}

.nav-drawer-inner a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 650;
  font-size: 1.05rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(215, 224, 217, 0.7);
}

.nav-drawer-inner a:hover {
  color: var(--brand);
}

.nav-drawer-label {
  margin: 0.85rem 0 0.15rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.nav-drawer-label:first-child {
  margin-top: 0.25rem;
}

.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Contact-form honeypot — off-screen, not focusable via mouse */
.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.is-hidden {
  display: none !important;
}

.form-section-label {
  margin: 0.5rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brand);
}

.pdp-sticky {
  display: none;
}

.cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 1.3rem;
  height: 1.3rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.85rem;
  padding: 0.7rem 1.4rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--brand);
  color: #fff;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: none;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}

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

.btn:active {
  transform: translateY(1px);
}

.btn-outline {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}

.btn-outline:hover {
  background: var(--brand);
  color: #fff;
}

.btn-quiet {
  background: transparent;
  color: var(--ink-muted);
  border: 0;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  min-height: auto;
  padding: 0;
  font-weight: 600;
}

.btn-quiet:hover {
  color: var(--brand);
}

.flash-status {
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  background: #e5efe8;
  border: 1px solid #c5d7cb;
  color: var(--ok);
}

.flash-errors {
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  background: #f7eaea;
  border: 1px solid #e0c0c0;
  color: var(--danger);
}

.flash-errors ul {
  margin: 0;
  padding-left: 1.1rem;
}

.leaf-divider {
  width: 48px;
  height: 16px;
  margin: 0.85rem 0;
}

/* Hero — full-bleed image */
.hero {
  position: relative;
  overflow: hidden;
  min-height: min(78vh, 720px);
  display: grid;
  align-items: center;
  padding: 0;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  background: var(--bg-soft);
  transform: scale(1.08);
  animation:
    hero-bloom 14s ease-in-out infinite alternate,
    hero-blink 4.5s ease-in-out infinite;
  will-change: transform, filter;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: radial-gradient(rgba(36, 56, 44, 0.28) 0.9px, transparent 1.1px);
  background-size: 5px 5px;
  opacity: 0.7;
  mix-blend-mode: multiply;
  animation: hero-dots 10s linear infinite;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(245, 247, 245, 0.94) 0%, rgba(245, 247, 245, 0.78) 34%, rgba(245, 247, 245, 0.28) 58%, rgba(245, 247, 245, 0.08) 100%),
    linear-gradient(180deg, rgba(245, 247, 245, 0.15) 0%, transparent 30%, rgba(31, 44, 36, 0.08) 100%);
}

.hero-overlay {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  padding: 4.5rem 0;
}

.hero-copy {
  animation: rise 0.85s ease both;
  max-width: 30rem;
}

.hero-kicker {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: -0.01em;
}

.hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.8vw, 4.1rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: var(--ink);
}

.hero-support {
  margin: 0 0 1.5rem;
  color: var(--ink-muted);
  font-size: 1.08rem;
  max-width: 26rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.35rem;
}

.hero-actions .btn-quiet {
  color: var(--ink);
}

.hero-zip {
  margin-top: 1.15rem;
  gap: 0.45rem;
  max-width: 22rem;
  animation: rise 0.35s ease both;
}

.hero-zip-label {
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-zip-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
}

.section {
  padding: 3rem 0;
}

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

.section-popular {
  background: rgba(255, 255, 255, 0.55);
  border-top: 1px solid rgba(215, 224, 217, 0.8);
  border-bottom: 1px solid rgba(215, 224, 217, 0.8);
  padding-bottom: 3.5rem;
}

.section-head {
  margin-bottom: 1.6rem;
}

.section-head--row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.section-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-title-wrap .leaf-divider {
  margin: 0;
}

.section-head h2 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.section-title-wrap h2 {
  margin: 0;
}

.section-head p {
  margin: 0;
  color: var(--ink-muted);
  max-width: 36rem;
}

.section-link {
  color: var(--brand);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  white-space: nowrap;
}

.section-link:hover {
  text-decoration: underline;
}

.occasion-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.occasion-list a {
  color: var(--ink);
  font-weight: 650;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.occasion-list a:hover {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.6rem 1.25rem;
}

.product-grid--home,
.product-grid--browse {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem 1.25rem;
}

.product-tile {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: inherit;
  text-decoration: none;
  animation: rise 0.65s ease both;
}

.product-tile:nth-child(2) { animation-delay: 0.05s; }
.product-tile:nth-child(3) { animation-delay: 0.1s; }
.product-tile:nth-child(4) { animation-delay: 0.15s; }

.product-tile img {
  width: 100%;
  aspect-ratio: 1 / 1.12;
  object-fit: cover;
  object-position: center;
  background:
    linear-gradient(160deg, #e7eee8 0%, #dce6df 100%);
  border: 1px solid rgba(36, 56, 44, 0.2);
  border-radius: var(--radius-media);
  box-shadow: 0 10px 24px rgba(21, 32, 25, 0.1);
  transition: transform 0.45s ease, filter 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
}

.product-tile:hover img {
  transform: scale(1.02);
  filter: saturate(1.05);
  border-color: rgba(36, 56, 44, 0.36);
  box-shadow: 0 14px 30px rgba(21, 32, 25, 0.14);
}

.product-tile:hover h3 {
  color: var(--brand);
}

.product-tile-copy {
  display: grid;
  gap: 0.35rem;
}

.product-tile-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.65rem;
}

.product-tile h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.product-tile .price {
  color: var(--ink);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
}

.product-blurb {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.88rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.browse-hero {
  position: relative;
  padding: 2.75rem 0 1.25rem;
  margin-bottom: 0.25rem;
  overflow: hidden;
}

.browse-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 100%;
  background:
    radial-gradient(720px 220px at 12% 0%, rgba(176, 196, 178, 0.22) 0%, transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.browse-hero > .container,
.browse-hero > .section-title-wrap,
.browse-hero > h1,
.browse-hero > .browse-hero-blurb {
  position: relative;
  z-index: 1;
}

.browse-hero--compact {
  padding-bottom: 0.5rem;
}

.browse-hero--compact::before {
  height: 85%;
}

.browse-kicker {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: -0.01em;
  animation: rise 0.55s ease both;
}

.browse-hero h1,
.browse-hero .section-title-wrap h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 4.4vw, 3.15rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  animation: rise 0.7s ease both;
}

.browse-hero .section-title-wrap {
  animation: rise 0.7s ease both;
}

.browse-hero-blurb {
  margin: 0.55rem 0 1.35rem;
  color: var(--ink-muted);
  max-width: 36rem;
  font-size: 1.05rem;
  animation: rise 0.8s ease both;
}

.browse-occasions {
  margin-bottom: 1.1rem;
  padding-top: 0.15rem;
  border-top: 1px solid transparent;
  animation: rise 0.9s ease both;
}

.occasion-list a.is-active {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

.section-browse {
  padding-top: 1.5rem;
  padding-bottom: 4rem;
}

.browse-crumb,
.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  padding: 0;
  color: var(--ink-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.browse-crumb a,
.crumbs a {
  color: var(--ink-muted);
  text-decoration: none;
}

.browse-crumb a:hover,
.crumbs a:hover {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-hero {
  position: relative;
  padding: 2.75rem 0 1.25rem;
}

.page-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 4.4vw, 3.15rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.page-hero p {
  margin: 0.55rem 0 0;
  color: var(--ink-muted);
  max-width: 36rem;
  font-size: 1.05rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.1rem;
  margin: 0 0 0.5rem;
}

.filters a {
  color: var(--ink-muted);
  text-decoration: none;
  font-weight: 600;
}

.filters a:hover,
.filters a.is-active {
  color: var(--brand);
  text-decoration: underline;
}

.shop-facet {
  margin: 0.85rem 0 0;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(196, 207, 199, 0.45);
}

.shop-facet-label {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.filters--funeral {
  margin: 0;
  gap: 0.55rem 0.95rem;
}

.filters--funeral a {
  font-size: 0.95rem;
}

.pdp-shell {
  padding-top: 1.75rem;
  padding-bottom: 1rem;
}

.pdp {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: start;
  padding: 0.5rem 0 3.25rem;
}

.pdp-media {
  position: relative;
  animation: rise 0.7s ease both;
}

.pdp-media::before {
  content: "";
  position: absolute;
  inset: 8% -6% -6% 8%;
  background:
    radial-gradient(circle at 30% 20%, rgba(176, 196, 178, 0.35), transparent 55%),
    linear-gradient(160deg, #e4ebe5, #d5e0d8);
  z-index: 0;
}

.pdp-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--bg-soft);
}

.pdp-info {
  padding-top: 0.35rem;
  animation: rise 0.85s ease both;
}

.pdp-info .eyebrow,
.pdp-info .browse-kicker {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: -0.01em;
  text-transform: none;
}

.pdp-info h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.4vw, 2.85rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.pdp-price {
  margin: 0.15rem 0 1.1rem;
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.pdp-info > p {
  margin: 0 0 1.35rem;
  color: var(--ink-muted);
  max-width: 28rem;
  font-size: 1.02rem;
}

.pdp-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.35rem;
  margin-bottom: 1.35rem;
}

.pdp-actions .btn {
  min-width: 11rem;
}

.pdp-meta {
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.checkout-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.35rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  color: var(--ink-muted);
  font-size: 0.92rem;
  font-weight: 650;
}

.checkout-steps li {
  position: relative;
}

.checkout-steps li.is-current {
  color: var(--brand);
}

.checkout-steps li.is-done {
  color: var(--ink);
}

.split {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 2.5rem;
  padding: 0.5rem 0 3.5rem;
  align-items: start;
}

.panel {
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  padding: 1.35rem 0 0;
  border-radius: 0;
}

.panel.form-grid {
  border-top: 0;
  padding-top: 0;
}

.cart-line {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) auto;
  gap: 1.15rem 1.25rem;
  align-items: start;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}

.cart-line:first-child {
  border-top: 1px solid var(--line);
}

.cart-thumb {
  display: block;
  width: 112px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 0.55rem;
  border: 1px solid rgba(36, 56, 44, 0.14);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.55), transparent 55%),
    var(--bg-soft, #eef2ef);
  box-shadow: 0 3px 12px rgba(21, 32, 25, 0.09);
}

.cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.cart-thumb:hover img {
  transform: scale(1.04);
}

.cart-line-body {
  min-width: 0;
}

.cart-line h3 {
  margin: 0 0 0.3rem;
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.cart-line h3 a {
  color: inherit;
  text-decoration: none;
}

.cart-line h3 a:hover {
  color: var(--brand);
}

.cart-line .meta {
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.cart-line .line-total {
  font-weight: 700;
  font-size: 1.08rem;
  white-space: nowrap;
  padding-top: 0.15rem;
}

.cart-line-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 0.85rem 1.25rem;
  margin-top: 0.85rem;
}

.qty {
  width: 4.5rem;
  margin-top: 0.25rem;
}

.cart-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  align-items: center;
  margin-top: 1.25rem;
}

.summary {
  position: sticky;
  top: 5.5rem;
  padding-top: 0.25rem;
}

.summary h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.summary-items {
  list-style: none;
  margin: 0 0 1.15rem;
  padding: 0 0 1.05rem;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 0.85rem;
}

.summary-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: start;
}

.summary-thumb {
  display: block;
  width: 56px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 0.45rem;
  border: 1px solid rgba(36, 56, 44, 0.14);
  background: var(--bg-soft, #eef2ef);
  box-shadow: 0 2px 8px rgba(21, 32, 25, 0.08);
}

.summary-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.summary-item-copy {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

.summary-item-copy a {
  color: inherit;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.summary-item-copy a:hover {
  color: var(--brand);
}

.summary-item-copy span {
  color: var(--ink-muted);
  font-size: 0.86rem;
}

.summary-item-price {
  font-size: 0.95rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.summary-breakdown {
  display: grid;
  gap: 0.7rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
  font-size: 0.98rem;
}

.summary-row span:first-child {
  display: grid;
  gap: 0.15rem;
}

.summary-row small {
  color: var(--ink-muted);
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.35;
}

.summary-row > span:last-child {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.summary .total {
  margin-top: 0.35rem;
  padding-top: 0.95rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.summary-pending {
  color: var(--ink-muted);
  font-weight: 650;
  font-size: 0.92rem;
}

.summary .btn {
  width: 100%;
  margin-top: 1.15rem;
}

.summary-zip {
  margin: 1.15rem 0 0;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.55rem;
}

.summary-zip-label {
  margin: 0;
  font-weight: 650;
  font-size: 0.95rem;
}

.summary-zip-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
  align-items: stretch;
}

.summary-zip-row .btn {
  width: auto;
  margin-top: 0;
  min-height: 2.85rem;
}

.summary-zip-ok {
  margin: 0;
  color: var(--ok, #2f5d3a);
  font-size: 0.88rem;
  font-weight: 650;
}

.zip-locate-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.75rem;
  margin-top: 0.45rem;
}

.zip-locate-btn {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: var(--brand);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 650;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.zip-locate-btn:hover {
  color: var(--brand-hover);
}

.zip-locate-btn:disabled {
  opacity: 0.55;
  cursor: wait;
}

.zip-locate-status {
  color: var(--ink-muted);
  font-size: 0.85rem;
}

.zip-locate-hint {
  margin: 0.25rem 0 0;
  color: var(--ink-muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.zip-city-select-wrap.is-hidden {
  display: none;
}

.zip-lookup-status {
  margin: -0.35rem 0 0.35rem;
  min-height: 1.25rem;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.card-message-hint {
  margin: -0.35rem 0 0.55rem;
  color: var(--ink-muted);
  font-size: 0.88rem;
}

.card-message-suggest {
  margin: 0 0 1rem;
  padding: 0.85rem 0 0;
  border-top: 1px solid rgba(196, 207, 199, 0.45);
}

.card-message-occasions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.75rem;
  margin-bottom: 0.65rem;
}

.card-message-occ {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: var(--ink-muted);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 650;
  cursor: pointer;
  border-bottom: 1px solid transparent;
}

.card-message-occ:hover,
.card-message-occ.is-active {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

.card-message-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  gap: 0.35rem;
}

.card-message-list.is-active {
  display: grid;
}

.card-message-pick {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0.45rem 0.55rem;
  border: 1px solid rgba(196, 207, 199, 0.55);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.65);
  color: var(--ink);
  font: inherit;
  font-size: 0.92rem;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.card-message-pick:hover,
.card-message-pick.is-chosen {
  border-color: var(--brand);
  color: var(--brand);
  background: rgba(36, 56, 44, 0.05);
}

.form-grid {
  display: grid;
  gap: 0.9rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-weight: 650;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 2.7rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 6rem;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(47, 69, 56, 0.22);
  border-color: var(--brand);
}

.prose {
  max-width: 42rem;
  padding: 0 0 3.5rem;
}

.prose--tight {
  padding-bottom: 0;
}

.prose h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 4.4vw, 3.15rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.prose h2 {
  margin: 2rem 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose > .leaf-divider {
  margin: 0.85rem 0 1rem;
}

.prose p,
.prose address {
  color: var(--ink-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.prose address {
  font-style: normal;
  margin: 0 0 1rem;
}

.prose a:not(.btn):not(.btn-quiet):not(.btn-outline) {
  color: var(--brand);
  font-weight: 650;
}

.prose a.btn {
  color: #fff;
}

.prose a.btn:hover {
  color: #fff;
}

.prose a.btn-quiet {
  color: var(--ink-muted);
}

.prose a.btn-quiet:hover {
  color: var(--brand);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 2.5rem 3rem;
  align-items: start;
  padding-bottom: 3.5rem;
}

.contact-form-panel {
  max-width: 28rem;
}

.contact-form-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.checkout-trust {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0.9rem 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.45rem;
  color: var(--ink-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.checkout-trust a {
  color: var(--brand);
  font-weight: 650;
}

.empty-state {
  max-width: 34rem;
  padding: 1rem 0 3.5rem;
}

.empty-state-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.empty-state-copy {
  margin: 0 0 1.25rem;
  color: var(--ink-muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.empty-state-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.15rem;
  align-items: center;
}

.recent-places {
  margin: 0 0 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.recent-places--home {
  margin-top: 4.25rem;
  padding-top: 0;
  border-top: 0;
  border-bottom: 0;
  padding-bottom: 0;
}

.recent-places--home .section-title-wrap {
  margin-bottom: 0.35rem;
}

.recent-places-heading {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.recent-places-blurb {
  margin: 0;
  color: var(--ink-muted);
  max-width: 36rem;
}

.recent-places--home .recent-places-blurb {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  max-width: none;
}

.recent-places-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.recent-places-list > li {
  position: relative;
  padding-left: 1.05rem;
}

.recent-places-list > li::before {
  content: "";
  position: absolute;
  left: 0.1rem;
  top: 0.85rem;
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 50%;
  background: var(--brand);
  opacity: 0.38;
}

.recent-places-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(196, 207, 199, 0.45);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.18s ease;
}

.recent-places-main {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

.recent-places-list a:hover {
  border-bottom-color: var(--brand);
}

.recent-places-list a:hover .recent-places-name {
  color: var(--accent);
}

.recent-places-list a:hover .recent-places-meta {
  color: var(--brand);
}

.recent-places-list > li:hover::before {
  opacity: 0.7;
}

.recent-places-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.25;
  transition: color 0.18s ease;
}

.recent-places-meta {
  color: var(--ink-muted);
  font-size: 0.82rem;
  line-height: 1.3;
  transition: color 0.18s ease;
}

.recent-places-arrow {
  flex-shrink: 0;
  color: var(--brand);
  font-size: 1.05rem;
  line-height: 1;
  opacity: 0;
  transform: translateX(-4px);
  transition: color 0.18s ease, transform 0.18s ease, opacity 0.18s ease;
}

.recent-places-list a:hover .recent-places-arrow {
  opacity: 1;
  transform: translateX(0);
}

.faq-section {
  padding-top: 0.5rem;
}

.faq-list {
  max-width: 42rem;
  display: grid;
  gap: 0.5rem;
}

.faq-item {
  border-bottom: 1px solid rgba(196, 207, 199, 0.45);
  padding: 0.35rem 0 0.85rem;
  transition: border-color 0.18s ease;
}

.faq-item:hover,
.faq-item[open] {
  border-bottom-color: var(--brand);
}

.faq-item summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  list-style: none;
  padding: 0.45rem 0;
  transition: color 0.18s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  color: var(--accent);
}

.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  color: var(--brand);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1;
  opacity: 0.45;
  transform: translateX(-3px);
  transition: opacity 0.18s ease, transform 0.18s ease, color 0.18s ease;
}

.faq-item summary:hover::after,
.faq-item[open] summary::after {
  opacity: 1;
  transform: translateX(0);
}

.faq-item[open] summary::after {
  content: '–';
  color: var(--brand);
}

.faq-item[open] summary {
  color: var(--accent);
}

.faq-item p {
  margin: 0.2rem 0 0.15rem;
  color: var(--ink-muted);
  line-height: 1.55;
  max-width: 38rem;
}

.zip-lookup-status a {
  color: var(--brand);
  font-weight: 650;
}

.summary-fee-note {
  margin: 0.15rem 0 0;
  color: var(--ink-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.checkout-email-note,
.availability-note,
.thankyou-email-note {
  margin: 0.35rem 0 0;
  color: var(--ink-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.availability-note {
  margin-top: 0.85rem;
}

.pdp-policy-note {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 1rem 0 0;
  padding: 0.75rem 0 0;
  border-top: 1px solid rgba(196, 207, 199, 0.45);
  color: var(--ink-muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.pdp-policy-icon {
  flex: 0 0 auto;
  display: inline-flex;
  margin-top: 0.12rem;
  color: var(--danger);
  opacity: 0.9;
}

.pdp-policy-copy p {
  margin: 0;
}

.pdp-policy-note a {
  display: inline-block;
  margin-top: 0.3rem;
  color: var(--brand);
  font-weight: 650;
  font-size: 0.78rem;
  text-decoration: none;
}

.pdp-policy-note a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.shop-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.55rem;
  max-width: 32rem;
  margin: 1rem 0 1.25rem;
}

.shop-search input[type="search"] {
  min-height: 2.85rem;
}

.shop-facet--sort {
  border-top-style: dashed;
}

.shop-results-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1.25rem;
  margin: 0 0 1.15rem;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.shop-results-meta p {
  margin: 0;
}

.shop-clear-filters {
  color: var(--brand);
  font-weight: 650;
  text-decoration: none;
}

.shop-clear-filters:hover {
  text-decoration: underline;
}

.saved-address-banner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem 1.5rem;
  margin: 0 0 1.5rem;
  padding: 1rem 0 1.15rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.saved-address-banner strong {
  display: block;
  margin-bottom: 0.25rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

.saved-address-banner p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.45;
  max-width: 36rem;
}

.cart-upsells {
  margin-top: 1rem;
  padding-top: 0.5rem;
}

.service-status-callout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin: 1.25rem 0;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-status-callout .btn {
  width: auto;
}

.guide-index {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 3.5rem;
}

.prose .btn {
  margin-right: 0.75rem;
  margin-top: 0.35rem;
}

@media (max-width: 640px) {
  .cart-line {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .cart-thumb {
    width: 88px;
  }

  .cart-line .line-total {
    grid-column: 2;
    justify-self: start;
    padding-top: 0;
  }
}

.checkbox-label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  font-weight: 400;
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.checkbox-label input[type="checkbox"] {
  width: 1.15rem;
  height: 1.15rem;
  min-height: 0;
  margin-top: 0.2rem;
  accent-color: var(--brand);
}

.checkbox-label strong {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.checkbox-label small {
  display: block;
  color: var(--ink-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.order-lookup-form {
  max-width: 28rem;
  margin-bottom: 1.75rem;
}

.order-summary-card {
  text-align: left;
  max-width: 32rem;
  margin: 1.5rem 0 1.75rem;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--line);
}

.order-summary-card h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
}

.order-details {
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.order-details > div {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 0.75rem;
}

.order-details dt {
  margin: 0;
  color: var(--ink-muted);
  font-weight: 650;
}

.order-details dd {
  margin: 0;
}

.thankyou-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem 1.35rem;
}

.thankyou {
  text-align: center;
  padding: 5rem 0 4.5rem;
  position: relative;
}

.thankyou::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(520px 220px at 50% 20%, rgba(176, 196, 178, 0.28), transparent 70%);
  pointer-events: none;
}

.thankyou > * {
  position: relative;
}

.thankyou h1 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.03em;
}

.thankyou .leaf-divider {
  margin-inline: auto;
}

.thankyou p {
  margin: 0 auto 1.6rem;
  color: var(--ink-muted);
  max-width: 28rem;
  font-size: 1.08rem;
}

.site-footer {
  margin-top: 0;
  padding: 3rem 0 2.25rem;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(238, 243, 239, 0.85) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 1.75rem 1.5rem;
}

.footer-brand-col {
  min-width: 0;
}

.site-footer .footer-brand {
  margin: 0 0 0.65rem;
  color: var(--brand);
}

.site-footer h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}

.site-footer p,
.site-footer a {
  color: var(--ink-muted);
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--brand);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-top: 1.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.footer-copy {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.92rem;
  min-width: 0;
}

.site-footer .payment-icons {
  list-style: none;
  margin: 0 0 0 auto;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

.site-footer .payment-icons li {
  margin: 0;
  padding: 0;
}

.payment-icon {
  display: inline-flex;
  color: var(--brand);
  line-height: 0;
}

.payment-icon svg {
  display: block;
}

@media (max-width: 560px) {
  .footer-bottom {
    flex-wrap: wrap;
  }

  .site-footer .payment-icons {
    width: 100%;
    margin-left: 0;
    justify-content: flex-end;
  }
}

.empty {
  padding: 2rem 0 3rem;
  color: var(--ink-muted);
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  height: 2.4rem;
  padding: 0 0.55rem;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  font-weight: 650;
}

.pagination .active span {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-bloom {
  from {
    transform: scale(1.08) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.18) translate3d(-2.5%, 1.8%, 0);
  }
}

@keyframes hero-blink {
  0%,
  100% {
    filter: brightness(1);
  }
  40% {
    filter: brightness(1.04);
  }
  52% {
    filter: brightness(0.97);
  }
  64% {
    filter: brightness(1.06);
  }
  78% {
    filter: brightness(1);
  }
}

@keyframes hero-dots {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 5px 10px;
  }
}

/* Forced on for now — even when OS “reduce motion” is enabled. */
@media (prefers-reduced-motion: reduce) {
  .hero-media img {
    animation:
      hero-bloom 14s ease-in-out infinite alternate,
      hero-blink 4.5s ease-in-out infinite !important;
    transform: scale(1.08);
    will-change: transform, filter;
  }

  .hero-media::before {
    animation: hero-dots 10s linear infinite !important;
  }
}

/* Places / maps directory */
.place-search {
  margin-bottom: 2.25rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--line);
}

.place-search-label {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.place-search-fields {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 0.9fr) minmax(0, 0.7fr) auto;
  gap: 0.75rem 0.85rem;
  align-items: end;
}

.place-search-fields label {
  margin: 0;
}

.place-search-fields select {
  width: 100%;
  min-height: 2.85rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line-strong, var(--line));
  background: #fff;
  font: inherit;
  color: inherit;
}

.place-search-submit {
  display: flex;
  align-items: end;
}

.place-search-submit .btn {
  width: 100%;
  white-space: nowrap;
}

.place-search-hint,
.place-search-count {
  margin: 0.75rem 0 0;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.place-search-error {
  margin: 0.65rem 0 0;
  color: #8a2f2f;
  font-size: 0.95rem;
  font-weight: 650;
}

.place-search-count {
  margin: 0 0 1rem;
  font-weight: 650;
  color: var(--ink);
}

.place-dir-browse {
  margin-top: 0.25rem;
}

.place-dir-browse-title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.place-dir-toolbar {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.place-dir-search input {
  max-width: 22rem;
}

.place-az {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
}

.place-az a {
  color: var(--ink-muted);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  min-width: 1.1rem;
}

.place-az a:hover {
  color: var(--brand);
  text-decoration: underline;
}

.place-state-directory {
  display: grid;
  gap: 1.35rem;
}

.place-letter-heading {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: -0.02em;
}

.place-state-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.35rem 1.75rem;
}

.place-state-grid--dense {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.15rem 1.25rem;
}

.place-state-grid a {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
}

.place-state-grid--dense a {
  padding: 0.4rem 0;
}

.place-state-grid a:hover .place-state-name {
  color: var(--brand);
}

.place-state-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.place-state-grid--dense .place-state-name {
  font-size: 1.12rem;
}

.place-state-meta {
  font-size: 0.85rem;
  color: var(--ink-muted);
  white-space: nowrap;
  align-self: center;
}

.place-city-list,
.place-facility-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 44rem;
}

.place-city-list a,
.place-facility-list a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
}

.place-city-list a:hover,
.place-facility-list a:hover {
  color: var(--brand);
}

.place-facility-list a {
  flex-direction: column;
  gap: 0.25rem;
}

.place-facility-list strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.place-facility-list span,
.place-city-count {
  font-size: 0.95rem;
  color: var(--ink-muted);
}

.place-cta-note {
  margin-top: 2.25rem;
  color: var(--ink-muted);
}

.place-cta-note a {
  color: var(--brand);
  font-weight: 650;
}

.place-show-section {
  padding-top: 0.5rem;
}

.place-show-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 2.25rem 2.5rem;
  align-items: start;
}

.place-type-label {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: -0.01em;
}

.place-address {
  font-style: normal;
  font-size: 1.12rem;
  line-height: 1.55;
  margin: 0 0 0.85rem;
}

.place-phone {
  margin: 0 0 1.4rem;
}

.place-phone a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--brand);
  font-weight: 650;
  text-decoration: none;
}

.place-phone a:hover {
  text-decoration: underline;
}

.place-phone a:hover .place-phone-icon {
  border-color: var(--brand);
  background: rgba(36, 56, 44, 0.08);
  color: var(--brand-hover);
}

.place-phone-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brand);
  background: rgba(36, 56, 44, 0.04);
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.place-use-form {
  margin: 0 0 1rem;
}

.place-map-col {
  min-width: 0;
}

.place-map-wrap {
  position: relative;
}

.place-map-wrap::before {
  content: "";
  position: absolute;
  inset: 12% -4% 8% 10%;
  background: linear-gradient(160deg, rgba(176, 196, 178, 0.28), rgba(220, 230, 223, 0.5));
  z-index: 0;
  border-radius: calc(var(--radius-media) + 6px);
}

.place-map {
  position: relative;
  z-index: 1;
  width: 100%;
  height: min(420px, 55vh);
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: var(--radius-media);
  overflow: hidden;
  background: var(--bg-soft);
  box-shadow: 0 12px 28px rgba(21, 32, 25, 0.1);
}

.place-map--empty {
  display: grid;
  place-items: center;
  padding: 1.5rem;
  color: var(--ink-muted);
  text-align: center;
  border-radius: var(--radius-media);
}

.place-map-note {
  margin: 0.85rem 0 0;
  color: var(--ink-muted);
  font-size: 0.85rem;
  line-height: 1.4;
  text-align: center;
}

.place-home-section {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.place-home-links {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem 1.5rem;
  align-items: stretch;
}

.place-home-links > li,
.guide-home-links > li {
  display: flex;
  min-height: 100%;
}

.place-home-links a {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 1.15rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
  transition: color 0.18s ease, border-color 0.18s ease;
}

.place-home-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  margin-top: 0.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brand);
  background: rgba(36, 56, 44, 0.04);
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.place-home-copy {
  display: grid;
  gap: 0.3rem;
  min-width: 0;
}

.place-home-links strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.place-home-copy > span {
  color: var(--ink-muted);
  font-size: 0.92rem;
  line-height: 1.4;
}

.place-home-links a:hover {
  border-bottom-color: var(--brand);
}

.place-home-links a:hover strong {
  color: var(--brand);
}

.place-home-links a:hover .place-home-icon {
  color: var(--brand-hover);
  border-color: var(--brand);
  background: rgba(36, 56, 44, 0.08);
}

.guide-home-links {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 1.75rem;
  row-gap: 0;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
}

.guide-home-links a {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 1.15rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 0;
  color: inherit;
  text-decoration: none;
  transition: color 0.18s ease, box-shadow 0.18s ease;
}

.guide-home-links a:hover {
  box-shadow: inset 0 -1px 0 var(--brand);
}

.guide-home-links a:hover strong {
  color: var(--brand);
}

.guide-home-links a:hover .place-home-icon {
  color: var(--brand-hover);
  border-color: var(--brand);
  background: rgba(36, 56, 44, 0.08);
}

.guide-home-links strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.guide-home-links .place-home-copy > span {
  color: var(--ink-muted);
  font-size: 0.92rem;
  line-height: 1.4;
}

@media (max-width: 1100px) {
  .place-home-links,
  .guide-home-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .product-grid--home,
  .product-grid--browse {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .place-search-fields {
    grid-template-columns: 1fr 1fr;
  }

  .place-search-submit {
    grid-column: 1 / -1;
  }

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

  .place-show-layout,
  .place-home-links,
  .guide-home-links,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  /* Tablet: brand full-width, then 2×2 link columns */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 880px) {
  .place-search-fields {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .pdp,
  .split {
    grid-template-columns: 1fr;
  }

  .logo-flourish {
    display: none;
  }

  .logo-word {
    font-size: 2.1rem;
  }

  .pdp-media::before,
  .place-map-wrap::before {
    display: none;
  }

  .summary {
    position: static;
  }

  .form-row,
  .hero-zip-row {
    grid-template-columns: 1fr;
  }

  .trust-bar-inner {
    justify-content: center;
    text-align: center;
  }

  .trust-bar-inner span:nth-child(2),
  .trust-bar-inner span:nth-child(3) {
    display: none;
  }

  .hero {
    min-height: min(70vh, 560px);
    align-items: end;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(245, 247, 245, 0.2) 0%, rgba(245, 247, 245, 0.82) 55%, rgba(245, 247, 245, 0.96) 100%);
  }

  .hero-overlay {
    padding: 2.5rem 0 2.75rem;
  }

  .hero-copy {
    max-width: none;
  }

  .main-nav {
    gap: 0.75rem;
  }

  .main-nav .nav-desktop {
    display: none;
  }

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

  .pdp-sticky {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 45;
    padding: 0.75rem 0 calc(0.75rem + env(safe-area-inset-bottom, 0px));
    background: rgba(250, 251, 250, 0.96);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(10px);
    box-shadow: 0 -8px 24px rgba(21, 32, 25, 0.08);
  }

  .pdp-sticky-inner {
    width: min(100% - 2rem, var(--max));
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
  }

  .pdp-sticky-copy {
    display: grid;
    gap: 0.15rem;
    min-width: 0;
  }

  .pdp-sticky-copy strong {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .pdp-sticky-copy span {
    font-weight: 700;
    font-size: 0.95rem;
  }

  .pdp-sticky .btn {
    flex: 0 0 auto;
    min-height: 2.6rem;
    padding-inline: 1.1rem;
  }

  body:has(.pdp-sticky) {
    padding-bottom: 5.5rem;
  }
}

@media (max-width: 520px) {
  .product-grid--home,
  .product-grid--browse {
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem 0.75rem;
  }

  .product-tile h3 {
    font-size: 1.02rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .place-state-grid,
  .place-state-grid--dense {
    grid-template-columns: 1fr 1fr;
  }
}
