/* CSS Document */
:root {
  --willows-green: #6b8b5b;
  --willows-green-dark: #556f49;
  --willows-green-soft: #eef3ea;
  --willows-gold: #d7bb7a;
  --willows-cream: #f7f4ee;
  --willows-text: #1d211b;
  --willows-muted: #6f746b;
  --willows-dark: #1f291f;
  --willows-border: rgba(73, 95, 63, .10);
  --willows-shadow: 0 20px 60px rgba(28, 36, 28, .08);
  --willows-radius: 24px;
  --willows-max: 1320px;
  --willows-header-height: 104px;

 
/* =========================
   WILLOWS TEXT SYSTEM
   ========================= */

.text-willows {
  color: var(--willows-text) !important;
}

.text-willows-muted {
  color: var(--willows-muted) !important;
}

.text-willows-green {
  color: var(--willows-green) !important;
}

.text-willows-gold {
  color: var(--willows-gold) !important;
}

.text-willows-dark {
  color: var(--willows-dark) !important;
}

/* =========================
   WILLOWS BUTTON SYSTEM
   ========================= */

.btn-willows {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .7rem 1.4rem;
  font-weight: 600;
  font-size: .95rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  transition: all .25s ease;
  cursor: pointer;
}

/* PRIMARY (Green) */
.btn-willows-primary {
  background: var(--willows-green);
  color: #fff;
  border-color: var(--willows-green);
}

.btn-willows-primary:hover {
  background: var(--willows-green-dark);
  border-color: var(--willows-green-dark);
  transform: translateY(-1px);
}

/* SECONDARY (Gold Accent) */
.btn-willows-secondary {
  background: var(--willows-gold);
  color: var(--willows-dark);
  border-color: var(--willows-gold);
}

.btn-willows-secondary:hover {
  filter: brightness(.95);
  transform: translateY(-1px);
}

/* OUTLINE */
.btn-willows-outline {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.6);
  color: #fff;
  backdrop-filter: blur(6px);
}

.btn-willows-outline:hover {
  background: rgba(255,255,255,0.18);
  border-color: #fff;
  color: #fff;
}

/* GHOST (Text link replacement) */
.btn-willows-ghost {
  background: transparent;
  color: var(--willows-text);
}

.btn-willows-ghost:hover {
  color: var(--willows-green);
}

/* SIZE MODIFIERS */
.btn-willows-sm {
  padding: .5rem 1rem;
  font-size: .85rem;
}

.btn-willows-lg {
  padding: 1rem 1.8rem;
  font-size: 1.05rem;
}}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, sans-serif;
  background: #fff;
  color: var(--willows-text);
  overflow-x: hidden;
}

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

img,
video,
iframe {
  height: auto;
}

a {
  text-decoration: none;
}

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

.willows-section {
  padding: 5.5rem 0;
}

.willows-section-tight {
  padding: 4rem 0;
}

.willows-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;

  /* UPDATED */
  background: rgba(0,0,0,0.30);

  color: #fff;

  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);

  margin-bottom: 0.75rem;
}


.willows-display {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: .98;
  font-weight: 500;
  letter-spacing: -.02em;
  margin: 0 0 1rem;
  color: #fff;
  max-width: 900px;
}

.willows-h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 3vw, 3.6rem);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -.02em;
  margin: 0 0 1rem;
  color: var(--willows-text);
}

.willows-h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  line-height: 1.08;
  font-weight: 500;
  margin: 0 0 .75rem;
  color: var(--willows-text);
}

.willows-lead {
  font-size: 1.06rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, .92);
  max-width: 720px;
  margin: 0 0 1.5rem;
}

.willows-copy {
  font-size: 1.04rem;
  line-height: 1.9;
  color: var(--willows-muted);
  margin: 0 0 1.25rem;
}

.willows-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 1.5rem;
}

.willows-btn-primary,
.willows-btn-primary:link,
.willows-btn-primary:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 54px;
  padding: .95rem 1.35rem;
  border-radius: 999px;
  background: var(--willows-green) !important;
  color: #fff !important;
  border: 1px solid var(--willows-green) !important;
  font-weight: 700;
  letter-spacing: .01em;
  box-shadow: 0 12px 28px rgba(107, 139, 91, .22);
  transition: .2s ease;
}

.willows-btn-primary:hover,
.willows-btn-primary:focus {
  background: var(--willows-green-dark) !important;
  border-color: var(--willows-green-dark) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

.willows-btn-secondary,
.willows-btn-secondary:link,
.willows-btn-secondary:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 54px;
  padding: .95rem 1.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, .30) !important;
  backdrop-filter: blur(6px);
  font-weight: 700;
  letter-spacing: .01em;
  transition: .2s ease;
}

.willows-btn-secondary:hover,
.willows-btn-secondary:focus {
  background: rgba(255, 255, 255, .26) !important;
  color: #fff !important;
  border-color: rgba(255, 255, 255, .42) !important;
}

.willows-btn-ghost,
.willows-btn-ghost:link,
.willows-btn-ghost:visited,
.willows-btn-secondary-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 52px;
  padding: .9rem 1.2rem;
  border-radius: 999px;
  background: #fff !important;
  color: var(--willows-green-dark) !important;
  border: 1px solid rgba(73, 95, 63, .12) !important;
  font-weight: 700;
  transition: .2s ease;
}

.willows-btn-ghost:hover,
.willows-btn-ghost:focus,
.willows-btn-secondary-dark:hover,
.willows-btn-secondary-dark:focus {
  background: var(--willows-cream) !important;
  color: #2f3a2a !important;
}

/* Header */
body.admin-bar .willows-navbar {
  top: 32px;
}

.willows-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .90);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  padding: .38rem 0;
  min-height: var(--willows-header-height);
  margin-top: 0 !important;
}

.willows-nav-inner {
  display: flex;
  align-items: center;
}

.willows-brand-mark {
  display: inline-flex;
  align-items: center;
  max-width: 210px;
  flex: 0 0 auto;
}

.willows-brand-mark img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 42px;
  object-fit: contain;
}

.willows-nav-links {
  gap: .2rem;
}

.willows-navbar .nav-link {
  color: #2d342c;
  font-weight: 600;
  font-size: .92rem;
  padding: .45rem .72rem;
}

.willows-navbar .nav-link:hover,
.willows-navbar .nav-link:focus {
  color: var(--willows-green);
}

.willows-nav-actions {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-wrap: wrap;
}

.willows-btn-nav,
.willows-btn-nav:link,
.willows-btn-nav:visited,
.willows-btn-nav-secondary,
.willows-btn-nav-secondary:link,
.willows-btn-nav-secondary:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 40px;
  padding: .62rem .92rem;
  border-radius: 11px;
  transition: .2s ease;
  font-size: .92rem;
  font-weight: 700;
}

.willows-btn-nav,
.willows-btn-nav:link,
.willows-btn-nav:visited {
  background: var(--willows-green) !important;
  border: 1px solid var(--willows-green) !important;
  color: #fff !important;
  box-shadow: 0 6px 14px rgba(107, 139, 91, .16);
}

.willows-btn-nav:hover,
.willows-btn-nav:focus {
  background: var(--willows-green-dark) !important;
  border-color: var(--willows-green-dark) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

.willows-btn-nav-secondary,
.willows-btn-nav-secondary:link,
.willows-btn-nav-secondary:visited {
  background: #fff !important;
  border: 1px solid rgba(73, 95, 63, .12) !important;
  color: #41513a !important;
}

.willows-btn-nav-secondary:hover,
.willows-btn-nav-secondary:focus {
  background: var(--willows-cream) !important;
  border-color: rgba(73, 95, 63, .22) !important;
  color: #2f3a2a !important;
  transform: translateY(-1px);
}

.willows-navbar .navbar-toggler {
  display: none;
  border: 1px solid rgba(73, 95, 63, .14);
  background: #fff;
  border-radius: 12px;
  width: 48px;
  height: 48px;
  padding: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .05);
}

.willows-navbar .navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(107, 139, 91, .15);
}

.willows-navbar .navbar-toggler-icon {
  width: 1.35rem;
  height: 1.35rem;
}

.willows-navbar .navbar-collapse {
  align-items: center;
}

/* Hero */
.willows-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: calc(var(--willows-header-height) + 4rem) 0 3.5rem;
  background: linear-gradient(90deg, rgba(18, 24, 18, .50) 0%, rgba(18, 24, 18, .28) 35%, rgba(18, 24, 18, .08) 65%, rgba(18, 24, 18, 0) 100%), url('../img/willows-hero3.jpg') right center / cover no-repeat;
}

.willows-hero .btn-secondary {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.6);
  color: #fff;
}

.willows-hero .btn-secondary:hover {
  background: rgba(255,255,255,0.1);
}

.willows-hero-content {
  max-width: 640px;
  position: relative;
  z-index: 2;
}

.willows-kicker {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .65rem .95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(8px);
  font-size: .92rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.willows-hero-tagline {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  color: #fff;
  font-size: clamp(2rem, 2.6vw, 2.6rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.willows-hero-tagline span {
  display: block;
  font-weight: 500;
}

.willows-hero-desc {
  max-width: 520px;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, .92);
  margin-bottom: 1.4rem;
}

.willows-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.5rem;
}

.willows-pill {
  padding: .6rem .9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .28);
  color: #fff;
  font-size: .92rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

/* Content sections */
.willows-intro-card {
  position: relative;
  margin-top: -110px;
  z-index: 5;
}

.willows-panel {
  background: #fff;
  border: 1px solid var(--willows-border);
  border-radius: var(--willows-radius);
  box-shadow: var(--willows-shadow);
  padding: 2rem;
}

.willows-feature-box {
  background: var(--willows-cream);
  border: 1px solid rgba(107, 139, 91, .08);
  border-radius: 20px;
  padding: 1.4rem;
  height: 100%;
}

.willows-feature-title {
  font-size: .84rem;
  line-height: 1.2;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--willows-green);
  margin-bottom: .9rem;
}

.willows-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.willows-feature-list li {
  padding: .8rem 0;
  border-bottom: 1px solid rgba(107, 139, 91, .12);
  color: #394236;
  font-weight: 500;
}

.willows-feature-list li:last-child {
  border-bottom: none;
}

.willows-stat-card {
  background: #fff;
  border: 1px solid var(--willows-border);
  border-radius: 22px;
  box-shadow: 0 12px 34px rgba(28, 36, 28, .05);
  padding: 1.6rem;
  height: 100%;
}

.willows-stat-num {
  font-size: 2.15rem;
  line-height: 1;
  font-weight: 600;
  color: var(--willows-green);
  margin-bottom: .9rem;
}

.willows-stat-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1.05;
  font-weight: 500;
  margin: 0 0 .75rem;
  color: var(--willows-text);
}

.willows-stat-copy {
  color: var(--willows-muted);
  line-height: 1.8;
  margin: 0;
}

.willows-soft {
  background: linear-gradient(180deg, #fbfaf6 0%, #f7f4ee 100%);
}

.willows-image-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--willows-radius);
  min-height: 560px;
  background: #e9ece8;
  box-shadow: var(--willows-shadow);
}

.willows-image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.willows-image-label {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  z-index: 2;
  background: rgba(24, 30, 24, .70);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: .55rem .85rem;
  font-size: .9rem;
  font-weight: 600;
}

.willows-checks {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
}

.willows-checks li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: .85rem;
  color: #495147;
  line-height: 1.8;
}

.willows-checks li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--willows-green);
  font-weight: 700;
}

.willows-split-card {
  background: #fff;
  border: 1px solid var(--willows-border);
  border-radius: var(--willows-radius);
  padding: 2rem;
  box-shadow: var(--willows-shadow);
  height: 100%;
}

