/* ═══════════════════════════════════════════════════════════
   Events By Beau — Location Landing Page Styles
   Matches the eventsbybeau.co.uk brand system:
   - Cormorant Garamond headings
   - Dark charcoal + gold accent palette
   - Premium, clean, generous whitespace
   ═══════════════════════════════════════════════════════════ */

/* ── Fonts ─────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');


/* ── Base ─────────────────────────────────────────────── */
.bwl-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    color: #404040;
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

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

.bwl-page img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ── Section base ──────────────────────────────────────── */
.bwl-section {
    padding: 80px 0;
    max-width: 1140px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.bwl-section__title {
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    font-weight: 600;
    color: #1D2327;
    letter-spacing: 0.02em;
    line-height: 1.2;
    margin: 0 0 24px 0;
    font-size: 32px;
}

/* ── Buttons ───────────────────────────────────────────── */
.bwl-btn {
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 32px;
    border: 2px solid #1D2327;
    transition: all 0.3s ease;
    cursor: pointer;
}

.bwl-btn--primary {
    background: #1D2327;
    color: #FFFFFF;
}

.bwl-btn--primary:hover {
    background: #2C3338;
    border-color: #2C3338;
    color: #FFFFFF;
}

.bwl-btn--secondary {
    background: transparent;
    color: #1D2327;
}

.bwl-btn--secondary:hover {
    background: #1D2327;
    color: #FFFFFF;
}

.bwl-btn--card {
    background: #1D2327;
    color: #FFFFFF;
    font-size: 12px;
    padding: 12px 24px;
}

.bwl-btn--card:hover {
    background: #BCA17A;
    border-color: #BCA17A;
    color: #FFFFFF;
}

.bwl-btn--large {
    padding: 16px 40px;
    font-size: 14px;
}

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.bwl-hero {
    position: relative;
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.bwl-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.35) 50%,
        rgba(0, 0, 0, 0.1) 100%
    );
    z-index: 1;
}

.bwl-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.bwl-hero__title {
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
    line-height: 1.1;
    margin: 0 0 24px 0;
    max-width: 760px;
    text-transform: uppercase;
}

.bwl-hero__intro {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    max-width: 620px;
    margin: 0 0 20px 0;
}

.bwl-hero__intro p {
    margin: 0 0 12px 0;
}

.bwl-hero__urgency {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #BCA17A;
    margin: 0 0 8px 0;
}

.bwl-hero__offer {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 28px 0;
}

.bwl-btn--hero {
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 28px;
    background: #fff;
    color: #1D2327;
    border: 2px solid #fff;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.bwl-btn--hero:hover {
    background: transparent;
    color: #fff;
}

/* ═══════════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════════ */
.bwl-pricing {
  padding: 100px 40px;
  background: #fff;
}

.bwl-pricing__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.bwl-pricing__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  margin: 0 0 12px 0;
  letter-spacing: 0.02em;
}

.bwl-pricing__subtitle {
  font-size: 1.05rem;
  color: #666;
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
}

.bwl-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.bwl-pricing-card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.bwl-pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.bwl-pricing-card--featured {
  background: #000;
  color: #fff;
  border-color: #000;
  transform: scale(1.03);
  z-index: 2;
}

.bwl-pricing-card--featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.bwl-pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #c9a87c;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
}

.bwl-pricing-card__header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.bwl-pricing-card--featured .bwl-pricing-card__header {
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.bwl-pricing-card__price {
  display: block;
  font-size: 0.9rem;
  color: #888;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.bwl-pricing-card--featured .bwl-pricing-card__price {
  color: rgba(255, 255, 255, 0.7);
}

.bwl-pricing-card__name {
  font-size: 2rem;
  font-weight: 400;
  margin: 0 0 8px 0;
  font-family: Georgia, 'Times New Roman', serif;
}

.bwl-pricing-card__guests {
  display: inline-block;
  font-size: 0.85rem;
  color: #666;
  background: #f5f5f5;
  padding: 6px 14px;
  border-radius: 20px;
}

.bwl-pricing-card--featured .bwl-pricing-card__guests {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

.bwl-pricing-card__features {
  list-style: none !important;
  margin: 0 0 32px 0 !important;
  padding: 0 !important;
  text-align: left;
}

.bwl-pricing-card__features li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 0.9rem;
  color: #444;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.bwl-pricing-card--featured .bwl-pricing-card__features li {
  color: rgba(255, 255, 255, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.bwl-pricing-card__features li:last-child {
  border-bottom: none;
}

.bwl-pricing-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.bwl-pricing-card--featured .bwl-pricing-card__features li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a87c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
}

.bwl-pricing-card__features li strong {
  font-weight: 600;
}

.bwl-pricing-card__btn {
  display: block;
  width: 100%;
  padding: 16px 24px;
  background: #000;
  color: #fff !important;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  border-radius: 6px;
  transition: background 150ms ease, transform 150ms ease;
}

.bwl-pricing-card__btn:hover {
  background: #333;
  transform: translateY(-1px);
}

.bwl-pricing-card--featured .bwl-pricing-card__btn {
  background: #fff;
  color: #000 !important;
}

.bwl-pricing-card--featured .bwl-pricing-card__btn:hover {
  background: #f0f0f0;
}

.bwl-pricing-card__note {
  margin: 20px 0 0 0;
  font-size: 0.75rem;
  color: #999;
  line-height: 1.5;
  font-style: italic;
}

.bwl-pricing-card--featured .bwl-pricing-card__note {
  color: rgba(255, 255, 255, 0.5);
}

.bwl-pricing__addons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: 900px;
  margin: 60px auto 0;
  padding: 32px 40px;
  background: #fafafa;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.bwl-pricing__addons-content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex: 1;
}

.bwl-pricing__addons-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bwl-pricing__addons-icon svg {
  width: 24px;
  height: 24px;
  color: #c9a87c;
}

.bwl-pricing__addons-text {
  flex: 1;
}

.bwl-pricing__addons-text h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #000;
  margin: 0 0 8px 0;
}

