/* ==========================================================================
   DURA - Page-level styles
   Used by all pages other than the homepage
   ========================================================================== */

/* ==========================================================================
   PAGE HERO
   ========================================================================== */

.page-hero {
  padding: 140px var(--gutter) clamp(60px, 8vw, 100px);
  background: var(--cream);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 30%;
  left: 50%;
  width: 80vmax;
  height: 80vmax;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 107, 74, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.page-hero__inner {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
}

.eyebrow--center {
  display: inline-flex;
  align-items: center;
  background: var(--coral-soft);
  color: var(--coral-deep);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.eyebrow--center::before { display: none; }

.page-hero__title {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 28px;
}

.page-hero__title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--coral-deep);
}

.page-hero__sub {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--grey);
  max-width: 640px;
  margin: 0 auto;
}


/* ==========================================================================
   FILTERS
   ========================================================================== */

.filters {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  margin-bottom: 40px;
}

.filters__inner {
  background: var(--white);
  padding: 28px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 1024px) {
  .filters__inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .filters__inner { grid-template-columns: 1fr; padding: 22px 20px; gap: 22px; }
}

.filter-group__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 12px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  padding: 9px 14px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}

.chip:hover {
  background: var(--coral-wash);
  border-color: var(--coral-soft);
}

.chip.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}

.filters__count {
  max-width: var(--max-w);
  margin: 20px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 8px;
}

.filters__count p {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
}

.filters__count #venueCount {
  color: var(--coral-deep);
  font-weight: 600;
}

.filters__clear {
  background: transparent;
  border: 0;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  color: var(--grey);
  cursor: pointer;
  padding: 6px 8px;
  border-bottom: 1px solid transparent;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.filters__clear:hover {
  color: var(--coral-deep);
  border-bottom-color: var(--coral);
}


/* ==========================================================================
   VENUES PAGE
   ========================================================================== */

.venues-page {
  padding: 20px var(--gutter) clamp(80px, 14vw, 160px);
}

.venues-page .venue-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1100px) {
  .venues-page .venue-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .venues-page .venue-grid { grid-template-columns: 1fr; }
}

.venues-page__empty {
  max-width: 540px;
  margin: 80px auto;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--grey);
  line-height: 1.5;
}

.venues-page__cta {
  text-align: center;
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--line);
}

.venues-page__cta p {
  font-size: 16px;
  color: var(--grey);
  margin-bottom: 16px;
}


/* ==========================================================================
   INDIVIDUAL VENUE PAGE
   ========================================================================== */

.venue-page {
  padding: 120px var(--gutter) clamp(80px, 14vw, 160px);
  background: var(--cream);
}

.venue-page__back {
  max-width: var(--max-w);
  margin: 0 auto 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  color: var(--grey);
  transition: color 0.3s var(--ease), gap 0.3s var(--ease);
}

.venue-page__back:hover {
  color: var(--coral-deep);
  gap: 14px;
}

.venue-page__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Gallery */
.venue-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: clamp(360px, 50vw, 520px);
  margin-bottom: 64px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.venue-gallery__main {
  grid-row: span 2;
  position: relative;
  overflow: hidden;
  background: var(--coral-wash);
}

.venue-gallery__sec {
  position: relative;
  overflow: hidden;
  background: var(--coral-wash);
}

.venue-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.venue-gallery a:hover img { transform: scale(1.04); }

.venue-gallery__main[role="button"],
.venue-gallery__sec[role="button"] {
  cursor: zoom-in;
}

.venue-gallery__main[role="button"]:hover img,
.venue-gallery__sec[role="button"]:hover img { transform: scale(1.04); }

.venue-gallery__main[role="button"]:focus-visible,
.venue-gallery__sec[role="button"]:focus-visible {
  outline: 3px solid var(--coral-deep);
  outline-offset: 3px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 15, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: clamp(40px, 6vw, 80px);
}

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