/* Homepage gallery */
.willows-gallery-section {
  background: linear-gradient(180deg, #ffffff 0%, #fbfaf6 100%);
}

.willows-gallery-intro {
  max-width: 760px;
}

.willows-gallery-grid {
  align-items: stretch;
}

.willows-gallery-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 22px;
  min-height: 320px;
  background: #e8ede6;
  box-shadow: 0 18px 42px rgba(28, 36, 28, .08);
  transition: transform .3s ease, box-shadow .3s ease;
}

.willows-gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(28, 36, 28, .12);
}

.willows-gallery-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.willows-gallery-card:hover img {
  transform: scale(1.04);
}

.willows-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 28, 20, .06) 0%, rgba(20, 28, 20, .12) 55%, rgba(20, 28, 20, .35) 100%);
  z-index: 1;
}

.willows-gallery-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  max-width: calc(100% - 2rem);
  padding: .6rem .95rem;
  border-radius: 999px;
  background: rgba(48, 57, 48, .88);
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .14);
  transition: transform .25s ease;
}

.willows-gallery-card:hover .willows-gallery-badge {
  transform: translateY(-2px);
}

/* Gallery page */
.willows-gallery-page {
  background: linear-gradient(180deg, #ffffff 0%, #fbfaf6 100%);
  padding-bottom: 1.5rem;
}

.willows-gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.willows-gallery-filter {
  border: 1px solid rgba(73, 95, 63, .12);
  background: #fff;
  color: #41513a;
  border-radius: 999px;
  padding: .7rem 1rem;
  font-weight: 600;
  line-height: 1;
  transition: .2s ease;
}

.willows-gallery-filter:hover,
.willows-gallery-filter.is-active {
  background: #6b8b5b;
  color: #fff;
  border-color: #6b8b5b;
  transform: translateY(-1px);
}

.willows-gallery-grid-page {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  grid-auto-flow: dense;
}

.willows-gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  background: #e8ede6;
  min-height: 320px;
  box-shadow: 0 18px 42px rgba(28, 36, 28, .08);
  transition: transform .25s ease, box-shadow .25s ease, opacity .2s ease;
  opacity: 0;
  transform: translateY(12px);
  animation: willowsFadeUp .6s ease forwards;
}

.willows-gallery-item:nth-child(1) { animation-delay: .05s; }
.willows-gallery-item:nth-child(2) { animation-delay: .10s; }
.willows-gallery-item:nth-child(3) { animation-delay: .15s; }
.willows-gallery-item:nth-child(4) { animation-delay: .20s; }
.willows-gallery-item:nth-child(5) { animation-delay: .25s; }
.willows-gallery-item:nth-child(6) { animation-delay: .30s; }

@keyframes willowsFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.willows-gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(28, 36, 28, .12);
}

.willows-gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.willows-gallery-item:hover img {
  transform: scale(1.06);
}

.willows-gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 28, 20, .06) 0%, rgba(20, 28, 20, .14) 58%, rgba(20, 28, 20, .45) 100%);
}

.willows-gallery-item-label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  max-width: calc(100% - 2rem);
  padding: .6rem .95rem;
  border-radius: 999px;
  background: rgba(30, 38, 30, .95);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .14);
}

.willows-gallery-item.is-hidden {
  display: none;
}

.willows-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(11, 15, 11, .88);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 9999;
}

.willows-lightbox.is-open {
  display: flex;
}

.willows-lightbox-inner {
  max-width: min(1100px, 100%);
  max-height: 100%;
  text-align: center;
}

.willows-lightbox-inner img {
  max-width: 100%;
  max-height: 78vh;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .28);
}

.willows-lightbox-inner p {
  color: #fff;
  margin-top: 1rem;
  margin-bottom: 0;
  font-size: 1rem;
}

.willows-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 2.25rem;
  line-height: 1;
}


/* =========================
   GALLERY PAGE LOAD MORE PATCH
   ========================= */

.willows-gallery-page .willows-gallery-actions {
  margin-top: 2rem;
}

.willows-gallery-page .willows-gallery-loadmore {
  min-width: 170px;
}

.willows-gallery-page .willows-gallery-item.is-hidden {
  display: none;
}

body.willows-lightbox-open {
  overflow: hidden;
}

/* =========================
   GALLERY FEATURED TILES
   ========================= */

.willows-gallery-page .willows-gallery-item.is-featured {
  grid-column: span 2;
  grid-row: span 2;
}

@media (max-width: 991.98px) {
  .willows-gallery-page .willows-gallery-item.is-featured {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 575.98px) {
  .willows-gallery-page .willows-gallery-item.is-featured {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* Video */
.willows-video-section {
  background: linear-gradient(180deg, #fbfaf6 0%, #ffffff 100%);
}

.willows-video-intro {
  max-width: 820px;
}

.willows-video-shell {
  background: #fff;
  border: 1px solid rgba(73, 95, 63, .10);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(28, 36, 28, .08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.willows-video-shell:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 70px rgba(28, 36, 28, .10);
}

.willows-video-frame {
  position: relative;
  background: #0f130f;
}

.willows-video-player {
  display: block;
  width: 100%;
  max-width: 100%;
  background: #000;
}

.willows-video-caption {
  padding: 1.5rem 1.75rem;
  background: linear-gradient(180deg, #ffffff 0%, #fbfaf6 100%);
  border-top: 1px solid rgba(73, 95, 63, .08);
}

.willows-video-title {
  margin: 0 0 .5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1.05;
  font-weight: 600;
  color: var(--willows-text);
}

/* Testimonials / FAQ */
.willows-testimonial {
  background: #fff;
  border: 1px solid var(--willows-border);
  border-radius: 24px;
  padding: 1.8rem;
  box-shadow: 0 14px 36px rgba(28, 36, 28, .05);
  height: 100%;
}

.willows-quote {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #495147;
  margin: 0 0 1rem;
}

.willows-person {
  font-weight: 700;
  color: var(--willows-text);
}

.willows-person-meta {
  font-size: .95rem;
  color: var(--willows-muted);
}

.willows-faq-wrap .accordion-item {
  border: 1px solid var(--willows-border);
  border-radius: 18px !important;
  overflow: hidden;
  margin-bottom: 1rem;
  background: #fff;
  box-shadow: 0 8px 18px rgba(28, 36, 28, .03);
}

.willows-faq-wrap .accordion-button {
  font-weight: 700;
  color: var(--willows-text);
  padding: 1.2rem 1.25rem;
  box-shadow: none !important;
  background: #fff;
}

.willows-faq-wrap .accordion-button:not(.collapsed) {
  background: var(--willows-green-soft);
  color: var(--willows-green-dark);
}

.willows-faq-wrap .accordion-body {
  color: var(--willows-muted);
  line-height: 1.85;
  padding: 1.2rem 1.25rem 1.35rem;
}

/* Team */
.willows-team-img {
  width: 100%;
  max-width: 260px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.willows-team-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.willows-team-name span {
  font-family: inherit;
  font-size: 1.2rem;
  color: #6c757d;
  font-weight: 400;
}

.willows-team-divider {
  border: none;
  border-top: 1px dashed rgba(0, 0, 0, .15);
  margin: 3rem 0;
}

/* Page hero / forms / CTA */
.willows-page-hero {
  padding: calc(var(--willows-header-height) + 3rem) 0 2.5rem;
  background: #f8f7f4;
}

.willows-page-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 3vw, 3.2rem);
  margin-bottom: .75rem;
}

.willows-page-intro {
  max-width: 640px;
  font-size: 1.05rem;
  color: #6c757d;
}

.willows-cta-strip {
  padding: 2.75rem 0 3rem;
  background: #eef3ed;
  margin-top: 0;
  border-top: 1px solid rgba(0, 0, 0, .05);
}

.willows-cta-strip h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  margin-bottom: .5rem;
}

.willows-contact-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  margin-bottom: .75rem;
}

.willows-form-card {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.willows-contact-card {
  background: #f8f7f4;
  padding: 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, .05);
}

.willows-form-card .gform_wrapper {
  margin-bottom: 0;
  background: transparent !important;
}

.willows-form-card .gform_button {
  background: #6f8f62;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: .7rem 1.4rem;
  font-weight: 600;
  transition: .2s ease;
}

.willows-form-card .gform_button:hover {
  background: #5c7752;
}

.willows-form-card input,
.willows-form-card textarea,
.willows-form-card select {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, .1);
  padding: .75rem .85rem;
  font-size: .95rem;
  background: #fff;
  transition: .2s ease;
}

.willows-form-card input:focus,
.willows-form-card textarea:focus,
.willows-form-card select:focus {
  border-color: #6f8f62;
  box-shadow: 0 0 0 2px rgba(111, 143, 98, .15);
  outline: none;
}

.willows-cta-band {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(26, 34, 26, .62) 0%, rgba(26, 34, 26, .84) 100%), url('/wp-content/themes/willows-2026/assets/img/footer-cta.jpg') center center / cover no-repeat;
  padding: 3rem;
  color: #fff;
  box-shadow: 0 24px 60px rgba(28, 36, 28, .12);
}

.willows-divider {
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: var(--willows-gold);
  margin: 1rem 0 1.4rem;
}

/* Footer */
.willows-footer {
  background: #1f291f;
  color: rgba(255, 255, 255, .82);
  padding: 3rem 0 2rem;
}

.willows-footer h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  color: #fff;
  margin-bottom: .75rem;
}

.willows-footer a {
  color: rgba(255, 255, 255, .86);
}

.willows-footer a:hover {
  color: #fff;
}

/* Desktop nav explicit */
@media (min-width: 992px) {
  .willows-navbar .navbar-toggler {
    display: none !important;
  }

  .willows-navbar .navbar-collapse {
    display: flex !important;
    align-items: center;
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important;
    transform: none !important;
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
    padding: 0 !important;
    margin-top: 0 !important;
    top: auto !important;
    width: auto !important;
  }

  .willows-nav-actions {
    margin-top: 0;
    width: auto;
    display: flex;
    flex-direction: row;
    gap: .65rem;
  }

  .willows-btn-nav,
  .willows-btn-nav-secondary {
    width: auto;
  }
}

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

  .willows-gallery-item,
  .willows-gallery-card {
    min-height: 300px;
  }
}

/* Tablet / mobile */
@media (max-width: 991.98px) {
  :root {
    --willows-header-height: 78px;
  }

  body.admin-bar .willows-navbar {
    top: 46px !important;
  }

  .willows-navbar {
    padding: .5rem 0;
  }

  .willows-nav-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .willows-brand-mark {
    max-width: 190px;
    flex: 0 0 auto;
  }

  .willows-brand-mark img {
    max-height: 40px;
  }

  .willows-navbar .navbar-toggler {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    position: relative;
    z-index: 10002;
  }

  .willows-navbar .navbar-collapse {
    position: absolute;
    top: calc(100% + 4px) !important;
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    margin-top: 0 !important;
    padding: 1rem 1rem .85rem;
    border-radius: 22px;
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
    z-index: 10010;
  }

  .willows-navbar .navbar-collapse.show {
    display: block !important;
  }

  .willows-navbar .navbar-nav {
    width: 100%;
    gap: 0 !important;
  }

  .willows-navbar .nav-link {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
  }

  .willows-navbar .nav-item:last-child .nav-link {
    border-bottom: 0;
  }

  .willows-nav-actions {
    margin-top: .75rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: .75rem;
  }

  .willows-btn-nav,
  .willows-btn-nav-secondary {
    width: 100%;
    justify-content: center;
  }

  .willows-hero {
    min-height: auto !important;
    height: auto !important;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 60px !important;
    background-position: right center !important;
  }

  .willows-hero-content {
    max-width: 100%;
  }

  .willows-display {
    font-size: clamp(2.2rem, 5.8vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin-bottom: .35rem;
    max-width: 620px;
  }

  .willows-hero-tagline {
    font-weight: 500;
    font-size: clamp(1.45rem, 4.6vw, 2rem);
    line-height: 1.15;
    margin-bottom: 1rem;
  }

  .willows-hero-desc {
    max-width: 520px;
    font-size: 1rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, .92);
    margin-bottom: 1.4rem;
  }

  .willows-btn-row {
    gap: 12px;
  }

  .willows-hero-pills {
    margin-top: 1rem;
    gap: 8px;
  }

  .willows-intro-card {
    margin-top: -28px;
  }

  .willows-panel,
  .willows-split-card,
  .willows-cta-band {
    padding: 1.5rem;
  }

  .willows-image-card {
    min-height: 360px;
  }

  .willows-section {
    padding: 4rem 0;
  }

  .willows-h2 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .willows-video-caption {
    padding: 1.25rem 1.25rem 1.5rem;
  }

  .willows-video-title {
    font-size: 1.7rem;
  }
}