.bwl-pricing__addons-text p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.bwl-pricing__addons-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #000;
  color: #fff !important;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 150ms ease, transform 150ms ease;
}

.bwl-pricing__addons-btn:hover {
  background: #333;
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════════════
   COLLECTIONS
   ═══════════════════════════════════════════════════════════ */
.bwl-collections {
  padding: 80px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.bwl-collections__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}

.bwl-collections__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  margin: 0;
  letter-spacing: 0.02em;
}

.bwl-collections__viewall {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #000 !important;
  text-decoration: none;
  padding: 12px 24px;
  border: 1.5px solid #000;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 150ms ease, color 150ms ease;
}

.bwl-collections__viewall:hover {
  background: #000;
  color: #fff !important;
}

.bwl-collections__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.bwl-collection-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.bwl-collection-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.bwl-collection-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.bwl-collection-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.bwl-collection-card:hover .bwl-collection-card__image img {
  transform: scale(1.05);
}

.bwl-collection-card__content {
  padding: 24px 20px 28px;
}

.bwl-collection-card__tagline {
  display: block;
  font-size: 0.75rem;
  color: #888;
  font-style: italic;
  margin-bottom: 8px;
}

.bwl-collection-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #000;
  margin: 0 0 16px 0;
  letter-spacing: 0.03em;
}

.bwl-collection-card__divider {
  width: 40px;
  height: 2px;
  background: #e0e0e0;
  margin-bottom: 16px;
}

.bwl-collection-card__desc {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  margin: 0 0 20px 0;
}

.bwl-collection-card__palette {
  display: flex;
  gap: 0;
  border-radius: 4px;
  overflow: hidden;
}

.bwl-collection-card__palette span {
  flex: 1;
  height: 24px;
}

/* ═══════════════════════════════════════════════════════════
   FLORAL CHOICE
   ═══════════════════════════════════════════════════════════ */
.bwl-floral-choice {
  padding: 0 40px 88px;
}

.bwl-floral-choice__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 44px 48px 48px;
  border-radius: 28px;
  background: linear-gradient(135deg, #fbf7f1 0%, #f6efe6 52%, #f1e7dc 100%);
  border: 1px solid rgba(169, 136, 96, 0.16);
}

.bwl-floral-choice__intro {
  max-width: 720px;
  margin-bottom: 30px;
}

.bwl-floral-choice__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8a7458;
}

.bwl-floral-choice__title {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  line-height: 1.15;
  color: #111;
  font-family: Georgia, 'Times New Roman', serif;
}

.bwl-floral-choice__text {
  margin: 0;
  max-width: 680px;
  font-size: 1rem;
  line-height: 1.7;
  color: #5a5249;
}

.bwl-floral-choice__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.bwl-floral-choice__card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px 28px 30px;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  border: 1px solid rgba(17, 17, 17, 0.06);
  backdrop-filter: blur(8px);
}

.bwl-floral-choice__card--accent {
  background: rgba(255, 255, 255, 0.92);
}

.bwl-floral-choice__label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: #fff;
  color: #8a7458;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bwl-floral-choice__heading {
  margin: 0 0 18px;
  font-size: 1.15rem;
  line-height: 1.45;
  color: #111;
}

.bwl-floral-choice__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bwl-floral-choice__list li {
  position: relative;
  padding-left: 18px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #534c44;
}

.bwl-floral-choice__list li + li {
  margin-top: 12px;
}

.bwl-floral-choice__list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c9a87c;
}

.bwl-floral-choice__card-footer {
  margin-top: auto;
  padding-top: 22px;
}

.bwl-floral-choice__card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  background: #111;
  color: #fff !important;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}

.bwl-floral-choice__card-link:hover {
  background: #2d2d2d;
  transform: translateY(-1px);
}

