:root {
  --ivory: #f7f3ea;
  --warm-white: #fffdf8;
  --parchment: #efe4d4;
  --linen: #d8cfc1;
  --sage: #767b62;
  --soft-sage: #b2b79d;
  --evergreen: #2f4b32;
  --deep-green: #203622;
  --blush: #d7a69a;
  --peach: #e8b98f;
  --ink: #3d4237;
  --muted: #70765f;
  --border: rgba(47, 75, 50, 0.18);
  --hairline: rgba(47, 75, 50, 0.1);
  --surface: rgba(255, 253, 248, 0.72);
  --shadow-soft: 0 22px 70px rgba(32, 54, 34, 0.08);
  --radius: 8px;
  --serif: Georgia, "Times New Roman", serif;
  --display-serif: Didot, "Bodoni 72", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, Helvetica, Arial, sans-serif;
  --site-pad: clamp(28px, 5vw, 78px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 0%, rgba(216, 166, 154, 0.16), transparent 28%),
    linear-gradient(180deg, var(--warm-white), var(--ivory) 42%, var(--warm-white));
  font-family: var(--sans);
  line-height: 1.45;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px var(--site-pad);
  background: rgba(255, 253, 248, 0.78);
  border-bottom: 1px solid var(--hairline);
  backdrop-filter: blur(22px) saturate(1.08);
  isolation: isolate;
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 248, 0.97);
  box-shadow: 0 12px 28px rgba(38, 61, 47, 0.08);
}

@media (min-width: 961px) {
  body:not(.home-page) {
    padding-top: 74px;
  }

  body:not(.home-page) .site-header {
    position: fixed;
    right: 0;
    left: 0;
    width: 100%;
  }
}

.brand img {
  width: 154px;
}

.brand img.nav-logo-icon {
  display: block;
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand,
.nav,
.header-cta {
  position: relative;
  z-index: 5001;
  pointer-events: auto;
}

.brand {
  flex: 0 0 auto;
}

.nav {
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav a,
.header-cta,
.text-link,
.pathway-card a,
.site-footer a {
  text-decoration: none;
}

.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  color: var(--muted);
  padding: 0 13px;
  cursor: pointer;
  pointer-events: auto;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease;
}

.nav a::after {
  content: none;
}

.nav a:hover,
.nav a[aria-current="page"],
.text-link:hover,
.pathway-card a:hover {
  color: var(--evergreen);
}

.nav a:hover,
.nav a[aria-current="page"] {
  background: rgba(52, 83, 63, 0.08);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid rgba(52, 83, 63, 0.26);
  border-radius: 999px;
  padding: 11px 17px;
  color: var(--evergreen);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.06em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.header-cta:hover {
  background: var(--evergreen);
  border-color: var(--evergreen);
  color: var(--warm-white);
}

.nav-toggle {
  display: none;
}

.section {
  padding: clamp(74px, 8vw, 112px) var(--site-pad);
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 620px;
  align-items: end;
  padding: clamp(120px, 13vw, 190px) var(--site-pad) clamp(70px, 8vw, 110px);
  overflow: hidden;
  background: var(--deep-green);
  color: var(--warm-white);
}

.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
}

.page-hero::before {
  background-position: center;
  background-size: cover;
  opacity: 0.58;
}

.page-hero::after {
  background:
    linear-gradient(90deg, rgba(38, 61, 47, 0.84), rgba(38, 61, 47, 0.5) 48%, rgba(38, 61, 47, 0.12)),
    linear-gradient(180deg, rgba(38, 61, 47, 0.04), rgba(38, 61, 47, 0.38));
}

.page-hero > div {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.page-hero .eyebrow {
  color: var(--parchment);
}

.page-copy {
  max-width: 690px;
  margin: 26px 0 0;
  color: rgba(255, 253, 248, 0.84);
  font-size: clamp(20px, 2vw, 27px);
}

.wedding-page::before {
  background-image: url("./assets/optimized/floral-arch.jpg");
}

.events-page::before {
  background-image: url("./assets/events-header-table.png");
  background-position: center 54%;
}

.floral-page::before {
  background-image: url("./assets/floral-bar-board/cad-6279.jpg");
  background-position: center 44%;
  opacity: 0.76;
}

.floral-page::after {
  background:
    linear-gradient(90deg, rgba(31, 48, 36, 0.76), rgba(31, 48, 36, 0.42) 42%, rgba(31, 48, 36, 0.08) 74%),
    linear-gradient(180deg, rgba(31, 48, 36, 0.08), rgba(31, 48, 36, 0.58));
}

.floral-page > div {
  max-width: 760px;
}

.floral-page .page-copy {
  max-width: 620px;
}

.value-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.value-strip article {
  min-height: 230px;
  padding: clamp(28px, 4vw, 48px);
  background: var(--warm-white);
}

.value-strip span {
  display: block;
  margin-bottom: 34px;
  color: var(--blush);
  font-family: var(--serif);
  font-size: 34px;
}

.value-strip strong {
  display: block;
  max-width: 300px;
  color: var(--evergreen);
  font-family: var(--serif);
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 400;
  line-height: 1.02;
}

.value-strip p {
  max-width: 360px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) 1fr;
  align-items: stretch;
  padding: 0;
  background: var(--deep-green);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  opacity: 0.62;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(38, 61, 47, 0.86) 0%, rgba(38, 61, 47, 0.62) 42%, rgba(38, 61, 47, 0.14) 78%),
    linear-gradient(180deg, rgba(38, 61, 47, 0.04), rgba(38, 61, 47, 0.34));
}

.hero-panel {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 640px;
  padding: 110px 0 110px var(--site-pad);
  color: var(--warm-white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--parchment);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.98;
}

h1 {
  font-size: clamp(58px, 6vw, 94px);
}

h2 {
  font-size: clamp(42px, 5vw, 76px);
}

h3 {
  font-size: 28px;
}

.hero-copy {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 253, 248, 0.86);
  font-size: clamp(20px, 2vw, 27px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-light {
  background: var(--ivory);
  color: var(--evergreen);
}

.button-ghost {
  border-color: rgba(255, 253, 248, 0.62);
  color: var(--warm-white);
}

.button-dark {
  background: var(--evergreen);
  color: var(--warm-white);
}

.hero-note {
  position: absolute;
  z-index: 2;
  right: var(--site-pad);
  bottom: 34px;
  display: flex;
  gap: 18px;
  color: rgba(255, 253, 248, 0.78);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-note span {
  border-top: 1px solid rgba(255, 253, 248, 0.42);
  padding-top: 10px;
}

.intro {
  border-bottom: 1px solid var(--hairline);
}

.reviews {
  display: grid;
  grid-template-columns: minmax(320px, 0.7fr) minmax(540px, 1fr);
  gap: clamp(48px, 8vw, 118px);
  align-items: start;
  background: #ffffff;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.reviews-copy {
  max-width: 560px;
}

.reviews-copy h2 {
  font-size: clamp(30px, 3vw, 50px);
  line-height: 1.08;
}

.reviews-rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  padding: 10px 16px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  color: var(--evergreen);
}

.reviews-rating strong {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 650;
  line-height: 1;
}

.reviews-rating span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 42px);
}

.review-card {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px 0 0;
  background: transparent;
  border-top: 1px solid rgba(47, 75, 50, 0.22);
}

.review-card p {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(16px, 1.22vw, 19px);
  font-weight: 400;
  line-height: 1.56;
}

.review-card span {
  display: block;
  margin-top: 30px;
  color: var(--sage);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.intro-grid,
.section-heading {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(360px, 1fr);
  gap: clamp(44px, 7vw, 110px);
  align-items: start;
}

.intro-copy,
.section-heading p,
.feature-content p,
.bar-content p,
.inquiry-intro p {
  color: var(--muted);
  font-size: 18px;
}

.text-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--evergreen);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.pathways {
  background: var(--warm-white);
}

.section-heading {
  margin-bottom: 48px;
}