@media (max-width: 767.98px) {
  .willows-navbar {
    padding: .45rem 0;
  }

  .willows-brand-mark {
    max-width: 170px;
  }

  .willows-brand-mark img {
    max-height: 34px;
  }

  .willows-navbar .navbar-toggler {
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }

  .willows-hero {
    min-height: auto !important;
    align-items: center;
    padding: 120px 0 56px !important;
  }

  .willows-display {
    font-size: clamp(2rem, 8.5vw, 2.6rem);
    line-height: 1.08;
    max-width: 100%;
  }

  .willows-hero-tagline {
    font-size: clamp(1.3rem, 6.2vw, 1.8rem);
    line-height: 1.18;
    margin-bottom: .85rem;
  }

  .willows-hero-desc {
    font-size: .98rem;
    max-width: 100%;
    margin-bottom: 1.2rem;
  }

  .willows-btn-row {
    flex-direction: column;
    gap: 12px;
  }

  .willows-btn-primary,
  .willows-btn-secondary {
    width: 100%;
  }

  .willows-pill {
    font-size: 12px;
    padding: 6px 10px;
  }

  .willows-panel,
  .willows-split-card,
  .willows-cta-band,
  .willows-form-card {
    padding: 1.25rem;
  }

  .willows-intro-card {
    margin-top: -24px;
  }

  .willows-cta-strip {
    padding-top: 2.5rem;
    padding-bottom: 2.75rem;
    margin-top: 0;
  }

  .willows-gallery-page {
    padding-bottom: 1.5rem;
  }

  .willows-gallery-grid-page {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .willows-gallery-item,
  .willows-gallery-card {
    min-height: 240px;
  }

  .willows-gallery-badge {
    font-size: .9rem;
    padding: .55rem .85rem;
  }
}

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

@media (max-width: 782px) {
  body.admin-bar .willows-navbar {
    top: 46px;
  }
}


/* =========================================================
   WEDDINGS PAGE
   ========================================================= */

.page-template-page-weddings-php {
  --wedding-cream: #f7f3eb;
  --wedding-cream-dark: #eee6d7;
  --wedding-sand: #ccb38a;
  --wedding-taupe: #8d7251;
  --wedding-olive: #73885b;
  --wedding-olive-dark: #5e7248;
  --wedding-text: #1f1a17;
  --wedding-text-soft: #5d544b;
  --wedding-border: rgba(87, 68, 43, 0.12);
  --wedding-shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.06);
  --wedding-shadow-md: 0 18px 40px rgba(0, 0, 0, 0.10);
  --wedding-radius: 1.25rem;
  --wedding-radius-lg: 1.75rem;
  --wedding-font-heading: "Cormorant Garamond", serif;
  --wedding-font-body: "Inter", sans-serif;
}

.page-template-page-weddings-php main#primary {
  background: #fff;
  overflow-x: clip;
}

/* Typography */
.page-template-page-weddings-php .section-eyebrow,
.page-template-page-weddings-php .package-kicker {
  font-family: var(--wedding-font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wedding-taupe);
}

.page-template-page-weddings-php h1,
.page-template-page-weddings-php h2,
.page-template-page-weddings-php h3,
.page-template-page-weddings-php .section-title,
.page-template-page-weddings-php .willows-feature-card h3,
.page-template-page-weddings-php .willows-package-card h3,
.page-template-page-weddings-php .willows-detail-card h3 {
  font-family: var(--wedding-font-heading);
  color: var(--wedding-text);
}

.page-template-page-weddings-php .section-title {
  font-size: clamp(2.2rem, 3.3vw, 3.3rem);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.page-template-page-weddings-php p,
.page-template-page-weddings-php li,
.page-template-page-weddings-php a,
.page-template-page-weddings-php .lead,
.page-template-page-weddings-php .section-text,
.page-template-page-weddings-php .testimonial-quote,
.page-template-page-weddings-php .btn {
  font-family: var(--wedding-font-body);
}

.page-template-page-weddings-php .section-text {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--wedding-text-soft);
}


/* Hero */
.page-template-page-weddings-php .willows-wedding-hero,
body.page-template-page-weddings-php .willows-wedding-hero {
  position: relative !important;
  min-height: 84vh !important;
  display: flex !important;
  align-items: center !important;
  overflow: hidden !important;
  background: #8f8a80 !important;
}

.page-template-page-weddings-php .willows-wedding-hero .container,
body.page-template-page-weddings-php .willows-wedding-hero .container {
  position: relative !important;
  z-index: 3 !important;
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.page-template-page-weddings-php .willows-wedding-hero .row,
body.page-template-page-weddings-php .willows-wedding-hero .row {
  align-items: center !important;
}

.page-template-page-weddings-php .willows-wedding-hero-content,
body.page-template-page-weddings-php .willows-wedding-hero-content {
  position: relative !important;
  z-index: 3 !important;
  max-width: 520px;
}

.page-template-page-weddings-php .willows-wedding-hero .hero-bg,
body.page-template-page-weddings-php .willows-wedding-hero .hero-bg {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  background-position: 65% center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  transform: scale(1.02) !important;
}

.page-template-page-weddings-php .willows-wedding-hero .hero-overlay,
body.page-template-page-weddings-php .willows-wedding-hero .hero-overlay {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  background: linear-gradient(
    90deg,
    rgba(16, 12, 8, 0.82) 0%,
    rgba(16, 12, 8, 0.62) 30%,
    rgba(16, 12, 8, 0.32) 55%,
    rgba(16, 12, 8, 0.10) 100%
  ) !important;
}

.page-template-page-weddings-php .willows-wedding-hero .text-uppercase.small,
body.page-template-page-weddings-php .willows-wedding-hero .text-uppercase.small {
  font-family: "Inter", sans-serif !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  color: rgba(255,255,255,0.92) !important;
}

.page-template-page-weddings-php .willows-wedding-hero h1,
body.page-template-page-weddings-php .willows-wedding-hero h1 {
  font-family: "Cormorant Garamond", serif !important;
  font-size: clamp(4rem, 6.3vw, 6.5rem) !important;
  line-height: 0.9 !important;
  font-weight: 600 !important;
  letter-spacing: -0.035em !important;
  max-width: 7ch !important;
  margin: 0 0 1.75rem 0 !important;
  color: #fff !important;
  text-shadow: 0 10px 28px rgba(0,0,0,0.28) !important;
}

.page-template-page-weddings-php .willows-wedding-hero .lead,
body.page-template-page-weddings-php .willows-wedding-hero .lead {
  font-family: "Inter", sans-serif !important;
  max-width: 34rem !important;
  font-size: 1.14rem !important;
  line-height: 1.7 !important;
  margin: 0 0 1.75rem 0 !important;
  color: rgba(255,255,255,0.94) !important;
  text-shadow: 0 6px 18px rgba(0,0,0,0.20) !important;
}

.page-template-page-weddings-php .willows-wedding-hero .btn,
body.page-template-page-weddings-php .willows-wedding-hero .btn {
  font-family: "Inter", sans-serif !important;
  min-height: 52px !important;
  padding: 0.85rem 1.4rem !important;
  border-radius: 999px !important;
  font-size: 0.98rem !important;
  font-weight: 600 !important;
}

.page-template-page-weddings-php .willows-wedding-hero .btn-light,
body.page-template-page-weddings-php .willows-wedding-hero .btn-light {
  color: #1f1a17 !important;
  background: #fff !important;
  border-color: #fff !important;
}

.page-template-page-weddings-php .willows-wedding-hero .btn-outline-light,
body.page-template-page-weddings-php .willows-wedding-hero .btn-outline-light {
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.5) !important;
  background: transparent !important;
}

.page-template-page-weddings-php .willows-wedding-hero .btn-outline-light:hover,
body.page-template-page-weddings-php .willows-wedding-hero .btn-outline-light:hover {
  background: rgba(255,255,255,0.12) !important;
  border-color: rgba(255,255,255,0.9) !important;
}


.page-template-page-weddings-php .willows-wedding-hero {
  padding-top: var(--willows-header-height);
}

@media (max-width: 767.98px) {
  .page-template-page-weddings-php .willows-wedding-hero {
    padding-top: calc(var(--willows-header-height) + 0.5rem);
  }
}

/* Shared section spacing */
.page-template-page-weddings-php .willows-wedding-intro,
.page-template-page-weddings-php .willows-wedding-value,
.page-template-page-weddings-php .willows-wedding-packages,
.page-template-page-weddings-php .willows-wedding-details,
.page-template-page-weddings-php .willows-wedding-highlights,
.page-template-page-weddings-php .willows-wedding-gallery-cta,
.page-template-page-weddings-php .willows-wedding-testimonials,
.page-template-page-weddings-php .willows-wedding-final-cta {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

/* Intro */
.page-template-page-weddings-php .willows-wedding-intro {
  background: linear-gradient(180deg, #fff 0%, var(--wedding-cream) 100%);
}

.page-template-page-weddings-php .willows-image-card {
  border-radius: var(--wedding-radius-lg);
  overflow: hidden;
  box-shadow: var(--wedding-shadow-md);
  background: #e8e1d6;
}

.page-template-page-weddings-php .willows-image-card img,
.page-template-page-weddings-php .willows-wedding-highlights img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-template-page-weddings-php .willows-wedding-intro .section-title,
.page-template-page-weddings-php .willows-wedding-value .section-title,
.page-template-page-weddings-php .willows-wedding-packages .section-title,
.page-template-page-weddings-php .willows-wedding-details .section-title,
.page-template-page-weddings-php .willows-wedding-highlights .section-title,
.page-template-page-weddings-php .willows-wedding-gallery-cta .section-title,
.page-template-page-weddings-php .willows-wedding-testimonials .section-title,
.page-template-page-weddings-php .willows-wedding-final-cta .section-title {
  margin-bottom: 1rem;
}

/* Cards */
.page-template-page-weddings-php .willows-feature-card,
.page-template-page-weddings-php .willows-package-card,
.page-template-page-weddings-php .willows-detail-card,
.page-template-page-weddings-php .willows-testimonial-card,
.page-template-page-weddings-php .willows-gallery-cta-card,
.page-template-page-weddings-php .willows-cuisine-card,
.page-template-page-weddings-php .willows-final-cta-card {
  background: #fff;
  border: 1px solid var(--wedding-border);
  box-shadow: var(--wedding-shadow-sm);
}

.page-template-page-weddings-php .willows-feature-card,
.page-template-page-weddings-php .willows-detail-card,
.page-template-page-weddings-php .willows-testimonial-card {
  border-radius: var(--wedding-radius);
  padding: 2rem 1.5rem;
}

.page-template-page-weddings-php .willows-package-card,
.page-template-page-weddings-php .willows-gallery-cta-card,
.page-template-page-weddings-php .willows-cuisine-card,
.page-template-page-weddings-php .willows-final-cta-card {
  border-radius: var(--wedding-radius-lg);
}

.page-template-page-weddings-php .willows-package-card {
  height: 100%;
  padding: 2rem 1.75rem;
  background: rgba(255,255,255,0.92);
}

.page-template-page-weddings-php .willows-package-card.featured {
  border-color: rgba(115, 136, 91, 0.28);
  box-shadow: 0 24px 48px rgba(115, 136, 91, 0.14);
  transform: translateY(-4px);
}

.page-template-page-weddings-php .willows-package-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: var(--wedding-olive);
  color: #fff;
  font-family: var(--wedding-font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-template-page-weddings-php .package-kicker {
  display: inline-block;
  margin-bottom: 0.5rem;
}

.page-template-page-weddings-php .package-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-template-page-weddings-php .package-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.9rem;
  color: var(--wedding-text);
  line-height: 1.65;
}

.page-template-page-weddings-php .package-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--wedding-olive);
  box-shadow: 0 0 0 4px rgba(115, 136, 91, 0.12);
}