.bwl-floral-choice__footer {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.bwl-floral-choice__note {
  margin: 0;
  max-width: 760px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4f473e;
}

/* ═══════════════════════════════════════════════════════════
   QUOTE FORM
   ═══════════════════════════════════════════════════════════ */
.bwl-quote {
  padding: 100px 40px;
  background: #fafafa;
}

.bwl-quote__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.bwl-quote__visual {
  position: relative;
}

.bwl-quote__image-wrapper {
  position: relative;
}

.bwl-quote__image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.bwl-quote__image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.bwl-quote__card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: #000;
  color: #fff;
  padding: 24px 32px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.bwl-quote__card-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

.bwl-quote__card-text {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.bwl-quote__form-wrapper {
  max-width: 500px;
}

.bwl-quote__header {
  margin-bottom: 32px;
}

.bwl-quote__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 12px;
}

.bwl-quote__title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 400;
  color: #000;
  margin: 0 0 16px 0;
  font-family: Georgia, 'Times New Roman', serif;
  letter-spacing: 0.02em;
}

.bwl-quote__subtitle {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.bwl-quote__form {
  margin-top: 8px;
}

.bwl-quote__form .ff-el-input--label label,
.bwl-quote__form .fluentform .ff-el-input--label label {
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  color: #333 !important;
  margin-bottom: 8px !important;
}

.bwl-quote__form .ff-el-input--label label .ff-el-required,
.bwl-quote__form .fluentform .ff-required-asterisk {
  color: #c9a87c !important;
}

.bwl-quote__form input[type="text"],
.bwl-quote__form input[type="email"],
.bwl-quote__form input[type="tel"],
.bwl-quote__form input[type="date"],
.bwl-quote__form input[type="number"],
.bwl-quote__form textarea,
.bwl-quote__form select,
.bwl-quote__form .ff-el-form-control {
  width: 100% !important;
  padding: 14px 16px !important;
  font-size: 0.95rem !important;
  border: 1px solid #e0e0e0 !important;
  border-radius: 8px !important;
  background: #fff !important;
  color: #333 !important;
  transition: border-color 200ms ease, box-shadow 200ms ease !important;
}

.bwl-quote__form input:focus,
.bwl-quote__form textarea:focus,
.bwl-quote__form select:focus,
.bwl-quote__form .ff-el-form-control:focus {
  outline: none !important;
  border-color: #000 !important;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06) !important;
}

.bwl-quote__form input::placeholder,
.bwl-quote__form textarea::placeholder {
  color: #aaa !important;
}

.bwl-quote__form .ff-el-group,
.bwl-quote__form .fluentform .ff-el-group {
  margin-bottom: 20px !important;
}

.bwl-quote__form .ff_phone_input,
.bwl-quote__form .iti {
  width: 100% !important;
}

.bwl-quote__form .iti__selected-flag {
  padding-left: 12px !important;
}

.bwl-quote__form button[type="submit"],
.bwl-quote__form .ff-btn-submit,
.bwl-quote__form .fluentform .ff-btn-submit {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  min-width: 180px !important;
  padding: 16px 32px !important;
  background: #000 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: background 150ms ease, transform 150ms ease !important;
}

.bwl-quote__form button[type="submit"]:hover,
.bwl-quote__form .ff-btn-submit:hover {
  background: #333 !important;
  transform: translateY(-1px) !important;
}

.bwl-quote__form .ff-el-recaptcha,
.bwl-quote__form .g-recaptcha {
  margin-top: 8px !important;
  margin-bottom: 24px !important;
}

.bwl-quote__form .ff-el-is-error .ff-el-form-control {
  border-color: #e53935 !important;
}

.bwl-quote__form .error {
  color: #e53935 !important;
  font-size: 0.8rem !important;
  margin-top: 6px !important;
}

.bwl-quote__form .ff-message-success {
  background: #e8f5e9 !important;
  color: #2e7d32 !important;
  padding: 16px 20px !important;
  border-radius: 8px !important;
  font-size: 0.95rem !important;
}

.bwl-quote__form .iti input,
.bwl-quote__form .iti--allow-dropdown input,
.bwl-quote__form .iti--allow-dropdown input[type="tel"],
.bwl-quote__form input[type="tel"] {
  padding-left: 52px !important;
}

.bwl-quote__form .iti__selected-flag {
  padding-left: 12px !important;
  padding-right: 8px !important;
}

/* ═══════════════════════════════════════════════════════════
   CALENDAR
   ═══════════════════════════════════════════════════════════ */
.bwl-calendar {
  padding: 100px 40px;
  background: #fff;
}

.bwl-calendar__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.bwl-calendar__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 12px;
}

.bwl-calendar__title {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 400;
  color: #000;
  margin: 0 0 12px 0;
  font-family: Georgia, 'Times New Roman', serif;
}

.bwl-calendar__subtitle {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin: 0 0 24px 0;
}

.bwl-calendar__year-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.bwl-calendar__year-tab {
  background: #fff;
  border: 2px solid #e0e0e0;
  color: #555;
  padding: 12px 32px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 150ms ease;
}

.bwl-calendar__year-tab:hover {
  border-color: #000;
  color: #000;
}