.lightbox__figure {
  margin: 0;
  max-width: min(1200px, 92vw);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.lightbox__image {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  object-fit: contain;
}

.lightbox__caption {
  margin: 0;
  color: rgba(250, 248, 244, 0.88);
  font-family: var(--sans);
  font-size: 14px;
  text-align: center;
  letter-spacing: 0.02em;
}

.lightbox__caption[hidden] { display: none; }

.lightbox__btn {
  position: absolute;
  background: rgba(255, 255, 255, 0.14);
  border: 0;
  border-radius: 999px;
  color: #fff;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox__btn:hover,
.lightbox__btn:focus-visible {
  background: rgba(255, 255, 255, 0.26);
  outline: 0;
}

.lightbox__close { top: 24px; right: 24px; }
.lightbox__prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 24px; top: 50%; transform: translateY(-50%); }

.lightbox__prev:hover,
.lightbox__prev:focus-visible { transform: translateY(-50%) scale(1.05); }
.lightbox__next:hover,
.lightbox__next:focus-visible { transform: translateY(-50%) scale(1.05); }

@media (max-width: 600px) {
  .lightbox__btn { width: 40px; height: 40px; font-size: 24px; }
  .lightbox__close { top: 14px; right: 14px; }
  .lightbox__prev { left: 8px; }
  .lightbox__next { right: 8px; }
}

.venue-gallery__more {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(8px);
  color: var(--cream);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .venue-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: 360px;
  }
  .venue-gallery__main { grid-row: span 2; }
}

/* Venue layout */
.venue-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

@media (max-width: 1024px) {
  .venue-layout { grid-template-columns: 1fr; }
}

.venue-main h1 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(34px, 4.5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 16px;
}

.venue-main__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}

.venue-main__area {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
}

.venue-main__sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--coral);
}

.venue-main__guests,
.venue-main__tube {
  font-size: 15px;
  color: var(--grey);
}

.venue-main__badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: var(--coral);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
}

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

.venue-section h2 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 16px;
}

.venue-section p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
}

.venue-features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}

.venue-features li {
  font-size: 15px;
  color: var(--ink-soft);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}

.venue-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23FF6B4A' stroke-width='2'%3E%3Cpath d='M2 6 L5 9 L10 3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.venue-features--not li::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg' stroke='%239E9E9E' stroke-width='2'%3E%3Cline x1='2' y1='6' x2='10' y2='6'/%3E%3C/svg%3E");
}

/* Pricing tiers */
.venue-pricing {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 32px;
}

.venue-pricing__tier {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
}

.venue-pricing__tier:last-child { border-bottom: 0; }

.venue-pricing__group-title {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--coral-deep);
  margin: 0 0 6px;
}

.venue-pricing__tier-name {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 16px;
  color: var(--ink);
}

.venue-pricing__tier-desc {
  display: block;
  font-size: 13px;
  color: var(--grey);
  font-weight: 400;
  margin-top: 2px;
}

.venue-pricing__tier-price {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 18px;
  color: var(--coral-deep);
  white-space: nowrap;
}

.venue-cancellation {
  background: var(--coral-wash);
  border: 1px solid var(--coral-soft);
  padding: 22px 26px;
  border-radius: var(--radius);
}

.venue-cancellation h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--ink);
}

.venue-cancellation p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* Enquiry sidebar */
.venue-sidebar {
  position: sticky;
  top: 100px;
}

.enquire-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.enquire-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}

.enquire-card__from {
  font-size: 14px;
  font-weight: 500;
  color: var(--grey);
}

.enquire-card__amount {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 36px;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.enquire-card__note {
  font-size: 13px;
  color: var(--grey);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.enquire-card__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.field {
  display: flex;
  flex-direction: column;
}

.field label {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 8px;
}

.field input,
.field textarea,
.field select {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
  font-weight: 400;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--coral);
  background: var(--white);
}

.field textarea {
  resize: vertical;
  min-height: 80px;
  line-height: 1.5;
  font-family: var(--sans);
}

.field--row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field--error input,
.field--error textarea,
.field--error select {
  border-color: var(--coral-deep);
}

.field__hint {
  font-size: 12px;
  color: var(--grey);
  margin-top: 6px;
}

.enquire-card__submit {
  margin-top: 6px;
  width: 100%;
  justify-content: center;
}

.enquire-card__promise {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.enquire-card__promise p {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.5;
}

.enquire-card__promise strong {
  color: var(--ink);
  font-weight: 500;
}

.enquire-card__success {
  text-align: center;
  padding: 30px 0;
}

.enquire-card__success h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 12px;
}

.enquire-card__success p {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.55;
}

@media (max-width: 1024px) {
  .venue-sidebar { position: static; }
}


/* ==========================================================================
   HOW IT WORKS PAGE
   ========================================================================== */

.how-page {
  padding: 0 var(--gutter) var(--section-pad);
  background: var(--cream);
}

.how-page-steps {
  max-width: 900px;
  margin: 0 auto;
}

.how-page-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: clamp(20px, 4vw, 60px);
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.how-page-step:last-child { border-bottom: 0; }

.how-page-step__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 80px;
  color: var(--coral-deep);
  line-height: 0.9;
  opacity: 0.9;
}

.how-page-step__body h2 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
}

.how-page-step__body p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--grey);
  margin-bottom: 12px;
  max-width: 600px;
}