.page-template-page-weddings-php .package-note,
.page-template-page-weddings-php .willows-package-footnote,
.page-template-page-weddings-php .highlight-item,
.page-template-page-weddings-php .cuisine-pill {
  background: var(--wedding-cream);
  color: var(--wedding-text);
  border: 1px solid rgba(87, 68, 43, 0.10);
}

/* Value props */
.page-template-page-weddings-php .willows-wedding-value {
  background: #fff;
}

.page-template-page-weddings-php .willows-feature-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--wedding-cream);
  color: var(--wedding-olive-dark);
  border: 1px solid rgba(115, 136, 91, 0.12);
  font-size: 1.35rem;
}


/* =========================================================
   KNOT BADGE
   ========================================================= */

.willows-knot-badge {
  text-align: center;
  padding-top: 0.5rem;
}

.willows-knot-badge img {
  max-width: 160px;
  height: auto;
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.95;
}

.willows-knot-badge img:hover {
  transform: scale(1.05);
  opacity: 1;
}

/* Mobile adjustment */
@media (max-width: 991px) {
  .willows-knot-badge {
    margin-top: 2rem;
  }

  .willows-knot-badge img {
    max-width: 140px;
  }
}

.willows-form-note {
  padding: 1rem 1.1rem;
  border-radius: 12px;
  background: #f8f3ea;
  border: 1px solid rgba(87, 68, 43, 0.10);
  color: #5d544b;
}

.willows-trust-badge img {
  display: block;
}

.willows-trust-badge p {
  color: #6c757d;
}

.page-template-page-contact-php .gform_wrapper .gform_button,
.page-id-20 .gform_wrapper .gform_button {
  background: var(--wedding-olive) !important;
  border: 1px solid var(--wedding-olive) !important;
  color: #fff !important;
  border-radius: 999px !important;
  padding: 0.8rem 1.4rem !important;
  font-weight: 600 !important;
  box-shadow: none !important;
}

.page-template-page-contact-php .gform_wrapper .gform_button:hover,
.page-template-page-contact-php .gform_wrapper .gform_button:focus,
.page-id-20 .gform_wrapper .gform_button:hover,
.page-id-20 .gform_wrapper .gform_button:focus {
  background: var(--wedding-olive-dark) !important;
  border-color: var(--wedding-olive-dark) !important;
  color: #fff !important;
}

/* =========================================================
   WEDDINGS PACKAGES POLISH
   ========================================================= */

.page-template-page-weddings-php .willows-wedding-packages .section-text {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.page-template-page-weddings-php .willows-package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.25rem 2rem;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(87, 68, 43, 0.12);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.page-template-page-weddings-php .willows-package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
  border-color: rgba(115, 136, 91, 0.24);
}

.page-template-page-weddings-php .willows-package-card.featured {
  background: linear-gradient(180deg, #fff 0%, #fcfaf6 100%);
  border: 1px solid rgba(115, 136, 91, 0.28);
  box-shadow: 0 24px 48px rgba(115, 136, 91, 0.14);
  transform: translateY(-6px);
}

.page-template-page-weddings-php .willows-package-card.featured:hover {
  transform: translateY(-8px);
}

.page-template-page-weddings-php .willows-package-card.featured::before {
  top: 1.1rem;
  right: 1.1rem;
}

.page-template-page-weddings-php .package-kicker {
  color: var(--wedding-taupe);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
}

.page-template-page-weddings-php .willows-package-card h3 {
  font-size: clamp(2rem, 2.6vw, 2.5rem);
  line-height: 1;
  margin-bottom: 1rem;
}

.page-template-page-weddings-php .willows-package-card p {
  margin-bottom: 1.35rem;
  color: var(--wedding-text-soft);
}

.page-template-page-weddings-php .package-list {
  margin-bottom: 1.5rem;
}

.page-template-page-weddings-php .package-list li {
  padding-left: 1.75rem;
  margin-bottom: 1rem;
  font-size: 0.98rem;
}

.page-template-page-weddings-php .package-list li::before {
  top: 0.58rem;
  width: 10px;
  height: 10px;
}

.page-template-page-weddings-php .package-note {
  margin-top: auto;
  font-size: 0.95rem;
  color: var(--wedding-text-soft);
  background: #f8f3ea;
}

.page-template-page-weddings-php .willows-package-footnote {
  margin-top: 0.5rem;
  font-size: 0.98rem;
  background: #f8f3ea;
}

/* mobile */
@media (max-width: 767.98px) {
  .page-template-page-weddings-php .willows-package-card {
    padding: 1.75rem 1.4rem;
  }

  .page-template-page-weddings-php .willows-package-card.featured {
    transform: none;
  }

  .page-template-page-weddings-php .willows-package-card.featured:hover {
    transform: none;
  }

  .page-template-page-weddings-php .willows-package-card h3 {
    font-size: 2rem;
  }
}



/* Details */
.page-template-page-weddings-php .willows-wedding-details {
  background: linear-gradient(180deg, #fff 0%, var(--wedding-cream) 100%);
}

.page-template-page-weddings-php .willows-detail-card p,
.page-template-page-weddings-php .willows-feature-card p,
.page-template-page-weddings-php .willows-package-card p {
  color: var(--wedding-text-soft);
}

.page-template-page-weddings-php .package-note,
.page-template-page-weddings-php .willows-package-footnote {
  padding: 1rem 1.1rem;
  border-radius: 1rem;
}

.page-template-page-weddings-php .willows-cuisine-card {
  padding: 2rem;
}

.page-template-page-weddings-php .willows-cuisine-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.page-template-page-weddings-php .cuisine-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-weight: 500;
}

/* Highlights */
.page-template-page-weddings-php .willows-wedding-highlights {
  background: #fff;
}

.page-template-page-weddings-php .willows-wedding-highlights .ratio,
.page-template-page-weddings-php .willows-wedding-highlights img {
  border-radius: var(--wedding-radius);
}

.page-template-page-weddings-php .willows-wedding-highlights img {
  box-shadow: var(--wedding-shadow-sm);
}

.page-template-page-weddings-php .willows-highlight-list {
  display: grid;
  gap: 0.9rem;
}

.page-template-page-weddings-php .highlight-item {
  position: relative;
  padding: 1rem 1rem 1rem 3rem;
  border-radius: 1rem;
  line-height: 1.55;
}

.page-template-page-weddings-php .highlight-item::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.02rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--wedding-olive);
  box-shadow: 0 0 0 5px rgba(115, 136, 91, 0.12);
}

/* Gallery CTA */
.page-template-page-weddings-php .willows-wedding-gallery-cta {
  background: linear-gradient(180deg, #fff 0%, var(--wedding-cream) 100%);
}

.page-template-page-weddings-php .willows-gallery-cta-card {
  padding: 2.25rem 2rem;
}

/* Testimonials */
.page-template-page-weddings-php .willows-wedding-testimonials {
  background: #fff;
}

.page-template-page-weddings-php .willows-testimonial-card {
  position: relative;
  padding: 2rem 1.75rem;
}

.page-template-page-weddings-php .willows-testimonial-card::before {
  content: "“";
  position: absolute;
  top: 1rem;
  left: 1.2rem;
  font-size: 4rem;
  line-height: 1;
  color: rgba(141, 114, 81, 0.18);
  font-family: Georgia, serif;
}

.page-template-page-weddings-php .testimonial-quote {
  position: relative;
  z-index: 1;
  padding-top: 1.4rem;
  color: var(--wedding-text-soft);
  line-height: 1.8;
}

.page-template-page-weddings-php .testimonial-meta span {
  color: var(--wedding-taupe);
}

/* Final CTA */
.page-template-page-weddings-php .willows-wedding-final-cta {
  background: linear-gradient(180deg, var(--wedding-cream) 0%, var(--wedding-cream-dark) 100%);
}

.page-template-page-weddings-php .willows-final-cta-card {
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(255,255,255,0.88));
}

.page-template-page-weddings-php .willows-final-cta-card .btn-primary,
.page-template-page-weddings-php .willows-gallery-cta-card .btn-primary {
  background: var(--wedding-olive);
  border-color: var(--wedding-olive);
}

.page-template-page-weddings-php .willows-final-cta-card .btn-primary:hover,
.page-template-page-weddings-php .willows-final-cta-card .btn-primary:focus,
.page-template-page-weddings-php .willows-gallery-cta-card .btn-primary:hover,
.page-template-page-weddings-php .willows-gallery-cta-card .btn-primary:focus {
  background: var(--wedding-olive-dark);
  border-color: var(--wedding-olive-dark);
}

.page-template-page-weddings-php .willows-final-cta-card .btn-outline-primary {
  color: var(--wedding-olive-dark);
  border-color: rgba(115, 136, 91, 0.38);
}

@media (max-width: 991.98px) {
  .page-template-page-weddings-php .willows-wedding-hero,
  body.page-template-page-weddings-php .willows-wedding-hero {
    min-height: 620px !important;
  }

  .page-template-page-weddings-php .willows-wedding-hero .container,
  body.page-template-page-weddings-php .willows-wedding-hero .container {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .page-template-page-weddings-php .willows-wedding-hero .hero-overlay,
  body.page-template-page-weddings-php .willows-wedding-hero .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(16, 12, 8, 0.72) 0%,
      rgba(16, 12, 8, 0.48) 46%,
      rgba(16, 12, 8, 0.28) 100%
    ) !important;
  }
}