.section-heading.compact {
  max-width: 1040px;
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pathway-card {
  display: grid;
  grid-template-rows: 390px 1fr;
  min-height: 596px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 0 0 rgba(38, 61, 47, 0);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.pathway-card:hover {
  border-color: rgba(52, 83, 63, 0.2);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.pathway-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pathway-card div {
  padding: 28px;
}

.pathway-card p,
.gallery-card span {
  margin: 0 0 12px;
  color: var(--sage);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pathway-card h3 {
  min-height: 86px;
}

.pathway-card a {
  display: inline-block;
  margin-top: 24px;
  color: var(--evergreen);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.feature {
  display: grid;
  grid-template-columns: minmax(380px, 0.8fr) minmax(420px, 1fr);
  gap: clamp(48px, 7vw, 104px);
  align-items: center;
  background: var(--ivory);
}

.feature-content {
  max-width: 620px;
}

.feature-content > p {
  margin: 28px 0;
}

.price-list {
  display: grid;
  gap: 0;
  margin: 28px 0 18px;
  background: transparent;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
}

.price-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px;
  background: rgba(255, 253, 248, 0.66);
  border-bottom: 1px solid var(--hairline);
}

.price-list div:last-child {
  border-bottom: 0;
}

.price-list span {
  color: var(--ink);
}

.price-list strong {
  color: var(--evergreen);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-note {
  color: var(--muted);
  font-size: 13px;
}

.feature-images {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 18px;
  align-items: end;
}

.feature-images img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  border-radius: var(--radius);
}

.feature-images .tall {
  height: 610px;
}

.page-feature {
  background: var(--warm-white);
}

.service-band {
  background: var(--ivory);
  border-top: 1px solid var(--hairline);
}

.event-pathways {
  background: var(--warm-white);
}

.event-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.events-capability .section-heading {
  margin-bottom: clamp(26px, 4vw, 46px);
}

.event-type-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.event-type-row article {
  display: flex;
  min-height: 112px;
  flex-direction: column;
  justify-content: flex-start;
  padding: 20px;
  border: 1px solid rgba(47, 75, 50, 0.12);
  border-radius: 18px;
  background: #fbfaf6;
}

.event-type-row span {
  display: block;
  color: rgba(61, 66, 55, 0.92);
  font-size: 11px;
  font-weight: 560;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.event-type-row p {
  margin: 16px 0 0;
  color: rgba(112, 118, 95, 0.72);
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.35;
}

.event-include-heading {
  margin-top: clamp(24px, 4vw, 46px);
  margin-bottom: 18px;
}

.event-include-heading h2 {
  max-width: 620px;
}

.refined-event-grid {
  gap: 14px;
}

.event-choice-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(260px, 1fr);
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.74);
}

.event-choice-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.event-choice-card div {
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.event-choice-card div > span {
  margin-bottom: 28px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.event-choice-card h3 {
  font-size: clamp(30px, 3vw, 46px);
}

.event-choice-card p {
  margin: 20px 0 0;
  color: var(--muted);
}

.event-choice-card.compact-card {
  grid-template-columns: minmax(180px, 0.78fr) minmax(260px, 1fr);
  min-height: 310px;
}

.event-choice-card.compact-card img {
  min-height: 310px;
}

.event-choice-card.compact-card div {
  padding: 26px;
}

.event-choice-card.compact-card div > span {
  margin-bottom: 18px;
}

.event-choice-card.compact-card h3 {
  font-size: clamp(28px, 2.45vw, 40px);
}

.event-choice-card.compact-card p {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.55;
}

.refined-event-grid .event-choice-card.compact-card {
  min-height: 232px;
  background: rgba(255, 255, 255, 0.82);
  border-radius: var(--radius);
}

.refined-event-grid .event-choice-card.compact-card img {
  min-height: 232px;
}

.refined-event-grid .event-choice-card.compact-card div {
  padding: 20px;
}

.refined-event-grid .event-choice-card.compact-card div > span {
  margin-bottom: 14px;
}

.refined-event-grid .event-choice-card.compact-card p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.45;
}

.event-choice-card a {
  margin-top: auto;
  padding-top: 28px;
  color: var(--evergreen);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.mini-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.mini-card {
  display: block;
  min-height: 260px;
  padding: 28px;
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  color: var(--ink);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.mini-card:hover {
  border-color: rgba(52, 83, 63, 0.2);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.mini-card span {
  display: block;
  margin-bottom: 54px;
  color: var(--blush);
  font-family: var(--serif);
  font-size: 34px;
}

.mini-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.04;
}

.mini-card p {
  margin: 16px 0 0;
  color: var(--muted);
}

.events {
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.04), transparent 42%),
    var(--evergreen);
  color: var(--warm-white);
}

.events .eyebrow,
.events .section-heading p {
  color: var(--parchment);
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.event-grid article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.035);
}

.event-grid span,
.steps span {
  display: block;
  margin-bottom: 48px;
  color: var(--peach);
  font-family: var(--serif);
  font-size: 34px;
}

.event-grid p {
  color: rgba(255, 253, 248, 0.78);
}

.event-page-grid {
  padding-top: clamp(74px, 8vw, 112px);
}

.support-options {
  background: var(--ivory);
  border-top: 1px solid var(--hairline);
}

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

.support-grid article {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 32px;
  background: rgba(255, 253, 248, 0.74);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.support-grid article:hover {
  border-color: rgba(52, 83, 63, 0.2);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.support-grid span {
  margin-bottom: 56px;
  color: var(--blush);
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
}

.support-grid h3 {
  color: var(--evergreen);
  font-size: clamp(30px, 2.8vw, 42px);
}

.support-grid p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.support-grid a {
  margin-top: auto;
  padding-top: 30px;
  color: var(--evergreen);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.event-support-grid article {
  min-height: 270px;
}

.event-support-grid span {
  margin-bottom: 36px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.event-support-grid h3 {
  font-size: clamp(24px, 2.1vw, 32px);
}

.event-format-note {
  display: grid;
  grid-template-columns: minmax(160px, 0.28fr) minmax(360px, 0.7fr) minmax(260px, 0.6fr) auto;
  gap: clamp(18px, 3vw, 42px);
  align-items: center;
  background: #fbfaf6;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.event-format-note .eyebrow,
.event-format-note h2,
.event-format-note p {
  margin: 0;
}

.event-format-note h2 {
  max-width: 560px;
  font-size: clamp(25px, 2.4vw, 36px);
}

.event-format-note p {
  color: var(--muted);
  font-size: clamp(15px, 1.3vw, 17px);
}

.event-pricing-guide {
  display: grid;
  grid-template-columns: minmax(320px, 0.76fr) minmax(420px, 1fr);
  gap: clamp(44px, 7vw, 104px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(216, 166, 154, 0.12), transparent 42%),
    var(--ivory);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.event-pricing-guide h2 {
  max-width: 660px;
}

.event-pricing-guide p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}

.price-pill-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.price-pill-grid article {
  min-height: 170px;
  padding: 24px;
  background: rgba(255, 253, 248, 0.74);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
}

.price-pill-grid span {
  color: var(--sage);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-pill-grid strong {
  display: block;
  margin-top: 34px;
  color: var(--evergreen);
  font-family: var(--serif);
  font-size: clamp(28px, 2.5vw, 38px);
  font-weight: 400;
  line-height: 1.02;
}

.event-mini-portfolio {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(520px, 1fr);
  gap: clamp(36px, 6vw, 82px);
  align-items: start;
  background: #fff;
  border-top: 1px solid var(--hairline);
}

.event-mini-portfolio p {
  max-width: 440px;
  color: var(--muted);
}

.event-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.event-portfolio-grid img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  aspect-ratio: 0.92;
  object-fit: cover;
  border-radius: var(--radius);
}

.event-portfolio-grid img:nth-child(2),
.event-portfolio-grid img:nth-child(5) {
  aspect-ratio: 1.18;
}

.event-quote-note {
  display: grid;
  grid-template-columns: minmax(520px, 1fr) auto;
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
  background: #fbfaf6;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.event-quote-note .eyebrow {
  margin: 0;
}

.event-quote-note h2 {
  max-width: 780px;
  margin: 12px 0 0;
}

.event-quote-note p {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--muted);
}

.image-story {
  display: grid;
  grid-template-columns: minmax(380px, 0.95fr) minmax(360px, 1fr);
  gap: clamp(44px, 7vw, 104px);
  align-items: center;
  background: var(--warm-white);
}

.image-story img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
  border-radius: var(--radius);
}

.image-story p {
  color: var(--muted);
  font-size: 18px;
}

.gallery {
  background: var(--warm-white);
}

.gallery-page {
  min-height: calc(100vh - 74px);
}

.gallery-page .section-heading {
  align-items: end;
}

.gallery-page h1 {
  font-size: clamp(58px, 6vw, 94px);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
}

.filter {
  border: 1px solid rgba(52, 83, 63, 0.16);
  background: transparent;
  border-radius: 999px;
  padding: 9px 15px;
  color: var(--muted);
  font: inherit;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.filter.active {
  background: var(--evergreen);
  color: var(--warm-white);
}

.subcategory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 0 34px;
}

.subcategory-card {
  display: grid;
  grid-template-rows: 270px 1fr;
  gap: 0;
  min-height: 424px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: rgba(247, 243, 234, 0.78);
  padding: 0;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.subcategory-card:hover,
.subcategory-card.active {
  border-color: rgba(52, 83, 63, 0.2);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.subcategory-card.is-empty {
  background: var(--warm-white);
}

.subcategory-card.is-empty img {
  opacity: 0.72;
  filter: saturate(0.7);
}

.subcategory-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: var(--parchment);
}

.subcategory-card img[src*="wix-gallery"] {
  transform: scale(1.42);
  transform-origin: center;
}

.subcategory-card span {
  display: block;
  margin: 22px 22px 12px;
  color: var(--sage);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.subcategory-card:hover span,
.subcategory-card.active span,
.subcategory-card:hover p,
.subcategory-card.active p {
  color: var(--evergreen);
}

.subcategory-card strong {
  display: block;
  margin: 0 22px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.08;
}

.subcategory-card p {
  margin: 14px 22px 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.gallery-drilldown {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 20px 0 24px;
  background: transparent;
  color: var(--ink);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.gallery-drilldown h3 {
  font-size: clamp(38px, 4vw, 62px);
}

.gallery-drilldown p,
.gallery-drilldown span {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-drilldown span {
  display: inline-block;
  margin-top: 10px;
}

.back-button {
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: transparent;
  padding: 11px 15px;
  color: var(--evergreen);
  font: inherit;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

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

.gallery-grid.is-floral-board {
  display: grid;
  grid-template-columns: repeat(var(--board-columns, 4), minmax(0, 1fr));
  align-items: start;
  gap: 8px;
  padding: 4px 0;
}

.floral-board-column {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 8px;
}

.gallery-card {
  display: grid;
  grid-template-rows: minmax(320px, 1fr) auto;
  background: rgba(247, 243, 234, 0.74);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.gallery-card:hover {
  border-color: rgba(52, 83, 63, 0.2);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.gallery-card[hidden] {
  display: none;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.gallery-card div {
  padding: 18px 19px 20px;
}

.gallery-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
  line-height: 1.08;
}

.gallery-card p {
  margin: 0;
  color: var(--muted);
}

.gallery-card.is-compare-card {
  display: flex;
  min-height: 0;
  flex-direction: column;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
  transition: none;
}

.gallery-card.is-compare-card:hover {
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.gallery-card.is-compare-card img {
  display: block;
  flex: 0 0 auto;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  object-fit: cover;
  background: var(--warm-white);
}

.gallery-card.is-compare-card div {
  display: grid;
  gap: 6px;
  padding: 14px 2px 0;
  background: transparent;
  overflow: visible;
}

.gallery-card.is-compare-card span {
  display: block;
  margin: 0;
  overflow: visible;
  color: var(--sage);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-card.is-compare-card strong {
  display: block;
  margin: 0;
  overflow: visible;
  color: var(--ink);
  font-size: clamp(17px, 1.22vw, 20px);
  line-height: 1.14;
  overflow-wrap: anywhere;
}

.gallery-card.is-compare-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.gallery-card.is-compare-card .compare-line {
  display: block;
  margin: 0;
  overflow: visible;
  color: var(--sage);
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: 0.01em;
  white-space: normal;
}

.floral-board-card {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  background: transparent;
  border: none;
  border-radius: 14px;
  box-shadow: none;
  overflow: hidden;
}

.floral-board-card:hover {
  border-color: transparent;
  box-shadow: none;
  transform: translateY(-2px);
}

.floral-board-card img,
.floral-board-card video {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  border-radius: 14px;
  object-fit: cover;
}

.floral-board-card.is-video video {
  max-height: 520px;
  object-fit: cover;
}

.floral-board-card span {
  display: none;
}

.floral-board-card:hover span {
  display: none;
}

.floral-preview {
  position: relative;
  overflow: hidden;
  background: var(--warm-white);
  border-bottom: 1px solid var(--hairline);
}

.carousel-shell {
  position: relative;
}

.carousel-actions {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  pointer-events: none;
}

.carousel-arrow {
  --arrow-shift: 0px;
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(52, 83, 63, 0.2);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 16px 34px rgba(31, 48, 36, 0.16);
  color: var(--evergreen);
  font: 500 20px var(--sans);
  cursor: pointer;
  transform: translateX(var(--arrow-shift));
  pointer-events: auto;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.carousel-arrow[data-carousel-prev] {
  --arrow-shift: -8px;
}

.carousel-arrow[data-carousel-next] {
  --arrow-shift: 8px;
}

.carousel-arrow:hover {
  background: var(--evergreen);
  color: var(--warm-white);
  box-shadow: 0 18px 40px rgba(31, 48, 36, 0.22);
  transform: translateX(var(--arrow-shift)) scale(1.03);
}

.carousel-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 4px 0 8px;
  scroll-padding-left: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-gallery-link {
  position: relative;
  z-index: 4;
  width: max-content;
  max-width: 100%;
  margin-top: 26px;
  box-shadow: 0 14px 32px rgba(31, 48, 36, 0.14);
}

.carousel-card {
  flex: 0 0 clamp(290px, 26vw, 390px);
  height: var(--carousel-card-height, clamp(390px, 34vw, 500px));
  overflow: hidden;
  border: 1px solid var(--hairline);
  border-radius: 18px;
  background: var(--parchment);
  scroll-snap-align: start;
}

.carousel-card.wide {
  flex-basis: clamp(430px, 44vw, 650px);
}

.carousel-card.tall {
  flex-basis: clamp(275px, 25vw, 370px);
}

.carousel-card img,
.carousel-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-card.is-video {
  flex-basis: clamp(285px, 26vw, 390px);
}

.gallery-status {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.gallery-note {
  margin-top: 26px;
  padding: 16px 18px;
  background: rgba(239, 228, 212, 0.58);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
}

.floral-bar {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(360px, 1fr);
  gap: clamp(44px, 7vw, 104px);
  align-items: center;
  background: var(--ivory);
}

.floral-bar-page {
  background: var(--warm-white);
}

.bar-media img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  border-radius: var(--radius);
}

.bar-content .subhead {
  margin: 12px 0 24px;
  color: var(--evergreen);
  font-family: var(--serif);
  font-size: 30px;
}

.event-fit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.event-fit-list span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(52, 83, 63, 0.18);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.68);
  padding: 9px 14px;
  color: var(--evergreen);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.floral-pricing {
  background:
    linear-gradient(135deg, rgba(216, 166, 154, 0.14), transparent 38%),
    var(--ivory);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.pricing-intro {
  padding: 28px;
  background: rgba(255, 253, 248, 0.74);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
}

.pricing-intro strong {
  display: block;
  margin-bottom: 12px;
  color: var(--evergreen);
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.02;
}

.pricing-intro p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
}

.pricing-intro span,
.pricing-disclaimer {
  color: var(--sage);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.package-card {
  display: flex;
  min-height: 410px;
  flex-direction: column;
  padding: 30px;
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
}

.package-card.is-featured {
  background: var(--evergreen);
  border-color: var(--evergreen);
  color: var(--warm-white);
}

.package-card span {
  color: var(--sage);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.package-card.is-featured span,
.package-card.is-featured p,
.package-card.is-featured li {
  color: rgba(255, 253, 248, 0.78);
}

.package-card strong {
  display: block;
  margin: 50px 0 4px;
  font-family: var(--serif);
  font-size: clamp(62px, 6vw, 96px);
  font-weight: 400;
  line-height: 0.92;
}

.package-card p {
  margin: 0 0 28px;
  color: var(--muted);
}

.package-card ul {
  display: grid;
  gap: 12px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.package-card li {
  padding-top: 12px;
  border-top: 1px solid var(--hairline);
  color: var(--ink);
}

.package-card.is-featured li {
  border-top-color: rgba(255, 253, 248, 0.18);
}

.pricing-disclaimer {
  max-width: 900px;
  margin: 24px 0 0;
  line-height: 1.7;
}

.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 34px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 34px 0;
}

.steps div {
  padding: 22px;
  background: rgba(255, 253, 248, 0.68);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
}

.steps span {
  margin-bottom: 28px;
  color: var(--sage);
  font-size: 28px;
}

.steps p {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
}

.inquiry {
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(480px, 1fr);
  gap: clamp(46px, 7vw, 100px);
  align-items: start;
  background: var(--warm-white);
}

.inquiry-page {
  min-height: calc(100vh - 74px);
  padding-top: clamp(96px, 10vw, 150px);
}

.inquiry-page h1 {
  font-size: clamp(58px, 6vw, 94px);
}

.page-hero h1,
.gallery-page h1,
.inquiry-page h1 {
  max-width: 980px;
  font-size: clamp(54px, 5.5vw, 86px);
  line-height: 1;
}

.hero h1 {
  font-size: clamp(70px, 8.5vw, 124px);
}

.inquiry-intro {
  position: sticky;
  top: 118px;
}

.inquiry-form {
  display: grid;
  gap: 18px;
  padding: 30px;
  background: rgba(247, 243, 234, 0.76);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--hairline);
  border-radius: 6px;
  background: rgba(255, 253, 248, 0.86);
  padding: 13px 14px;
  color: var(--ink);
  font: 400 16px var(--sans);
  letter-spacing: 0;
  text-transform: none;
}

textarea {
  resize: vertical;
}

.upload {
  padding: 18px;
  background: rgba(239, 228, 212, 0.56);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
}

.upload span,
.form-status {
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.form-status {
  min-height: 20px;
  margin: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(520px, 1.6fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: start;
  padding: clamp(54px, 7vw, 86px) var(--site-pad) 28px;
  background: var(--deep-green);
  color: var(--warm-white);
}

.footer-brand img {
  width: min(250px, 72vw);
}

.footer-brand p {
  max-width: 420px;
  margin: 28px 0 0;
  color: rgba(255, 253, 248, 0.76);
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.65;
}

.footer-links {
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) minmax(150px, 0.75fr) minmax(140px, 0.65fr);
  gap: clamp(28px, 4vw, 58px);
}

.footer-links div,
.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links span {
  margin-bottom: 8px;
  color: rgba(255, 253, 248, 0.55);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-links a,
.footer-bottom a {
  width: fit-content;
  color: var(--parchment);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links p {
  max-width: 280px;
  margin: 8px 0 0;
  color: rgba(255, 253, 248, 0.68);
  font-size: 14px;
  line-height: 1.55;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-top: clamp(36px, 5vw, 62px);
  padding-top: 24px;
  border-top: 1px solid rgba(255, 253, 248, 0.14);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 253, 248, 0.58);
  font-size: 13px;
}

@media (max-width: 960px) {
  .site-header,
  .hero,
  .intro-grid,
  .reviews,
  .section-heading,
  .feature,
  .floral-bar,
  .value-strip,
  .event-choice-grid,
  .event-choice-card,
  .event-type-row,
  .event-mini-portfolio,
  .event-quote-note,
  .event-format-note,
  .event-pricing-guide,
  .support-grid,
  .price-pill-grid,
  .inquiry,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 5000;
  }

  .nav {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .header-cta {
    width: fit-content;
  }

  .hero-panel {
    padding: 110px var(--site-pad);
  }

  .hero-note {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 2;
    flex-wrap: wrap;
    padding: 0 var(--site-pad) 34px;
  }

  .pathway-grid,
  .review-grid,
  .event-grid,
  .event-portfolio-grid,
  .subcategory-grid,
  .mini-card-grid,
  .package-grid,
  .image-story,
  .steps,
  .form-row {
    grid-template-columns: 1fr;
  }

  .pathway-card {
    min-height: auto;
  }

  .event-choice-card.compact-card,
  .event-choice-card.compact-card img {
    min-height: 0;
  }

  .event-type-row article,
  .event-support-grid article {
    min-height: 0;
  }

  .event-type-row p {
    margin-top: 18px;
  }

  .event-quote-note .button {
    width: fit-content;
  }

  .inquiry-intro {
    position: static;
  }

  .gallery-grid.is-floral-board {
    grid-template-columns: repeat(var(--board-columns, 3), minmax(0, 1fr));
  }

  .carousel-actions {
    padding: 0 10px;
  }

  .carousel-arrow {
    width: 46px;
    height: 46px;
  }

  .carousel-arrow[data-carousel-prev] {
    --arrow-shift: -4px;
  }

  .carousel-arrow[data-carousel-next] {
    --arrow-shift: 4px;
  }

  .carousel-card,
  .carousel-card.tall,
  .carousel-card.is-video {
    flex-basis: 72vw;
    height: 440px;
  }

  .carousel-card.wide {
    flex-basis: 84vw;
  }
}

@media (max-width: 640px) {
  .gallery-grid.is-floral-board {
    grid-template-columns: repeat(var(--board-columns, 3), minmax(0, 1fr));
    gap: 5px;
  }

  .floral-board-column {
    gap: 5px;
  }

  .floral-board-card {
    border-radius: 14px;
  }

  .floral-board-card img,
  .floral-board-card video {
    border-radius: 14px;
  }

  .carousel-card,
  .carousel-card.tall,
  .carousel-card.is-video {
    flex-basis: 78vw;
    height: 390px;
    border-radius: 14px;
  }

  .carousel-card.wide {
    flex-basis: 86vw;
  }

  .package-card {
    min-height: 0;
  }
}

/* Selected main-site polish: exploration-inspired homepage without changing the full site direction. */
.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;
}

h2 {
  font-size: clamp(36px, 4.3vw, 64px);
  line-height: 1.04;
}

h3 {
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.08;
}

.page-hero h1,
.gallery-page h1,
.inquiry-page h1 {
  font-size: clamp(48px, 5vw, 76px);
}

.home-page .site-header {
  position: fixed;
  width: 100%;
  min-height: 68px;
  display: grid;
  grid-template-columns: minmax(150px, 1fr) auto minmax(150px, 1fr);
  padding: 9px var(--site-pad);
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}

.home-page .site-header.is-scrolled {
  background: rgba(255, 253, 248, 0.95);
  border-bottom-color: var(--hairline);
  box-shadow: 0 12px 28px rgba(38, 61, 47, 0.08);
}

.home-page .brand {
  justify-self: start;
}

.home-page .brand img {
  width: 142px;
  max-height: 34px;
  object-fit: contain;
  object-position: left center;
  transition: filter 180ms ease, opacity 180ms ease;
}

.home-page .brand img.nav-logo-icon {
  width: 48px;
  height: 48px;
  max-height: none;
  object-position: center;
}

.home-page .site-header:not(.is-scrolled) .brand img {
  filter: none;
  opacity: 0.92;
}

.home-page .site-header.is-scrolled .brand img {
  filter: brightness(0) saturate(100%) invert(30%) sepia(14%) saturate(863%) hue-rotate(87deg) brightness(92%) contrast(89%);
}

.home-page .site-header.is-scrolled .brand img.nav-logo-icon {
  content: url("./assets/pensee-nav-p-icon-green.png?v=20260524-product-media-frame");
  filter: none;
}

.home-page .nav {
  justify-self: center;
}

.home-page .nav a {
  min-height: 34px;
  padding: 7px 11px;
}

.home-page .site-header:not(.is-scrolled) .nav a {
  color: rgba(255, 253, 248, 0.76);
  background: transparent;
}

.home-page .site-header:not(.is-scrolled) .nav a:hover,
.home-page .site-header:not(.is-scrolled) .nav a[aria-current="page"] {
  color: var(--warm-white);
  background: rgba(255, 255, 255, 0.08);
}

.home-page .header-cta {
  justify-self: end;
  min-height: 34px;
  padding: 8px 14px;
}

.home-page .site-header:not(.is-scrolled) .header-cta {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--warm-white);
}

.home-page .hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  background: #17271d;
}

.home-page .hero-media img,
.home-page .hero-media video {
  opacity: 0.88;
  filter: saturate(0.88) contrast(1.04) brightness(0.66);
}

.home-page .hero::after {
  background:
    radial-gradient(circle at 50% 42%, rgba(54, 82, 62, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(16, 30, 22, 0.72), rgba(18, 32, 24, 0.5) 46%, rgba(12, 25, 18, 0.86)),
    linear-gradient(90deg, rgba(19, 37, 27, 0.66), rgba(24, 43, 32, 0.24), rgba(18, 35, 25, 0.66));
}

.home-page .hero-panel {
  justify-self: center;
  align-self: center;
  max-width: 780px;
  padding: clamp(120px, 16vh, 170px) var(--site-pad) clamp(110px, 18vh, 170px);
  text-align: center;
}

.home-page .hero .eyebrow {
  margin-bottom: 30px;
  color: rgba(255, 253, 248, 0.74);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.hero-logo {
  width: min(600px, 82vw);
  max-height: 118px;
  object-fit: contain;
  margin: 0 auto;
  filter: drop-shadow(0 12px 34px rgba(0, 0, 0, 0.28));
}

.home-page .hero-copy {
  max-width: 540px;
  margin: 24px auto 0;
  color: rgba(255, 253, 248, 0.84);
  font-size: clamp(15px, 1.45vw, 18px);
  line-height: 1.65;
}

.home-page .hero-actions {
  justify-content: center;
  margin-top: 32px;
}

.home-page .hero .button {
  min-height: 44px;
  padding: 12px 22px;
}

.home-page .hero-note {
  left: 50%;
  right: auto;
  bottom: max(34px, env(safe-area-inset-bottom));
  transform: translateX(-50%);
  gap: 10px;
}

.home-page .hero-note a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.home-page .hero-note a:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.56);
  color: var(--warm-white);
}

@media (max-width: 960px) {
  h2 {
    font-size: clamp(32px, 9vw, 50px);
  }

  .home-page .site-header {
    position: absolute;
    display: flex;
    min-height: 60px;
    padding: 10px var(--site-pad);
  }

  .home-page .nav,
  .home-page .header-cta {
    display: none;
  }

  .home-page .brand {
    margin: 0 auto;
  }

  .home-page .brand img {
    width: 126px;
    object-position: center;
  }

  .home-page .brand img.nav-logo-icon {
    width: 44px;
    height: 44px;
  }

  .home-page .hero-panel {
    padding: 118px var(--site-pad) 134px;
  }

  .hero-logo {
    width: min(440px, 86vw);
    max-height: 86px;
  }

  .home-page .hero-note {
    width: min(100% - 32px, 520px);
    flex-wrap: wrap;
    justify-content: center;
    bottom: 24px;
  }

  .home-page .hero-note a {
    min-height: 34px;
    padding: 8px 12px;
    font-size: 10px;
  }
}

/* Selected polish v2: whiter surfaces, quieter type, shorter hero, and softer page headers. */
body {
  background: var(--warm-white);
}

.section {
  padding: clamp(66px, 7vw, 104px) var(--site-pad);
}

.intro,
.pathways,
.page-feature,
.event-pathways,
.gallery-page,
.floral-bar-gallery,
.inquiry {
  background: var(--warm-white);
}

.feature,
.support,
.pricing-intro,
.event-pricing-guide,
.package-card,
.value-strip article {
  background: #fbfaf6;
}

.eyebrow,
.section-kicker {
  margin-bottom: 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

h1,
h2,
h3,
.value-strip strong,
.pathway-card h3,
.event-choice-card h3,
.gallery-card h3,
.subcategory-card h3,
.mini-card h3,
.package-card h3 {
  font-family: var(--sans);
  font-weight: 400;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.12;
}

h3 {
  font-size: clamp(21px, 1.8vw, 26px);
  line-height: 1.18;
}

.intro h2,
.section-heading h2 {
  max-width: 920px;
  font-size: clamp(31px, 3.8vw, 56px);
  line-height: 1.14;
}

.intro-copy p,
.section-heading p,
.feature-content > p,
.page-copy,
.event-choice-card p,
.package-card p,
.pricing-intro p {
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.72;
}

.text-link,
.pathway-card a,
.site-footer a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.button,
.header-cta,
.filter,
.back-button {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.page-hero {
  min-height: clamp(430px, 54vh, 560px);
  align-items: center;
  padding: clamp(96px, 10vw, 140px) var(--site-pad) clamp(52px, 6vw, 78px);
}

.page-hero::before {
  opacity: 0.64;
}

.page-hero::after {
  background:
    linear-gradient(90deg, rgba(28, 49, 35, 0.82), rgba(31, 53, 39, 0.48) 48%, rgba(31, 53, 39, 0.12)),
    linear-gradient(180deg, rgba(22, 40, 29, 0.06), rgba(22, 40, 29, 0.5));
}

.page-hero h1,
.gallery-page h1,
.inquiry-page h1 {
  max-width: 850px;
  font-family: var(--sans);
  font-size: clamp(36px, 4.4vw, 62px);
  font-weight: 400;
  line-height: 1.12;
}

.page-hero .eyebrow {
  color: rgba(255, 253, 248, 0.82);
}

.page-copy {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(255, 253, 248, 0.78);
}

.home-page .hero {
  min-height: clamp(560px, 68vh, 680px);
}

.home-page .hero-panel {
  padding: clamp(86px, 10vh, 116px) var(--site-pad) clamp(104px, 12vh, 126px);
}

.home-page .hero .eyebrow {
  margin-bottom: 24px;
  font-size: 11px;
  font-weight: 560;
  letter-spacing: 0.14em;
  color: rgba(255, 253, 248, 0.7);
}

.hero-logo {
  width: min(560px, 76vw);
  max-height: 112px;
}

.home-page .hero-copy {
  margin-top: 22px;
  font-size: clamp(14px, 1.25vw, 16px);
  line-height: 1.65;
}

.home-page .hero .button {
  min-height: 42px;
  padding: 11px 21px;
  font-size: 10.5px;
  font-weight: 560;
  letter-spacing: 0.11em;
}

.home-page .hero-note {
  bottom: 24px;
}

.home-page .hero-note a {
  min-height: 34px;
  padding: 8px 15px;
  font-size: 10.5px;
  font-weight: 560;
  letter-spacing: 0.1em;
}

.gallery-page .section-heading {
  background: var(--warm-white);
}

.gallery-page h1 {
  color: var(--ink);
}

.filter {
  background: var(--warm-white);
}

.filter.active {
  background: var(--deep-green);
}

@media (max-width: 960px) {
  .page-hero {
    min-height: 480px;
  }

  .home-page .hero {
    min-height: 620px;
  }

  .home-page .hero-panel {
    padding: 96px var(--site-pad) 130px;
  }

  .hero-logo {
    width: min(430px, 86vw);
    max-height: 90px;
  }
}

/* Selected polish v3: keep large titles sans serif, but thinner and less oversized. */
h1,
h2,
h3,
.value-strip strong,
.pathway-card h3,
.event-choice-card h3,
.gallery-card h3,
.subcategory-card h3,
.mini-card h3,
.package-card h3 {
  font-weight: 300;
}

h2 {
  font-size: clamp(30px, 3.6vw, 52px);
}

h3 {
  font-size: clamp(20px, 1.65vw, 24px);
}

.intro h2,
.section-heading h2 {
  max-width: 820px;
  font-size: clamp(30px, 3.35vw, 48px);
  font-weight: 300;
  line-height: 1.16;
}

.page-hero h1,
.gallery-page h1,
.inquiry-page h1 {
  max-width: 790px;
  font-size: clamp(34px, 3.9vw, 56px);
  font-weight: 300;
  line-height: 1.16;
}

.home-page .hero {
  min-height: clamp(520px, 66vh, 640px);
}

.home-page .hero-panel {
  padding: clamp(78px, 8.5vh, 104px) var(--site-pad) clamp(96px, 10vh, 118px);
}

.home-page .hero .eyebrow,
.home-page .hero .button,
.home-page .hero-note a {
  font-weight: 500;
}

.home-page .hero .eyebrow {
  letter-spacing: 0.13em;
}

.hero-logo {
  width: min(540px, 74vw);
  max-height: 110px;
}

.page-copy {
  font-size: clamp(15px, 1.2vw, 17px);
}

@media (max-width: 960px) {
  .home-page .hero {
    min-height: 590px;
  }

  .home-page .hero-panel {
    padding: 88px var(--site-pad) 124px;
  }
}

/* Selected polish v4: lighter sans titles and a shorter homepage hero. */
.eyebrow,
.section-kicker {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.15em;
}

.button,
.header-cta,
.filter,
.back-button,
.text-link,
.pathway-card a,
.site-footer a {
  font-weight: 500;
}

.home-page .hero {
  min-height: clamp(485px, 57vh, 575px);
}

.home-page .hero-panel {
  padding: clamp(62px, 6.4vh, 86px) var(--site-pad) clamp(78px, 7.8vh, 98px);
}

.home-page .hero .eyebrow {
  margin-bottom: 18px;
  color: rgba(255, 253, 248, 0.66);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.16em;
}

.hero-logo {
  width: min(512px, 70vw);
  max-height: 104px;
  object-fit: contain;
}

.home-page .hero-copy {
  margin-top: 18px;
  font-size: clamp(13.5px, 1.05vw, 15.5px);
  line-height: 1.62;
}

.home-page .hero-actions {
  margin-top: 26px;
}

.home-page .hero .button {
  min-height: 40px;
  padding: 10px 19px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.home-page .hero-note {
  bottom: 18px;
  gap: 8px;
}

.home-page .hero-note a {
  min-height: 32px;
  padding: 7px 13px;
  font-size: 9.75px;
  font-weight: 500;
  letter-spacing: 0.11em;
}

.section {
  padding: clamp(62px, 6.5vw, 98px) var(--site-pad);
}

.intro h2,
.section-heading h2 {
  max-width: 780px;
  font-size: clamp(28px, 3.05vw, 44px);
  font-weight: 300;
  line-height: 1.18;
}

.page-hero {
  min-height: clamp(390px, 49vh, 520px);
  padding: clamp(82px, 8vw, 120px) var(--site-pad) clamp(44px, 5vw, 68px);
}

.page-hero > div {
  max-width: 760px;
}

.page-hero h1,
.gallery-page h1,
.inquiry-page h1 {
  max-width: 720px;
  font-size: clamp(31px, 3.45vw, 50px);
  font-weight: 300;
  line-height: 1.18;
}

.page-copy {
  max-width: 650px;
  margin-top: 18px;
  font-size: clamp(14.5px, 1.1vw, 16.5px);
  line-height: 1.66;
}

.page-hero .hero-actions {
  margin-top: 28px;
}

.gallery-page .section-heading {
  background: var(--warm-white);
}

@media (max-width: 960px) {
  .home-page .hero {
    min-height: 540px;
  }

  .home-page .hero-panel {
    padding: 78px var(--site-pad) 118px;
  }

  .hero-logo {
    width: min(390px, 84vw);
    max-height: 86px;
  }

  .page-hero {
    min-height: 430px;
  }
}

/* Selected polish v5: soften the hero media behind the wordmark. */
.home-page .hero::after {
  background:
    radial-gradient(ellipse at center, rgba(13, 29, 21, 0.66) 0%, rgba(18, 38, 28, 0.5) 34%, rgba(18, 38, 28, 0.18) 58%, rgba(18, 38, 28, 0.2) 100%),
    linear-gradient(90deg, rgba(20, 40, 29, 0.72) 0%, rgba(25, 49, 36, 0.48) 44%, rgba(25, 49, 36, 0.3) 78%),
    linear-gradient(180deg, rgba(16, 32, 24, 0.02), rgba(16, 32, 24, 0.4));
}

/* Selected polish v10: keep large titles serif, thin, and quieter. */
h1,
h2,
h3,
.page-hero h1,
.gallery-page h1,
.inquiry-page h1,
.intro h2,
.section-heading h2,
.feature-content h2,
.bar-content h2,
.gallery-drilldown h3,
.event-choice-card h3,
.event-choice-card.compact-card h3,
.value-strip strong,
.mini-card strong,
.subcategory-card strong,
.gallery-card strong,
.pricing-intro strong,
.package-card strong {
  font-family: var(--display-serif);
  font-weight: 300;
  letter-spacing: 0;
}

h2,
.feature-content h2,
.bar-content h2 {
  font-size: clamp(27px, 2.7vw, 40px);
  line-height: 1.16;
}

h3,
.event-choice-card h3,
.event-choice-card.compact-card h3 {
  font-size: clamp(20px, 1.7vw, 25px);
  line-height: 1.18;
}

.events-include-section .event-choice-card div > span,
.events-include-section .event-choice-card h3,
.events-include-section .event-choice-card p {
  font-family: var(--sans);
}

.events-include-section .event-choice-card div > span,
.events-include-section .event-choice-card.compact-card div > span {
  margin-bottom: 18px;
  color: rgba(112, 118, 95, 0.92);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.events-include-section .event-choice-card h3,
.events-include-section .event-choice-card.compact-card h3 {
  max-width: 28ch;
  color: rgba(61, 66, 55, 0.82);
  font-size: clamp(15px, 1vw, 17px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.48;
  text-transform: none;
}

.events-include-section .event-choice-card p,
.events-include-section .event-choice-card.compact-card p {
  max-width: 30ch;
  margin-top: 14px;
  color: rgba(112, 118, 95, 0.76);
  font-size: clamp(13px, 0.92vw, 15px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.55;
  text-transform: none;
}

.intro h2,
.section-heading h2 {
  max-width: 780px;
  font-size: clamp(27px, 2.65vw, 40px);
  line-height: 1.18;
}

.page-hero h1,
.gallery-page h1,
.inquiry-page h1 {
  max-width: 720px;
  font-size: clamp(30px, 3.05vw, 44px);
  line-height: 1.18;
}

.gallery-drilldown h3 {
  font-size: clamp(26px, 2.7vw, 40px);
  line-height: 1.16;
}

.value-strip strong {
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.14;
}

.mini-card strong,
.subcategory-card strong,
.gallery-card strong {
  font-size: clamp(20px, 1.55vw, 24px);
  line-height: 1.18;
}

/* Selected polish v11: simpler homepage hero actions and reliable page scrolling. */
html,
body {
  min-height: 100%;
  overflow-x: hidden;
}

body {
  overflow-y: auto;
  touch-action: pan-y;
}

.hero-media,
.hero-media img,
.hero-media video {
  pointer-events: none;
}

.home-page .hero-note.hero-note-actions {
  bottom: max(28px, env(safe-area-inset-bottom));
  gap: 12px;
}

.home-page .hero-note.hero-note-actions a {
  min-height: 40px;
  padding: 10px 22px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.home-page .hero-note.hero-note-actions .button-light {
  border-color: transparent;
  background: var(--warm-white);
  color: var(--deep-green);
}

.home-page .hero-note.hero-note-actions .button-ghost {
  border-color: rgba(255, 253, 248, 0.6);
  background: rgba(255, 253, 248, 0.06);
  color: var(--warm-white);
}

@media (max-width: 960px) {
  .home-page .hero-note.hero-note-actions {
    bottom: max(22px, env(safe-area-inset-bottom));
  }

  .home-page .hero-note.hero-note-actions a {
    min-height: 36px;
    padding: 9px 15px;
    font-size: 9.5px;
  }
}

.bar-content .subhead {
  font-family: var(--sans);
  font-size: clamp(16px, 1.35vw, 20px);
  font-weight: 300;
  line-height: 1.5;
}

.pricing-intro strong {
  font-size: clamp(26px, 2.45vw, 36px);
  line-height: 1.12;
}

.package-card strong {
  margin: 42px 0 8px;
  font-size: clamp(36px, 3.6vw, 54px);
  line-height: 1;
}

/* Selected polish v12: warmer rich evergreen, less blue-green. */
.home-page .hero {
  background: #142716;
}

.home-page .site-header:not(.is-scrolled) {
  background: linear-gradient(180deg, rgba(16, 30, 17, 0.72), rgba(16, 30, 17, 0.18));
}

.home-page .hero-media img,
.home-page .hero-media video {
  filter: saturate(0.9) contrast(1.04) brightness(0.64);
}

.home-page .hero::after {
  background:
    radial-gradient(ellipse at center, rgba(27, 52, 30, 0.6) 0%, rgba(24, 45, 27, 0.42) 34%, rgba(24, 45, 27, 0.16) 58%, rgba(18, 35, 20, 0.2) 100%),
    linear-gradient(90deg, rgba(18, 35, 20, 0.74) 0%, rgba(26, 48, 28, 0.48) 44%, rgba(24, 44, 27, 0.34) 78%),
    linear-gradient(180deg, rgba(14, 28, 16, 0.06), rgba(14, 28, 16, 0.46));
}

.page-hero::after {
  background:
    linear-gradient(90deg, rgba(32, 54, 34, 0.84), rgba(32, 54, 34, 0.5) 48%, rgba(32, 54, 34, 0.12)),
    linear-gradient(180deg, rgba(32, 54, 34, 0.04), rgba(32, 54, 34, 0.38));
}

/* Selected polish v13: keep document scrolling on the root for preview browsers. */
html {
  height: auto;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  height: auto;
  min-height: 100vh;
  max-height: none;
  overflow-x: hidden;
  overflow-y: visible;
  touch-action: auto;
  overscroll-behavior-y: auto;
  -webkit-overflow-scrolling: touch;
}

main {
  display: block;
  min-height: 1px;
}

/* Inquiry polish: thinner, quieter form typography to match the current site direction. */
.inquiry {
  background: var(--warm-white);
}

.inquiry-page h1 {
  max-width: 640px;
  font-weight: 300;
  font-size: clamp(30px, 3vw, 43px);
  line-height: 1.18;
}

.inquiry-intro > p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.7;
}

.inquiry-form {
  gap: 16px;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(255, 253, 248, 0.82);
  border-color: rgba(52, 83, 63, 0.11);
  box-shadow: none;
}

.inquiry-form label {
  color: var(--sage);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  border-color: rgba(52, 83, 63, 0.13);
  background: #fffefb;
  padding: 12px 13px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 350;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: rgba(42, 70, 49, 0.42);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(42, 70, 49, 0.08);
}

.inquiry-form textarea::placeholder {
  color: rgba(97, 101, 91, 0.62);
}

.inquiry-form .upload {
  background: rgba(247, 243, 234, 0.54);
  border-radius: 10px;
}

.inquiry-form .button {
  width: fit-content;
  margin-top: 6px;
  padding-inline: 22px;
  font-size: 11px;
  font-weight: 600;
}

/* Gallery text audit: one calm hierarchy for all gallery pages and subpages. */
.gallery-page .section-heading {
  align-items: start;
}

.gallery-page .section-heading h1,
.gallery-page h1 {
  max-width: 720px;
  font-size: clamp(30px, 3.05vw, 44px);
  line-height: 1.18;
}

.gallery-page .section-heading p {
  max-width: 620px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.7;
}

.filters {
  gap: 8px;
}

.filter {
  min-height: 36px;
  padding: 8px 14px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.subcategory-grid,
.gallery-grid {
  align-items: start;
}

.subcategory-card {
  grid-template-rows: 245px auto;
  min-height: 0;
  background: #fffefb;
  box-shadow: none;
}

.subcategory-card:hover,
.subcategory-card.active {
  border-color: rgba(52, 83, 63, 0.2);
  box-shadow: none;
  transform: none;
}

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

.subcategory-card img[src*="wix-gallery"] {
  transform: none;
}

.subcategory-card span {
  margin: 18px 20px 8px;
  overflow: visible;
  color: var(--sage);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.subcategory-card:hover span,
.subcategory-card.active span,
.subcategory-card:hover p,
.subcategory-card.active p {
  color: var(--sage);
}

.subcategory-card strong {
  margin: 0 20px;
  overflow: visible;
  color: var(--ink);
  font-size: clamp(20px, 1.55vw, 24px);
  line-height: 1.14;
  overflow-wrap: anywhere;
}

.subcategory-card p {
  margin: 10px 20px 20px;
  overflow: visible;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.45;
}

.gallery-drilldown {
  align-items: start;
  gap: 18px;
  padding: 18px 0 22px;
}

.gallery-drilldown h3 {
  margin: 4px 0;
  font-size: clamp(26px, 2.5vw, 38px);
  line-height: 1.16;
  overflow-wrap: anywhere;
}

.gallery-drilldown p,
.gallery-drilldown span {
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.35;
}

.back-button {
  min-height: 40px;
  padding: 10px 15px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.gallery-status {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.price-filter {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(280px, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin: -4px 0 28px;
  padding: 16px 18px;
  border: 1px solid rgba(52, 83, 63, 0.13);
  border-radius: 18px;
  background: #fffefb;
}

.price-filter[hidden] {
  display: none;
}

.price-filter span {
  display: block;
  margin-bottom: 5px;
  color: var(--sage);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.price-filter strong {
  display: block;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.35;
}

.price-range-control {
  position: relative;
  min-height: 28px;
  --price-track-inset: 9px;
}

.price-range-control::before {
  display: none;
  content: none;
}

.price-range-track {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    to right,
    rgba(52, 83, 63, 0.16) 0 var(--price-left-line-end, 0px),
    transparent var(--price-left-line-end, 0px) var(--price-selected-start, var(--price-track-inset)),
    var(--evergreen) var(--price-selected-start, var(--price-track-inset)) var(--price-selected-end, calc(100% - var(--price-track-inset))),
    transparent var(--price-selected-end, calc(100% - var(--price-track-inset))) var(--price-right-line-start, 100%),
    rgba(52, 83, 63, 0.16) var(--price-right-line-start, 100%) 100%
  );
  content: "";
  transform: translateY(-50%);
}

.price-filter input[type="range"] {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 28px;
  margin: 0;
  accent-color: var(--evergreen);
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  color: transparent;
  cursor: pointer;
  outline: none;
  transform: translateY(-50%);
  pointer-events: none;
}

.price-filter input[type="range"]::-webkit-slider-runnable-track {
  height: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
  color: transparent;
}

.price-filter input[type="range"]::-moz-range-track {
  height: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
  color: transparent;
}

.price-filter input[type="range"]::-moz-range-progress {
  height: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
  color: transparent;
}

.price-filter input[type="range"]::-webkit-slider-thumb {
  width: 18px;
  height: 18px;
  border: 0;
  border-radius: 50%;
  background: var(--evergreen);
  box-shadow: 0 4px 12px rgba(32, 54, 34, 0.16);
  margin-top: calc((3px - 18px) / 2);
  -webkit-appearance: none;
  appearance: none;
  pointer-events: auto;
}

.price-filter input[type="range"]::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border: 0;
  border-radius: 50%;
  background: var(--evergreen);
  box-shadow: 0 4px 12px rgba(32, 54, 34, 0.16);
  pointer-events: auto;
}

.price-filter button {
  min-height: 36px;
  border: 1px solid rgba(52, 83, 63, 0.16);
  border-radius: 999px;
  background: transparent;
  padding: 8px 14px;
  color: var(--evergreen);
  font: inherit;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.price-filter button:hover {
  border-color: rgba(52, 83, 63, 0.35);
}

.color-filter {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(280px, 1fr);
  gap: 18px;
  align-items: center;
  margin: -18px 0 30px;
  padding: 16px 18px;
  border: 1px solid rgba(52, 83, 63, 0.13);
  border-radius: 18px;
  background: #fffefb;
}

.color-filter[hidden] {
  display: none;
}

.color-filter span {
  display: block;
  margin-bottom: 5px;
  color: var(--sage);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.color-filter strong {
  display: block;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.35;
}

.color-filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.color-filter-options button {
  min-height: 36px;
  border: 1px solid rgba(52, 83, 63, 0.14);
  border-radius: 999px;
  background: transparent;
  padding: 8px 14px;
  color: var(--evergreen);
  font: inherit;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.color-filter-options button:hover,
.color-filter-options button.active {
  border-color: var(--evergreen);
  background: var(--evergreen);
  color: #fffefb;
}

.gallery-grid {
  row-gap: 34px;
}

.gallery-card:not(.floral-board-card) {
  display: grid;
  grid-template-rows: auto minmax(74px, auto);
  min-height: 0;
  align-content: start;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  transition: none;
}

.gallery-card:not(.floral-board-card):hover {
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.gallery-card:not(.floral-board-card) img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  object-fit: cover;
  background: var(--warm-white);
}

.gallery-card:not(.floral-board-card) div,
.gallery-card.is-compare-card div {
  display: grid;
  gap: 5px;
  min-height: 74px;
  padding: 14px 2px 0;
  background: transparent;
  overflow: hidden;
}

.gallery-card:not(.floral-board-card) span,
.gallery-card.is-compare-card span {
  display: block;
  margin: 0;
  overflow: hidden;
  color: var(--sage);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  text-overflow: ellipsis;
}

.gallery-card:not(.floral-board-card) strong,
.gallery-card.is-compare-card strong {
  display: block;
  margin: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: clamp(17px, 1.22vw, 20px);
  line-height: 1.14;
  overflow-wrap: anywhere;
  text-overflow: ellipsis;
}

.gallery-card:not(.floral-board-card) p,
.gallery-card.is-compare-card p,
.gallery-card.is-compare-card .compare-line {
  display: block;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  letter-spacing: 0;
  white-space: normal;
}

.gallery-page .gallery-grid:not(.is-floral-board) {
  margin-bottom: 42px;
  overflow: hidden;
}

.gallery-page .gallery-status,
.gallery-page .gallery-note {
  position: relative;
  z-index: 2;
}

.gallery-page .gallery-note {
  margin-top: 22px;
  background: #f6f0e6;
}

/* Keep every gallery product tile on the same rounded visual system. */
.gallery-page .gallery-card:not(.floral-board-card),
.gallery-page .gallery-card.is-compare-card {
  border-radius: 18px;
}

.gallery-page .gallery-card:not(.floral-board-card) img,
.gallery-page .gallery-card.is-compare-card img {
  border-radius: 18px;
  overflow: hidden;
}

.floral-board-card span {
  display: none;
}

/* Final gallery polish: force all non-Pinterest product media to share one rounded crop. */
.gallery-page .subcategory-card {
  border-radius: 18px !important;
}

.gallery-page .subcategory-card-media {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 18px 18px 0 0;
  overflow: hidden;
  background: var(--warm-white);
  clip-path: inset(0 round 18px 18px 0 0);
}

.gallery-page .subcategory-card img,
.gallery-page .gallery-card:not(.floral-board-card) > img,
.gallery-page .gallery-card.is-compare-card > img {
  display: block;
  border-radius: 18px !important;
  clip-path: inset(0 round 18px);
  overflow: hidden;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.gallery-page .subcategory-card-media img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
  transform: scale(1.14);
  border-radius: 0 !important;
  clip-path: none;
}

.gallery-page .gallery-card:not(.floral-board-card),
.gallery-page .gallery-card.is-compare-card {
  border-radius: 18px !important;
}

.gallery-page .gallery-card-media {
  display: block;
  width: 100%;
  margin: 0;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  background: var(--warm-white);
  clip-path: inset(0 round 18px);
}

.gallery-page .gallery-card-media img {
  display: block;
  width: 100%;
  height: 100% !important;
  min-height: 0;
  border-radius: 18px !important;
  object-fit: cover;
  object-position: center;
}

.gallery-page .gallery-grid.is-product-grid {
  gap: 30px 22px;
  overflow: visible;
}

.gallery-page .gallery-grid.is-product-grid .gallery-card:not(.floral-board-card),
.gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(52, 83, 63, 0.1);
  background: #fffefb;
}

.gallery-page .gallery-grid.is-product-grid .gallery-card-media {
  aspect-ratio: 4 / 5;
}

.gallery-page .gallery-grid.is-product-grid .gallery-card:not(.floral-board-card) div,
.gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card div {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 0;
  padding: 26px;
  border: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(31, 48, 36, 0.62), rgba(31, 48, 36, 0.82));
  box-shadow: none;
  opacity: 1;
  overflow: hidden;
  pointer-events: auto;
  text-align: center;
  transform: translateY(102%);
  user-select: text;
  transition: transform 0.28s ease;
}

.gallery-page .gallery-grid.is-product-grid .gallery-card:not(.floral-board-card):hover div,
.gallery-page .gallery-grid.is-product-grid .gallery-card:not(.floral-board-card):focus-within div,
.gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card:hover div,
.gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card:focus-within div {
  transform: translateY(0);
}

.gallery-page .gallery-grid.is-product-grid .gallery-card:not(.floral-board-card) strong,
.gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card strong {
  color: var(--warm-white);
  font-family: var(--display-serif);
  font-size: clamp(22px, 1.7vw, 30px);
  font-weight: 400;
  line-height: 1.05;
  user-select: text;
}

.gallery-page .gallery-grid.is-product-grid .gallery-card:not(.floral-board-card) p,
.gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card p,
.gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card .compare-line {
  color: rgba(255, 253, 248, 0.86);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  user-select: text;
}

.has-product-lightbox {
  overflow: hidden;
}

.product-lightbox[hidden] {
  display: none;
}

.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 36px);
}

.product-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(21, 36, 27, 0.58);
  cursor: zoom-out;
}

.product-lightbox-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(420px, 620px) minmax(240px, 300px);
  width: fit-content;
  max-width: min(960px, calc(100vw - 48px));
  max-height: min(760px, calc(100vh - 44px));
  overflow: hidden;
  border: 1px solid rgba(52, 83, 63, 0.14);
  border-radius: 22px;
  background: #fffefb;
  box-shadow: 0 32px 90px rgba(14, 24, 17, 0.24);
}

.product-lightbox-panel figure {
  min-height: 0;
  margin: 0;
  background: #f7f4ee;
  aspect-ratio: 4 / 5;
}

.product-lightbox-panel img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: min(760px, calc(100vh - 44px));
  object-fit: cover;
  object-position: center;
}

.product-lightbox-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: clamp(22px, 3vw, 38px);
  color: var(--ink);
  user-select: text;
}

.product-lightbox-details p {
  margin: 0;
  color: var(--olive);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-lightbox-details h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 400;
  line-height: 1;
  user-select: text;
}

.product-lightbox-details span {
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 22px);
  user-select: text;
}

.product-lightbox-details a {
  align-self: flex-start;
  margin-top: 8px;
  padding: 12px 18px;
  border: 1px solid var(--evergreen);
  border-radius: 999px;
  color: var(--evergreen);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.product-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  padding: 9px 13px;
  border: 1px solid rgba(52, 83, 63, 0.16);
  border-radius: 999px;
  background: rgba(255, 254, 251, 0.88);
  color: var(--evergreen);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-page .gallery-card-media img[src*="wedding-bouquets-bouquet-026-"],
.gallery-page .gallery-card-media img[src*="wedding-bouquets-bouquet-027-"],
.gallery-page .gallery-card-media img[src*="wedding-bouquets-bouquet-033-"],
.gallery-page .gallery-card-media img[src*="wedding-bouquets-bouquet-034-"],
.gallery-page .gallery-card-media img[src*="wedding-bouquets-bouquet-035-"],
.gallery-page .gallery-card-media img[src*="wedding-bouquets-bouquet-036-"],
.gallery-page .gallery-card-media img[src*="wedding-bouquets-bouquet-037-"],
.gallery-page .gallery-card-media img[src*="wedding-bouquets-bouquet-038-"] {
  transform: scale(1.48);
  transform-origin: center;
}

.gallery-page .gallery-card-media img[src*="wedding-bouquets-bouquet-035-"],
.gallery-page .gallery-card-media img[src*="wedding-bouquets-bouquet-037-"],
.gallery-page .gallery-card-media img[src*="wedding-bouquets-bouquet-038-"] {
  transform: scale(1.58);
}

@media (max-width: 960px) {
  .subcategory-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid.is-floral-board {
    grid-template-columns: repeat(var(--board-columns, 3), minmax(0, 1fr));
  }

  .price-filter {
    grid-template-columns: 1fr;
  }

  .color-filter {
    grid-template-columns: 1fr;
  }

  .color-filter-options {
    justify-content: flex-start;
  }

  .product-lightbox-panel {
    grid-template-columns: 1fr;
    width: min(560px, 100%);
    max-height: calc(100vh - 32px);
    overflow: auto;
  }

  .product-lightbox-panel figure {
    aspect-ratio: 4 / 5;
  }

  .product-lightbox-panel img {
    max-height: 58vh;
  }
}

@media (max-width: 640px) {
  .subcategory-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid.is-floral-board {
    grid-template-columns: repeat(var(--board-columns, 3), minmax(0, 1fr));
  }

  .gallery-drilldown {
    grid-template-columns: 1fr;
  }

  .gallery-page .gallery-grid.is-product-grid .gallery-card:not(.floral-board-card) div,
  .gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card div {
    opacity: 1;
    transform: none;
  }
}

/* Gallery section cards: uniform vertical preview tiles for gallery drilldowns. */
.gallery-page .subcategory-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 22px;
}

.gallery-page .subcategory-card {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto auto;
  min-height: 0;
  overflow: hidden;
  background: #fffefb;
  border-radius: 18px !important;
}

.gallery-page .subcategory-card-media {
  width: 100%;
  height: clamp(340px, 27vw, 460px);
  min-height: 0;
  border-radius: 18px 18px 0 0;
  clip-path: inset(0 round 18px 18px 0 0);
}

.gallery-page .subcategory-card-media img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
  transform: scale(1.1);
}

.gallery-page .subcategory-card[data-top="wedding"] .subcategory-card-media img {
  transform: scale(1.26);
}

.gallery-page .subcategory-card[data-branch="Categories"] .subcategory-card-media img {
  transform: scale(1.42);
}

.gallery-page .subcategory-card[data-top="wedding"].is-empty .subcategory-card-media img,
.gallery-page .subcategory-card[data-top="arrangements"].is-empty .subcategory-card-media img {
  transform: scale(1.32);
}

.gallery-page .subcategory-card[data-top="arrangements"] .subcategory-card-media img,
.gallery-page .subcategory-card[data-branch] .subcategory-card-media img {
  object-fit: cover;
  object-position: center;
  transform: scale(1.1);
}

.gallery-page .subcategory-card.is-empty img {
  opacity: 1;
  filter: none;
}

.gallery-page .subcategory-card span,
.gallery-page .subcategory-card strong,
.gallery-page .subcategory-card p {
  grid-column: 1;
}

.gallery-page .subcategory-card span {
  align-self: auto;
  margin: 26px 24px 8px;
}

.gallery-page .subcategory-card strong {
  margin: 0 24px;
  font-size: clamp(23px, 2vw, 31px);
  line-height: 1.08;
}

.gallery-page .subcategory-card p {
  margin: 12px 24px 26px;
  max-width: 36ch;
  font-size: 14px;
  line-height: 1.5;
}

.copy-mobile,
.subcategory-copy-mobile {
  display: none;
}

@media (max-width: 960px) {
  .gallery-page .subcategory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .gallery-page .subcategory-grid {
    grid-template-columns: 1fr;
  }

  .gallery-page .subcategory-card {
    grid-template-rows: auto auto auto auto;
  }

  .gallery-page .subcategory-card-media {
    height: clamp(310px, 78vw, 420px);
    min-height: 0;
  }
}

/* Approved flow polish - 20260526 */
.home-positioning {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
  background: #fff;
}

.home-positioning-copy {
  max-width: 720px;
}

.home-positioning-copy h2 {
  margin: 0 0 22px;
  color: var(--evergreen);
  font-family: var(--display-serif);
  font-size: clamp(34px, 4.2vw, 76px);
  font-weight: 400;
  line-height: 1;
}

.home-positioning-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.8;
}

.home-path-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.home-path-chips a {
  padding: 12px 16px;
  border: 1px solid rgba(47, 75, 50, 0.18);
  border-radius: 999px;
  background: #fff;
  color: var(--evergreen);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.home-path-chips a:hover {
  background: var(--evergreen);
  color: #fff;
}

.home-positioning-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.72fr);
  gap: 14px;
  align-items: end;
}

.home-positioning-media img {
  display: block;
  width: 100%;
  height: clamp(210px, 22vw, 330px);
  border-radius: 28px;
  object-fit: cover;
}

.home-positioning-media .home-media-large {
  grid-row: span 2;
  height: clamp(430px, 48vw, 680px);
}

.home-cta-strip {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(47, 75, 50, 0.12);
  background: #fff;
}

.home-cta-strip h2 {
  max-width: 760px;
  margin: 0;
  color: var(--evergreen);
  font-family: var(--display-serif);
  font-size: clamp(32px, 3.2vw, 60px);
  font-weight: 400;
  line-height: 1.02;
}

.home-cta-outline {
  border-color: rgba(47, 75, 50, 0.25);
  color: var(--evergreen);
}

.events-capability {
  background: #fff;
}

.events-capability .event-type-row article {
  display: flex;
  min-height: 126px;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(18px, 2vw, 24px);
}

.event-mini-portfolio {
  background: var(--warm-white);
}

.events-include-section,
.event-quote-note {
  background: #fff;
}

.wedding-portfolio-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(420px, 1fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
  background: #fff;
}

.wedding-portfolio-copy h2 {
  margin: 0 0 22px;
  color: var(--evergreen);
  font-family: var(--display-serif);
  font-size: clamp(34px, 4vw, 74px);
  font-weight: 400;
  line-height: 1;
}

.wedding-portfolio-copy p {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.78;
}

.wedding-proof-grid {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 14px;
  align-items: end;
}

.wedding-proof-grid img {
  display: block;
  width: 100%;
  height: clamp(220px, 24vw, 360px);
  border-radius: 28px;
  object-fit: cover;
}

.wedding-proof-grid .wedding-proof-large {
  grid-row: span 2;
  height: clamp(460px, 52vw, 720px);
  object-position: 42% 50%;
}

.wedding-service-map {
  background: var(--warm-white);
}

.wedding-service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.wedding-service-card {
  min-height: 220px;
  padding: 28px;
  border: 1px solid rgba(47, 75, 50, 0.14);
  border-radius: 28px;
  background: #fff;
  color: var(--evergreen);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
}

.wedding-service-card > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wedding-service-card strong {
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(25px, 2vw, 36px);
  font-weight: 400;
  line-height: 1.05;
}

.wedding-service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.wedding-price-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: 36px;
  align-items: start;
  background: #fff;
}

.wedding-price-strip h2 {
  margin: 0;
  color: var(--evergreen);
  font-family: var(--display-serif);
  font-size: clamp(32px, 3.2vw, 58px);
  font-weight: 400;
  line-height: 1.05;
}

.product-lightbox-panel {
  grid-template-columns: minmax(320px, 500px) minmax(210px, 280px);
  width: fit-content;
  max-width: min(840px, calc(100vw - 48px));
  max-height: min(700px, calc(100vh - 44px));
}

.product-lightbox-panel figure {
  aspect-ratio: 4 / 5;
  background: #f8f5ef;
}

.product-lightbox-details {
  padding: clamp(28px, 4vw, 54px);
}

.product-lightbox-details h2 {
  font-size: clamp(38px, 5vw, 72px);
}

@media (max-width: 1100px) {
  .home-positioning,
  .wedding-portfolio-intro,
  .wedding-price-strip {
    grid-template-columns: 1fr;
  }

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

  .home-cta-strip {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .home-positioning-media,
  .wedding-proof-grid {
    grid-template-columns: 1fr;
  }

  .home-positioning-media .home-media-large,
  .wedding-proof-grid .wedding-proof-large,
  .home-positioning-media img,
  .wedding-proof-grid img {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .wedding-service-grid {
    grid-template-columns: 1fr;
  }

  .product-lightbox-panel {
    grid-template-columns: 1fr;
    width: min(92vw, 520px);
  }
}

/* Minimal typography pass - 20260526 */
.home-positioning {
  gap: clamp(30px, 5vw, 72px);
}

.home-positioning-copy {
  max-width: 620px;
}

.home-positioning-copy h2 {
  max-width: 580px;
  margin-bottom: 18px;
  font-size: clamp(28px, 2.9vw, 48px);
  line-height: 1.08;
}

.home-positioning-copy p {
  max-width: 560px;
  font-size: clamp(14px, 0.95vw, 16px);
  line-height: 1.75;
}

.home-path-chips {
  margin-top: 24px;
  gap: 8px;
}

.home-path-chips a {
  padding: 10px 14px;
  font-size: 10px;
  letter-spacing: 0.1em;
}

.home-page .reviews-copy h2,
.home-cta-strip h2 {
  font-size: clamp(27px, 2.7vw, 44px);
  line-height: 1.1;
}

.home-page .review-card p {
  font-size: clamp(17px, 1.45vw, 24px);
  line-height: 1.22;
}

.wedding-page h1 {
  max-width: 720px;
  font-size: clamp(36px, 4.2vw, 62px);
  line-height: 1.04;
}

.wedding-page .page-copy {
  max-width: 660px;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.65;
}

.wedding-portfolio-copy h2,
.wedding-price-strip h2 {
  max-width: 620px;
  font-size: clamp(28px, 2.9vw, 48px);
  line-height: 1.08;
}

.wedding-portfolio-copy p,
.wedding-service-card p {
  font-size: clamp(14px, 0.95vw, 16px);
}

.wedding-service-card {
  min-height: 190px;
  padding: 24px;
}

.wedding-service-card strong {
  font-size: clamp(22px, 1.7vw, 30px);
}

.wedding-price-strip .price-list div {
  padding-block: 18px;
}

.wedding-price-strip .price-list span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.wedding-price-strip .price-list strong {
  color: rgba(52, 83, 63, 0.66);
  font-size: 12px;
  font-weight: 400;
}

@media (max-width: 760px) {
  .home-positioning-copy h2,
  .home-page .reviews-copy h2,
  .home-cta-strip h2,
  .wedding-portfolio-copy h2,
  .wedding-price-strip h2 {
    font-size: clamp(28px, 9vw, 40px);
  }

  .wedding-page h1 {
    font-size: clamp(34px, 10vw, 48px);
  }
}

/* Gallery-scale typography pass - 20260526 */
.page-hero {
  min-height: clamp(440px, 54vw, 560px);
  padding: clamp(105px, 10vw, 145px) var(--site-pad) clamp(46px, 5.5vw, 74px);
}

.page-hero > div {
  max-width: 660px;
}

.page-hero .eyebrow,
.hero-panel .eyebrow {
  font-size: 10px;
  letter-spacing: 0.16em;
}

.page-hero h1,
.wedding-page h1,
.events-page h1,
.floral-page h1 {
  max-width: 640px;
  font-size: clamp(32px, 3.5vw, 54px);
  line-height: 1.06;
}

.page-copy,
.wedding-page .page-copy,
.events-page .page-copy,
.floral-page .page-copy {
  max-width: 560px;
  margin-top: 18px;
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.72;
}

.hero-copy {
  max-width: 430px;
  font-size: clamp(13px, 0.92vw, 15px);
  line-height: 1.68;
}

.hero-actions .button,
.hero-note-actions .button,
.page-hero .button {
  padding: 11px 16px;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.home-positioning {
  gap: clamp(26px, 4.3vw, 60px);
}

.home-positioning-copy h2,
.home-page .reviews-copy h2,
.home-cta-strip h2,
.wedding-portfolio-copy h2,
.wedding-price-strip h2,
.event-mini-portfolio h2,
.event-quote-note h2,
.floral-preview h2,
.floral-pricing h2 {
  max-width: 560px;
  font-size: clamp(24px, 2.25vw, 38px);
  line-height: 1.14;
}

.home-positioning-copy p,
.home-page .reviews-copy p,
.wedding-portfolio-copy p,
.wedding-service-card p,
.event-mini-portfolio p,
.event-quote-note p,
.floral-preview .section-heading p,
.floral-pricing p {
  font-size: clamp(13px, 0.9vw, 15px);
  line-height: 1.7;
}

.home-path-chips a,
.event-type-row strong,
.wedding-service-card > span {
  font-size: 10px;
  letter-spacing: 0.12em;
}

.wedding-service-card {
  min-height: 170px;
  padding: 22px;
}

.wedding-service-card strong,
.event-choice-card h3,
.event-choice-card.compact-card h3 {
  font-size: clamp(19px, 1.4vw, 26px);
  line-height: 1.14;
}

@media (max-width: 760px) {
  .page-hero h1,
  .wedding-page h1,
  .events-page h1,
  .floral-page h1 {
    font-size: clamp(30px, 8.5vw, 42px);
  }

  .home-positioning-copy h2,
  .home-page .reviews-copy h2,
  .home-cta-strip h2,
  .wedding-portfolio-copy h2,
  .wedding-price-strip h2,
  .event-mini-portfolio h2,
  .event-quote-note h2,
  .floral-preview h2,
  .floral-pricing h2 {
    font-size: clamp(25px, 7.5vw, 34px);
  }
}

/* Guided inquiry prototype. */
.guided-inquiry-page {
  grid-template-columns: minmax(300px, 0.52fr) minmax(560px, 1fr);
  gap: clamp(36px, 6vw, 92px);
}

.guided-inquiry {
  min-width: 0;
}

.guided-progress {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.guided-progress span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid rgba(52, 83, 63, 0.1);
  border-radius: 999px;
  background: #fffefb;
  padding: 7px 11px;
  color: rgba(111, 116, 97, 0.48);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.guided-progress span.active {
  border-color: rgba(52, 83, 63, 0.26);
  color: var(--evergreen);
}

.guided-progress span:hover:not(.is-disabled),
.guided-progress span:focus-visible {
  border-color: rgba(52, 83, 63, 0.24);
  background: #f8f3eb;
  outline: none;
}

.guided-progress span.is-disabled {
  cursor: default;
}

.guided-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.38fr);
  gap: 18px;
  align-items: start;
}

.guided-card,
.guided-summary {
  border: 1px solid rgba(52, 83, 63, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.86);
}

.guided-card {
  display: grid;
  gap: 20px;
  padding: clamp(24px, 3vw, 34px);
}

.guided-step-kicker {
  margin: 0;
  color: var(--sage);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.guided-card h2 {
  max-width: 680px;
  color: var(--ink);
  font-size: clamp(30px, 3.1vw, 48px);
  line-height: 1.08;
}

.guided-card > p:not(.guided-step-kicker):not(.form-status) {
  max-width: 620px;
  margin: -8px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.guided-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.guided-option {
  min-height: 118px;
  border: 1px solid rgba(52, 83, 63, 0.13);
  border-radius: var(--radius);
  background: #fffefb;
  padding: 18px;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.guided-option:hover,
.guided-option.active {
  border-color: rgba(52, 83, 63, 0.36);
  background: #f8f3eb;
}

.guided-option:hover {
  transform: translateY(-1px);
}

.guided-option strong {
  display: block;
  color: var(--evergreen);
  font-family: var(--display-serif);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 400;
  line-height: 1.08;
}

.guided-option span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.guided-fields {
  display: grid;
  gap: 16px;
}

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

.guided-field,
.guided-check-group,
.guided-select-field {
  display: grid;
  gap: 9px;
}

.guided-field[hidden],
.guided-check-group[hidden],
.guided-select-field[hidden] {
  display: none !important;
}

.guided-field > span,
.guided-check-group > span,
.guided-select-field > span {
  color: var(--sage);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guided-field small,
.guided-check-group small,
.guided-select-field small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.guided-field.has-helper {
  margin-bottom: 10px;
}

.guided-field.has-helper small {
  margin-top: 2px;
}

.guided-field small a {
  color: var(--evergreen);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.guided-card input,
.guided-card select,
.guided-card textarea {
  border-color: rgba(52, 83, 63, 0.13);
  background: #fffefb;
  padding: 11px 12px;
  font-size: 14px;
  font-weight: 350;
  line-height: 1.35;
}

.guided-card select option {
  font-size: 14px;
}

.guided-card input[type="file"] {
  cursor: pointer;
  padding: 10px;
}

.guided-card input[type="file"]::file-selector-button {
  margin-right: 12px;
  border: 1px solid rgba(52, 83, 63, 0.18);
  border-radius: 999px;
  background: #f8f3eb;
  padding: 8px 12px;
  color: var(--evergreen);
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.netlify-hidden-form,
.netlify-hidden-field {
  display: none !important;
}

.guided-check-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.guided-check {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  min-height: 44px;
  border: 1px solid rgba(52, 83, 63, 0.12);
  border-radius: var(--radius);
  background: #fffefb;
  padding: 11px 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}

.guided-check input {
  width: auto;
  margin-top: 2px;
  accent-color: var(--evergreen);
}

.guided-select {
  position: relative;
}

.guided-select-trigger {
  position: relative;
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(52, 83, 63, 0.12);
  border-radius: var(--radius);
  background: #fffefb;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font: 400 14px/1.25 var(--sans);
  letter-spacing: 0;
  padding: 10px 34px 10px 12px;
  text-align: left;
  text-transform: none;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.guided-select-trigger::after {
  position: absolute;
  right: 13px;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.guided-select.open .guided-select-trigger::after {
  transform: translateY(2px) rotate(225deg);
}

.guided-select-trigger:hover,
.guided-select.open .guided-select-trigger {
  border-color: rgba(52, 83, 63, 0.32);
  background: #fffdf8;
  color: var(--evergreen);
}

.guided-select-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  left: 0;
  z-index: 25;
  display: grid;
  gap: 2px;
  max-height: 220px;
  overflow: auto;
  border: 1px solid rgba(52, 83, 63, 0.14);
  border-radius: var(--radius);
  background: #fffefb;
  box-shadow: 0 18px 42px rgba(30, 50, 37, 0.13);
  padding: 5px;
}

.guided-select-menu[hidden] {
  display: none !important;
}

.guided-select-option {
  width: 100%;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: 400 13.5px/1.25 var(--sans);
  letter-spacing: 0;
  padding: 8px 10px;
  text-align: left;
  text-transform: none;
}

.guided-select-option:hover,
.guided-select-option.active {
  background: rgba(239, 228, 212, 0.5);
  color: var(--evergreen);
}

.guided-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding-top: 4px;
}

.guided-actions [hidden] {
  display: none !important;
}

.guided-back {
  border-color: rgba(52, 83, 63, 0.18);
  background: transparent;
  color: var(--evergreen);
}

.guided-back[disabled],
.guided-actions .button[disabled] {
  cursor: not-allowed;
  opacity: 0.42;
  transform: none;
}

.guided-summary {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
  padding: 22px;
}

.guided-summary .eyebrow {
  margin: 0;
}

.guided-summary dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.guided-summary div:not(.guided-estimate) {
  min-width: 0;
}

.guided-summary dt {
  color: var(--sage);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.guided-summary dd {
  margin: 3px 0 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
}

.guided-estimate {
  border-top: 1px solid rgba(52, 83, 63, 0.12);
  padding-top: 18px;
}

.guided-estimate span {
  display: block;
  color: var(--evergreen);
  font-family: var(--display-serif);
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 400;
  line-height: 1.08;
}

.guided-estimate p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.guided-estimate strong {
  color: var(--evergreen);
  font-weight: 650;
}

.guided-success {
  display: grid;
  gap: 18px;
  border: 1px solid rgba(52, 83, 63, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.9);
  padding: clamp(30px, 5vw, 58px);
  outline: none;
}

.guided-success h2 {
  max-width: 620px;
  margin: 0;
  color: var(--ink);
  font-family: var(--display-serif);
  font-size: clamp(34px, 4.5vw, 64px);
  font-weight: 300;
  line-height: 1.08;
}

.guided-success > p:not(.eyebrow) {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.guided-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.guided-inquiry[hidden] {
  display: none;
}

@media (max-width: 1100px) {
  .guided-inquiry-page,
  .guided-layout {
    grid-template-columns: 1fr;
  }

  .guided-summary {
    position: static;
  }
}

@media (max-width: 640px) {
  .guided-options,
  .guided-field-row,
  .guided-check-options {
    grid-template-columns: 1fr;
  }

  .guided-card {
    padding: 22px;
  }
}

/* Guided inquiry v2: simpler intake, no side panel. */
.guided-inquiry-page {
  grid-template-columns: minmax(280px, 0.48fr) minmax(520px, 0.9fr);
}

.guided-layout {
  grid-template-columns: minmax(0, 760px);
  max-width: 760px;
  margin-left: auto;
}

.guided-card {
  gap: 18px;
  background: #fffefb;
  box-shadow: none;
}

.guided-card h2 {
  font-family: var(--sans);
  font-size: clamp(27px, 2.4vw, 38px);
  font-weight: 400;
  line-height: 1.15;
}

.guided-card > p[hidden] {
  display: none;
}

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

.guided-option {
  display: flex;
  min-height: 58px;
  align-items: center;
  padding: 16px 18px;
}

.guided-option strong {
  font-family: var(--sans);
  font-size: clamp(15px, 1.25vw, 17px);
  font-weight: 500;
  line-height: 1.25;
}

.guided-option span {
  display: none;
}

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

.guided-inline-estimate {
  display: grid;
  gap: 18px;
  border: 1px solid rgba(52, 83, 63, 0.13);
  border-radius: var(--radius);
  background: #f8f3eb;
  padding: 18px;
}

.guided-inline-estimate[hidden] {
  display: none !important;
}

.guided-review,
.guided-estimate-box {
  display: grid;
  gap: 12px;
}

.guided-estimate-box {
  border-top: 1px solid rgba(52, 83, 63, 0.12);
  padding-top: 16px;
}

.guided-review > div:first-child,
.guided-estimate-total {
  display: flex;
  gap: 14px;
  align-items: baseline;
  justify-content: space-between;
}

.guided-review span,
.guided-estimate-total span,
.guided-product-preview span {
  color: var(--sage);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.guided-review h3 {
  margin: 0;
  color: var(--evergreen);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 520;
  line-height: 1.2;
}

.guided-estimate-total > strong {
  color: var(--evergreen);
  font-family: var(--sans);
  font-size: clamp(26px, 2.3vw, 38px);
  font-weight: 500;
  line-height: 1;
}

.guided-review dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 18px;
  margin: 0;
}

.guided-review dt {
  color: var(--sage);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.guided-review dd {
  margin: 3px 0 0;
  color: var(--ink);
  font-size: 13.5px;
  line-height: 1.4;
}

.guided-product-preview {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
}

.guided-product-preview img {
  width: 82px;
  aspect-ratio: 1;
  border-radius: var(--radius);
  object-fit: cover;
}

.guided-product-preview strong,
.guided-product-preview small {
  display: block;
}

.guided-product-preview strong {
  margin-top: 4px;
  color: var(--evergreen);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
}

.guided-product-preview small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.35;
}

.guided-inline-estimate ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guided-inline-estimate li {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  border-top: 1px solid rgba(52, 83, 63, 0.1);
  padding-top: 8px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
}

.guided-inline-estimate li strong {
  flex: 0 0 auto;
  color: var(--evergreen);
  font-weight: 650;
}

.guided-inline-estimate p {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.45;
}

@media (max-width: 1100px) {
  .guided-layout {
    max-width: none;
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .guided-option {
    min-height: 52px;
  }

  .guided-review > div:first-child,
  .guided-estimate-total,
  .guided-inline-estimate li {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .guided-review dl {
    grid-template-columns: 1fr;
  }
}

.inquiry-resume-bubble {
  position: fixed;
  right: clamp(18px, 2.7vw, 34px);
  bottom: clamp(18px, 2.7vw, 34px);
  z-index: 120;
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  min-width: 0;
  border: 0;
  border-radius: 999px;
  background: var(--blush);
  box-shadow: 0 8px 18px rgba(93, 61, 52, 0.13);
  color: #fffdf7;
  font-family: var(--sans);
  padding: 0 25px;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.inquiry-resume-bubble:hover {
  background: #d19589;
  box-shadow: 0 10px 22px rgba(93, 61, 52, 0.16);
  transform: translateY(-1px);
}

.inquiry-resume-bubble span {
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.inquiry-resume-bubble small {
  color: rgba(255, 253, 247, 0.72);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.1em;
  line-height: 1.1;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .inquiry-resume-bubble {
    right: 16px;
    bottom: 14px;
    left: auto;
  }
}

/* Mobile usability pass: keep desktop untouched while removing phone overflow and long-card pacing. */
@media (max-width: 760px) {
  :root {
    --site-pad: clamp(16px, 5vw, 22px);
  }

  html,
  body {
    overflow-x: clip;
  }

  .site-header {
    position: sticky;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px 12px;
    align-items: center;
    padding: 9px var(--site-pad) 10px;
  }

  .brand img.nav-logo-icon {
    width: 38px;
    height: 38px;
  }

  .header-cta {
    justify-self: end;
    min-height: 36px;
    padding: 9px 12px;
    font-size: 9px;
    letter-spacing: 0.1em;
    white-space: nowrap;
  }

  .nav {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    width: 100%;
    overflow: visible;
    padding: 0;
  }

  .nav a {
    min-width: 0;
    min-height: 34px;
    padding: 0 6px;
    border: 1px solid rgba(52, 83, 63, 0.12);
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.56);
    font-size: 9px;
    letter-spacing: 0.08em;
  }

  .section {
    padding: 44px var(--site-pad);
  }

  .page-hero {
    min-height: 390px;
    padding: 96px var(--site-pad) 34px;
  }

  .hero.section {
    min-height: 500px;
  }

  .hero-panel {
    padding: 84px var(--site-pad) 70px;
  }

  .hero-actions {
    gap: 9px;
    margin-top: 24px;
  }

  .hero-actions .button,
  .hero-note-actions .button,
  .page-hero .button,
  .button {
    min-height: 40px;
    padding: 10px 13px;
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .section-heading {
    gap: 14px;
    margin-bottom: 24px;
  }

  .section-heading p,
  .intro-copy,
  .feature-content p,
  .bar-content p,
  .inquiry-intro p {
    font-size: 14px;
    line-height: 1.58;
  }

  .eyebrow,
  .section-kicker {
    margin-bottom: 10px;
    font-size: 10px;
  }

  .value-strip article {
    min-height: 0;
    padding: 21px var(--site-pad);
  }

  .value-strip span,
  .mini-card span,
  .support-grid span,
  .event-grid span,
  .steps span {
    margin-bottom: 12px;
    font-size: 24px;
  }

  .value-strip strong {
    max-width: none;
    font-size: clamp(22px, 7vw, 28px);
    line-height: 1.08;
  }

  .value-strip p {
    margin-top: 9px;
    font-size: 14px;
    line-height: 1.5;
  }

  .floral-preview .section-heading p {
    font-size: 14px;
    line-height: 1.58;
  }

  .carousel-track {
    gap: 10px;
    padding-bottom: 4px;
  }

  .carousel-card,
  .carousel-card.tall,
  .carousel-card.is-video {
    flex-basis: 74vw;
    height: 300px;
  }

  .carousel-card.wide {
    flex-basis: 82vw;
  }

  .carousel-actions {
    padding: 0 6px;
  }

  .carousel-arrow {
    width: 38px;
    height: 38px;
    font-size: 16px;
    box-shadow: 0 10px 24px rgba(31, 48, 36, 0.14);
  }

  .carousel-gallery-link,
  .section-cta .button,
  .section-cta .text-link {
    width: 100%;
  }

  .floral-bar {
    gap: 22px;
  }

  .bar-media img {
    max-height: 300px;
  }

  .event-fit-list {
    gap: 7px;
    margin-top: 20px;
  }

  .event-fit-list span {
    min-height: 30px;
    padding: 7px 10px;
    font-size: 9px;
    letter-spacing: 0.08em;
  }

  .pricing-intro {
    padding: 18px;
  }

  .pricing-intro strong {
    font-size: clamp(24px, 7vw, 30px);
  }

  .package-grid,
  .mini-card-grid {
    gap: 10px;
  }

  .package-card {
    min-height: 0;
    padding: 20px;
  }

  .package-card strong {
    margin: 16px 0 3px;
    font-size: clamp(42px, 13vw, 58px);
  }

  .package-card p {
    margin-bottom: 16px;
    font-size: 14px;
  }

  .package-card ul {
    gap: 8px;
    margin-top: 0;
  }

  .package-card li {
    padding-top: 8px;
    font-size: 14px;
    line-height: 1.4;
  }

  .pricing-disclaimer {
    margin-top: 16px;
    font-size: 10px;
    line-height: 1.55;
  }

  .mini-card {
    min-height: 0;
    padding: 20px;
  }

  .mini-card strong {
    font-size: 23px;
    line-height: 1.12;
  }

  .mini-card p {
    margin-top: 9px;
    font-size: 14px;
    line-height: 1.48;
  }

  .section-cta {
    gap: 10px;
    margin-top: 22px;
  }

  .gallery-page {
    min-height: 0;
  }

  .gallery-page .section-heading {
    margin-bottom: 22px;
  }

  .gallery-page h1,
  .inquiry-page h1 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .filters {
    gap: 6px;
    margin-bottom: 20px;
  }

  .filter {
    min-height: 34px;
    padding: 8px 10px;
    font-size: 9px;
  }

  .subcategory-card {
    grid-template-rows: 190px auto;
    min-height: 0;
  }

  .subcategory-card span {
    margin: 16px 16px 8px;
  }

  .subcategory-card strong {
    margin-inline: 16px;
    font-size: 23px;
  }

  .subcategory-card p {
    margin: 10px 16px 18px;
  }

  .gallery-card {
    grid-template-rows: minmax(230px, auto) auto;
  }

  .gallery-card img {
    min-height: 230px;
    max-height: 320px;
  }

  .gallery-card div {
    padding: 14px 15px 16px;
  }

  .gallery-card strong {
    font-size: 20px;
  }

  .gallery-page .gallery-grid.is-product-grid .gallery-card-media {
    aspect-ratio: 4 / 4.6;
  }

  .gallery-page .gallery-grid.is-product-grid .gallery-card:not(.floral-board-card),
  .gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card {
    gap: 0;
  }

  .inquiry.guided-inquiry-page {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: 0;
    padding-top: 40px;
  }

  .inquiry-intro {
    position: static;
  }

  .guided-inquiry,
  .guided-progress,
  .guided-layout,
  .guided-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .guided-layout {
    grid-template-columns: 1fr;
    margin-left: 0;
  }

  .guided-progress {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
    margin-bottom: 10px;
  }

  .guided-progress span {
    min-height: 28px;
    justify-content: center;
    padding: 6px 4px;
    font-size: 8px;
    letter-spacing: 0.08em;
  }

  .guided-card {
    gap: 14px;
    padding: 18px;
  }

  .guided-card h2 {
    font-size: clamp(22px, 6.6vw, 28px);
  }

  .guided-card > p:not(.guided-step-kicker):not(.form-status) {
    margin-top: -4px;
    font-size: 13px;
    line-height: 1.5;
  }

  .guided-options,
  .guided-check-options,
  .guided-field-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .guided-option {
    min-height: 46px;
    padding: 13px 14px;
  }

  .guided-card input,
  .guided-card select,
  .guided-card textarea,
  .guided-select-trigger {
    min-height: 42px;
    font-size: 16px;
  }

  .guided-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .guided-actions .button {
    width: 100%;
  }

  .guided-actions .button[data-guided-submit] {
    grid-column: auto;
  }

  .guided-review dl {
    grid-template-columns: 1fr;
  }

  .guided-product-preview {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .guided-product-preview img {
    width: 64px;
  }
}

@media (max-width: 820px) {
  .inquiry.guided-inquiry-page {
    grid-template-columns: 1fr;
  }

  .guided-inquiry,
  .guided-progress,
  .guided-layout,
  .guided-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .guided-layout {
    grid-template-columns: 1fr;
    margin-left: 0;
  }
}

@media (max-width: 430px) {
  .site-header {
    gap: 8px;
  }

  .nav a {
    min-height: 32px;
  }

  .carousel-card,
  .carousel-card.tall,
  .carousel-card.is-video {
    flex-basis: 78vw;
    height: 270px;
  }

  .carousel-card.wide {
    flex-basis: 84vw;
  }

  .gallery-grid.is-floral-board {
    grid-template-columns: repeat(var(--board-columns, 3), minmax(0, 1fr));
  }

  .site-footer {
    padding-top: 42px;
  }
}

/* Mobile image previews: match the Floral Bar swipe-gallery feel. */
@media (max-width: 760px) {
  .home-positioning-media,
  .wedding-proof-grid {
    display: flex;
    gap: 10px;
    margin-right: calc(var(--site-pad) * -1);
    margin-left: calc(var(--site-pad) * -1);
    overflow-x: auto;
    padding: 2px var(--site-pad) 10px;
    scroll-padding-left: var(--site-pad);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .home-positioning-media::-webkit-scrollbar,
  .wedding-proof-grid::-webkit-scrollbar {
    display: none;
  }

  .home-positioning-media img,
  .home-positioning-media .home-media-large,
  .wedding-proof-grid img,
  .wedding-proof-grid .wedding-proof-large {
    flex: 0 0 min(74vw, 292px);
    width: min(74vw, 292px);
    height: 260px;
    min-height: 0;
    max-height: none;
    aspect-ratio: auto;
    border-radius: 14px;
    object-fit: cover;
    scroll-snap-align: start;
  }

  .home-positioning-media .home-media-large,
  .wedding-proof-grid .wedding-proof-large {
    flex-basis: min(82vw, 320px);
    width: min(82vw, 320px);
  }
}

@media (max-width: 430px) {
  .home-positioning-media img,
  .home-positioning-media .home-media-large,
  .wedding-proof-grid img,
  .wedding-proof-grid .wedding-proof-large {
    height: 236px;
  }
}

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

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .nav-toggle {
    position: relative;
    z-index: 5001;
    display: inline-flex;
    grid-column: 3;
    grid-row: 1;
    align-items: center;
    justify-content: center;
    width: 40px;
    min-height: 36px;
    border: 1px solid rgba(52, 83, 63, 0.18);
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.68);
    color: var(--evergreen);
    flex-direction: column;
    gap: 4px;
    padding: 0;
    cursor: pointer;
  }

  .nav-toggle span {
    display: block;
    width: 15px;
    height: 1.5px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .site-header.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(5.5px) rotate(45deg);
  }

  .site-header.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
  }

  .header-cta {
    grid-column: 2;
    grid-row: 1;
  }

  .site-header .nav {
    display: none;
  }

  .site-header.nav-open .nav {
    display: grid;
    position: absolute;
    top: calc(100% + 8px);
    right: var(--site-pad);
    left: var(--site-pad);
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 7px;
    border: 1px solid rgba(52, 83, 63, 0.13);
    border-radius: 10px;
    background: rgba(255, 253, 248, 0.98);
    box-shadow: 0 18px 44px rgba(32, 54, 34, 0.14);
  }

  .site-header.nav-open .nav a {
    justify-content: flex-start;
    min-height: 40px;
    border: none;
    border-radius: 7px;
    background: transparent;
    padding: 0 12px;
    color: var(--evergreen);
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .site-header.nav-open .nav a + a {
    border-top: 1px solid rgba(52, 83, 63, 0.08);
  }

  .site-header.nav-open .nav a[aria-current="page"],
  .site-header.nav-open .nav a:hover {
    background: rgba(52, 83, 63, 0.07);
  }

  .event-choice-card,
  .event-choice-card.compact-card,
  .refined-event-grid .event-choice-card.compact-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .event-choice-card img,
  .event-choice-card.compact-card img,
  .refined-event-grid .event-choice-card.compact-card img {
    min-height: 0;
    max-height: 240px;
  }

  .event-choice-card div,
  .event-choice-card.compact-card div,
  .refined-event-grid .event-choice-card.compact-card div {
    min-width: 0;
    padding: 18px;
  }

  .event-choice-card div > span,
  .event-choice-card.compact-card div > span,
  .refined-event-grid .event-choice-card.compact-card div > span {
    margin-bottom: 10px;
  }

  .event-choice-card p,
  .event-choice-card.compact-card p,
  .refined-event-grid .event-choice-card.compact-card p {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.45;
  }

  .event-choice-card a {
    padding-top: 18px;
  }
}

@media (min-width: 761px) and (max-width: 960px) {
  .site-header,
  .site-header.is-scrolled,
  .home-page .site-header,
  .home-page .site-header.is-scrolled,
  .home-page .site-header:not(.is-scrolled) {
    background: rgba(255, 253, 248, 0.98);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 1px 0 rgba(47, 75, 50, 0.1);
    filter: none;
    transform: none;
  }

  .site-header img,
  .site-header a,
  .site-header button,
  .home-page .site-header img,
  .home-page .site-header.is-scrolled .brand img,
  .home-page .site-header:not(.is-scrolled) .brand img {
    filter: none;
    opacity: 1;
    transform: none;
  }

  .home-page .brand {
    margin: 0;
  }

  .home-page .nav {
    display: flex;
  }

  .home-page .header-cta {
    display: inline-flex;
  }
}

/* Mobile density v2: crisper sticky header and faster scan grids. */
@media (max-width: 760px) {
  .site-header,
  .site-header.is-scrolled,
  .home-page .site-header,
  .home-page .site-header.is-scrolled,
  .home-page .site-header:not(.is-scrolled) {
    background: rgba(255, 253, 248, 0.98);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 1px 0 rgba(47, 75, 50, 0.1);
    filter: none;
    transform: none;
  }

  .site-header img,
  .site-header a,
  .site-header button,
  .home-page .site-header img,
  .home-page .site-header.is-scrolled .brand img,
  .home-page .site-header:not(.is-scrolled) .brand img {
    filter: none;
    opacity: 1;
    transform: none;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
  }

  .section {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .page-hero {
    min-height: 330px;
    padding-top: 82px;
    padding-bottom: 28px;
  }

  .page-hero.wedding-page,
  .page-hero.events-page,
  .page-hero.floral-page {
    min-height: clamp(410px, 50svh, 480px);
    padding-top: 92px;
    padding-bottom: 34px;
  }

  .page-hero.wedding-page > div,
  .page-hero.events-page > div,
  .page-hero.floral-page > div {
    display: grid;
    gap: 18px;
  }

  .page-hero.wedding-page h1,
  .page-hero.events-page h1,
  .page-hero.floral-page h1,
  .page-hero.wedding-page .eyebrow,
  .page-hero.events-page .eyebrow,
  .page-hero.floral-page .eyebrow,
  .page-hero.wedding-page .page-copy,
  .page-hero.events-page .page-copy,
  .page-hero.floral-page .page-copy {
    margin-top: 0;
    margin-bottom: 0;
  }

  .page-hero.wedding-page .hero-actions,
  .page-hero.events-page .hero-actions,
  .page-hero.floral-page .hero-actions {
    margin-top: 4px;
  }

  .page-copy,
  .wedding-page .page-copy,
  .events-page .page-copy,
  .floral-page .page-copy {
    margin-top: 12px;
    line-height: 1.55;
  }

  .section-heading,
  .section-heading.compact,
  .event-include-heading {
    gap: 10px;
    margin-bottom: 18px;
  }

  .section-heading p,
  .floral-preview .section-heading p,
  .floral-pricing p,
  .event-mini-portfolio p,
  .event-quote-note p,
  .wedding-portfolio-copy p,
  .home-positioning-copy p {
    font-size: 13px;
    line-height: 1.48;
  }

  .home-positioning-media,
  .wedding-proof-grid,
  .event-portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .home-positioning-media .home-media-large,
  .wedding-proof-grid .wedding-proof-large,
  .home-positioning-media img,
  .wedding-proof-grid img,
  .event-portfolio-grid img {
    grid-row: auto;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
    border-radius: 12px;
  }

  .event-portfolio-grid img:nth-child(2),
  .event-portfolio-grid img:nth-child(5) {
    aspect-ratio: 4 / 5;
  }

  .event-portfolio-grid img {
    border-radius: var(--radius);
  }

  .event-portfolio-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .event-portfolio-grid img,
  .event-portfolio-grid img:nth-child(2),
  .event-portfolio-grid img:nth-child(5) {
    aspect-ratio: 1;
  }

  .value-strip,
  .event-type-row,
  .wedding-service-grid,
  .mini-card-grid,
  .package-grid,
  .event-choice-grid,
  .gallery-page .subcategory-grid,
  .gallery-page .gallery-grid:not(.is-floral-board),
  .gallery-page .gallery-grid.is-product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .value-strip {
    padding: 8px;
    background: var(--warm-white);
    border-top: 1px solid var(--hairline);
  }

  .value-strip article,
  .event-type-row article,
  .wedding-service-card,
  .mini-card,
  .package-card,
  .event-choice-card,
  .event-choice-card.compact-card,
  .refined-event-grid .event-choice-card.compact-card {
    min-height: 0;
    border-radius: var(--radius);
    padding: 14px;
  }

  .value-strip span,
  .mini-card span,
  .package-card span,
  .wedding-service-card > span,
  .event-type-row span,
  .event-choice-card div > span,
  .event-choice-card.compact-card div > span,
  .refined-event-grid .event-choice-card.compact-card div > span {
    margin-bottom: 8px;
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .value-strip strong,
  .mini-card strong,
  .event-choice-card h3,
  .event-choice-card.compact-card h3,
  .refined-event-grid .event-choice-card.compact-card h3 {
    font-family: var(--serif);
    font-size: clamp(17px, 5vw, 22px);
    line-height: 1.12;
  }

  .wedding-service-card strong {
    font-family: var(--sans);
    font-size: clamp(17px, 5vw, 22px);
    line-height: 1.12;
  }

  .value-strip p,
  .mini-card p,
  .wedding-service-card p,
  .event-type-row p,
  .event-choice-card p,
  .event-choice-card.compact-card p,
  .refined-event-grid .event-choice-card.compact-card p {
    margin-top: 7px;
    font-size: 12px;
    line-height: 1.38;
  }

  .package-card {
    padding: 15px;
  }

  .package-card strong {
    margin-top: 8px;
    font-size: clamp(34px, 11vw, 46px);
  }

  .package-card p {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .package-card ul {
    gap: 5px;
  }

  .package-card li {
    padding-top: 6px;
    font-size: 11px;
    line-height: 1.28;
  }

  .pricing-intro {
    padding: 14px;
  }

  .pricing-disclaimer {
    margin-top: 12px;
  }

  .floral-preview {
    overflow: hidden;
  }

  .carousel-card,
  .carousel-card.tall,
  .carousel-card.is-video {
    flex-basis: 68vw;
    height: 240px;
  }

  .carousel-card.wide {
    flex-basis: 76vw;
  }

  .bar-media img {
    max-height: 240px;
  }

  .event-fit-list {
    gap: 6px;
    margin-top: 14px;
  }

  .event-fit-list span {
    min-height: 28px;
    padding: 6px 8px;
    font-size: 8px;
  }

  .event-choice-card img,
  .event-choice-card.compact-card img,
  .refined-event-grid .event-choice-card.compact-card img {
    width: 100%;
    height: 128px;
    min-height: 0;
    max-height: 128px;
    object-fit: cover;
  }

  .event-choice-card div,
  .event-choice-card.compact-card div,
  .refined-event-grid .event-choice-card.compact-card div {
    padding: 10px;
  }

  .event-choice-card h3,
  .event-choice-card.compact-card h3,
  .refined-event-grid .event-choice-card.compact-card h3 {
    font-size: clamp(15px, 4.4vw, 18px);
  }

  .event-choice-card p,
  .event-choice-card.compact-card p,
  .refined-event-grid .event-choice-card.compact-card p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .gallery-page .subcategory-grid {
    align-items: stretch;
  }

  .gallery-page .subcategory-card,
  .subcategory-card {
    grid-template-rows: auto auto auto;
    min-height: 0;
    border-radius: 12px !important;
  }

  .gallery-page .subcategory-card-media {
    height: clamp(118px, 32vw, 150px);
    border-radius: 12px 12px 0 0;
    clip-path: inset(0 round 12px 12px 0 0);
  }

  .gallery-page .subcategory-card span,
  .subcategory-card span {
    margin: 12px 12px 5px;
    font-size: 8px;
  }

  .gallery-page .subcategory-card strong,
  .subcategory-card strong {
    margin: 0 12px;
    font-size: clamp(16px, 4.8vw, 20px);
    line-height: 1.08;
  }

  .gallery-page .subcategory-card p,
  .subcategory-card p {
    display: -webkit-box;
    max-width: none;
    margin: 9px 12px 17px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    font-size: 11px;
    line-height: 1.36;
  }

  .gallery-page .section-heading p {
    max-width: 31ch;
  }

  .copy-desktop,
  .subcategory-copy-desktop {
    display: none !important;
  }

  .copy-mobile {
    display: inline;
  }

  .mobile-remove {
    display: none !important;
  }

  .review-card p .copy-mobile,
  .wedding-service-card p .copy-mobile,
  .event-choice-card p .copy-mobile,
  .event-choice-card.compact-card p .copy-mobile,
  .refined-event-grid .event-choice-card.compact-card p .copy-mobile,
  .event-choice-card h3 .copy-mobile,
  .event-choice-card.compact-card h3 .copy-mobile,
  .refined-event-grid .event-choice-card.compact-card h3 .copy-mobile {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: 0;
    line-height: inherit;
    text-transform: none;
  }

  .subcategory-copy-mobile {
    display: -webkit-box !important;
  }

  .home-positioning-copy,
  .wedding-portfolio-copy,
  .event-mini-portfolio > div,
  .event-quote-note > div {
    display: grid;
    gap: 16px;
  }

  .home-positioning-copy p:not(.eyebrow),
  .wedding-portfolio-copy p:not(.eyebrow),
  .wedding-page .page-copy,
  .events-page .page-copy,
  .event-pathways .section-heading > p,
  .event-mini-portfolio > div > p:not(.eyebrow),
  .event-quote-note > div > p:not(.eyebrow),
  .wedding-service-map .section-heading > p {
    max-width: 31ch;
    margin-top: 0;
    line-height: 1.62;
  }

  .event-choice-card p,
  .event-choice-card.compact-card p,
  .refined-event-grid .event-choice-card.compact-card p {
    max-width: 21ch;
    margin-top: 0;
  }

  .events-capability .section-heading,
  .events-include-section .section-heading,
  .event-include-heading {
    margin-top: 0;
    margin-bottom: 16px;
  }

  .events-capability .section-heading > div,
  .events-include-section .section-heading > div {
    display: grid;
    gap: 8px;
  }

  .events-capability .section-heading .eyebrow,
  .events-include-section .section-heading .eyebrow {
    margin-bottom: 0;
  }

  .events-capability .event-type-row {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 8px;
    margin-bottom: 0;
  }

  .events-capability .event-type-row article {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    min-height: 0;
    align-items: center;
    justify-content: center;
    border-color: rgba(52, 83, 63, 0.14);
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.76);
    padding: 7px 12px;
  }

  .events-capability .event-type-row span {
    margin: 0;
    font-size: 8.5px;
    font-weight: 500;
    letter-spacing: 0.045em;
    line-height: 1.25;
    text-align: left;
  }

  .events-capability .event-type-row p {
    display: none;
  }

  .event-mini-portfolio {
    display: grid;
    gap: 18px;
  }

  .event-mini-portfolio > div {
    gap: 10px;
  }

  .event-mini-portfolio .eyebrow,
  .event-mini-portfolio h2 {
    margin-bottom: 0;
  }

  .event-mini-portfolio .event-portfolio-grid {
    display: flex;
    gap: 10px;
    margin-right: calc(var(--site-pad) * -1);
    margin-left: calc(var(--site-pad) * -1);
    overflow-x: auto;
    padding: 2px var(--site-pad) 8px;
    scroll-padding-left: var(--site-pad);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .event-mini-portfolio .event-portfolio-grid::-webkit-scrollbar {
    display: none;
  }

  .event-mini-portfolio .event-portfolio-grid img,
  .event-mini-portfolio .event-portfolio-grid img:nth-child(2),
  .event-mini-portfolio .event-portfolio-grid img:nth-child(5) {
    flex: 0 0 min(72vw, 280px);
    width: min(72vw, 280px);
    height: 250px;
    min-height: 0;
    aspect-ratio: auto;
    scroll-snap-align: start;
  }

  .events-include-section .event-choice-grid {
    display: flex;
    gap: 10px;
    margin-right: calc(var(--site-pad) * -1);
    margin-left: calc(var(--site-pad) * -1);
    overflow-x: auto;
    padding: 2px var(--site-pad) 10px;
    scroll-padding-left: var(--site-pad);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .events-include-section .event-choice-grid::-webkit-scrollbar {
    display: none;
  }

  .events-include-section .event-choice-card,
  .events-include-section .event-choice-card.compact-card,
  .events-include-section .refined-event-grid .event-choice-card.compact-card {
    display: grid;
    grid-template-columns: minmax(120px, 0.82fr) minmax(150px, 1fr);
    flex: 0 0 min(88vw, 350px);
    width: min(88vw, 350px);
    min-height: 210px;
    border-radius: var(--radius);
    padding: 0;
    overflow: hidden;
    scroll-snap-align: start;
  }

  .events-include-section .event-choice-card img,
  .events-include-section .event-choice-card.compact-card img,
  .events-include-section .refined-event-grid .event-choice-card.compact-card img {
    width: 100%;
    height: 100%;
    max-height: none;
    min-height: 210px;
    aspect-ratio: auto;
    border-radius: var(--radius) 0 0 var(--radius);
    object-fit: cover;
  }

  .events-include-section .event-choice-card div,
  .events-include-section .event-choice-card.compact-card div,
  .events-include-section .refined-event-grid .event-choice-card.compact-card div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px;
  }

  .events-include-section .event-choice-card p,
  .events-include-section .event-choice-card.compact-card p,
  .events-include-section .refined-event-grid .event-choice-card.compact-card p {
    display: block;
    max-width: 24ch;
    margin-top: 11px;
    color: var(--muted);
    font-family: var(--sans);
    font-size: 13.5px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.48;
    text-transform: none;
  }

  .events-include-section .event-choice-card div > span,
  .events-include-section .event-choice-card.compact-card div > span,
  .events-include-section .refined-event-grid .event-choice-card.compact-card div > span {
    margin-bottom: 10px;
    font-size: 8.5px;
    letter-spacing: 0.075em;
  }

  .events-include-section .event-choice-card h3,
  .events-include-section .event-choice-card.compact-card h3,
  .events-include-section .refined-event-grid .event-choice-card.compact-card h3 {
    max-width: 16ch;
    font-family: var(--sans);
    font-size: clamp(21px, 5.8vw, 25px);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.08;
    text-transform: none;
  }

  .event-gallery-cta {
    display: inline-flex;
    margin-top: 12px;
  }

  .wedding-service-map .wedding-service-grid {
    display: flex;
    gap: 10px;
    margin-right: calc(var(--site-pad) * -1);
    margin-left: calc(var(--site-pad) * -1);
    overflow-x: auto;
    padding: 2px var(--site-pad) 10px;
    scroll-padding-left: var(--site-pad);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .wedding-service-map .wedding-service-grid::-webkit-scrollbar {
    display: none;
  }

  .wedding-service-map .wedding-service-card {
    display: flex;
    flex: 0 0 min(68vw, 260px);
    width: min(68vw, 260px);
    min-height: 170px;
    flex-direction: column;
    justify-content: space-between;
    scroll-snap-align: start;
  }

  .home-positioning-copy .home-path-chips,
  .wedding-portfolio-copy .hero-actions,
  .event-quote-note .button {
    margin-top: 4px;
  }

  .home-path-chips {
    gap: 9px;
  }

  .home-path-chips a {
    min-height: 34px;
    padding: 9px 12px;
  }

  .reviews-copy {
    display: grid;
    gap: 14px;
  }

  .home-page .reviews-copy .text-link,
  .reviews-rating {
    margin-top: 0;
  }

  .home-cta-strip {
    gap: 18px;
  }

  .home-cta-strip .hero-actions {
    margin-top: 2px;
  }

  .wedding-service-card {
    gap: 12px;
  }

  .wedding-service-card p {
    max-width: 18ch;
    margin-top: 0;
  }

  .wedding-price-strip {
    gap: 20px;
  }

  .gallery-page .gallery-grid.is-product-grid .gallery-card:not(.floral-board-card),
  .gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card,
  .gallery-card:not(.floral-board-card) {
    border-radius: 12px;
  }

  .gallery-page .gallery-grid.is-product-grid .gallery-card-media,
  .gallery-page .gallery-card-media,
  .gallery-card img {
    min-height: 0;
    max-height: none;
    aspect-ratio: 4 / 4.8;
    border-radius: 12px 12px 0 0;
  }

  .gallery-page .gallery-grid.is-floral-board .floral-board-card img,
  .gallery-page .gallery-grid.is-floral-board .floral-board-card video {
    border-radius: 14px;
    aspect-ratio: auto;
  }

  .gallery-page .gallery-grid.is-product-grid .gallery-card:not(.floral-board-card) div,
  .gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card div,
  .gallery-card div {
    padding: 10px 4px 0;
  }

  .gallery-page .gallery-grid.is-product-grid .gallery-card:not(.floral-board-card) span,
  .gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card span,
  .gallery-card span {
    margin-bottom: 4px;
    font-size: 8px;
  }

  .gallery-page .gallery-grid.is-product-grid .gallery-card:not(.floral-board-card) strong,
  .gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card strong,
  .gallery-card strong {
    font-size: 14px;
    line-height: 1.16;
  }

  .gallery-page .gallery-grid.is-product-grid .gallery-card:not(.floral-board-card) p,
  .gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card p,
  .gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card .compare-line,
  .gallery-card p {
    font-size: 11px;
    line-height: 1.25;
  }

  .event-quote-note {
    gap: 14px;
  }

  .event-quote-note .button {
    width: 100%;
  }
}

/* Keep Events service/product cards rounded in the mobile slider. */
@media (max-width: 760px) {
  .events-include-section .event-choice-card,
  .events-include-section .event-choice-card.compact-card,
  .events-include-section .refined-event-grid .event-choice-card.compact-card {
    border-radius: var(--radius);
    overflow: hidden;
  }

  .events-include-section .event-choice-card img,
  .events-include-section .event-choice-card.compact-card img,
  .events-include-section .refined-event-grid .event-choice-card.compact-card img {
    border-radius: var(--radius) 0 0 var(--radius);
  }
}

@media (max-width: 430px) {
  .section {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .gallery-page .subcategory-grid,
  .gallery-page .gallery-grid:not(.is-floral-board),
  .gallery-page .gallery-grid.is-product-grid,
  .wedding-service-grid,
  .event-type-row,
  .event-choice-grid,
  .mini-card-grid,
  .package-grid,
  .value-strip {
    gap: 7px;
  }

  .value-strip article,
  .event-type-row article,
  .wedding-service-card,
  .mini-card,
  .package-card,
  .event-choice-card,
  .event-choice-card.compact-card,
  .refined-event-grid .event-choice-card.compact-card {
    padding: 12px;
  }

  .gallery-page .subcategory-card-media {
    height: clamp(108px, 31vw, 132px);
  }

  .carousel-card,
  .carousel-card.tall,
  .carousel-card.is-video {
    height: 220px;
  }

  .event-choice-card img,
  .event-choice-card.compact-card img,
  .refined-event-grid .event-choice-card.compact-card img {
    height: 112px;
    max-height: 112px;
  }

  .event-choice-card div,
  .event-choice-card.compact-card div,
  .refined-event-grid .event-choice-card.compact-card div {
    padding: 9px;
  }

  .events-include-section .event-choice-card,
  .events-include-section .event-choice-card.compact-card,
  .events-include-section .refined-event-grid .event-choice-card.compact-card {
    grid-template-columns: minmax(118px, 0.78fr) minmax(150px, 1fr);
    min-height: 206px;
    border-radius: var(--radius);
    padding: 0;
  }

  .events-include-section .event-choice-card img,
  .events-include-section .event-choice-card.compact-card img,
  .events-include-section .refined-event-grid .event-choice-card.compact-card img {
    height: 100%;
    max-height: none;
    min-height: 206px;
    border-radius: var(--radius) 0 0 var(--radius);
  }

  .events-include-section .event-choice-card div,
  .events-include-section .event-choice-card.compact-card div,
  .events-include-section .refined-event-grid .event-choice-card.compact-card div {
    padding: 15px;
  }
}

/* Mobile homepage hero: keep the first visual frame full and optically centered. */
@media (max-width: 760px) {
  .home-page .site-header,
  .home-page .site-header.is-scrolled,
  .home-page .site-header:not(.is-scrolled) {
    position: sticky;
    top: 0;
    display: grid;
    grid-template-columns: auto 1fr auto;
    min-height: 58px;
    padding: 9px var(--site-pad) 10px;
  }

  .home-page .brand {
    margin: 0;
  }

  .home-page .brand img.nav-logo-icon,
  .home-page .site-header:not(.is-scrolled) .brand img.nav-logo-icon,
  .home-page .site-header.is-scrolled .brand img.nav-logo-icon {
    content: url("./assets/pensee-nav-p-icon-green.png?v=20260524-product-media-frame");
    filter: brightness(0) saturate(100%) invert(30%) sepia(14%) saturate(863%) hue-rotate(87deg) brightness(92%) contrast(89%);
    opacity: 1;
  }

  .home-page .nav {
    display: none;
  }

  .home-page .site-header.nav-open .nav {
    display: grid;
  }

  .home-page .site-header.nav-open .nav,
  .site-header.nav-open .nav {
    position: absolute;
    top: calc(100% + 8px);
    right: var(--site-pad);
    left: var(--site-pad);
    width: auto;
    max-width: none;
    justify-self: stretch;
    grid-template-columns: 1fr;
  }

  .home-page .site-header.nav-open .nav a,
  .home-page .site-header:not(.is-scrolled).nav-open .nav a,
  .home-page .site-header.nav-open .nav a[aria-current="page"] {
    color: var(--evergreen);
  }

  .home-page .site-header.nav-open .nav a[aria-current="page"],
  .home-page .site-header:not(.is-scrolled).nav-open .nav a[aria-current="page"],
  .home-page .site-header.nav-open .nav a:hover {
    background: rgba(52, 83, 63, 0.07);
  }

  .home-page .header-cta {
    display: inline-flex;
    border-color: rgba(52, 83, 63, 0.26);
    color: var(--evergreen);
  }

  .home-page .site-header:not(.is-scrolled) .header-cta,
  .home-page .site-header.is-scrolled .header-cta {
    border-color: rgba(52, 83, 63, 0.26);
    color: var(--evergreen);
  }

  .home-page .hero.section {
    min-height: clamp(500px, 67svh, 590px);
    padding: 0 var(--site-pad);
    place-items: center;
  }

  .home-page .hero-panel {
    display: grid;
    gap: 18px;
    width: min(100%, 360px);
    min-height: clamp(420px, 55svh, 500px);
    align-content: center;
    justify-items: center;
    padding: 20px 0 76px;
    text-align: center;
  }

  .home-page .hero .eyebrow,
  .home-page .hero-copy {
    text-align: center;
  }

  .home-page .hero .eyebrow {
    margin-bottom: 0;
  }

  .hero-logo {
    width: min(320px, 86vw);
    margin-inline: auto;
  }

  .home-page .hero-copy {
    max-width: 310px;
    margin-top: 0;
  }

  .home-page .hero-note.hero-note-actions {
    position: absolute;
    left: 50%;
    right: auto;
    bottom: max(28px, env(safe-area-inset-bottom));
    width: min(100% - 40px, 330px);
    justify-content: center;
    padding: 0;
    transform: translateX(-50%);
  }

  .home-page .reviews {
    gap: 16px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .home-page .reviews-copy h2 {
    max-width: 280px;
    font-size: clamp(22px, 6vw, 28px);
    line-height: 1.13;
  }

  .reviews-rating {
    margin-top: 8px;
  }

  .home-page .reviews .text-link {
    margin-top: 8px;
  }

  .home-page .review-grid {
    display: flex;
    gap: 10px;
    margin-right: calc(var(--site-pad) * -1);
    margin-left: calc(var(--site-pad) * -1);
    overflow-x: auto;
    padding: 2px var(--site-pad) 8px;
    scroll-padding-left: var(--site-pad);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .home-page .review-grid::-webkit-scrollbar {
    display: none;
  }

  .home-page .review-card {
    flex: 0 0 min(68vw, 254px);
    min-height: 132px;
    justify-content: space-between;
    border: 1px solid rgba(47, 75, 50, 0.14);
    border-radius: var(--radius);
    background: rgba(255, 253, 248, 0.82);
    padding: 15px;
    scroll-snap-align: start;
  }

  .home-page .review-card p {
    font-size: 12.5px;
    line-height: 1.42;
  }

  .home-page .review-card span {
    margin-top: 14px;
    font-size: 8.5px;
  }
}

/* Mobile title cohesion: keep page and section headlines optically consistent. */
@media (max-width: 760px) {
  .page-hero h1,
  .gallery-page .section-heading h1,
  .gallery-page h1,
  .inquiry-page h1,
  .thank-you-page h1,
  .section-heading h2,
  .section-heading.compact h2,
  .home-positioning-copy h2,
  .home-page .reviews-copy h2,
  .home-cta-strip h2,
  .wedding-portfolio-copy h2,
  .wedding-price-strip h2,
  .event-mini-portfolio h2,
  .event-quote-note h2,
  .floral-preview h2,
  .floral-pricing h2,
  .bar-content h2,
  .guided-card h2 {
    max-width: 320px;
    font-size: clamp(22px, 5.9vw, 28px);
    line-height: 1.14;
    text-wrap: balance;
  }

  .section-heading,
  .section-heading.compact,
  .home-positioning-copy,
  .reviews-copy,
  .home-cta-strip {
    gap: 12px;
  }

  .home-positioning-copy h2,
  .home-page .reviews-copy h2,
  .home-cta-strip h2,
  .section-heading h2,
  .section-heading.compact h2 {
    margin-bottom: 8px;
  }

  .reviews-rating strong {
    font-size: 24px;
  }

  .reviews-rating span,
  .home-page .reviews .text-link {
    font-size: 9px;
  }

  .wedding-price-strip {
    gap: 18px;
  }

  .wedding-price-strip .price-list {
    margin-top: 0;
  }

  .wedding-price-strip .price-list div {
    padding: 12px 14px;
  }

  .wedding-price-strip .price-list span {
    font-size: 10.5px;
  }

  .wedding-price-strip .price-list strong {
    font-size: 10px;
    letter-spacing: 0.055em;
  }

  .floral-pricing .section-heading {
    margin-bottom: 18px;
  }

  .floral-pricing .pricing-intro {
    padding: 15px;
  }

  .floral-pricing .pricing-intro strong {
    margin-bottom: 8px;
    font-size: clamp(21px, 6vw, 26px);
  }

  .floral-pricing .pricing-intro p {
    margin-bottom: 12px;
    color: var(--ink);
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.45;
  }

  .floral-pricing .pricing-intro span {
    color: var(--ink);
    font-size: 9.5px;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.035em;
    text-transform: none;
  }

  .floral-pricing .package-grid {
    display: flex;
    gap: 10px;
    margin-right: calc(var(--site-pad) * -1);
    margin-left: calc(var(--site-pad) * -1);
    overflow-x: auto;
    padding: 2px var(--site-pad) 10px;
    scroll-padding-left: var(--site-pad);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .floral-pricing .package-grid::-webkit-scrollbar {
    display: none;
  }

  .floral-pricing .package-card {
    flex: 0 0 min(72vw, 270px);
    width: min(72vw, 270px);
    padding: 16px;
    scroll-snap-align: start;
  }

  .floral-pricing .package-card strong {
    margin: 12px 0 3px;
    font-size: clamp(34px, 10vw, 44px);
  }

  .floral-pricing .package-card p {
    margin-bottom: 13px;
    font-size: 12.5px;
  }

  .floral-pricing .package-card ul {
    gap: 7px;
  }

  .floral-pricing .package-card li {
    padding-top: 7px;
    font-size: 12.5px;
    line-height: 1.32;
  }

  .floral-pricing .pricing-disclaimer {
    color: rgba(84, 95, 77, 0.68);
    margin-top: 12px;
    font-size: 9px;
    font-weight: 350;
    letter-spacing: 0.035em;
    line-height: 1.45;
    text-transform: none;
  }
}

@media (max-width: 430px) {
  .page-hero h1,
  .gallery-page .section-heading h1,
  .gallery-page h1,
  .inquiry-page h1,
  .thank-you-page h1,
  .section-heading h2,
  .section-heading.compact h2,
  .home-positioning-copy h2,
  .home-page .reviews-copy h2,
  .home-cta-strip h2,
  .wedding-portfolio-copy h2,
  .wedding-price-strip h2,
  .event-mini-portfolio h2,
  .event-quote-note h2,
  .floral-preview h2,
  .floral-pricing h2,
  .bar-content h2,
  .guided-card h2 {
    max-width: 315px;
    font-size: clamp(21px, 5.7vw, 27px);
  }
}

/* Global gallery product card media rule. */
.gallery-page .gallery-grid.is-product-grid .gallery-card-media {
  aspect-ratio: 4 / 5;
}

.gallery-page .gallery-grid.is-product-grid .gallery-card-media img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
  transform: scale(1.34) !important;
}

/* Global gallery subcategory card media rule. */
.gallery-page .subcategory-card-media img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
  transform: scale(1.34) !important;
}

.gallery-page .subcategory-card[data-branch="Categories"] .subcategory-card-media img {
  transform: scale(1.42) !important;
}

.gallery-page .subcategory-card.is-empty .subcategory-card-media img {
  transform: scale(1.34) !important;
}

.gallery-page .subcategory-card[data-top="events"] .subcategory-card-media img {
  transform: scale(1.55) !important;
}

/* Gallery subcategory crop pass: prioritize the flowers/arrangement in each preview. */
.gallery-page .subcategory-card[data-top="wedding"] .subcategory-card-media img {
  object-position: 50% 40%;
}

.gallery-page .subcategory-card[data-top="events"] .subcategory-card-media img {
  object-position: 50% 52%;
}

.gallery-page .subcategory-card[data-top="floral-bar"] .subcategory-card-media img {
  object-position: 50% 56%;
}

.gallery-page .subcategory-card[data-top="sympathy"] .subcategory-card-media img {
  object-position: 50% 46%;
}

.gallery-page .subcategory-card[data-top="arrangements"] .subcategory-card-media img,
.gallery-page .subcategory-card[data-branch="Categories"]:not([data-leaf]) .subcategory-card-media img {
  object-position: 50% 42%;
}

.gallery-page .subcategory-card[data-leaf="Bridal bouquets"] .subcategory-card-media img {
  object-position: 52% 40%;
}

.gallery-page .subcategory-card[data-leaf="Boutonnières"] .subcategory-card-media img {
  object-position: 50% 44%;
}

.gallery-page .subcategory-card[data-leaf="Centerpieces"] .subcategory-card-media img {
  object-position: 50% 58%;
}

.gallery-page .subcategory-card[data-leaf="Arches & backdrops"] .subcategory-card-media img {
  object-position: 50% 48%;
}

.gallery-page .subcategory-card[data-leaf="Wedding accessories"] .subcategory-card-media img {
  object-position: 50% 45%;
}

.gallery-page .subcategory-card[data-leaf="Standing sprays"] .subcategory-card-media img,
.gallery-page .subcategory-card[data-leaf="Casket sprays"] .subcategory-card-media img {
  object-position: 50% 44%;
}

.gallery-page .subcategory-card[data-leaf="Heart tributes"] .subcategory-card-media img {
  object-position: 50% 34%;
  transform: scale(1.18) !important;
}

.gallery-page .subcategory-card[data-leaf="Casket sprays"] .subcategory-card-media img {
  object-position: 50% 70%;
  transform: scale(1.2) !important;
}

.gallery-page .subcategory-card[data-leaf="Wreaths"] .subcategory-card-media img {
  object-position: 56% 44%;
}

.gallery-page .subcategory-card[data-leaf="Cross tributes"] .subcategory-card-media img {
  object-position: 50% 54%;
}

.gallery-page .subcategory-card[data-branch="Church arrangements"]:not([data-leaf]) .subcategory-card-media img {
  object-position: 50% 64%;
}

.gallery-page .subcategory-card[data-branch="Occasion"]:not([data-leaf]) .subcategory-card-media img {
  object-position: 50% 54%;
}

.gallery-page .subcategory-card[data-leaf="Altar arrangements"] .subcategory-card-media img {
  object-position: 50% 48%;
}

.gallery-page .subcategory-card[data-leaf="Unity candles"] .subcategory-card-media img {
  object-position: 50% 56%;
}

.gallery-page .subcategory-card[data-leaf="Entry arrangements"] .subcategory-card-media img {
  object-position: 52% 58%;
}

.gallery-page .subcategory-card[data-leaf="Mother's Day"] .subcategory-card-media img,
.gallery-page .subcategory-card[data-leaf="Valentine's Day"] .subcategory-card-media img {
  object-position: 50% 52%;
}

.gallery-page .subcategory-card[data-leaf="Birthdays"] .subcategory-card-media img,
.gallery-page .subcategory-card[data-leaf="Easter"] .subcategory-card-media img,
.gallery-page .subcategory-card[data-leaf="Thanksgiving"] .subcategory-card-media img,
.gallery-page .subcategory-card[data-leaf="Specialty arrangements"] .subcategory-card-media img {
  object-position: 50% 58%;
}

.gallery-page .subcategory-card[data-leaf="Christmas"] .subcategory-card-media img {
  object-position: 50% 42%;
}

.gallery-page .subcategory-card[data-leaf="Roses"] .subcategory-card-media img,
.gallery-page .subcategory-card[data-leaf="Ikebana"] .subcategory-card-media img,
.gallery-page .subcategory-card[data-leaf="Tropical arrangements"] .subcategory-card-media img {
  object-position: 50% 50%;
}

.gallery-page .subcategory-card[data-leaf="Orchids"] .subcategory-card-media img {
  object-position: 54% 50%;
}

.gallery-page .subcategory-card[data-leaf="Mixed bouquets"] .subcategory-card-media img {
  object-position: 50% 56%;
}

/* Mobile gallery subcategory previews: keep the editorial rectangular image frame. */
@media (max-width: 640px) {
  .gallery-page .subcategory-card {
    aspect-ratio: auto;
    grid-template-rows: auto auto auto auto;
  }

  .gallery-page .subcategory-card-media {
    aspect-ratio: 4 / 3;
    height: auto !important;
    border-radius: 14px 14px 0 0;
    clip-path: inset(0 round 14px 14px 0 0);
  }
}

@media (max-width: 767px) and (hover: hover) and (pointer: fine) {
  .gallery-page .gallery-grid.is-product-grid {
    grid-template-columns: minmax(260px, 440px);
    justify-content: center;
    gap: 24px;
  }

  .gallery-page .gallery-grid.is-product-grid .gallery-card-media {
    aspect-ratio: 4 / 5;
  }

  .gallery-page .gallery-grid.is-product-grid .gallery-card:not(.floral-board-card) div,
  .gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card div {
    padding: 22px;
  }
}

@media (max-width: 767px) and (hover: none), (max-width: 767px) and (pointer: coarse) {
  .gallery-page .gallery-grid.is-product-grid .gallery-card:not(.floral-board-card),
  .gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card {
    position: relative;
    overflow: hidden;
  }

  .gallery-page .gallery-grid.is-product-grid .gallery-card-media {
    border-radius: 12px;
  }

  .gallery-page .gallery-grid.is-product-grid .gallery-card-media img {
    transform: scale(1.48) !important;
  }

  .gallery-page .gallery-grid.is-product-grid .gallery-card:not(.floral-board-card) div,
  .gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card div {
    inset: auto -1px -1px;
    width: auto;
    min-height: 0;
    max-height: none;
    box-sizing: border-box;
    padding: 6px 10px 7px;
    border: none;
    border-radius: 0 0 12px 12px;
    background: #fffdf8;
    gap: 1px;
    justify-content: center;
    z-index: 2;
    opacity: 1;
    pointer-events: none;
    transform: none;
    transition: none;
  }

  .gallery-page .gallery-grid.is-product-grid .gallery-card:not(.floral-board-card):hover div,
  .gallery-page .gallery-grid.is-product-grid .gallery-card:not(.floral-board-card):focus-within div,
  .gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card:hover div,
  .gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card:focus-within div {
    transform: none;
  }

  .gallery-page .gallery-grid.is-product-grid .gallery-card:not(.floral-board-card) span,
  .gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card span {
    display: none;
  }

  .gallery-page .gallery-grid.is-product-grid .gallery-card:not(.floral-board-card) strong,
  .gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card strong {
    color: var(--evergreen);
    font-family: var(--body-sans);
    font-size: 9.5px;
    font-weight: 560;
    line-height: 1.12;
  }

  .gallery-page .gallery-grid.is-product-grid .gallery-card:not(.floral-board-card) p,
  .gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card p,
  .gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card .compare-line {
    color: rgba(52, 83, 63, 0.78);
    font-size: 7.5px;
    font-weight: 520;
    letter-spacing: 0.04em;
    line-height: 1.08;
  }
}

/* Final mobile preview slider override for Home and Weddings image previews. */
@media (max-width: 760px) {
  .home-positioning .home-positioning-media,
  .wedding-portfolio-intro .wedding-proof-grid {
    display: flex;
    grid-template-columns: none;
    gap: 10px;
    margin-right: calc(var(--site-pad) * -1);
    margin-left: calc(var(--site-pad) * -1);
    overflow-x: auto;
    padding: 2px var(--site-pad) 10px;
    scroll-padding-left: var(--site-pad);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .home-positioning .home-positioning-media::-webkit-scrollbar,
  .wedding-portfolio-intro .wedding-proof-grid::-webkit-scrollbar {
    display: none;
  }

  .home-positioning .home-positioning-media img,
  .home-positioning .home-positioning-media .home-media-large,
  .wedding-portfolio-intro .wedding-proof-grid img,
  .wedding-portfolio-intro .wedding-proof-grid .wedding-proof-large {
    display: block;
    flex: 0 0 min(74vw, 292px);
    width: min(74vw, 292px);
    height: 260px;
    min-height: 0;
    max-height: none;
    aspect-ratio: auto;
    border-radius: 14px;
    object-fit: cover;
    scroll-snap-align: start;
  }

  .home-positioning .home-positioning-media .home-media-large,
  .wedding-portfolio-intro .wedding-proof-grid .wedding-proof-large {
    flex-basis: min(82vw, 320px);
    width: min(82vw, 320px);
  }
}

@media (max-width: 430px) {
  .home-positioning .home-positioning-media img,
  .home-positioning .home-positioning-media .home-media-large,
  .wedding-portfolio-intro .wedding-proof-grid img,
  .wedding-portfolio-intro .wedding-proof-grid .wedding-proof-large {
    height: 236px;
  }
}

/* Mobile Events service list: compact Apple Maps-inspired rows. */
@media (max-width: 760px) {
  .events-capability .section-heading.compact {
    margin-bottom: 18px;
  }

  .events-capability .section-heading > div {
    gap: 7px;
  }

  .events-capability .section-heading h2 {
    max-width: 11ch;
    line-height: 1.06;
  }

  .events-capability .event-type-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    justify-items: stretch;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(47, 75, 50, 0.12);
    border-radius: var(--radius);
    background: rgba(255, 253, 248, 0.78);
    box-shadow: none;
  }

  .events-capability .event-type-row article {
    position: relative;
    display: grid;
    width: 100%;
    min-height: 0;
    max-width: none;
    grid-template-columns: 14px minmax(0, 1fr);
    column-gap: 11px;
    align-items: center;
    justify-content: initial;
    padding: 11px 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .events-capability .event-type-row article + article {
    border-top: 1px solid rgba(47, 75, 50, 0.1);
  }

  .events-capability .event-type-row article::before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    grid-row: 1 / span 2;
    border-radius: 50%;
    border: 0;
    background: rgba(47, 75, 50, 0.42);
  }

  .events-capability .event-type-row article::after {
    content: none;
  }

  .events-capability .event-type-row span {
    grid-column: 2;
    margin: 0;
    color: var(--evergreen);
    font-size: 10px;
    font-weight: 470;
    letter-spacing: 0.035em;
    line-height: 1.22;
    text-align: left;
  }

  .events-capability .event-type-row p {
    display: block;
    grid-column: 2;
    margin: 3px 0 0;
    color: rgba(112, 118, 95, 0.8);
    font-family: var(--sans);
    font-size: 10.5px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.32;
    text-align: left;
  }
}

/* Mobile Floral Bar value cards: swipe instead of stacking. */
@media (max-width: 760px) {
  .floral-page + .value-strip {
    display: flex;
    gap: 9px;
    margin: 0;
    overflow-x: auto;
    padding: 10px var(--site-pad) 12px;
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
    background: var(--warm-white);
    scroll-padding-left: var(--site-pad);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .floral-page + .value-strip::-webkit-scrollbar {
    display: none;
  }

  .floral-page + .value-strip article {
    display: flex;
    flex: 0 0 min(66vw, 244px);
    min-height: 128px;
    flex-direction: column;
    justify-content: space-between;
    padding: 14px;
    border: 1px solid rgba(52, 83, 63, 0.08);
    border-radius: 12px;
    background: rgba(255, 253, 248, 0.68);
    scroll-snap-align: start;
  }

  .floral-page + .value-strip span {
    margin-bottom: 10px;
    color: rgba(210, 139, 119, 0.76);
    font-family: var(--sans);
    font-size: 8.5px;
    font-weight: 600;
    letter-spacing: 0.12em;
  }

  .floral-page + .value-strip strong {
    max-width: 15ch;
    font-family: var(--serif);
    font-size: clamp(20px, 5.7vw, 24px);
    font-weight: 400;
    line-height: 1.08;
  }

  .floral-page + .value-strip p {
    margin-top: 10px;
    color: rgba(84, 95, 77, 0.72);
    font-size: 11.5px;
    line-height: 1.38;
  }
}

/* Compact footer density: keep narrow windows from becoming a long stacked footer. */
@media (max-width: 960px) {
  .site-footer {
    grid-template-columns: minmax(90px, 0.62fr) minmax(154px, 1fr);
    justify-items: stretch;
    column-gap: clamp(36px, 12vw, 58px);
    row-gap: 10px;
    padding: 22px var(--site-pad) 14px;
    text-align: left;
  }

  .footer-brand {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    width: 118px;
    overflow: hidden;
  }

  .footer-brand img {
    display: block;
    width: 224px;
    max-width: none;
    clip-path: inset(0 106px 18px 0);
    margin: 0 0 -18px;
  }

  .footer-brand p {
    display: none;
  }

  .footer-links {
    grid-column: 2;
    grid-row: 1;
    display: grid;
    grid-template-areas:
      "location"
      "icons";
    gap: 10px;
    align-items: flex-end;
    justify-items: end;
    min-width: 0;
    text-align: right;
  }

  .footer-links nav[aria-label="Footer navigation"] {
    display: none;
  }

  .footer-links div,
  .footer-links nav {
    align-items: flex-end;
    gap: 4px;
  }

  .footer-links span {
    display: none;
  }

  .footer-links div:first-child {
    display: contents;
  }

  .footer-links a,
  .footer-bottom a {
    width: fit-content;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: rgba(255, 253, 248, 0.8);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.45;
    text-transform: none;
  }

  .footer-links div:first-child a {
    position: relative;
    display: inline-flex;
    width: 16px;
    height: 16px;
    min-height: 0;
    overflow: hidden;
    color: transparent;
    font-size: 0;
    grid-area: icons;
  }

  .footer-links div:first-child a[href^="mailto"] {
    margin-right: 81px;
  }

  .footer-links div:first-child a[href^="sms"] {
    margin-right: 54px;
  }

  .footer-links div:first-child a::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background: rgba(255, 253, 248, 0.82);
  }

  .footer-links a[href^="mailto"]::before {
    transform: scale(1.16);
    transform-origin: center;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 5h18c1.1 0 2 .9 2 2v10c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V7c0-1.1.9-2 2-2Zm0 2v.6l9 5.4 9-5.4V7H3Zm0 3v7h18v-7l-9 5.4L3 10Z'/%3E%3C/svg%3E") center / contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 5h18c1.1 0 2 .9 2 2v10c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V7c0-1.1.9-2 2-2Zm0 2v.6l9 5.4 9-5.4V7H3Zm0 3v7h18v-7l-9 5.4L3 10Z'/%3E%3C/svg%3E") center / contain no-repeat;
  }

  .footer-links a[href^="sms"]::before {
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v9c0 1.1-.9 2-2 2H9.1L4 21v-4H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2Zm0 2v9h2v1.8L8.4 15H20V6H4Z'/%3E%3C/svg%3E") center / contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v9c0 1.1-.9 2-2 2H9.1L4 21v-4H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2Zm0 2v9h2v1.8L8.4 15H20V6H4Z'/%3E%3C/svg%3E") center / contain no-repeat;
  }

  .footer-links p {
    grid-area: location;
    max-width: 180px;
    margin: 0;
    color: rgba(255, 253, 248, 0.72);
    font-size: 0;
    font-weight: 350;
    line-height: 1.45;
    text-align: right;
  }

  .footer-links p::after {
    content: "Milpitas-based floral studio serving the Bay Area.";
    font-size: 10px;
  }

  .footer-links div:last-child {
    grid-area: icons;
    flex-direction: row;
    gap: 11px;
    justify-content: flex-end;
    padding-top: 0;
  }

  .footer-links div:last-child a {
    position: relative;
    display: inline-flex;
    width: 16px;
    height: 16px;
    overflow: hidden;
    color: transparent;
    font-size: 0;
  }

  .footer-links div:last-child a::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background: rgba(255, 253, 248, 0.82);
  }

  .footer-links a[href*="instagram"]::before {
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.8 2h8.4C19.4 2 22 4.6 22 7.8v8.4c0 3.2-2.6 5.8-5.8 5.8H7.8C4.6 22 2 19.4 2 16.2V7.8C2 4.6 4.6 2 7.8 2Zm0 2C5.9 4 4 5.9 4 7.8v8.4C4 18.1 5.9 20 7.8 20h8.4c1.9 0 3.8-1.9 3.8-3.8V7.8C20 5.9 18.1 4 16.2 4H7.8Zm4.2 4.1a3.9 3.9 0 1 1 0 7.8 3.9 3.9 0 0 1 0-7.8Zm0 2a1.9 1.9 0 1 0 0 3.8 1.9 1.9 0 0 0 0-3.8Zm4.5-3.3a1 1 0 1 1 0 2 1 1 0 0 1 0-2Z'/%3E%3C/svg%3E") center / contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.8 2h8.4C19.4 2 22 4.6 22 7.8v8.4c0 3.2-2.6 5.8-5.8 5.8H7.8C4.6 22 2 19.4 2 16.2V7.8C2 4.6 4.6 2 7.8 2Zm0 2C5.9 4 4 5.9 4 7.8v8.4C4 18.1 5.9 20 7.8 20h8.4c1.9 0 3.8-1.9 3.8-3.8V7.8C20 5.9 18.1 4 16.2 4H7.8Zm4.2 4.1a3.9 3.9 0 1 1 0 7.8 3.9 3.9 0 0 1 0-7.8Zm0 2a1.9 1.9 0 1 0 0 3.8 1.9 1.9 0 0 0 0-3.8Zm4.5-3.3a1 1 0 1 1 0 2 1 1 0 0 1 0-2Z'/%3E%3C/svg%3E") center / contain no-repeat;
  }

  .footer-links a[href*="tiktok"]::before {
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.1 2h3.1c.2 1.4.8 2.5 1.7 3.3.8.8 1.8 1.3 3.1 1.5v3.2c-1.8-.1-3.3-.6-4.7-1.6v6.1c0 4.2-2.4 6.7-6.1 6.7-1.8 0-3.3-.5-4.4-1.6A5.3 5.3 0 0 1 5 15.4c0-1.7.6-3.1 1.8-4.2 1.1-1 2.6-1.5 4.4-1.4v3.2c-.9-.1-1.6.1-2.1.5-.5.4-.8 1-.8 1.8 0 .7.2 1.3.7 1.8.5.4 1.1.7 1.9.7 1.5 0 2.2-1 2.2-3V2Z'/%3E%3C/svg%3E") center / contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.1 2h3.1c.2 1.4.8 2.5 1.7 3.3.8.8 1.8 1.3 3.1 1.5v3.2c-1.8-.1-3.3-.6-4.7-1.6v6.1c0 4.2-2.4 6.7-6.1 6.7-1.8 0-3.3-.5-4.4-1.6A5.3 5.3 0 0 1 5 15.4c0-1.7.6-3.1 1.8-4.2 1.1-1 2.6-1.5 4.4-1.4v3.2c-.9-.1-1.6.1-2.1.5-.5.4-.8 1-.8 1.8 0 .7.2 1.3.7 1.8.5.4 1.1.7 1.9.7 1.5 0 2.2-1 2.2-3V2Z'/%3E%3C/svg%3E") center / contain no-repeat;
  }

  .footer-bottom {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    margin-top: 0;
    padding-top: 10px;
    text-align: left;
  }

  .footer-bottom p {
    color: rgba(255, 253, 248, 0.52);
    font-size: 10px;
    line-height: 1.35;
  }

  .footer-bottom a {
    width: auto;
    min-height: 0;
    color: rgba(255, 253, 248, 0.78);
    font-size: 10px;
    font-weight: 450;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
}

/* Final mobile sticky-header crispness pass. */
@media (max-width: 760px) {
  .site-header,
  .site-header.is-scrolled,
  .home-page .site-header,
  .home-page .site-header.is-scrolled,
  .home-page .site-header:not(.is-scrolled) {
    position: sticky;
    top: 0;
    background: #fffdf8;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    filter: none !important;
    opacity: 1;
    transform: translateZ(0);
    will-change: auto;
    box-shadow: 0 1px 0 rgba(47, 75, 50, 0.1);
  }

  .site-header *,
  .site-header.is-scrolled *,
  .home-page .site-header *,
  .home-page .site-header.is-scrolled *,
  .home-page .site-header:not(.is-scrolled) * {
    filter: none !important;
    opacity: 1;
    text-shadow: none;
    transform: none;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
  }

  .site-header a,
  .site-header button,
  .site-header .nav a,
  .site-header .header-cta {
    backface-visibility: hidden;
    color: var(--evergreen);
  }

  .site-header img.nav-logo-icon,
  .home-page .site-header img.nav-logo-icon,
  .home-page .site-header.is-scrolled img.nav-logo-icon,
  .home-page .site-header:not(.is-scrolled) img.nav-logo-icon {
    content: url("./assets/pensee-nav-p-icon-green.png?v=20260524-product-media-frame");
    image-rendering: auto;
  }
}

/* Persistent navigation on non-home pages. */
@media (max-width: 960px) {
  body:not(.home-page) {
    padding-top: 79px;
  }

  body:not(.home-page) .site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 5000;
  }
}

@media (max-width: 760px) {
  body:not(.home-page) {
    padding-top: 58px;
  }
}

/* Weddings: bring the portfolio intro copy into the first scroll view sooner. */
.page-hero.wedding-page {
  min-height: clamp(420px, 45vh, 500px);
  padding-bottom: clamp(38px, 4vw, 58px);
}

.wedding-portfolio-intro {
  align-items: start;
  padding-top: clamp(42px, 4.5vw, 64px);
}

/* Events page radius polish: softer cards without changing layout. */
.events-capability .event-type-row article {
  border-radius: 22px;
}

.event-mini-portfolio .event-portfolio-grid img {
  border-radius: 20px;
}

.events-include-section .event-choice-card,
.events-include-section .event-choice-card.compact-card,
.events-include-section .refined-event-grid .event-choice-card.compact-card {
  border-radius: 20px;
}

.events-include-section .event-choice-card img,
.events-include-section .event-choice-card.compact-card img,
.events-include-section .refined-event-grid .event-choice-card.compact-card img {
  border-radius: 20px 0 0 20px;
}

@media (max-width: 760px) {
  .events-capability .event-type-row {
    border-radius: 18px;
  }

  .events-capability .event-type-row article {
    border-radius: 0;
  }
}

/* Approved gallery UX polish: visible filters and calmer product cards. */
.gallery-page .filters {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 6px;
  max-width: 940px;
  margin: 0 auto 30px;
  padding: 8px;
  border: 1px solid rgba(47, 75, 50, 0.13);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.84);
  box-shadow: 0 16px 42px rgba(32, 54, 34, 0.07);
}

.gallery-page .filter {
  width: 100%;
  min-height: 40px;
  border-color: transparent;
  padding: 8px 10px;
  line-height: 1.05;
  white-space: normal;
}

.gallery-page .filter.active {
  background: var(--evergreen);
  color: var(--warm-white);
  box-shadow: 0 8px 20px rgba(32, 54, 34, 0.14);
}

.gallery-page .filter:focus-visible,
.gallery-page .gallery-card:focus-visible {
  outline: 2px solid rgba(47, 75, 50, 0.45);
  outline-offset: 3px;
}

.gallery-page .gallery-grid.is-product-grid {
  gap: 34px 24px;
}

.gallery-page .gallery-grid.is-product-grid .gallery-card:not(.floral-board-card),
.gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card {
  cursor: zoom-in;
  box-shadow: 0 16px 42px rgba(32, 54, 34, 0.07);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.gallery-page .gallery-grid.is-product-grid .gallery-card:not(.floral-board-card):hover,
.gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card:hover {
  border-color: rgba(47, 75, 50, 0.24);
  box-shadow: 0 24px 58px rgba(32, 54, 34, 0.13);
  transform: translateY(-2px);
}

@media (max-width: 760px) {
  .gallery-page .filters {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
    margin-bottom: 18px;
    padding: 6px;
    border-radius: 18px;
  }

  .gallery-page .filter {
    min-height: 38px;
    padding: 8px 6px;
    font-size: 8.4px;
    letter-spacing: 0.035em;
  }

  .gallery-page .price-filter {
    gap: 12px;
    margin: -2px 0 18px;
    padding: 14px;
    border-radius: 16px;
  }

  .gallery-page .price-filter strong {
    font-size: 13px;
    line-height: 1.25;
  }

  .gallery-page .price-range-control {
    min-height: 42px;
    --price-track-inset: 11px;
  }

  .gallery-page .price-range-control::before,
  .gallery-page .price-range-control::after {
    display: none;
    content: none;
  }

  .gallery-page .price-range-track {
    background: linear-gradient(
      to right,
      rgba(52, 83, 63, 0.14) 0 var(--price-left-line-end, 0px),
      transparent var(--price-left-line-end, 0px) var(--price-selected-start, var(--price-track-inset)),
      var(--evergreen) var(--price-selected-start, var(--price-track-inset)) var(--price-selected-end, calc(100% - var(--price-track-inset))),
      transparent var(--price-selected-end, calc(100% - var(--price-track-inset))) var(--price-right-line-start, 100%),
      rgba(52, 83, 63, 0.14) var(--price-right-line-start, 100%) 100%
    );
  }

  .gallery-page .price-filter input[type="range"] {
    left: 0;
    width: 100%;
    height: 42px;
    margin: 0;
    -webkit-appearance: none;
    appearance: none;
    z-index: 2;
  }

  .gallery-page .price-filter input[type="range"]::-webkit-slider-runnable-track {
    height: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
    color: transparent;
  }

  .gallery-page .price-filter input[type="range"]::-moz-range-track {
    height: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
    color: transparent;
  }

  .gallery-page .price-filter input[type="range"]::-moz-range-progress {
    height: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
    color: transparent;
  }

  .gallery-page .price-filter input[type="range"]::-webkit-slider-thumb {
    width: 22px;
    height: 22px;
    border: 0;
    border-radius: 50%;
    background: var(--evergreen);
    box-shadow: 0 4px 14px rgba(32, 54, 34, 0.18);
    margin-top: calc((3px - 22px) / 2);
    -webkit-appearance: none;
    appearance: none;
  }

  .gallery-page .price-filter input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border: 0;
    border-radius: 50%;
    background: var(--evergreen);
    box-shadow: 0 4px 14px rgba(32, 54, 34, 0.18);
  }

  .gallery-page .price-filter button {
    min-height: 34px;
    justify-self: start;
    padding: 8px 13px;
  }

  .gallery-page .gallery-grid.is-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .gallery-page .gallery-grid.is-product-grid .gallery-card:not(.floral-board-card),
  .gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card {
    border-radius: 14px !important;
    box-shadow: none;
    transform: none;
  }

  .gallery-page .gallery-grid.is-product-grid .gallery-card-media {
    aspect-ratio: 4 / 4.85;
    border-radius: 14px 14px 0 0;
  }

  .gallery-page .gallery-grid.is-product-grid .gallery-card-media img {
    transform: scale(1.36) !important;
  }

  .gallery-page .gallery-grid.is-product-grid .gallery-card:not(.floral-board-card) div,
  .gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card div {
    position: static;
    display: grid;
    gap: 3px;
    min-height: 68px;
    padding: 10px;
    border-radius: 0;
    background: #fffefb;
    opacity: 1;
    pointer-events: none;
    text-align: left;
    transform: none;
  }

  .gallery-page .gallery-grid.is-product-grid .gallery-card:not(.floral-board-card) strong,
  .gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card strong {
    color: var(--ink);
    font-family: var(--sans);
    font-size: 12.5px;
    font-weight: 650;
    line-height: 1.16;
  }

  .gallery-page .gallery-grid.is-product-grid .gallery-card:not(.floral-board-card) p,
  .gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card p,
  .gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card .compare-line {
    color: var(--muted);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.22;
  }
}

@media (max-width: 430px) {
  .gallery-page .filters {
    gap: 5px;
    padding: 6px;
  }

  .gallery-page .filter {
    min-height: 37px;
    font-size: 8px;
    letter-spacing: 0.025em;
  }

  .gallery-page .gallery-grid.is-product-grid {
    gap: 9px;
  }

  .gallery-page .gallery-grid.is-product-grid .gallery-card:not(.floral-board-card) div,
  .gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card div {
    min-height: 64px;
    padding: 9px;
  }

  .gallery-page .gallery-grid.is-product-grid .gallery-card:not(.floral-board-card) strong,
  .gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card strong {
    font-size: 12px;
  }

  .gallery-page .gallery-grid.is-product-grid .gallery-card:not(.floral-board-card) p,
  .gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card p,
  .gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card .compare-line {
    font-size: 10px;
  }
}

/* Live-site typography reset: calmer, lighter text hierarchy across pages. */
:root {
  --display-serif: var(--serif);
}

body {
  font-weight: 400;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
.page-hero h1,
.gallery-page h1,
.gallery-page .section-heading h1,
.inquiry-page h1,
.section-heading h1,
.section-heading h2,
.intro h2,
.feature-content h2,
.bar-content h2,
.gallery-drilldown h3,
.event-choice-card h3,
.value-strip strong,
.mini-card strong,
.subcategory-card strong,
.gallery-card strong,
.product-lightbox-details h2,
.pricing-intro strong,
.package-card strong {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}

h1,
.page-hero h1,
.gallery-page h1,
.gallery-page .section-heading h1,
.inquiry-page h1 {
  font-size: clamp(38px, 4.2vw, 64px);
  line-height: 1.08;
}

h2,
.section-heading h2,
.intro h2,
.feature-content h2,
.bar-content h2 {
  font-size: clamp(30px, 3.3vw, 52px);
  line-height: 1.12;
}

h3,
.event-choice-card h3,
.mini-card strong,
.subcategory-card strong,
.gallery-card strong {
  font-size: clamp(23px, 2vw, 32px);
  line-height: 1.08;
}

.eyebrow,
.section-kicker,
.pathway-card p,
.gallery-card span,
.subcategory-card span,
.gallery-drilldown p,
.gallery-drilldown span,
.price-filter span,
.color-filter span,
.product-lightbox-details p,
.event-choice-card div > span,
.mini-card span,
.review-card span,
.inquiry-form label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.nav,
.header-cta,
.button,
.text-link,
.pathway-card a,
.event-choice-card a,
.filter,
.back-button,
.price-filter button,
.color-filter button,
.product-lightbox-details a,
.product-lightbox-close,
.footer-bottom a {
  font-family: var(--sans);
  font-weight: 550;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-copy,
.hero-copy,
.intro-copy,
.section-heading p,
.feature-content p,
.bar-content p,
.inquiry-intro p,
.event-choice-card p,
.mini-card p,
.subcategory-card p,
.gallery-card p,
.review-card p,
.product-lightbox-details span {
  font-family: var(--sans);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.58;
}

.section-heading p,
.intro-copy,
.feature-content p,
.bar-content p,
.inquiry-intro p {
  font-size: clamp(15px, 1.15vw, 18px);
}

.gallery-page .section-heading > p:not(.eyebrow) {
  font-size: clamp(16px, 1.45vw, 22px);
  line-height: 1.58;
}

.gallery-page .section-heading .eyebrow {
  font-size: clamp(12px, 1.45vw, 18px);
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.35;
}

.gallery-page .subcategory-card span {
  font-size: 11px;
  font-weight: 550;
  letter-spacing: 0.14em;
  line-height: 1.25;
}

.gallery-page .subcategory-card strong {
  font-family: var(--serif);
  font-size: clamp(24px, 2.35vw, 36px);
  font-weight: 400;
  line-height: 1.06;
}

.gallery-page .subcategory-card p {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.42;
}

.gallery-page .filters {
  gap: 8px;
}

.gallery-page .filter {
  min-height: 42px;
  font-size: 11px;
  font-weight: 550;
  letter-spacing: 0.12em;
}

.gallery-page .gallery-grid.is-product-grid .gallery-card:not(.floral-board-card) strong,
.gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card strong {
  font-family: var(--serif);
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 400;
  line-height: 1.05;
}

.gallery-page .gallery-grid.is-product-grid .gallery-card:not(.floral-board-card) p,
.gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card p,
.gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card .compare-line {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}

.gallery-page .gallery-grid.is-product-grid .gallery-card:not(.floral-board-card) span,
.gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card span {
  font-size: 11px;
  font-weight: 550;
  letter-spacing: 0.14em;
}

@media (max-width: 760px) {
  h1,
  .page-hero h1,
  .gallery-page h1,
  .gallery-page .section-heading h1,
  .inquiry-page h1 {
    font-size: clamp(36px, 10vw, 48px);
    line-height: 1.08;
  }

  h2,
  .section-heading h2,
  .intro h2,
  .feature-content h2,
  .bar-content h2 {
    font-size: clamp(29px, 8.8vw, 40px);
    line-height: 1.12;
  }

  .eyebrow,
  .section-kicker {
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    line-height: 1.35;
  }

  .gallery-page .section-heading .eyebrow {
    font-size: 15.5px;
    font-weight: 500;
    letter-spacing: 0.18em;
    line-height: 1.35;
  }

  .page-copy,
  .hero-copy,
  .gallery-page .section-heading > p:not(.eyebrow),
  .intro-copy,
  .section-heading p,
  .feature-content p,
  .bar-content p,
  .inquiry-intro p {
    font-size: 18px;
    line-height: 1.65;
  }

  .gallery-page .filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px;
    max-width: none;
    margin: 0 0 28px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .gallery-page .filter {
    width: auto;
    min-height: 40px;
    padding: 10px 18px;
    border-color: rgba(47, 75, 50, 0.14);
    background: rgba(255, 253, 248, 0.72);
    font-size: 11px;
    font-weight: 550;
    letter-spacing: 0.12em;
    line-height: 1;
  }

  .gallery-page .filter.active {
    background: var(--evergreen);
    color: var(--warm-white);
  }

  .gallery-page .subcategory-card span {
    font-size: 11px;
    font-weight: 550;
    letter-spacing: 0.14em;
    line-height: 1.2;
  }

  .gallery-page .subcategory-card strong {
    font-family: var(--serif);
    font-size: clamp(25px, 7vw, 34px);
    font-weight: 400;
    line-height: 1.02;
  }

  .gallery-page .subcategory-card p {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.35;
  }

  .gallery-page .gallery-grid.is-product-grid .gallery-card:not(.floral-board-card) div,
  .gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card div {
    gap: 6px;
    min-height: 96px;
    padding: 14px 15px 16px;
  }

  .gallery-page .gallery-grid.is-product-grid .gallery-card:not(.floral-board-card) strong,
  .gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card strong {
    color: var(--ink);
    font-family: var(--serif);
    font-size: clamp(25px, 7vw, 34px);
    font-weight: 400;
    line-height: 1.02;
  }

  .gallery-page .gallery-grid.is-product-grid .gallery-card:not(.floral-board-card) p,
  .gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card p,
  .gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card .compare-line {
    color: var(--muted);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.35;
    text-transform: none;
  }

  .gallery-page .gallery-grid.is-product-grid .gallery-card:not(.floral-board-card) span,
  .gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card span {
    color: var(--sage);
    font-size: 11px;
    font-weight: 550;
    letter-spacing: 0.14em;
    line-height: 1.2;
  }
}

@media (max-width: 430px) {
  .gallery-page .filter {
    min-height: 39px;
    font-size: 10.5px;
    letter-spacing: 0.11em;
  }

  .gallery-page .gallery-grid.is-product-grid .gallery-card:not(.floral-board-card) strong,
  .gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card strong {
    font-size: clamp(23px, 6.8vw, 31px);
  }

  .gallery-page .gallery-grid.is-product-grid .gallery-card:not(.floral-board-card) p,
  .gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card p,
  .gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card .compare-line {
    font-size: 13.5px;
  }
}

/* Reference match: restore the lean live-site text scale. */
h1,
.page-hero h1,
.gallery-page h1,
.gallery-page .section-heading h1,
.inquiry-page h1 {
  font-size: clamp(34px, 3.6vw, 56px);
  line-height: 1.1;
}

h2,
.section-heading h2,
.intro h2,
.feature-content h2,
.bar-content h2 {
  font-size: clamp(29px, 2.75vw, 44px);
  line-height: 1.12;
}

h3,
.event-choice-card h3,
.mini-card strong,
.subcategory-card strong,
.gallery-card strong {
  font-size: clamp(22px, 1.85vw, 30px);
  line-height: 1.08;
}

.eyebrow,
.section-kicker,
.gallery-page .section-heading .eyebrow {
  font-size: clamp(12px, 1.25vw, 16px);
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.35;
}

.page-copy,
.hero-copy,
.gallery-page .section-heading > p:not(.eyebrow),
.intro-copy,
.section-heading p,
.feature-content p,
.bar-content p,
.inquiry-intro p {
  font-size: clamp(16px, 1.35vw, 20px);
  font-weight: 400;
  line-height: 1.65;
}

.gallery-page .subcategory-card strong,
.gallery-page .gallery-grid.is-product-grid .gallery-card:not(.floral-board-card) strong,
.gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card strong {
  font-family: var(--serif);
  font-size: clamp(24px, 2.25vw, 32px);
  font-weight: 400;
  line-height: 1.04;
}

.gallery-page .subcategory-card p,
.gallery-page .gallery-grid.is-product-grid .gallery-card:not(.floral-board-card) p,
.gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card p,
.gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card .compare-line {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: none;
}

@media (max-width: 760px) {
  h1,
  .page-hero h1,
  .gallery-page h1,
  .gallery-page .section-heading h1,
  .inquiry-page h1 {
    font-size: clamp(27px, 6.2vw, 34px);
    line-height: 1.12;
  }

  h2,
  .section-heading h2,
  .intro h2,
  .feature-content h2,
  .bar-content h2 {
    font-size: clamp(25px, 6vw, 32px);
    line-height: 1.13;
  }

  .eyebrow,
  .section-kicker,
  .gallery-page .section-heading .eyebrow {
    font-size: clamp(11.5px, 3vw, 14px);
    font-weight: 500;
    letter-spacing: 0.18em;
    line-height: 1.35;
  }

  .page-copy,
  .hero-copy,
  .gallery-page .section-heading > p:not(.eyebrow),
  .intro-copy,
  .section-heading p,
  .feature-content p,
  .bar-content p,
  .inquiry-intro p {
    font-size: clamp(15px, 4vw, 17px);
    font-weight: 400;
    line-height: 1.7;
  }

  .gallery-page .subcategory-card strong,
  .gallery-page .gallery-grid.is-product-grid .gallery-card:not(.floral-board-card) strong,
  .gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card strong {
    font-family: var(--serif);
    font-size: clamp(21px, 5.4vw, 26px);
    font-weight: 400;
    line-height: 1.04;
  }

  .gallery-page .subcategory-card p,
  .gallery-page .gallery-grid.is-product-grid .gallery-card:not(.floral-board-card) p,
  .gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card p,
  .gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card .compare-line {
    font-size: clamp(12.5px, 3.4vw, 14px);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.4;
    text-transform: none;
  }
}

@media (max-width: 430px) {
  h1,
  .page-hero h1,
  .gallery-page h1,
  .gallery-page .section-heading h1,
  .inquiry-page h1 {
    font-size: clamp(25px, 7vw, 30px);
  }

  .gallery-page .section-heading > p:not(.eyebrow) {
    font-size: clamp(14px, 4.2vw, 16px);
    line-height: 1.62;
  }

  .gallery-page .subcategory-card strong,
  .gallery-page .gallery-grid.is-product-grid .gallery-card:not(.floral-board-card) strong,
  .gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card strong {
    font-size: clamp(20px, 5.8vw, 24px);
  }
}

/* Gallery reference tune: match the lighter live mobile scale more closely. */
@media (max-width: 760px) {
  .gallery-page .section-heading {
    gap: 20px;
    margin-bottom: 28px;
  }

  .gallery-page .section-heading .eyebrow {
    font-size: clamp(11px, 2.9vw, 13px);
    font-weight: 400;
    letter-spacing: 0.2em;
    line-height: 1.35;
  }

  .gallery-page .section-heading h1 {
    font-size: clamp(24px, 5.7vw, 28px);
    font-weight: 400;
    line-height: 1.12;
  }

  .gallery-page .section-heading > p:not(.eyebrow) {
    max-width: 30ch;
    font-size: clamp(13.5px, 3.45vw, 15px);
    font-weight: 400;
    line-height: 1.58;
  }

  .gallery-page .filters {
    gap: 7px;
    margin-bottom: 22px;
    flex-wrap: nowrap;
  }

  .gallery-page .filter {
    min-height: 32px;
    padding: 7px 8px;
    font-size: clamp(6.8px, 1.75vw, 8px);
    font-weight: 500;
    letter-spacing: 0.055em;
  }

  .gallery-page .subcategory-card span,
  .gallery-page .gallery-grid.is-product-grid .gallery-card:not(.floral-board-card) span,
  .gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card span {
    font-size: clamp(8.5px, 2.25vw, 9.5px);
    font-weight: 500;
    letter-spacing: 0.13em;
  }

  .gallery-page .subcategory-card strong,
  .gallery-page .gallery-grid.is-product-grid .gallery-card:not(.floral-board-card) strong,
  .gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card strong {
    font-size: clamp(19px, 5vw, 22px);
    font-weight: 400;
    line-height: 1.05;
  }

  .gallery-page .subcategory-card p,
  .gallery-page .gallery-grid.is-product-grid .gallery-card:not(.floral-board-card) p,
  .gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card p,
  .gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card .compare-line {
    font-size: clamp(11px, 2.85vw, 12.5px);
    font-weight: 400;
    line-height: 1.38;
  }

  .gallery-page .subcategory-card div,
  .gallery-page .gallery-grid.is-product-grid .gallery-card:not(.floral-board-card) div,
  .gallery-page .gallery-grid.is-product-grid .gallery-card.is-compare-card div {
    min-height: 78px;
    padding: 11px 12px 13px;
  }
}

@media (max-width: 760px) {
  .carousel-actions {
    display: none;
  }
}