.bwl-calendar__year-tab.is-active {
  background: #000;
  border-color: #000;
  color: #fff;
}

.bwl-calendar__legend {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.bwl-calendar__legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #555;
}

.bwl-calendar__legend-dot {
  width: 14px;
  height: 14px;
  border-radius: 4px;
}

.bwl-calendar__legend-dot--available {
  background: #fff;
  border: 2px solid #e0e0e0;
}

.bwl-calendar__legend-dot--booked {
  background: #1a1a1a;
}

.bwl-calendar__legend-dot--limited {
  background: #c9a87c;
}

.bwl-calendar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.bwl-month {
  background: #fafafa;
  border-radius: 16px;
  padding: 24px;
}

.bwl-month__header {
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  text-align: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e5e5;
}

.bwl-month__days-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}

.bwl-month__days-header span {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
}

.bwl-month__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.bwl-month__day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #333;
  background: #fff;
  border-radius: 6px;
  cursor: default;
  transition: transform 150ms ease;
}

.bwl-month__day:not(.bwl-month__day--empty):not(.bwl-month__day--booked):hover {
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.bwl-month__day--empty {
  background: transparent;
}

.bwl-month__day--booked {
  background: #1a1a1a;
  color: #666;
  position: relative;
}

.bwl-month__day--booked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 15%;
  right: 15%;
  height: 1px;
  background: #666;
  transform: rotate(-45deg);
}

.bwl-month__day--limited {
  background: #c9a87c;
  color: #fff;
}

.bwl-calendar__footer {
  text-align: center;
  max-width: 600px;
  margin: 60px auto 0;
  padding-top: 40px;
  border-top: 1px solid #eee;
}

.bwl-calendar__footer p {
  font-size: 1.05rem;
  color: #555;
  margin: 0;
}

.bwl-calendar__footer a {
  color: #000;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 150ms ease;
}

.bwl-calendar__footer a:hover {
  color: #c9a87c;
}

/* ═══════════════════════════════════════════════════════════
   VENUES
   ═══════════════════════════════════════════════════════════ */
.bwl-venues__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 28px;
}

.bwl-venues {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.bwl-venues__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 48px;
}

.bwl-venues__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin: 0;
    letter-spacing: 0.02em;
}

.bwl-venues__viewall {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #000 !important;
    text-decoration: none;
    padding: 12px 24px;
    border: 1.5px solid #000;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background 150ms ease, color 150ms ease;
}

.bwl-venues__viewall:hover {
    background: #000;
    color: #fff !important;
}

.bwl-venue-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 250ms ease, box-shadow 250ms ease;
}

.bwl-venue-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.bwl-venue-card__image {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.bwl-venue-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease;
}

.bwl-venue-card:hover .bwl-venue-card__image img {
    transform: scale(1.05);
}

.bwl-venue-card__content {
    padding: 20px 16px 24px;
}

.bwl-venue-card__tagline {
    display: block;
    font-size: 0.75rem;
    color: #888;
    font-style: italic;
    margin-bottom: 6px;
}

.bwl-venue-card__name {
    font-size: 1rem;
    font-weight: 700;
    color: #000;
    margin: 0 0 12px 0;
    letter-spacing: 0.03em;
}

.bwl-venue-card__divider {
    width: 32px;
    height: 2px;
    background: #e0e0e0;
    margin-bottom: 12px;
}

.bwl-venue-card__desc {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.bwl-venue-card__desc p {
    margin: 0;
}

@media screen and (max-width: 1400px) {
    .bwl-venues__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media screen and (max-width: 1200px) {
    .bwl-venues {
        padding: 60px 24px;
    }

    .bwl-venues__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
    }

    .bwl-venue-card__content {
        padding: 18px 14px 22px;
    }
}

@media screen and (max-width: 768px) {
    .bwl-venues {
        padding: 48px 16px;
    }

    .bwl-venues__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 32px;
    }

    .bwl-venues__title {
        font-size: 1.25rem;
    }

    .bwl-venues__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .bwl-venue-card__image {
        aspect-ratio: 4 / 5;
    }

    .bwl-venue-card__content {
        padding: 14px 12px 18px;
    }

    .bwl-venue-card__tagline {
        font-size: 0.7rem;
    }

    .bwl-venue-card__name {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .bwl-venue-card__divider {
        margin-bottom: 8px;
    }

    .bwl-venue-card__desc {
        font-size: 0.8rem;
        line-height: 1.5;
    }
}

@media screen and (max-width: 480px) {
    .bwl-venues__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .bwl-venue-card__image {
        aspect-ratio: 3 / 4;
    }

    .bwl-venue-card__content {
        padding: 16px 14px 20px;
    }

    .bwl-venue-card__name {
        font-size: 1rem;
    }

    .bwl-venue-card__desc {
        font-size: 0.85rem;
    }
}

/* ═══════════════════════════════════════════════════════════
   MEET THE FOUNDER
   ═══════════════════════════════════════════════════════════ */
.bwl-founder {
    padding: 100px 40px;
    background: #fafafa;
}

.bwl-founder__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* ── Photo collage (left) ── */
.bwl-founder__photos {
    position: relative;
    height: 600px;
}

.bwl-founder__photo--main {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 70%;
    z-index: 2;
}

.bwl-founder__photo--secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 45%;
    z-index: 3;
}