@media (max-width: 767.98px) {
  .page-template-page-weddings-php .willows-wedding-hero,
  body.page-template-page-weddings-php .willows-wedding-hero {
    min-height: 560px !important;
  }

  .page-template-page-weddings-php .willows-wedding-hero .container,
  body.page-template-page-weddings-php .willows-wedding-hero .container {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .page-template-page-weddings-php .willows-wedding-hero h1,
  body.page-template-page-weddings-php .willows-wedding-hero h1 {
    font-size: clamp(2.8rem, 13vw, 4.4rem) !important;
    max-width: 8ch !important;
  }

  .page-template-page-weddings-php .willows-wedding-hero .lead,
  body.page-template-page-weddings-php .willows-wedding-hero .lead {
    font-size: 1.02rem !important;
    max-width: 100% !important;
  }

  .page-template-page-weddings-php .willows-wedding-hero .btn,
  body.page-template-page-weddings-php .willows-wedding-hero .btn {
    width: 100% !important;
    justify-content: center !important;
  }
}

@media (max-width: 575.98px) {
  .page-template-page-weddings-php .willows-wedding-hero,
  body.page-template-page-weddings-php .willows-wedding-hero {
    min-height: 520px !important;
  }

  .page-template-page-weddings-php .willows-wedding-hero .container,
  body.page-template-page-weddings-php .willows-wedding-hero .container {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
    max-width: 440px !important;
  }
}

@media (max-width: 767.98px) {
  .page-template-page-weddings-php .willows-wedding-hero .lead,
  body.page-template-page-weddings-php .willows-wedding-hero .lead {
    font-size: 0.96rem !important;
    line-height: 1.5 !important;
    max-width: 26ch !important;
    margin-bottom: 1rem !important;
  }
}


@media (max-width: 767.98px) {
  .page-template-page-weddings-php .willows-wedding-hero .d-flex,
  body.page-template-page-weddings-php .willows-wedding-hero .d-flex {
    flex-direction: column !important;
    gap: 0.65rem !important;
    align-items: stretch !important;
    margin-top: 1rem !important;
  }

  .page-template-page-weddings-php .willows-wedding-hero .btn,
  body.page-template-page-weddings-php .willows-wedding-hero .btn {
    min-height: 54px !important;
    border-radius: 999px !important;
  }
}

.page-template-page-weddings-php .willows-wedding-hero-content {
  padding-top: 2rem;
}

@media (max-width: 767.98px) {
  .page-template-page-weddings-php .willows-wedding-hero-content {
    padding-top: 1.25rem;
  }

  .page-template-page-weddings-php .willows-wedding-hero .d-flex,
  body.page-template-page-weddings-php .willows-wedding-hero .d-flex {
    flex-direction: column !important;
    gap: 0.65rem !important;
    align-items: stretch !important;
    margin-top: 1rem !important;
  }

  .page-template-page-weddings-php .willows-wedding-hero .btn,
  body.page-template-page-weddings-php .willows-wedding-hero .btn {
    width: 100% !important;
    min-height: 54px !important;
    justify-content: center !important;
    border-radius: 999px !important;
  }

  .page-template-page-weddings-php .willows-wedding-hero .lead,
  body.page-template-page-weddings-php .willows-wedding-hero .lead {
    font-size: 0.96rem !important;
    line-height: 1.5 !important;
    max-width: 26ch !important;
    margin-bottom: 1rem !important;
  }
}

.page-template-page-weddings-php .willows-wedding-final-cta {
  background: linear-gradient(180deg, var(--wedding-cream) 0%, var(--wedding-cream-dark) 100%);
}

.page-template-page-weddings-php .willows-final-cta-card {
  padding: 3.25rem 2rem;
  border-radius: var(--wedding-radius-lg);
  background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(255,255,255,0.88));
  border: 1px solid rgba(87, 68, 43, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.page-template-page-weddings-php .willows-final-cta-card .btn {
  min-height: 54px;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
}

.page-template-page-weddings-php .willows-final-cta-card .btn-primary {
  background: var(--wedding-olive);
  border-color: var(--wedding-olive);
}

.page-template-page-weddings-php .willows-final-cta-card .btn-primary:hover,
.page-template-page-weddings-php .willows-final-cta-card .btn-primary:focus {
  background: var(--wedding-olive-dark);
  border-color: var(--wedding-olive-dark);
}

.page-template-page-weddings-php .willows-final-cta-card .btn-outline-primary {
  color: var(--wedding-olive-dark);
  border-color: rgba(115, 136, 91, 0.38);
}

.page-template-page-weddings-php .willows-final-cta-card .btn-outline-primary:hover,
.page-template-page-weddings-php .willows-final-cta-card .btn-outline-primary:focus {
  color: #fff;
  background: var(--wedding-olive-dark);
  border-color: var(--wedding-olive-dark);
}

/* =========================================================
   BABY SHOWERS WILLOWS
   HERO - FULL BLEED FIX
   ========================================================= */

.page-template-page-babyshowers-php {
  --baby-cream: #f7f3eb;
  --baby-cream-dark: #eee6d7;
  --baby-sand: #ccb38a;
  --baby-taupe: #8d7251;
  --baby-olive: #73885b;
  --baby-olive-dark: #5e7248;
  --baby-text: #1f1a17;
  --baby-text-soft: #5d544b;
  --baby-border: rgba(87, 68, 43, 0.12);
  --baby-shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.06);
  --baby-shadow-md: 0 18px 40px rgba(0, 0, 0, 0.10);
  --baby-radius: 1.25rem;
  --baby-radius-lg: 1.75rem;
  --baby-font-heading: "Cormorant Garamond", serif;
  --baby-font-body: "Inter", sans-serif;
}

/* Hero shell */
.page-template-page-babyshowers-php .willows-event-hero {
  position: relative;
  min-height: 820px;
  padding-top: calc(var(--willows-header-height) + 24px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}

/* Full bleed background layer */
.page-template-page-babyshowers-php .willows-event-hero__bg,
.page-template-page-babyshowers-php .willows-event-hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  transform: scale(1.02);
}

/* Overlay */
.page-template-page-babyshowers-php .willows-event-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(8, 10, 8, 0.72) 0%,
      rgba(8, 10, 8, 0.52) 22%,
      rgba(8, 10, 8, 0.28) 46%,
      rgba(8, 10, 8, 0.12) 66%,
      rgba(8, 10, 8, 0.04) 100%
    ),
    linear-gradient(
      180deg,
      rgba(8, 10, 8, 0.06) 0%,
      rgba(8, 10, 8, 0.10) 58%,
      rgba(8, 10, 8, 0.24) 100%
    );
}

.page-template-page-babyshowers-php .willows-event-hero__overlay::after,
.page-template-page-babyshowers-php .willows-event-hero .hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 24% 46%,
    rgba(8, 10, 8, 0.24) 0%,
    rgba(8, 10, 8, 0.10) 26%,
    rgba(8, 10, 8, 0) 60%
  );
  pointer-events: none;
}

/* Content container */
.page-template-page-babyshowers-php .willows-event-hero .container,
.page-template-page-babyshowers-php .willows-event-hero .container-willows {
  position: relative;
  z-index: 2;
}

.page-template-page-babyshowers-php .willows-event-hero__content {
  position: relative;
  z-index: 2;
  max-width: 430px;
  padding: 7rem 0 6rem;
}

.page-template-page-babyshowers-php .willows-event-hero__content::before {
  display: none;
}

.page-template-page-babyshowers-php .willows-event-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(8, 10, 8, 0.32);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.94);
  font-family: var(--baby-font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0,0,0,0.28);
  backdrop-filter: blur(3px);
}

.page-template-page-babyshowers-php .willows-event-hero__title {
  font-family: var(--baby-font-heading);
  font-weight: 400;
  font-size: clamp(3.6rem, 5.4vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.015em;
  max-width: 430px;
  color: rgba(255,255,255,0.97);
  text-shadow: 0 2px 10px rgba(0,0,0,0.18);
  margin: 0 0 1rem;
}

.page-template-page-babyshowers-php .willows-event-hero__text,
.page-template-page-babyshowers-php .willows-event-hero__actions,
.page-template-page-babyshowers-php .willows-event-hero .btn {
  font-family: var(--baby-font-body);
}

.page-template-page-babyshowers-php .willows-event-hero__text {
  max-width: 400px;
  color: rgba(255,255,255,0.98);
  text-shadow: 0 2px 14px rgba(0,0,0,0.45);
  line-height: 1.65;
}

.page-template-page-babyshowers-php .willows-event-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 1.75rem;
}

.page-template-page-babyshowers-php .willows-event-hero .btn-willows-primary,
.page-template-page-babyshowers-php .willows-event-hero .btn.btn-willows-primary {
  min-height: 56px;
  padding: 0.95rem 1.55rem;
  border-radius: 999px;
  box-shadow: 0 18px 36px rgba(0,0,0,0.25);
}

.page-template-page-babyshowers-php .willows-event-hero .btn-willows-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.95rem 1.55rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.22);
  border: 1px solid rgba(255,255,255,0.95);
  box-shadow: 0 10px 24px rgba(0,0,0,0.10);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(4px);
  transition: all 0.25s ease;
}

.page-template-page-babyshowers-php .willows-event-hero .btn-willows-outline-light:hover,
.page-template-page-babyshowers-php .willows-event-hero .btn-willows-outline-light:focus {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.96);
  color: #fff;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 991.98px) {
  .page-template-page-babyshowers-php .willows-event-hero {
    min-height: 680px;
    padding-top: calc(var(--willows-header-height) + 12px);
  }
}

@media (max-width: 575.98px) {
  .page-template-page-babyshowers-php .willows-event-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .page-template-page-babyshowers-php .willows-event-hero__actions .btn,
  .page-template-page-babyshowers-php .willows-event-hero__actions a {
    width: 100%;
    justify-content: center;
  }
}

/* =========================
   BABY HERO FULL-BLEED ALIGNMENT PATCH
   ========================= */

.page-template-page-babyshowers-php .willows-event-hero {
  position: relative;
  overflow: hidden;
}

.page-template-page-babyshowers-php .willows-event-hero__bg,
.page-template-page-babyshowers-php .willows-event-hero .hero-bg {
  position: absolute !important;
  top: 0;
  bottom: 0;
  left: 50% !important;
  width: 100vw !important;
  max-width: none !important;
  height: 100% !important;
  transform: translateX(-50%) scale(1.02) !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.page-template-page-babyshowers-php .willows-event-hero__overlay,
.page-template-page-babyshowers-php .willows-event-hero .hero-overlay {
  position: absolute !important;
  top: 0;
  bottom: 0;
  left: 50% !important;
  width: 100vw !important;
  max-width: none !important;
  transform: translateX(-50%) !important;
}

/* =========================================================
   BABY SHOWERS - INTRO / HIGHLIGHTS
   ========================================================= */

.page-template-page-babyshowers-php .baby-intro-section,
.page-template-page-babyshowers-php .baby-highlights-section {
  position: relative;
  padding: 5.5rem 0;
}

.page-template-page-babyshowers-php .baby-intro-section {
  background: #f7f4ee;
}

.page-template-page-babyshowers-php .baby-highlights-section {
  background: #fcfbf8;
  border-top: 1px solid rgba(87, 68, 43, 0.06);
}

.page-template-page-babyshowers-php .baby-section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.page-template-page-babyshowers-php .baby-intro-header,
.page-template-page-babyshowers-php .baby-highlights-header {
  max-width: 900px;
  margin: 0 auto 3rem;
  text-align: center;
}

.page-template-page-babyshowers-php .baby-section-eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: #6f8a5d;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-template-page-babyshowers-php .baby-section-title {
  margin: 0 0 1.25rem;
  color: #1f2b20;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.015em;
}

.page-template-page-babyshowers-php .baby-section-text {
  max-width: 760px;
  margin: 0 auto;
  color: #5c635b;
  font-size: 1.08rem;
  line-height: 1.8;
}

/* feature cards */

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

.page-template-page-babyshowers-php .baby-feature-card {
  height: 100%;
  padding: 2rem 1.75rem;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(87, 68, 43, 0.10);
  border-radius: 1.25rem;
  box-shadow: 0 10px 26px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.page-template-page-babyshowers-php .baby-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.08);
  border-color: rgba(111, 138, 93, 0.18);
}

.page-template-page-babyshowers-php .baby-feature-card h3 {
  margin: 0 0 0.8rem;
  color: #1f2b20;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem;
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.page-template-page-babyshowers-php .baby-feature-card p {
  margin: 0;
  color: #5c635b;
  font-size: 1rem;
  line-height: 1.75;
}

/* highlight image cards */

.page-template-page-babyshowers-php .baby-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.page-template-page-babyshowers-php .baby-highlight-tile {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(87, 68, 43, 0.08);
  border-radius: 1.35rem;
  box-shadow: 0 10px 24px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.page-template-page-babyshowers-php .baby-highlight-tile {
  transition: transform .35s ease, box-shadow .35s ease;
}

.page-template-page-babyshowers-php .baby-highlight-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.page-template-page-babyshowers-php .baby-highlight-tile:nth-child(2) img {
  object-position: center 20%;
}

.page-template-page-babyshowers-php .baby-highlight-caption {
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  font-size: 0.95rem;
}

.page-template-page-babyshowers-php .baby-highlight-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.08);
}

.page-template-page-babyshowers-php .baby-highlight-tile img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.page-template-page-babyshowers-php .baby-highlight-caption {
  padding: 1rem 1rem 1.15rem;
  color: #4f564e;
  font-size: 0.98rem;
  line-height: 1.65;
}