.how-page-step__body p:last-child { margin-bottom: 0; }

.how-page-step__tag {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  padding: 6px 12px;
  background: var(--coral-soft);
  color: var(--coral-deep);
  font-size: 13px;
  font-weight: 500;
  border-radius: 999px;
}

@media (max-width: 640px) {
  .how-page-step { grid-template-columns: 1fr; }
  .how-page-step__num { font-size: 56px; }
}

/* FAQ */
.faq {
  padding: var(--section-pad) var(--gutter);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.faq__head {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}

.faq__head .eyebrow {
  margin-bottom: 24px;
}

.faq__list {
  max-width: 820px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--line);
}

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

.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 4px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(17px, 2vw, 20px);
  color: var(--ink);
  letter-spacing: -0.005em;
  transition: color 0.3s var(--ease);
}

.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--coral-deep); }

.faq__icon {
  width: 16px;
  height: 16px;
  position: relative;
  flex-shrink: 0;
  margin-left: 20px;
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--coral);
  transition: transform 0.4s var(--ease);
}

.faq__icon::after { transform: rotate(90deg); }
.faq__item[open] .faq__icon::after { transform: rotate(0); }

.faq__body {
  padding: 0 4px 28px;
  max-width: 700px;
}

.faq__body p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--grey);
  margin: 0;
}


/* ==========================================================================
   LIST YOUR VENUE (B2B)
   ========================================================================== */

.list-hero {
  padding: 140px var(--gutter) clamp(60px, 8vw, 100px);
  background: linear-gradient(180deg, var(--cream) 0%, var(--coral-wash) 100%);
  text-align: center;
}

.list-hero__inner {
  max-width: 860px;
  margin: 0 auto;
}

.list-numbers {
  padding: var(--section-pad) var(--gutter);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.list-numbers__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.list-number {
  text-align: center;
  padding: 32px 20px;
}

.list-number__big {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(48px, 6vw, 72px);
  color: var(--coral-deep);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.025em;
}

.list-number__big em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}

.list-number__label {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 8px;
}

.list-number__sub {
  font-size: 14px;
  color: var(--grey);
}

@media (max-width: 768px) {
  .list-numbers__grid { grid-template-columns: 1fr; }
}

.list-features {
  padding: var(--section-pad) var(--gutter);
  background: var(--cream);
}

.list-features__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.list-features__head {
  text-align: center;
  margin-bottom: 64px;
}

.list-features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.list-feature {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 32px;
  border-radius: var(--radius);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.list-feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.list-feature__icon {
  width: 44px;
  height: 44px;
  background: var(--coral-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.list-feature__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--coral-deep);
  stroke-width: 2;
  fill: none;
}

.list-feature h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 10px;
}

.list-feature p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--grey);
}

@media (max-width: 768px) {
  .list-features__grid { grid-template-columns: 1fr; }
}

.list-form {
  padding: var(--section-pad) var(--gutter);
  background: var(--ink);
  color: var(--cream);
}

.list-form#apply {
  scroll-margin-top: 96px;
}

.list-form__inner {
  max-width: 640px;
  margin: 0 auto;
}

.list-form__head { text-align: center; margin-bottom: 56px; }

.list-form__title {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(30px, 4.5vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 24px 0 16px;
  color: var(--cream);
}

.list-form__title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--coral);
}

.list-form__sub {
  font-size: 17px;
  color: rgba(250, 248, 244, 0.7);
  line-height: 1.55;
}

.list-form .field label { color: var(--cream); }

.list-form .field input,
.list-form .field textarea,
.list-form .field select {
  background: rgba(250, 248, 244, 0.08);
  border-color: rgba(250, 248, 244, 0.18);
  color: var(--cream);
}

.list-form .field input:focus,
.list-form .field textarea:focus,
.list-form .field select:focus {
  border-color: var(--coral);
  background: rgba(250, 248, 244, 0.12);
}

.list-form .field input::placeholder,
.list-form .field textarea::placeholder {
  color: rgba(250, 248, 244, 0.4);
}

.list-form__success {
  text-align: center;
  padding: 40px 0;
}

.list-form__success h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 26px;
  color: var(--cream);
  margin-bottom: 16px;
}

.list-form__success p {
  font-size: 16px;
  color: rgba(250, 248, 244, 0.7);
}


/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */

.about-story {
  padding: var(--section-pad) var(--gutter);
  background: var(--cream);
}

.about-story__inner {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.about-story__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--coral-soft) 0%, var(--coral-wash) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  position: sticky;
  top: 100px;
}