.bwl-founder__photo--tertiary {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 30%;
    height: 25%;
    z-index: 1;
}

.bwl-founder__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* ── Content (right) ── */
.bwl-founder__content {
    max-width: 520px;
}

.bwl-founder__label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 16px;
}

.bwl-founder__title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 400;
    color: #000;
    line-height: 1.3;
    margin: 0 0 32px 0;
    font-family: Georgia, 'Times New Roman', serif;
}

.bwl-founder__text {
    margin-bottom: 32px;
}

.bwl-founder__text p {
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
    margin: 0 0 16px 0;
}

.bwl-founder__text p:last-child {
    margin-bottom: 0;
}

.bwl-founder__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #000 !important;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding-bottom: 2px;
    border-bottom: 1.5px solid #000;
    transition: gap 150ms ease;
}

.bwl-founder__link:hover {
    gap: 12px;
}

.bwl-founder__link svg {
    transition: transform 150ms ease;
}

.bwl-founder__link:hover svg {
    transform: translateX(3px);
}

.bwl-founder__signature {
    margin-top: 40px;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.bwl-founder__name {
    font-family: 'Brush Script MT', 'Segoe Script', cursive;
    font-size: 2.5rem;
    color: #000;
    line-height: 1;
}

.bwl-founder__xo {
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-size: 1.25rem;
    color: #666;
}

/* ── Founder responsive — tablet ── */
@media screen and (max-width: 1024px) {
    .bwl-founder {
        padding: 80px 24px;
    }
    .bwl-founder__inner {
        gap: 60px;
    }
    .bwl-founder__photos {
        height: 500px;
    }
}

/* ═══════════════════════════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════════════════════════ */
.bwl-reviews {
  padding: 100px 40px;
  background: #fff;
}

.bwl-reviews__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.bwl-reviews__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 12px;
}

.bwl-reviews__title {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 400;
  color: #000;
  margin: 0 0 20px 0;
  font-family: Georgia, 'Times New Roman', serif;
}

.bwl-reviews__rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.bwl-reviews__stars {
  display: flex;
  gap: 4px;
}

.bwl-reviews__stars svg {
  width: 24px;
  height: 24px;
  color: #c9a87c;
}

.bwl-reviews__score {
  font-size: 0.9rem;
  color: #666;
}

.bwl-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.bwl-review-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.bwl-review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.bwl-review-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.bwl-review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.bwl-review-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bwl-review-card__avatar--initial {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #c9a87c 0%, #a68a5b 100%);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
}

.bwl-review-card__avatar--initial::before {
  content: attr(data-initial);
}

.bwl-review-card__info {
  flex: 1;
  min-width: 0;
}

.bwl-review-card__name {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 2px;
}

.bwl-review-card__date {
  display: block;
  font-size: 0.8rem;
  color: #888;
}

.bwl-review-card__verified {
  width: 18px;
  height: 18px;
  background: #1d9bf0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bwl-review-card__verified svg {
  width: 10px;
  height: 10px;
  color: #fff;
}

.bwl-review-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}

.bwl-review-card__stars svg {
  width: 18px;
  height: 18px;
  color: #c9a87c;
}

.bwl-review-card__text {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.7;
  margin: 0 0 16px 0;
}

.bwl-review-card__venue {
  display: inline-block;
  font-size: 0.75rem;
  color: #888;
  background: #f5f5f5;
  padding: 6px 12px;
  border-radius: 20px;
  font-style: italic;
}

.bwl-reviews__footer {
  text-align: center;
  margin-top: 48px;
}

.bwl-reviews__google {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #333 !important;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  font-size: 0.9rem;
  font-weight: 500;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.bwl-reviews__google:hover {
  border-color: #ccc;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* ═══════════════════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════════════════ */
.bwl-gallery {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 40px 100px;
}

.bwl-gallery__header {
  max-width: 620px;
  margin: 0 0 34px;
}

.bwl-gallery__label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888;
}

.bwl-gallery__title {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 3.3vw, 2.2rem);
  line-height: 1.15;
  color: #000;
  font-family: Georgia, 'Times New Roman', serif;
}

.bwl-gallery__text {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #666;
}

.bwl-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 180px;
  gap: 16px;
}

.bwl-gallery-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 22px;
  background: #f4f0ea;
  text-decoration: none;
  color: inherit;
}

.bwl-gallery-card--featured {
  grid-column: span 2;
  grid-row: span 2;
}

.bwl-gallery-card__image {
  position: relative;
  width: 100%;
  height: 100%;
}