.page-template-page-babyshowers-php .baby-highlights-section h2 {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}



.page-template-page-babyshowers-php section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-template-page-babyshowers-php .baby-highlights {
  padding-bottom: 100px;
}

.page-template-page-babyshowers-php .baby-gallery-preview {
  padding-top: 100px;
}

.page-template-page-babyshowers-php h2 {
  margin-top: 0;
}



.page-template-page-babyshowers-php .baby-gallery-preview-section {
  padding: 5.5rem 0;
  background: var(--willows-green-soft);
  border-top: 1px solid rgba(87, 68, 43, 0.06);
}

.page-template-page-babyshowers-php .baby-gallery-preview-header {
  max-width: 840px;
  margin: 0 auto 3rem;
  text-align: center;
}

.page-template-page-babyshowers-php .baby-gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.baby-gallery-item {
  min-height: 140px;
}

.page-template-page-babyshowers-php .baby-gallery-main,
.page-template-page-babyshowers-php .baby-gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.07);
}

.page-template-page-babyshowers-php .baby-gallery-main {
  min-height: 520px;
}

.page-template-page-babyshowers-php .baby-gallery-side {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 1.25rem;
}

.page-template-page-babyshowers-php .baby-gallery-item {
  min-height: 160px;
}

.page-template-page-babyshowers-php .baby-gallery-main img,
.page-template-page-babyshowers-php .baby-gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.page-template-page-babyshowers-php .baby-gallery-main::after,
.page-template-page-babyshowers-php .baby-gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.08),
    rgba(0,0,0,0.12)
  );
  opacity: 1;
}


.page-template-page-babyshowers-php .baby-gallery-main:hover img,
.page-template-page-babyshowers-php .baby-gallery-item:hover img {
  transform: scale(1.0);
}

.page-template-page-babyshowers-php .baby-gallery-main:hover::after,
.page-template-page-babyshowers-php .baby-gallery-item:hover::after {
  opacity: 1;
}

.page-template-page-babyshowers-php .baby-gallery-preview-cta {
  margin-top: 1.5rem;
}

/* =========================
   BABY CTA
   ========================= */

.page-template-page-babyshowers-php .baby-cta-section {
  padding: 5.5rem 0;
}

.page-template-page-babyshowers-php .baby-cta-card {
  background: linear-gradient(135deg, #1f2d1f 0%, #4f6b4f 55%, #6b8b5b 100%);
  border-radius: 1.75rem;
  padding: 4.5rem 3rem;
  box-shadow: 0 30px 70px rgba(0,0,0,0.15);
  color: #fff;
  max-width: 1100px;
  margin: 0 auto;
}

.page-template-page-babyshowers-php .baby-cta-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  opacity: 0.7;
  margin-bottom: 0.75rem;
}

.page-template-page-babyshowers-php .baby-cta-title {
  font-family: var(--wedding-font-heading);
  font-size: 2.25rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  max-width: 680px;
  margin: 0 auto;
}

.page-template-page-babyshowers-php .baby-cta-text {
  max-width: 640px;
  margin: 0 auto 1.75rem;
  opacity: 0.9;
}

.page-template-page-babyshowers-php .baby-cta-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

/* Gold primary button */
.page-template-page-babyshowers-php .btn-willows-gold {
  background: var(--willows-gold);
  box-shadow: 0 8px 20px rgba(215, 187, 122, 0.25);
  color: #1d211b;
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border: none;
}

.page-template-page-babyshowers-php .btn-willows-gold:hover {
  background: #c9aa63;
}

/* Light outline button */
.page-template-page-babyshowers-php .btn-willows-outline-light {
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
}

.page-template-page-babyshowers-php .btn-willows-outline-light:hover {
  background: rgba(255,255,255,0.1);
}


@media (max-width: 991.98px) {
  .page-template-page-babyshowers-php .baby-gallery-preview-section {
    padding: 4.5rem 0;
  }

  .page-template-page-babyshowers-php .baby-gallery-grid {
    grid-template-columns: 1fr;
  }

  .page-template-page-babyshowers-php .baby-gallery-main {
    min-height: 360px;
  }

  .page-template-page-babyshowers-php .baby-gallery-side {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: none;
  }

  .page-template-page-babyshowers-php .baby-gallery-item {
    min-height: 180px;
  }
}

@media (max-width: 575.98px) {
  .page-template-page-babyshowers-php .baby-gallery-preview-section {
    padding: 3.75rem 0;
  }

  .page-template-page-babyshowers-php .baby-gallery-main {
    min-height: 280px;
  }

  .page-template-page-babyshowers-php .baby-gallery-side {
    grid-template-columns: 1fr;
  }

  .page-template-page-babyshowers-php .baby-gallery-item {
    min-height: 180px;
  }
}





/* responsive */

@media (max-width: 991.98px) {
  .page-template-page-babyshowers-php .baby-intro-section,
  .page-template-page-babyshowers-php .baby-highlights-section {
    padding: 4.5rem 0;
  }

  .page-template-page-babyshowers-php .baby-feature-grid,
  .page-template-page-babyshowers-php .baby-highlight-grid {
    grid-template-columns: 1fr;
  }

  .page-template-page-babyshowers-php .baby-section-title {
    font-size: clamp(2.3rem, 6vw, 3.3rem);
    color: #243126; /* slightly softer than current */
    font-weight: 500;
  }

  .page-template-page-babyshowers-php .baby-section-text {
    font-size: 1.02rem;
  }

  .page-template-page-babyshowers-php .baby-highlight-tile img {
    height: 240px;
  }
}

@media (max-width: 575.98px) {
  .page-template-page-babyshowers-php .baby-intro-section,
  .page-template-page-babyshowers-php .baby-highlights-section {
    padding: 3.75rem 0;
  }

  .page-template-page-babyshowers-php .baby-feature-card {
    padding: 1.5rem 1.25rem;
  }
}


/* =========================================================
   EVENTS PAGE
   ========================================================= */

.page-template-page-events-php {
  --events-cream: #f7f4ee;
  --events-cream-dark: #ece7dd;
  --events-text: #1f291f;
  --events-text-soft: #5d655d;
  --events-border: rgba(73, 95, 63, 0.10);
  --events-radius: 1.25rem;
  --events-radius-lg: 1.75rem;
  --events-shadow-sm: 0 10px 24px rgba(0,0,0,0.06);
  --events-shadow-md: 0 20px 50px rgba(0,0,0,0.10);
}

.page-template-page-events-php main#primary {
  background: #fff;
  overflow-x: clip;
}

.page-template-page-events-php .events-section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.page-template-page-events-php .events-section-eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--willows-green);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-template-page-events-php .events-section-title {
  margin: 0 0 1rem;
  color: #1f291f; /* your dark tone */
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.015em;
}

.page-template-page-events-php .events-section-text {
  max-width: 620px;
  margin: 0 auto;
  color: var(--events-text-soft);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Hero */

.page-template-page-events-php .willows-events-hero {
  position: relative;
  min-height: 760px;
  padding-top: calc(var(--willows-header-height) + 24px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #d9ddd5;
}

.page-template-page-events-php .willows-events-hero__bg {
  position: absolute;
  inset: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.02);
}


.page-template-page-events-php .willows-events-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(16, 12, 8, 0.60) 0%,
    rgba(16, 12, 8, 0.35) 45%,
    rgba(16, 12, 8, 0.12) 100%
  );
}

.page-template-page-events-php .willows-events-hero .container {
  position: relative;
  z-index: 2;
}

.page-template-page-events-php .willows-events-hero__content {
  max-width: 520px;
  padding: 5rem 0;
}

.page-template-page-events-php .willows-events-hero__title {
  margin: 0 0 1rem;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.4rem, 5.4vw, 5.7rem);
  line-height: 0.92;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.page-template-page-events-php .willows-events-hero__text {
  max-width: 430px;
  color: rgba(255,255,255,0.95);
  font-size: 1.08rem;
  line-height: 1.75;
  margin: 0 0 1.5rem;
}

.page-template-page-events-php .willows-events-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}


.page-template-page-events-php .willows-events-hero__actions .btn-outline-light {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.55) !important;
  color: #fff !important;
  box-shadow: none !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.page-template-page-events-php .willows-events-hero__actions .btn-outline-light:hover,
.page-template-page-events-php .willows-events-hero__actions .btn-outline-light:focus {
  background: rgba(255, 255, 255, 0.10) !important;
  border-color: rgba(255, 255, 255, 0.75) !important;
  color: #fff !important;
}

.page-template-page-events-php .willows-events-hero__actions a:last-child {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.55) !important;
  color: #fff !important;
  box-shadow: none !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.page-template-page-events-php .willows-events-hero__actions a:last-child:hover,
.page-template-page-events-php .willows-events-hero__actions a:last-child:focus {
  background: rgba(255, 255, 255, 0.10) !important;
  border-color: rgba(255, 255, 255, 0.75) !important;
  color: #fff !important;
}

.page-template-page-events-php .willows-events-hero__bg {
  background-position: 68% center;
}

.events-card {
  transition: all 0.3s ease;
}

.events-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(28, 36, 28, 0.12);
}

.events-card .eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--willows-green);
  font-weight: 600;
}

.events-card img {
  height: 220px;
  object-fit: cover;
}

.events-card a {
  font-weight: 600;
  color: var(--willows-green);
}

.events-card a::after {
  content: " →";
}

.events-card:hover a {
  text-decoration: underline;
}

.events-card-body {
  padding: 1.5rem 1.5rem 1.75rem;
}

.page-template-page-events-php .events-types-section .container {
  max-width: 1100px;
  padding-top: 4rem;
}

/* Intro */

.page-template-page-events-php .events-intro-section {
  padding: 5.5rem 0 2rem;
  background: #fff;
}

.page-template-page-events-php .events-intro-header,
.page-template-page-events-php .events-types-header,
.page-template-page-events-php .events-value-header {
  max-width: 900px;
  margin: 0 auto 3rem;
  text-align: center;
}

/* Event cards */

.page-template-page-events-php .events-types-section {
  padding: 2rem 0 5.5rem;
  background: #fff;
}

.page-template-page-events-php .events-type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.page-template-page-events-php .events-type-card {
  display: block;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--events-border);
  border-radius: var(--events-radius-lg);
  box-shadow: var(--events-shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.page-template-page-events-php .events-type-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--events-shadow-md);
  border-color: rgba(107, 139, 91, 0.22);
}

.page-template-page-events-php .events-type-card__image {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #e9ece8;
}

.page-template-page-events-php .events-type-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-template-page-events-php .events-type-card__body {
  padding: 1.5rem 1.5rem 1.6rem;
}