.about-story__photo::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid var(--coral);
  border-radius: calc(var(--radius-lg) - 16px);
  opacity: 0.25;
}

.about-story__placeholder {
  font-family: var(--serif);
  font-style: italic;
  font-size: 72px;
  color: var(--coral-deep);
}

.about-story__body p {
  font-family: var(--serif);
  font-size: clamp(19px, 1.8vw, 24px);
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 28px;
  font-weight: 400;
  font-style: italic;
}

.about-story__body p:first-child { font-style: normal; font-family: var(--sans); font-weight: 500; font-size: clamp(18px, 1.6vw, 22px); }

.about-story__sig {
  margin-top: 20px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  color: var(--grey);
  font-style: normal;
}

@media (max-width: 900px) {
  .about-story__inner { grid-template-columns: 1fr; }
  .about-story__photo {
    max-width: 320px;
    margin: 0 auto;
    position: static;
  }
}

.about-values {
  padding: var(--section-pad) var(--gutter);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.about-values__head { text-align: center; margin: 0 auto 64px; max-width: 720px; }

.about-values__grid {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}

.value-card {
  text-align: center;
  padding: 24px;
}

.value-card__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  color: var(--coral-deep);
  margin-bottom: 16px;
}

.value-card h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 19px;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.value-card p {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.55;
}

@media (max-width: 768px) {
  .about-values__grid { grid-template-columns: 1fr; }
}


/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.contact-page {
  padding: var(--section-pad) var(--gutter);
  background: var(--cream);
}

.contact-page__inner {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.contact-page__intro {
  position: sticky;
  top: 100px;
}

.contact-page__email-label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--coral-deep);
  margin-bottom: 12px;
}

.contact-page__email {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 36px;
  word-break: break-all;
}

.contact-page__email a {
  color: var(--ink);
  border-bottom: 1px solid var(--coral);
  padding-bottom: 2px;
  transition: color 0.3s var(--ease);
}

.contact-page__email a:hover { color: var(--coral-deep); }

.contact-page__hours h4 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 8px;
}

.contact-page__hours p {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.5;
}

.contact-page__form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

@media (max-width: 768px) {
  .contact-page__inner { grid-template-columns: 1fr; }
  .contact-page__intro { position: static; }
  .contact-page__form { padding: 28px 22px; }
}


/* ==========================================================================
   LEGAL PAGES
   ========================================================================== */

.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) var(--gutter) clamp(80px, 14vw, 160px);
  font-family: var(--sans);
}

.legal__updated {
  font-size: 14px;
  color: var(--grey);
  margin-top: 16px;
}

.legal__intro {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.legal h2 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 48px 0 16px;
}

.legal p,
.legal li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.legal p { margin: 0 0 18px; }

.legal ul {
  padding-left: 0;
  list-style: none;
  margin: 0 0 24px;
}

.legal li {
  padding: 8px 0 8px 22px;
  position: relative;
  border-bottom: 1px solid var(--line-soft);
}

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

.legal li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 18px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
}

.legal a {
  color: var(--coral-deep);
  border-bottom: 1px solid var(--coral-soft);
  transition: border-color 0.3s var(--ease);
}

.legal a:hover { border-color: var(--coral); }

.legal strong { color: var(--ink); font-weight: 600; }

.legal__close {
  margin-top: 60px !important;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-style: italic;
  color: var(--grey) !important;
}


/* ==========================================================================
   FIND MY VENUE (CHATBOT) PAGE
   ========================================================================== */

.chat-page-body {
  background: var(--cream);
}

.chat-page {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 120px var(--gutter) 60px;
  position: relative;
  overflow-x: hidden;
}

.chat-page::before {
  content: "";
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vmax;
  height: 80vmax;
  background: radial-gradient(circle, rgba(255, 107, 74, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.chat-page__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 680px;
}

.chat-page__intro {
  margin-bottom: 28px;
}

.chat-page__title {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(26px, 3.6vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 16px 0 12px;
}

.chat-page__lead {
  font-size: 17px;
  color: var(--grey);
  line-height: 1.55;
  max-width: 520px;
}

.chatbot-mount {
  width: 100%;
  min-height: min(65vh, 560px);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

/* Nav close on chat page */
.nav__close {
  width: 40px;
  height: 40px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
  background: transparent;
}

.nav__close span {
  position: absolute;
  width: 12px;
  height: 1.5px;
  background: var(--ink);
}

.nav__close span:first-child { transform: rotate(45deg); }
.nav__close span:last-child { transform: rotate(-45deg); }

.nav__close:hover {
  border-color: var(--coral);
  transform: rotate(90deg);
}