.bwl-gallery-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.02) 22%, rgba(10, 10, 10, 0.6) 100%);
  opacity: 0.9;
  transition: opacity 220ms ease;
}

.bwl-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

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

.bwl-gallery-card:hover .bwl-gallery-card__image::after {
  opacity: 1;
}

.bwl-gallery-card__caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  font-size: 0.88rem;
  line-height: 1.45;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.28);
}

.bwl-gallery__footer {
  margin-top: 26px;
  text-align: right;
}

.bwl-gallery__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid #000;
  background: #fff;
  color: #000 !important;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.bwl-gallery__button:hover {
  background: #000;
  color: #fff !important;
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════════════
   MAIN CONTENT
   ═══════════════════════════════════════════════════════════ */
.bwl-main-content .bwl-section__title {
    margin-bottom: 20px;
}

.bwl-main-content__body,
.bwl-main-content__below {
    font-size: 16px;
    line-height: 1.8;
    color: #404040;
    max-width: 1040px;
}

.bwl-main-content__body p,
.bwl-main-content__below p {
    margin: 0 0 16px 0;
}

.bwl-main-content__body h3,
.bwl-main-content__below h3 {
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    font-size: 24px;
    font-weight: 600;
    color: #1D2327;
    margin: 32px 0 12px 0;
}

.bwl-main-content__below {
    margin-top: 32px;
}

/* ═══════════════════════════════════════════════════════════
   HOW TO FIND US
   ═══════════════════════════════════════════════════════════ */
.bwl-find-us {
    background: #F5F3EF;
    max-width: 100%;
    padding: 80px 20px;
}

.bwl-find-us .bwl-section__title {
    text-align: center;
}

.bwl-find-us__content {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════
   FAQs
   ═══════════════════════════════════════════════════════════ */
.bwl-faqs .bwl-section__title {
    margin-bottom: 32px;
}

.bwl-faqs__item {
    border-bottom: 1px solid #E5E0D8;
    padding: 0;
}

.bwl-faqs__item:first-of-type {
    border-top: 1px solid #E5E0D8;
}

.bwl-faqs__question {
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    font-size: 20px;
    font-weight: 600;
    color: #1D2327;
    padding: 20px 40px 20px 0;
    cursor: pointer;
    list-style: none;
    position: relative;
    margin: 0;
}

.bwl-faqs__question::-webkit-details-marker {
    display: none;
}

.bwl-faqs__question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 300;
    color: #BCA17A;
    transition: transform 0.3s;
}

details[open] .bwl-faqs__question::after {
    content: '\2013';
}

.bwl-faqs__answer {
    padding: 0 0 24px 0;
    font-size: 15px;
    line-height: 1.8;
    color: #777777;
}

.bwl-faqs__answer p {
    margin: 0 0 12px 0;
}

/* ═══════════════════════════════════════════════════════════
   INTERNAL LINKS
   ═══════════════════════════════════════════════════════════ */
.bwl-links {
    background: #1D2327;
    max-width: 100%;
    padding: 60px 20px;
    text-align: center;
}

.bwl-links .bwl-section__title {
    color: #FFFFFF;
    font-size: 28px;
    margin-bottom: 16px;
}

.bwl-links__intro {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto 24px;
}

.bwl-links__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
}

.bwl-links__item a {
    color: #BCA17A;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.04em;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.bwl-links__item a:hover {
    border-bottom-color: #BCA17A;
}

/* ═══════════════════════════════════════════════════════════
   CALENDAR POPUP
   ═══════════════════════════════════════════════════════════ */
.bwl-calendar-popup {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 250ms ease, visibility 250ms ease;
}

.bwl-calendar-popup.is-open {
  opacity: 1;
  visibility: visible;
}

.bwl-calendar-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.bwl-calendar-popup__content {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  transition: transform 300ms ease;
}

.bwl-calendar-popup.is-open .bwl-calendar-popup__content {
  transform: translateY(0);
}

.bwl-calendar-popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: #999;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 150ms ease;
}

.bwl-calendar-popup__close:hover {
  color: #000;
}

.bwl-calendar-popup__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
}

.bwl-calendar-popup__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;
  margin: 0 0 8px 0;
}

.bwl-calendar-popup__date {
  font-size: 1.1rem;
  font-weight: 500;
  color: #c9a87c;
  margin: 0 0 12px 0;
  font-family: Georgia, 'Times New Roman', serif;
}

.bwl-calendar-popup__text {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin: 0 0 28px 0;
}

.bwl-calendar-popup__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 18px 32px;
  background: #000;
  color: #fff !important;
  text-decoration: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  transition: background 150ms ease, transform 150ms ease;
}