.page-template-page-events-php .events-type-card__kicker {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: var(--willows-green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-template-page-events-php .events-type-card h3 {
  margin: 0 0 0.75rem;
  color: var(--events-text);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1.05;
  font-weight: 500;
}

.page-template-page-events-php .events-type-card p {
  margin: 0 0 1rem;
  color: var(--events-text-soft);
  line-height: 1.7;
}

.page-template-page-events-php .events-type-card__link {
  color: var(--willows-green-dark);
  font-weight: 700;
}

/* Value section */

.page-template-page-events-php .events-value-section {
  padding: 5.5rem 0;
  background: linear-gradient(180deg, #fbfaf6 0%, #f7f4ee 100%);
  border-top: 1px solid rgba(73, 95, 63, 0.08);
}

.page-template-page-events-php .events-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.page-template-page-events-php .events-value-card {
  height: 100%;
  padding: 1.75rem;
  background: #fff;
  border: 1px solid rgba(73, 95, 63, 0.08);
  border-radius: 1.125rem;
  box-shadow: 0 10px 30px rgba(28, 36, 28, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.events-value-card h3::before {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: var(--willows-green);
  margin-bottom: 0.75rem;
  opacity: 0.6;
}

.page-template-page-events-php .events-value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(28, 36, 28, 0.10);
}

.page-template-page-events-php .events-value-card h3 {
  margin-bottom: 0.5rem;
  color: var(--events-text);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem;
  line-height: 1.05;
  font-weight: 600;
}

.page-template-page-events-php .events-value-card p {
  margin: 0;
  font-size: 0.95rem;
  color: #5f665d;
  line-height: 1.75;
}

/* Final CTA */

.page-template-page-events-php .events-final-cta-section {
  padding: 5.5rem 0;
  background: #fff;
}

.page-template-page-events-php .events-final-cta-card {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4.25rem 3rem;
  border-radius: 1.75rem;
  background: linear-gradient(135deg, #1d2a1d 0%, #486248 52%, #6b8b5b 100%);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
  color: #fff;
}


.page-template-page-events-php .events-final-cta-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  opacity: 0.72;
  margin-bottom: 0.75rem;
}

.page-template-page-events-php .events-final-cta-title {
  max-width: 760px;
  margin: 0 auto 1rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.25);
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  line-height: 1.15;
  font-weight: 500;
}

.page-template-page-events-php .events-final-cta-text {
  max-width: 700px;
  margin: 0 auto 1.75rem;
  opacity: 0.94;
  line-height: 1.75;
  text-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

.page-template-page-events-php .events-final-cta-actions {
  display: flex;
  margin-top: 2rem;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Responsive */

@media (max-width: 991.98px) {
  .page-template-page-events-php .willows-events-hero {
    min-height: 640px;
  }

  .page-template-page-events-php .events-type-grid,
  .page-template-page-events-php .events-value-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .page-template-page-events-php .willows-events-hero {
    min-height: 560px;
    padding-top: calc(var(--willows-header-height) + 12px);
  }

  .page-template-page-events-php .willows-events-hero__content {
    max-width: 100%;
    padding: 3rem 0;
  }

  .page-template-page-events-php .willows-events-hero__title {
    font-size: clamp(2.8rem, 12vw, 4.4rem);
    max-width: 8ch;
  }

  .page-template-page-events-php .willows-events-hero__text {
    font-size: 1rem;
    max-width: 100%;
    line-height: 1.6;
  }

  .page-template-page-events-php .willows-events-hero__actions,
  .page-template-page-events-php .events-final-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .page-template-page-events-php .willows-events-hero__actions .btn-willows,
  .page-template-page-events-php .events-final-cta-actions .btn-willows {
    width: 100%;
    justify-content: center;
  }

  .page-template-page-events-php .events-final-cta-card {
    padding: 3rem 1.5rem;
  }

  .page-template-page-events-php .events-final-cta-title {
    font-size: 2rem;
  }
}


/* =========================
   WILLOWS CONTACT FORM POLISH
   ========================= */

.willows-form-card {
  background: #fff;
  border: 1px solid rgba(73, 95, 63, 0.08);
  border-radius: 28px;
  box-shadow: 0 16px 44px rgba(28, 36, 28, 0.06);
}

.willows-form-card .gform_wrapper,
.willows-form-card .gform-theme--framework {
  margin: 0;
}

.willows-form-card .gform_heading {
  margin-bottom: 1.5rem;
}

.willows-form-card .gform_title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  line-height: 0.95;
  font-weight: 600;
  color: var(--willows-text);
  margin: 0 0 1rem;
}

.willows-form-card .gform_description {
  color: var(--willows-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

/* Labels */
.willows-form-card .gfield_label,
.willows-form-card .gform-field-label {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #223022;
}

/* Required text */
.willows-form-card .gfield_required,
.willows-form-card .gfield_required_text {
  color: #b54708;
  font-weight: 600;
  font-size: 0.84rem;
}

/* Field spacing */
.willows-form-card .gfield {
  margin-bottom: 1.35rem;
}

.willows-form-card .gform_fields {
  row-gap: 1rem;
}

/* Inputs */
.willows-form-card .gform_wrapper input[type="text"],
.willows-form-card .gform_wrapper input[type="email"],
.willows-form-card .gform_wrapper input[type="tel"],
.willows-form-card .gform_wrapper input[type="number"],
.willows-form-card .gform_wrapper input[type="date"],
.willows-form-card .gform_wrapper select,
.willows-form-card .gform_wrapper textarea {
  width: 100% !important;
  min-height: 58px;
  border: 1px solid rgba(73, 95, 63, 0.14) !important;
  border-radius: 18px !important;
  background: #fff !important;
  color: var(--willows-text) !important;
  padding: 0.95rem 1rem !important;
  font-size: 1rem !important;
  line-height: 1.4;
  box-shadow: none !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.willows-form-card .gform_wrapper input:hover,
.willows-form-card .gform_wrapper textarea:hover,
.willows-form-card .gform_wrapper select:hover {
  border-color: rgba(107, 139, 91, 0.35) !important;
}

/* Textarea */
.willows-form-card .gform_wrapper textarea {
  min-height: 160px;
  resize: vertical;
  padding-top: 1rem !important;
}

/* Focus */
.willows-form-card .gform_wrapper input:focus,
.willows-form-card .gform_wrapper select:focus,
.willows-form-card .gform_wrapper textarea:focus {
  outline: none !important;
  border-color: var(--willows-green) !important;
  box-shadow: 0 0 0 4px rgba(107, 139, 91, 0.14) !important;
}

/* Placeholder */
.willows-form-card .gform_wrapper ::placeholder {
  color: #8a9087;
}

/* Helper / description text */
.willows-form-card .gfield_description,
.willows-form-card .instruction {
  margin-top: 0.5rem;
  font-size: 0.92rem;
  color: var(--willows-muted);
}

/* Datepicker */
.willows-form-card .ginput_container_date {
  position: relative;
}

.willows-form-card .ginput_container_date input {
  padding-right: 3rem !important;
}

/* Footer / submit area */
.willows-form-card .gform_footer,
.willows-form-card .gform-page-footer {
  margin-top: 2rem;
  padding: 0;
  text-align: center;
}

/* Button */
.willows-form-card .gform_wrapper .gform_button,
.willows-form-card .gform_wrapper input[type="submit"].gform_button,
.willows-form-card .gform_footer .gform_button,
.willows-form-card .gform_footer input[type="submit"] {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.95rem 1.6rem !important;
  border-radius: 999px !important;
  border: 1px solid var(--willows-green) !important;
  background: var(--willows-green) !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 0.98rem !important;
  letter-spacing: 0.01em;
  text-transform: none;
  box-shadow: 0 12px 28px rgba(107, 139, 91, 0.22) !important;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.willows-form-card .gform_wrapper .gform_button:hover,
.willows-form-card .gform_wrapper .gform_button:focus,
.willows-form-card .gform_wrapper input[type="submit"].gform_button:hover,
.willows-form-card .gform_wrapper input[type="submit"].gform_button:focus,
.willows-form-card .gform_footer input[type="submit"]:hover,
.willows-form-card .gform_footer input[type="submit"]:focus {
  background: var(--willows-green-dark) !important;
  border-color: var(--willows-green-dark) !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(107, 139, 91, 0.26) !important;
}

/* Mobile */
@media (max-width: 767.98px) {
  .willows-form-card {
    padding: 1.25rem;
  }

  .willows-form-card .gform_title {
    font-size: 2.5rem;
  }

  .willows-form-card .gform_wrapper .gform_button,
  .willows-form-card .gform_wrapper input[type="submit"].gform_button,
  .willows-form-card .gform_footer input[type="submit"] {
    width: 100%;
  }
}


/* =========================================================
   PRIVATE & CORPORATE EVENTS PAGE
   ========================================================= */

.page-template-page-events-private-php {
  --private-cream: #f7f4ee;
  --private-cream-dark: #ece7dd;
  --private-text: #1f291f;
  --private-text-soft: #5d655d;
  --private-border: rgba(73, 95, 63, 0.10);
  --private-radius: 1.25rem;
  --private-radius-lg: 1.75rem;
  --private-shadow-sm: 0 10px 24px rgba(0,0,0,0.06);
  --private-shadow-md: 0 20px 50px rgba(0,0,0,0.10);
}

.page-template-page-events-private-php main#primary {
  background: #fff;
  overflow-x: clip;
}

/* Shared inner width */
.page-template-page-events-private-php .events-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Shared typography */
.page-template-page-events-private-php .events-section-eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--willows-green);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-template-page-events-private-php .events-section-title {
  margin: 0 0 1rem;
  color: var(--private-text);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.015em;
}

.page-template-page-events-private-php .events-section-text {
  max-width: 760px;
  margin: 0 auto;
  color: var(--private-text-soft);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Hero */
.page-template-page-events-private-php .willows-event-hero {
  position: relative;
  min-height: 760px;
  padding-top: calc(var(--willows-header-height) + 24px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-color: #d9ddd5;
}

.page-template-page-events-private-php .willows-event-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(16, 12, 8, 0.58) 0%,
    rgba(16, 12, 8, 0.34) 44%,
    rgba(16, 12, 8, 0.12) 100%
  );
}

.page-template-page-events-private-php .willows-event-hero .container {
  position: relative;
  z-index: 2;
}

.page-template-page-events-private-php .willows-event-hero__content {
  max-width: 560px;
  padding: 5rem 0;
}

.page-template-page-events-private-php .willows-event-hero__eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(8, 10, 8, 0.28);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.95);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.page-template-page-events-private-php .willows-event-hero__title {
  margin: 0 0 1rem;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.4rem, 5.4vw, 5.7rem);
  line-height: 0.92;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-shadow: 0 8px 26px rgba(0,0,0,0.18);
}

.page-template-page-events-private-php .willows-event-hero__text {
  max-width: 460px;
  color: rgba(255,255,255,0.95);
  font-size: 1.08rem;
  line-height: 1.75;
  margin: 0 0 1.5rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.20);
}

.page-template-page-events-private-php .willows-event-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.page-template-page-events-private-php .willows-event-hero__actions .btn-willows-outline-light,
.page-template-page-events-private-php .willows-event-hero__actions .btn.btn-willows-outline-light {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.55);
  color: #fff;
  box-shadow: none;
  backdrop-filter: blur(6px);
}

.page-template-page-events-private-php .willows-event-hero__actions .btn-willows-outline-light:hover,
.page-template-page-events-private-php .willows-event-hero__actions .btn-willows-outline-light:focus {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.78);
  color: #fff;
}

/* Intro */
.page-template-page-events-private-php .events-intro-section {
  padding: 5.5rem 0 2.5rem;
  background: #fff;
}

.page-template-page-events-private-php .events-intro-header {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Value section */
.page-template-page-events-private-php .events-value-section {
  padding: 5.5rem 0;
  background: linear-gradient(180deg, #fbfaf6 0%, #f7f4ee 100%);
  border-top: 1px solid rgba(73, 95, 63, 0.08);
  border-bottom: 1px solid rgba(73, 95, 63, 0.08);
}

.page-template-page-events-private-php .events-value-header {
  max-width: 900px;
  margin: 0 auto 3rem;
  text-align: center;
}

.page-template-page-events-private-php .events-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.page-template-page-events-private-php .events-value-card {
  height: 100%;
  padding: 1.75rem;
  background: #fff;
  border: 1px solid rgba(73, 95, 63, 0.08);
  border-radius: 1.125rem;
  box-shadow: 0 10px 30px rgba(28, 36, 28, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-template-page-events-private-php .events-value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(28, 36, 28, 0.10);
}

.page-template-page-events-private-php .events-value-card h3,
.page-template-page-events-private-php .events-value-card h4 {
  margin: 0 0 0.65rem;
  color: var(--private-text);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  line-height: 1.05;
  font-weight: 600;
}

.page-template-page-events-private-php .events-value-card p {
  margin: 0;
  font-size: 0.97rem;
  color: #5f665d;
  line-height: 1.75;
}

/* Ideal for / use cases */
.page-template-page-events-private-php .events-types-section {
  padding: 5.5rem 0;
  background: #fff;
}

.page-template-page-events-private-php .events-types-header {
  max-width: 900px;
  margin: 0 auto 3rem;
  text-align: center;
}

.page-template-page-events-private-php .events-type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.page-template-page-events-private-php .events-type-card {
  display: block;
  background: #fff;
  border: 1px solid var(--private-border);
  border-radius: var(--private-radius-lg);
  box-shadow: var(--private-shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.page-template-page-events-private-php .events-type-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--private-shadow-md);
  border-color: rgba(107, 139, 91, 0.22);
}

.page-template-page-events-private-php .events-type-card__body {
  padding: 1.75rem 1.6rem 1.8rem;
}

.page-template-page-events-private-php .events-type-card__kicker {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: var(--willows-green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-template-page-events-private-php .events-type-card h3 {
  margin: 0 0 0.75rem;
  color: var(--private-text);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1.05;
  font-weight: 500;
}

.page-template-page-events-private-php .events-type-card p {
  margin: 0;
  color: var(--private-text-soft);
  line-height: 1.75;
}

/* Final CTA */
.page-template-page-events-private-php .events-final-cta-section {
  padding: 5.5rem 0;
  background: #fff;
}

.page-template-page-events-private-php .events-final-cta-card {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4.25rem 3rem;
  border-radius: 1.75rem;
  background: linear-gradient(135deg, #1d2a1d 0%, #486248 52%, #6b8b5b 100%);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
  color: #fff;
}

.page-template-page-events-private-php .events-final-cta-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  opacity: 0.72;
  margin-bottom: 0.75rem;
}

.page-template-page-events-private-php .events-final-cta-title {
  max-width: 760px;
  margin: 0 auto 1rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.25);
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  line-height: 1.15;
  font-weight: 500;
}

.page-template-page-events-private-php .events-final-cta-text {
  max-width: 700px;
  margin: 0 auto 1.75rem;
  opacity: 0.94;
  line-height: 1.75;
  text-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

.page-template-page-events-private-php .events-final-cta-actions {
  display: flex;
  margin-top: 2rem;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 991.98px) {
  .page-template-page-events-private-php .willows-event-hero {
    min-height: 640px;
  }

  .page-template-page-events-private-php .events-value-grid,
  .page-template-page-events-private-php .events-type-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .page-template-page-events-private-php .willows-event-hero {
    min-height: 560px;
    padding-top: calc(var(--willows-header-height) + 12px);
  }

  .page-template-page-events-private-php .willows-event-hero__content {
    max-width: 100%;
    padding: 3rem 0;
  }

  .page-template-page-events-private-php .willows-event-hero__title {
    font-size: clamp(2.8rem, 12vw, 4.4rem);
    max-width: 8ch;
  }

  .page-template-page-events-private-php .willows-event-hero__text {
    font-size: 1rem;
    max-width: 100%;
    line-height: 1.6;
  }

  .page-template-page-events-private-php .willows-event-hero__actions,
  .page-template-page-events-private-php .events-final-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .page-template-page-events-private-php .willows-event-hero__actions .btn,
  .page-template-page-events-private-php .events-final-cta-actions .btn-willows {
    width: 100%;
    justify-content: center;
  }

  .page-template-page-events-private-php .events-final-cta-card {
    padding: 3rem 1.5rem;
  }

  .page-template-page-events-private-php .events-final-cta-title {
    font-size: 2rem;
  }
}

/* =========================================================
   HOLIDAY EVENTS PAGE
   ========================================================= */

.page-template-page-events-holiday-php {
  --holiday-cream: #f8f4ed;
  --holiday-cream-dark: #efe7da;
  --holiday-text: #241d18;
  --holiday-text-soft: #62584f;
  --holiday-border: rgba(104, 84, 56, 0.10);
  --holiday-radius: 1.25rem;
  --holiday-radius-lg: 1.75rem;
  --holiday-shadow-sm: 0 10px 24px rgba(0,0,0,0.06);
  --holiday-shadow-md: 0 20px 50px rgba(0,0,0,0.10);
}

.page-template-page-events-holiday-php main#primary {
  background: #fff;
  overflow-x: clip;
}

/* Shared inner width */
.page-template-page-events-holiday-php .events-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Shared typography */
.page-template-page-events-holiday-php .events-section-eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--willows-green);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-template-page-events-holiday-php .events-section-title {
  margin: 0 0 1rem;
  color: var(--holiday-text);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.015em;
}

.page-template-page-events-holiday-php .events-section-text {
  max-width: 760px;
  margin: 0 auto;
  color: var(--holiday-text-soft);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Hero */
.page-template-page-events-holiday-php .willows-event-hero {
  position: relative;
  min-height: 760px;
  padding-top: calc(var(--willows-header-height) + 24px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-color: #d8d6cf;
}

.page-template-page-events-holiday-php .willows-event-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(22, 16, 10, 0.66) 0%,
      rgba(22, 16, 10, 0.42) 42%,
      rgba(22, 16, 10, 0.14) 100%
    ),
    linear-gradient(
      180deg,
      rgba(22, 16, 10, 0.05) 0%,
      rgba(22, 16, 10, 0.08) 58%,
      rgba(22, 16, 10, 0.22) 100%
    );
}

.page-template-page-events-holiday-php .willows-event-hero .container {
  position: relative;
  z-index: 2;
}

.page-template-page-events-holiday-php .willows-event-hero__content {
  max-width: 560px;
  padding: 5rem 0;
}

.page-template-page-events-holiday-php .willows-event-hero__eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(14, 10, 8, 0.28);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.95);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.page-template-page-events-holiday-php .willows-event-hero__title {
  margin: 0 0 1rem;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.4rem, 5.4vw, 5.7rem);
  line-height: 0.92;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-shadow: 0 8px 26px rgba(0,0,0,0.18);
}

.page-template-page-events-holiday-php .willows-event-hero__text {
  max-width: 460px;
  color: rgba(255,255,255,0.95);
  font-size: 1.08rem;
  line-height: 1.75;
  margin: 0 0 1.5rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.20);
}

.page-template-page-events-holiday-php .willows-event-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.page-template-page-events-holiday-php .willows-event-hero__actions .btn-willows-outline-light,
.page-template-page-events-holiday-php .willows-event-hero__actions .btn.btn-willows-outline-light {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.55);
  color: #fff;
  box-shadow: none;
  backdrop-filter: blur(6px);
}

.page-template-page-events-holiday-php .willows-event-hero__actions .btn-willows-outline-light:hover,
.page-template-page-events-holiday-php .willows-event-hero__actions .btn-willows-outline-light:focus {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.78);
  color: #fff;
}

/* Intro */
.page-template-page-events-holiday-php .events-intro-section {
  padding: 5.5rem 0 2.5rem;
  background: #fff;
}

.page-template-page-events-holiday-php .events-intro-header {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Value section */
.page-template-page-events-holiday-php .events-value-section {
  padding: 5.5rem 0;
  background: linear-gradient(180deg, #fcfaf7 0%, #f7f2ea 100%);
  border-top: 1px solid rgba(104, 84, 56, 0.08);
  border-bottom: 1px solid rgba(104, 84, 56, 0.08);
}

.page-template-page-events-holiday-php .events-value-header {
  max-width: 900px;
  margin: 0 auto 3rem;
  text-align: center;
}

.page-template-page-events-holiday-php .events-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.page-template-page-events-holiday-php .events-value-card {
  height: 100%;
  padding: 1.75rem;
  background: #fff;
  border: 1px solid rgba(104, 84, 56, 0.08);
  border-radius: 1.125rem;
  box-shadow: 0 10px 30px rgba(28, 36, 28, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-template-page-events-holiday-php .events-value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(28, 36, 28, 0.10);
}

.page-template-page-events-holiday-php .events-value-card h3,
.page-template-page-events-holiday-php .events-value-card h4 {
  margin: 0 0 0.65rem;
  color: var(--holiday-text);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  line-height: 1.05;
  font-weight: 600;
}

.page-template-page-events-holiday-php .events-value-card p {
  margin: 0;
  font-size: 0.97rem;
  color: var(--holiday-text-soft);
  line-height: 1.75;
}

/* Ideal for / use cases */
.page-template-page-events-holiday-php .events-types-section {
  padding: 5.5rem 0;
  background: #fff;
}

.page-template-page-events-holiday-php .events-types-header {
  max-width: 900px;
  margin: 0 auto 3rem;
  text-align: center;
}

.page-template-page-events-holiday-php .events-type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.page-template-page-events-holiday-php .events-type-card {
  display: block;
  background: #fff;
  border: 1px solid var(--holiday-border);
  border-radius: var(--holiday-radius-lg);
  box-shadow: var(--holiday-shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.page-template-page-events-holiday-php .events-type-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--holiday-shadow-md);
  border-color: rgba(107, 139, 91, 0.22);
}

.page-template-page-events-holiday-php .events-type-card__body {
  padding: 1.75rem 1.6rem 1.8rem;
}

.page-template-page-events-holiday-php .events-type-card__kicker {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: var(--willows-green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-template-page-events-holiday-php .events-type-card h3 {
  margin: 0 0 0.75rem;
  color: var(--holiday-text);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1.05;
  font-weight: 500;
}

.page-template-page-events-holiday-php .events-type-card p {
  margin: 0;
  color: var(--holiday-text-soft);
  line-height: 1.75;
}

/* Final CTA */
.page-template-page-events-holiday-php .events-final-cta-section {
  padding: 5.5rem 0;
  background: #fff;
}

.page-template-page-events-holiday-php .events-final-cta-card {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4.25rem 3rem;
  border-radius: 1.75rem;
  background: linear-gradient(135deg, #2b221b 0%, #6b8b5b 52%, #a78756 100%);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
  color: #fff;
}

.page-template-page-events-holiday-php .events-final-cta-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  opacity: 0.76;
  margin-bottom: 0.75rem;
}

.page-template-page-events-holiday-php .events-final-cta-title {
  max-width: 760px;
  margin: 0 auto 1rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.25);
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  line-height: 1.15;
  font-weight: 500;
}

.page-template-page-events-holiday-php .events-final-cta-text {
  max-width: 700px;
  margin: 0 auto 1.75rem;
  opacity: 0.94;
  line-height: 1.75;
  text-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

.page-template-page-events-holiday-php .events-final-cta-actions {
  display: flex;
  margin-top: 2rem;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 991.98px) {
  .page-template-page-events-holiday-php .willows-event-hero {
    min-height: 640px;
  }

  .page-template-page-events-holiday-php .events-value-grid,
  .page-template-page-events-holiday-php .events-type-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .page-template-page-events-holiday-php .willows-event-hero {
    min-height: 560px;
    padding-top: calc(var(--willows-header-height) + 12px);
  }

  .page-template-page-events-holiday-php .willows-event-hero__content {
    max-width: 100%;
    padding: 3rem 0;
  }

  .page-template-page-events-holiday-php .willows-event-hero__title {
    font-size: clamp(2.8rem, 12vw, 4.4rem);
    max-width: 8ch;
  }

  .page-template-page-events-holiday-php .willows-event-hero__text {
    font-size: 1rem;
    max-width: 100%;
    line-height: 1.6;
  }

  .page-template-page-events-holiday-php .willows-event-hero__actions,
  .page-template-page-events-holiday-php .events-final-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .page-template-page-events-holiday-php .willows-event-hero__actions .btn,
  .page-template-page-events-holiday-php .events-final-cta-actions .btn-willows {
    width: 100%;
    justify-content: center;
  }

  .page-template-page-events-holiday-php .events-final-cta-card {
    padding: 3rem 1.5rem;
  }

  .page-template-page-events-holiday-php .events-final-cta-title {
    font-size: 2rem;
  }
}