.bwl-calendar-popup__btn:hover {
  background: #333;
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Kept sections
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .bwl-section {
        padding: 50px 0;
        padding-left: 16px;
        padding-right: 16px;
    }

    .bwl-hero {
        min-height: 75vh;
    }

    .bwl-hero__content {
        padding: 60px 24px;
    }

    .bwl-hero__title {
        font-size: 32px;
    }

    .bwl-section__title {
        font-size: 26px;
    }

    .bwl-founder {
        padding: 60px 20px;
    }

    .bwl-founder__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bwl-founder__content {
        order: 1;
        max-width: 100%;
    }

    .bwl-founder__title {
        font-size: 1.5rem;
    }

    .bwl-founder__signature {
        margin-top: 32px;
    }

    .bwl-founder__name {
        font-size: 2rem;
    }

    .bwl-founder__photos {
        order: 2;
        position: relative;
        height: auto;
        display: grid;
        grid-template-columns: 2fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 8px;
        max-width: 100%;
        overflow: hidden;
    }

    .bwl-founder__photo--main,
    .bwl-founder__photo--secondary,
    .bwl-founder__photo--tertiary {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: 100% !important;
        height: auto !important;
    }

    .bwl-founder__photo--main {
        grid-column: 1;
        grid-row: 1 / 3;
        aspect-ratio: 3 / 4;
    }

    .bwl-founder__photo--secondary {
        grid-column: 2;
        grid-row: 1;
        aspect-ratio: 1;
    }

    .bwl-founder__photo--tertiary {
        grid-column: 2;
        grid-row: 2;
        aspect-ratio: 1;
    }

    .bwl-founder__photo img {
        border-radius: 6px;
    }

    .bwl-founder__accent {
        display: none !important;
    }

    .bwl-find-us,
    .bwl-links {
        padding: 50px 16px;
    }

    .bwl-links__list {
        flex-direction: column;
        gap: 8px;
    }

    .bwl-btn--large {
        padding: 14px 28px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .bwl-hero {
        min-height: 70vh;
    }

    .bwl-hero__content {
        padding: 40px 20px;
    }

    .bwl-hero__title {
        font-size: 28px;
    }

    .bwl-section__title {
        font-size: 22px;
    }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Pricing
   ═══════════════════════════════════════════════════════════ */
@media screen and (max-width: 1024px) {
  .bwl-pricing {
    padding: 80px 24px;
  }
  .bwl-pricing__grid {
    gap: 20px;
  }
  .bwl-pricing-card {
    padding: 32px 24px;
  }
  .bwl-pricing-card--featured {
    transform: scale(1);
  }
  .bwl-pricing-card--featured:hover {
    transform: translateY(-4px);
  }
  .bwl-pricing__addons {
    padding: 28px 32px;
    gap: 24px;
  }
  .bwl-pricing__addons-icon {
    width: 44px;
    height: 44px;
  }
  .bwl-pricing__addons-icon svg {
    width: 22px;
    height: 22px;
  }
}

@media screen and (max-width: 768px) {
  .bwl-pricing {
    padding: 60px 16px;
  }
  .bwl-pricing__header {
    margin-bottom: 40px;
  }
  .bwl-pricing__title {
    font-size: 1.25rem;
  }
  .bwl-pricing__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 400px;
  }
  .bwl-pricing-card {
    padding: 32px 24px;
  }
  .bwl-pricing-card--featured {
    order: -1;
  }
  .bwl-pricing-card__name {
    font-size: 1.75rem;
  }
  .bwl-pricing__addons {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 24px;
    margin-top: 40px;
    gap: 20px;
  }
  .bwl-pricing__addons-content {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .bwl-pricing__addons-icon {
    width: 52px;
    height: 52px;
  }
  .bwl-pricing__addons-text h4 {
    font-size: 1rem;
  }
  .bwl-pricing__addons-text p {
    font-size: 0.85rem;
  }
  .bwl-pricing__addons-btn {
    width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Collections
   ═══════════════════════════════════════════════════════════ */
@media screen and (max-width: 1024px) {
  .bwl-collections {
    padding: 60px 24px;
  }
  .bwl-collections__grid {
    gap: 24px;
  }
  .bwl-collection-card__content {
    padding: 20px 16px 24px;
  }
  .bwl-floral-choice {
    padding: 0 24px 72px;
  }
  .bwl-floral-choice__inner {
    padding: 36px 32px 38px;
  }
}

@media screen and (max-width: 768px) {
  .bwl-collections {
    padding: 48px 16px;
  }
  .bwl-collections__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
  }
  .bwl-collections__title {
    font-size: 1.25rem;
  }
  .bwl-collections__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .bwl-collection-card__image {
    aspect-ratio: 4 / 3;
  }
  .bwl-floral-choice {
    padding: 0 16px 56px;
  }
  .bwl-floral-choice__inner {
    padding: 28px 20px 24px;
    border-radius: 22px;
  }
  .bwl-floral-choice__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .bwl-floral-choice__card {
    padding: 22px 20px 24px;
    border-radius: 18px;
  }
  .bwl-floral-choice__footer {
    margin-top: 20px;
    padding-top: 20px;
  }
  .bwl-floral-choice__card-link {
    width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Quote Form
   ═══════════════════════════════════════════════════════════ */
@media screen and (max-width: 1024px) {
  .bwl-quote {
    padding: 80px 24px;
  }
  .bwl-quote__inner {
    gap: 60px;
  }
  .bwl-quote__card {
    right: -12px;
    bottom: -16px;
    padding: 20px 24px;
  }
  .bwl-quote__card-number {
    font-size: 1.75rem;
  }
}

@media screen and (max-width: 768px) {
  .bwl-quote {
    padding: 60px 20px;
  }
  .bwl-quote__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .bwl-quote__visual {
    order: 2;
    max-width: 400px;
    margin: 0 auto;
  }
  .bwl-quote__image img {
    aspect-ratio: 4 / 5;
  }
  .bwl-quote__card {
    right: -8px;
    bottom: -16px;
    padding: 16px 20px;
  }
  .bwl-quote__card-number {
    font-size: 1.5rem;
  }
  .bwl-quote__card-text {
    font-size: 0.75rem;
  }
  .bwl-quote__form-wrapper {
    order: 1;
    max-width: 100%;
  }
  .bwl-quote__title {
    font-size: 1.75rem;
  }
  .bwl-quote__form button[type="submit"],
  .bwl-quote__form .ff-btn-submit {
    width: 100% !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Calendar
   ═══════════════════════════════════════════════════════════ */
@media screen and (max-width: 1024px) {
  .bwl-calendar {
    padding: 80px 24px;
  }
  .bwl-calendar__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .bwl-month {
    padding: 20px;
  }
}

@media screen and (max-width: 768px) {
  .bwl-calendar {
    padding: 60px 16px;
  }
  .bwl-calendar__header {
    margin-bottom: 40px;
  }
  .bwl-calendar__title {
    font-size: 1.5rem;
  }
  .bwl-calendar__legend {
    gap: 16px;
  }
  .bwl-calendar__legend-item {
    font-size: 0.8rem;
  }
  .bwl-calendar__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .bwl-month {
    padding: 16px;
    border-radius: 12px;
  }
  .bwl-month__header {
    font-size: 0.9rem;
    margin-bottom: 12px;
    padding-bottom: 10px;
  }
  .bwl-month__days-header span {
    font-size: 0.6rem;
  }
  .bwl-month__day {
    font-size: 0.7rem;
    border-radius: 4px;
  }
  .bwl-calendar__footer {
    margin-top: 40px;
    padding-top: 32px;
  }
  .bwl-calendar__footer p {
    font-size: 0.95rem;
  }
}

@media screen and (max-width: 480px) {
  .bwl-calendar__grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    gap: 16px;
  }
  .bwl-month {
    padding: 20px;
  }
  .bwl-month__day {
    font-size: 0.8rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Reviews
   ═══════════════════════════════════════════════════════════ */
@media screen and (max-width: 1024px) {
  .bwl-reviews {
    padding: 80px 24px;
  }
  .bwl-reviews__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .bwl-review-card {
    padding: 24px;
  }
  .bwl-gallery {
    padding: 12px 24px 84px;
  }
  .bwl-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 190px;
  }
  .bwl-gallery-card--featured {
    grid-column: span 2;
    grid-row: span 2;
  }
}

@media screen and (max-width: 768px) {
  .bwl-reviews {
    padding: 60px 16px;
  }
  .bwl-reviews__header {
    margin-bottom: 40px;
  }
  .bwl-reviews__title {
    font-size: 1.5rem;
  }
  .bwl-reviews__stars svg {
    width: 20px;
    height: 20px;
  }
  .bwl-reviews__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .bwl-review-card {
    padding: 20px;
  }
  .bwl-review-card__avatar {
    width: 42px;
    height: 42px;
  }
  .bwl-review-card__name {
    font-size: 0.9rem;
  }
  .bwl-review-card__text {
    font-size: 0.85rem;
  }
  .bwl-reviews__footer {
    margin-top: 32px;
  }
  .bwl-reviews__google {
    width: 100%;
    justify-content: center;
  }
  .bwl-gallery {
    padding: 8px 16px 68px;
  }
  .bwl-gallery__header {
    margin-bottom: 24px;
  }
  .bwl-gallery__title {
    font-size: 1.5rem;
  }
  .bwl-gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
    gap: 12px;
  }
  .bwl-gallery-card,
  .bwl-gallery-card--featured {
    grid-column: auto;
    grid-row: auto;
    min-height: 220px;
  }
  .bwl-gallery-card--featured {
    min-height: 320px;
  }
  .bwl-gallery__footer {
    margin-top: 18px;
    text-align: left;
  }
  .bwl-gallery__button {
    width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Calendar Popup
   ═══════════════════════════════════════════════════════════ */
@media screen and (max-width: 480px) {
  .bwl-calendar-popup__content {
    padding: 32px 24px;
  }
  .bwl-calendar-popup__icon {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }
  .bwl-calendar-popup__title {
    font-size: 1.25rem;
  }
  .bwl-calendar-popup__date {
    font-size: 1rem;
  }
  .bwl-calendar-popup__text {
    font-size: 0.9rem;
  }
}
