/* MyPartyAdda theme — full design system, extends style.css's :root tokens. */

@keyframes heroFadeUp {
  from {
    transform: translateY(22px);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes floatBlob1 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-30px, 40px) scale(1.15);
  }
}
@keyframes floatBlob2 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -30px) scale(1.1);
  }
}
@keyframes slowRotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes twinkle {
  0%,
  100% {
    opacity: 0.2;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}
@keyframes shimmerLine {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
@keyframes sparklePulse {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(1) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.25) rotate(15deg);
  }
}
@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}
@keyframes kenBurns {
  from {
    transform: scale(1) translate(0, 0);
  }
  to {
    transform: scale(1.12) translate(-1.5%, -1.5%);
  }
}
@keyframes emberRise {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-620px) translateX(20px);
    opacity: 0;
  }
}

/* ------------------------------------------------------------------ */
/* Base                                                                 */
/* ------------------------------------------------------------------ */

h1,
h2,
h3,
h4,
.font-heading {
  font-family: "Poppins", sans-serif;
  margin: 0;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.container--narrow {
  max-width: 860px;
}
.container--medium {
  max-width: 1040px;
}

.section {
  padding: 64px 0;
}
.section--tight {
  padding: 40px 0;
}
.section--top-flush {
  padding-top: 0;
}
.section--bottom-flush {
  padding-bottom: 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.section-head h2 {
  font-size: clamp(1.45rem, 3.5vw, 1.9rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 10px;
}

.eyebrow--light {
  color: var(--gold);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--pink);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
}
.link-arrow:hover {
  color: var(--pink-dark);
}

.muted {
  color: var(--ink-soft);
}

/* ------------------------------------------------------------------ */
/* Buttons                                                              */
/* ------------------------------------------------------------------ */

.btn,
.btn-outline,
.btn-ghost,
.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 26px;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
  white-space: nowrap;
}

.btn {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 10px 24px rgba(204, 20, 104, 0.25);
}
.btn:hover {
  background: var(--pink-dark);
  color: #fff;
}

.btn-outline {
  background: #fff;
  border-color: var(--divider);
  color: var(--ink);
}
.btn-outline:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
}

.btn-dark {
  background: var(--navy);
  color: #fff;
}
.btn-dark:hover {
  background: var(--navy-soft, #1b2057);
}

.btn--block {
  width: 100%;
}
.btn--sm {
  padding: 9px 18px;
  font-size: 0.85rem;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--divider);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink);
  flex-shrink: 0;
  transition:
    border-color 0.2s ease,
    color 0.2s ease;
}
.icon-btn:hover {
  border-color: var(--pink);
  color: var(--pink);
}
a.icon-btn {
  text-decoration: none;
}

/* ------------------------------------------------------------------ */
/* Header / primary nav                                                  */
/* ------------------------------------------------------------------ */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 999;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid var(--divider);
}

.site-header .header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 24px;
}

.site-logo {
  height: 34px;
  display: block;
  width: auto;
}

.primary-nav {
  flex: 1;
  margin-left: 12px;
}

.primary-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  white-space: nowrap;
}
.primary-nav a:hover,
.primary-nav .current-menu-item > a,
.primary-nav a.is-active {
  color: var(--pink);
  font-weight: 600;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.primary-nav__actions {
  display: none;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--divider);
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.site-content {
  padding-top: 66px;
}

/* ------------------------------------------------------------------ */
/* Footer                                                                */
/* ------------------------------------------------------------------ */

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(5, 1fr);
  gap: 28px;
  padding: 32px 0 16px;
  align-items: start;
}

.footer-brand-name {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  margin: 0 0 10px;
}
.footer-brand-name span {
  color: var(--pink);
}

.footer-brand-text {
  font-size: 13.5px;
  opacity: 0.65;
  max-width: 30ch;
  margin: 0;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease;
}
.social-btn i {
  font-size: 18px;
  line-height: 1;
}
.social-btn:hover {
  background: var(--pink);
}

.footer-col h2.widget-title,
.footer-col h6,
.footer-col .widget-title {
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  opacity: 0.55;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 12px;
}
.footer-col .footer-widget {
  margin: 0;
}
.footer-col ul,
.footer-col .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col .widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  color: #fff;
  opacity: 0.82;
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-col a:hover {
  color: var(--pink);
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  opacity: 0.6;
  flex-wrap: wrap;
  gap: 8px;
}

/* ------------------------------------------------------------------ */
/* Hero (home)                                                          */
/* ------------------------------------------------------------------ */

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  min-height: clamp(520px, 72vh, 760px);
}

.hero__bg {
  position: absolute;
  inset: -8% 0;
  overflow: hidden;
  will-change: transform;
}
.hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero__bg img.is-active {
  opacity: 1;
}
.hero__bg img.is-ken-burns {
  animation: kenBurns 18s ease-in-out infinite alternate;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(18, 21, 63, 0.5) 0%,
    rgba(18, 21, 63, 0.68) 55%,
    rgba(18, 21, 63, 0.92) 100%
  );
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
  animation: glowPulse ease-in-out infinite;
}
.hero__glow--gold {
  top: -25%;
  left: 62%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.18), transparent 70%);
  animation-duration: 5s;
}
.hero__glow--pink {
  bottom: -15%;
  right: 4%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(227, 28, 121, 0.24), transparent 70%);
  animation-duration: 6.5s;
  animation-delay: 1.2s;
}

.hero__embers {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__ember {
  position: absolute;
  bottom: -10%;
  border-radius: 50%;
  animation: emberRise ease-in infinite;
}
.hero__ember--1 {
  left: 14%;
  width: 4px;
  height: 4px;
  background: var(--gold);
  box-shadow: 0 0 8px 2px rgba(255, 193, 7, 0.7);
  animation-duration: 7s;
}
.hero__ember--2 {
  left: 32%;
  width: 3px;
  height: 3px;
  background: var(--gold);
  box-shadow: 0 0 6px 2px rgba(255, 193, 7, 0.6);
  animation-duration: 9s;
  animation-delay: 1.5s;
}
.hero__ember--3 {
  left: 55%;
  width: 5px;
  height: 5px;
  background: #fff;
  box-shadow: 0 0 8px 2px rgba(255, 255, 255, 0.5);
  animation-duration: 8s;
  animation-delay: 3s;
}
.hero__ember--4 {
  left: 72%;
  width: 3px;
  height: 3px;
  background: var(--gold);
  box-shadow: 0 0 6px 2px rgba(255, 193, 7, 0.65);
  animation-duration: 10s;
  animation-delay: 0.8s;
}
.hero__ember--5 {
  left: 86%;
  width: 4px;
  height: 4px;
  background: #fff;
  box-shadow: 0 0 8px 2px rgba(255, 255, 255, 0.5);
  animation-duration: 7.5s;
  animation-delay: 4.2s;
}

.hero-animate {
  opacity: 1;
  animation: heroFadeUp 800ms cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: var(--hero-delay, 0ms);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 64px 0 46px;
}

.hero__title {
  font-size: clamp(2.75rem, 6vw, 4.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
  max-width: 16ch;
}
.hero__title-line {
  display: block;
}
.hero__text {
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 46ch;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 40px;
}
.hero__text p {
  margin: 0;
}

.hero__search {
  position: relative;
  z-index: 5;
  padding-bottom: 56px;
}

.eyebrow--light .ph-sparkle {
  animation: sparklePulse 2.2s ease-in-out infinite;
}

.search-bar {
  position: relative;
  z-index: 3;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(18, 21, 63, 0.24);
  padding: 20px 22px;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr 1fr auto;
  gap: 0;
  margin-bottom: 18px;
}
.search-field {
  padding: 0 18px;
  border-right: 1px solid var(--divider);
}
.search-field:first-child {
  padding-left: 0;
}
.search-field label {
  display: block;
  font-size: 0.72rem;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.search-field .value {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.search-field .value i {
  color: var(--pink);
}
.search-field input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: inherit;
  color: var(--ink);
  padding: 0;
  min-width: 0;
}
.search-field select {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: inherit;
  color: var(--ink);
  padding: 0;
  min-width: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.search-field select:focus-visible,
.search-field input:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 2px;
  border-radius: 4px;
}
.search-field input::placeholder {
  color: var(--ink-soft);
  font-weight: 500;
}
.value--date {
  position: relative;
  flex: 1;
  min-width: 0;
}
.search-date {
  position: relative;
  z-index: 1;
  color-scheme: light;
}
.search-date.is-empty {
  color: transparent;
}
.search-date.is-empty::-webkit-datetime-edit,
.search-date.is-empty::-webkit-datetime-edit-fields-wrapper,
.search-date.is-empty::-webkit-datetime-edit-text,
.search-date.is-empty::-webkit-datetime-edit-month-field,
.search-date.is-empty::-webkit-datetime-edit-day-field,
.search-date.is-empty::-webkit-datetime-edit-year-field {
  color: transparent;
}
.search-date__placeholder {
  position: absolute;
  left: 21px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink);
  font-weight: 700;
  pointer-events: none;
  z-index: 0;
}
.search-date:not(.is-empty) + .search-date__placeholder,
.value--date:focus-within .search-date__placeholder {
  opacity: 0;
}
.search-submit {
  margin-left: 18px;
  background: var(--pink-dark);
}
.search-submit:hover {
  background: #94104f;
}

.popular-searches {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.popular-searches .label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
}
.chip {
  text-decoration: none;
  font-size: 0.8rem;
  padding: 7px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.chip:hover {
  background: var(--pink);
  border-color: var(--pink);
}

.chip-light {
  background: var(--surface);
  color: var(--ink);
  border: none;
}
.chip-light:hover {
  background: var(--pink-light);
  color: var(--pink-dark);
}
.chip-light.is-active {
  background: var(--pink);
  color: #fff;
}

/* ------------------------------------------------------------------ */
/* Grids & cards                                                        */
/* ------------------------------------------------------------------ */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.venue-listing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 180px), 1fr));
  gap: 14px;
}
.grid-3 > *,
.grid-4 > *,
.venue-listing-grid > *,
.tile-grid > *,
.occasion-grid > *,
.occasion-grid--cards > *,
.dashboard-venue-grid > * {
  min-width: 0;
}

.occasion-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.occasion-grid--cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.occasion-tile {
  text-decoration: none;
  color: var(--ink);
  background: var(--surface);
  border-radius: 16px;
  padding: 26px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}
.occasion-tile i {
  font-size: 24px;
  color: var(--pink);
}
.occasion-tile span {
  font-size: 0.82rem;
  font-weight: 500;
}
.occasion-tile:hover {
  background: var(--pink-light);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.venue-card {
  display: block;
  text-decoration: none;
  color: var(--ink);
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md, var(--shadow));
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.venue-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg, 0 24px 60px rgba(18, 21, 63, 0.18));
}
.venue-card__image {
  position: relative;
  aspect-ratio: 4/3.1;
  overflow: hidden;
  background: var(--surface);
}
.venue-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.venue-card:hover .venue-card__image img {
  transform: scale(1.06);
}
.venue-card__body {
  padding: 16px;
}
.venue-card__title {
  font-size: 1.05rem;
  margin: 0 0 4px;
}
.venue-card__meta {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin: 0 0 4px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.venue-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}
.price {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1rem;
}
.venue-card .price-onwards {
  font-weight: 400;
  font-size: 0.72rem;
  color: var(--ink-soft);
}
.price small {
  font-weight: 400;
  font-size: 0.72rem;
  color: var(--ink-soft);
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.badge i {
  color: var(--gold);
}
.badge-fav {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--pink);
}
.badge-pink {
  background: var(--pink-light);
  color: var(--pink-dark);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  display: inline-block;
}
.badge-plain {
  background: var(--surface);
  color: var(--ink);
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  display: inline-block;
}

.tile-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  min-height: 220px;
  display: block;
  text-decoration: none;
  background: var(--surface);
}
.tile-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.tile-card:hover img {
  transform: scale(1.08);
}
.tile-card__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 45%,
    rgba(18, 21, 63, 0.85) 100%
  );
}
.tile-card__content {
  position: absolute;
  left: 16px;
  bottom: 14px;
  right: 16px;
  color: #fff;
  z-index: 2;
}
.tile-card__content h3 {
  font-size: 1.05rem;
  margin: 0;
}
.tile-card__content p {
  margin: 4px 0 0;
  font-size: 0.82rem;
  opacity: 0.85;
}
.tile-card--tall {
  aspect-ratio: 3/4;
}
.tile-card--wide {
  aspect-ratio: 4/3;
}

.blog-card {
  text-decoration: none;
  color: var(--ink);
  display: block;
}
.blog-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 14px;
  position: relative;
  background: var(--surface);
}
.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.blog-card:hover .blog-card__image img {
  transform: scale(1.06);
}
.blog-card__date {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--pink);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
}
.blog-card__title,
.blog-card h2,
.blog-card h3 {
  font-size: 1.05rem;
  margin: 8px 0 6px;
  line-height: 1.3;
}
.blog-card p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin: 0;
}

/* ------------------------------------------------------------------ */
/* Why choose us (dark section)                                         */
/* ------------------------------------------------------------------ */

.why-us {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
  padding: 88px 0;
}
.why-us__fx {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.why-us__rotate {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 900px;
  height: 900px;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(255, 193, 7, 0.1) 90deg,
    transparent 180deg,
    rgba(227, 28, 121, 0.14) 270deg,
    transparent 360deg
  );
  animation: slowRotate 40s linear infinite;
}
.why-us__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}
.why-us__blob--1 {
  top: -140px;
  right: -100px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(227, 28, 121, 0.35), transparent 70%);
  animation: floatBlob1 9s ease-in-out infinite;
}
.why-us__blob--2 {
  bottom: -160px;
  left: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.18), transparent 70%);
  animation: floatBlob2 11s ease-in-out infinite;
}
.why-us__twinkle {
  position: absolute;
  border-radius: 50%;
  animation: twinkle ease-in-out infinite;
}
.why-us__twinkle--1 {
  top: 18%;
  left: 12%;
  width: 5px;
  height: 5px;
  background: var(--gold);
  box-shadow: 0 0 8px 2px rgba(255, 193, 7, 0.6);
  animation-duration: 3.2s;
}
.why-us__twinkle--2 {
  top: 65%;
  left: 22%;
  width: 4px;
  height: 4px;
  background: #fff;
  box-shadow: 0 0 6px 2px rgba(255, 255, 255, 0.5);
  animation-duration: 4s;
  animation-delay: 0.6s;
}
.why-us__twinkle--3 {
  top: 30%;
  right: 18%;
  width: 4px;
  height: 4px;
  background: var(--gold);
  box-shadow: 0 0 8px 2px rgba(255, 193, 7, 0.6);
  animation-duration: 3.6s;
  animation-delay: 1.2s;
}
.why-us__twinkle--4 {
  top: 75%;
  right: 30%;
  width: 5px;
  height: 5px;
  background: #fff;
  box-shadow: 0 0 8px 2px rgba(255, 255, 255, 0.5);
  animation-duration: 4.4s;
  animation-delay: 2s;
}
.why-us .container {
  position: relative;
  z-index: 2;
}
.why-us .section-head-center {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}
.why-us .section-head-center h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin: 0 0 14px;
}
.why-us__shimmer {
  width: 64px;
  height: 2px;
  margin: 0 auto 18px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  background-size: 200% 100%;
  animation: shimmerLine 2.8s ease-in-out infinite;
}
.why-us .section-head-center p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.97rem;
  line-height: 1.6;
  margin: 0;
}
.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 30px 26px;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(227, 28, 121, 0.5);
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  box-shadow: 0 10px 24px rgba(227, 28, 121, 0.35);
  color: #fff;
  font-size: 22px;
}
.feature-card h3 {
  color: #fff;
  font-size: 1.05rem;
  margin: 0 0 8px;
}
.feature-card p {
  font-size: 0.84rem;
  opacity: 0.65;
  margin: 0;
  line-height: 1.55;
}

/* ------------------------------------------------------------------ */
/* Newsletter band                                                      */
/* ------------------------------------------------------------------ */

.newsletter {
  background: linear-gradient(120deg, var(--pink) 0%, #ff6f9c 100%);
  color: #fff;
  padding: 52px 0;
}
.newsletter .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.newsletter h2 {
  color: #fff;
  font-size: 1.6rem;
  margin: 0 0 6px;
}
.newsletter p {
  margin: 0;
  opacity: 0.92;
  font-size: 0.9rem;
}
.newsletter__form {
  display: flex;
  gap: 10px;
  min-width: 340px;
  flex: 1;
  max-width: 460px;
}
.newsletter__signup {
  min-width: 340px;
  flex: 1;
  max-width: 460px;
}
.newsletter__signup .newsletter__form {
  min-width: 0;
  max-width: none;
}
.newsletter__message {
  margin: 10px 0 0;
  font-size: 0.85rem;
  line-height: 1.4;
}
.newsletter__message--success {
  color: #fff;
  opacity: 0.95;
}
.newsletter__message--error {
  color: #ffe0ea;
}
.mpa-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.mpa-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.newsletter__form button:disabled {
  opacity: 0.72;
  cursor: wait;
}
.newsletter__form input {
  background: #fff;
  flex: 1;
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 0.9rem;
  font-family: inherit;
}
.newsletter__form button {
  background: var(--navy);
  color: #fff;
  white-space: nowrap;
  border: none;
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
}

.cta-band {
  background: linear-gradient(120deg, var(--pink) 0%, #ff6f9c 100%);
  color: #fff;
  padding: 48px 0;
}
.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h2 {
  color: #fff;
  margin: 0;
  font-size: 1.5rem;
}
.cta-band .btn-white {
  text-decoration: none;
  color: var(--pink);
  background: #fff;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
}

/* ------------------------------------------------------------------ */
/* Taxonomy landing hero (City / Occasion)                              */
/* ------------------------------------------------------------------ */

.tax-hero {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: #fff;
}
.tax-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tax-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(18, 21, 63, 0.2),
    rgba(18, 21, 63, 0.82)
  );
}
.tax-hero__content {
  position: relative;
  z-index: 2;
  padding: 60px 0;
}
.tax-hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  margin: 12px 0;
}
.tax-hero p {
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}
.tax-hero--partner {
  min-height: clamp(280px, 50vw, 420px);
}
.tax-hero--compact {
  min-height: clamp(220px, 40vw, 280px);
}
.tax-hero__scrim--partner {
  background: linear-gradient(
    90deg,
    rgba(18, 21, 63, 0.92) 30%,
    rgba(18, 21, 63, 0.4) 100%
  );
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--divider);
}
.stat .num {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--pink);
  margin: 0;
}
.stat .label {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 8px 0 0;
}

.pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pill-row .chip-light {
  padding: 8px 18px;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tip-card {
  background: var(--surface);
  border-radius: 18px;
  padding: 24px;
}
.tip-card .num {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--pink);
  margin: 0 0 10px;
}
.tip-card h3 {
  margin-bottom: 8px;
}
.tip-card p {
  margin: 0;
  color: rgba(32, 31, 46, 0.78);
  font-size: 0.88rem;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.pagination a,
.pagination span,
.pagination .page-numbers {
  min-width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--divider);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--ink);
  font-size: 0.85rem;
  padding: 0 12px;
}
.pagination a:hover {
  border-color: var(--pink);
  color: var(--pink);
}
.pagination .current,
.pagination .page-numbers.current {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
  font-weight: 600;
}

.empty-state {
  padding: 48px 0;
  text-align: center;
  color: var(--ink-soft);
}

/* ------------------------------------------------------------------ */
/* Venue detail                                                         */
/* ------------------------------------------------------------------ */

.container--venue {
  padding-left: 40px;
  padding-right: 40px;
}

.venue-detail__hero {
  padding-top: 24px;
}

.venue-detail__body {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  padding-top: 32px;
  padding-bottom: 80px;
}

.venue-detail__main {
  min-width: 0;
}

.breadcrumbs {
  font-size: 13px;
  color: var(--ink-soft);
  display: flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.breadcrumbs a {
  color: inherit;
  text-decoration: none;
}
.breadcrumbs a:hover {
  color: var(--pink);
}
.breadcrumbs span:last-child {
  color: var(--ink);
}

.gallery {
  display: grid;
  gap: 10px;
  margin-bottom: 8px;
}
.gallery--single {
  grid-template-columns: 1fr;
}
.gallery--single .gallery__main {
  /* Full width, same row height as the multi-image gallery (2fr @ 14/10 → 21/10). */
  aspect-ratio: 21 / 10;
}
.gallery--pair,
.gallery--multi {
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  align-items: stretch;
}
.gallery__main {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  min-width: 0;
  position: relative;
}
.gallery--multi .gallery__main {
  aspect-ratio: 14 / 10;
}
.gallery__side {
  display: grid;
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
  min-width: 0;
  min-height: 0;
  height: 100%;
}
.gallery__side-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  min-height: 0;
  min-width: 0;
}
.gallery--pair .gallery__side-item--full {
  height: 100%;
}
.gallery__side .gallery__side-item {
  height: 100%;
}
.gallery__trigger {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  margin: 0;
  background: none;
  cursor: pointer;
  position: relative;
  font: inherit;
  color: inherit;
}
.gallery__trigger img,
.gallery__side-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  max-width: none;
  pointer-events: none;
}
.gallery__more {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(18, 21, 63, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 15px;
  pointer-events: auto;
  border: 0;
  cursor: pointer;
}

/* Mobile / tablet venue gallery slider */
.gallery-slider {
  display: none;
  position: relative;
  margin-bottom: 8px;
}
.gallery-slider__viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  border-radius: 20px;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
}
.gallery-slider__viewport::-webkit-scrollbar {
  display: none;
}
.gallery-slider__track {
  display: flex;
}
.gallery-slider__slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  aspect-ratio: 16 / 10;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--surface);
}
.gallery-slider__trigger {
  width: 100%;
  height: 100%;
}
.gallery-slider__trigger img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
}
.gallery-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(18, 21, 63, 0.18);
  z-index: 2;
  transition: background 0.2s ease, transform 0.2s ease;
}
.gallery-slider__nav:hover {
  background: #fff;
}
.gallery-slider__nav--prev {
  left: 10px;
}
.gallery-slider__nav--next {
  right: 10px;
}
.gallery-slider__counter {
  margin: 8px 0 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.32s ease;
}
.gallery-lightbox.is-open {
  opacity: 1;
}
.gallery-lightbox[hidden] {
  display: none !important;
}
.gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 21, 63, 0.88);
  opacity: 0;
  transition: opacity 0.32s ease;
}
.gallery-lightbox.is-open .gallery-lightbox__backdrop {
  opacity: 1;
}
.gallery-lightbox__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
  max-height: calc(100vh - 48px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: scale(0.96) translateY(16px);
  transition: opacity 0.36s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery-lightbox.is-open .gallery-lightbox__panel {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.gallery-lightbox__stage {
  width: 100%;
  max-height: calc(100vh - 120px);
  display: grid;
  place-items: center;
}
.gallery-lightbox__stage.is-transitioning {
  min-height: var(--stage-h, 240px);
}
.gallery-lightbox__image {
  grid-area: 1 / 1;
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 120px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.42s ease;
  pointer-events: none;
}
.gallery-lightbox__image:not(.is-active) {
  position: absolute;
  width: auto;
  height: auto;
}
.gallery-lightbox__image.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}
.gallery-lightbox__close,
.gallery-lightbox__nav {
  position: absolute;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease, opacity 0.28s ease;
  opacity: 0;
}
.gallery-lightbox.is-open .gallery-lightbox__close,
.gallery-lightbox.is-open .gallery-lightbox__nav {
  opacity: 1;
}
.gallery-lightbox__close:hover,
.gallery-lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.22);
}
.gallery-lightbox__nav:active {
  transform: translateY(-50%) scale(0.94);
}
.gallery-lightbox__close {
  top: -8px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  font-size: 18px;
}
.gallery-lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 22px;
}
.gallery-lightbox__nav--prev {
  left: -56px;
  transition-delay: 0.06s;
}
.gallery-lightbox__nav--next {
  right: -56px;
  transition-delay: 0.06s;
}
.gallery-lightbox__counter {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.32s ease 0.08s, transform 0.32s ease 0.08s;
}
.gallery-lightbox.is-open .gallery-lightbox__counter {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .gallery-lightbox,
  .gallery-lightbox__backdrop,
  .gallery-lightbox__panel,
  .gallery-lightbox__image,
  .gallery-lightbox__close,
  .gallery-lightbox__nav,
  .gallery-lightbox__counter {
    transition: none !important;
  }
  .gallery-lightbox__nav {
    transform: translateY(-50%) !important;
  }
}

@media (max-width: 860px) {
  .gallery-lightbox {
    padding: 16px;
  }
  .gallery-lightbox__nav--prev {
    left: 8px;
  }
  .gallery-lightbox__nav--next {
    right: 8px;
  }
  .gallery-lightbox__close {
    top: 8px;
    right: 8px;
  }
}

.venue-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.venue-head h1 {
  font-size: clamp(1.55rem, 4.5vw, 1.875rem);
  margin: 0 0 6px;
}
.venue-head .location {
  margin: 0;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
}
.venue-head .location i {
  font-size: 15px;
  line-height: 1;
}
.venue-head__actions {
  display: flex;
  gap: 10px;
}
.venue-head__actions .icon-btn {
  width: 38px;
  height: 38px;
}
.venue-head__actions .icon-btn i {
  font-size: 16px;
  line-height: 1;
}
@media (min-width: 769px) {
  .venue-share-link {
    display: none !important;
  }
}

.venue-badges {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--divider);
}
.quick-fact i {
  font-size: 22px;
  color: var(--pink);
  margin-bottom: 8px;
  display: block;
  line-height: 1;
}
.quick-fact .label {
  font-size: 13px;
  margin: 0;
  opacity: 0.7;
}
.quick-fact .value {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  margin: 0;
}

.detail-block {
  padding: 24px 0;
  border-top: 1px solid var(--divider);
}
.detail-block h2 {
  font-family: "Poppins", sans-serif;
}
.detail-block--about h2 {
  margin-bottom: 14px;
}
.detail-block--amenities h2,
.detail-block--reviews h2 {
  margin-bottom: 18px;
}
.venue-about,
.detail-block p {
  color: rgba(32, 31, 46, 0.78);
  line-height: 1.7;
  max-width: 62ch;
}
.venue-about > :first-child {
  margin-top: 0;
}
.venue-about > :last-child {
  margin-bottom: 0;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 24px;
}
.amenity {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.amenity i {
  font-size: 17px;
  color: var(--pink);
  line-height: 1;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.review {
  border-bottom: 1px solid var(--divider);
  padding-bottom: 20px;
}
.review:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.review .author {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  margin: 0 0 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.review .author .badge-pink {
  font-size: 11px;
  padding: 3px 10px;
}
.review .meta {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0 0 10px;
}
.review p {
  margin: 0;
  color: rgba(32, 31, 46, 0.78);
  max-width: 60ch;
}
.review-form {
  margin-top: 24px;
}
.review-form input,
.review-form textarea {
  width: 100%;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid var(--divider);
  font-family: inherit;
  font-size: 0.9rem;
  box-sizing: border-box;
  margin-bottom: 12px;
}

.booking-card {
  position: sticky;
  top: 84px;
  align-self: start;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 24px;
  background: #fff;
}
.booking-card .price-big {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 26px;
  margin: 0;
  line-height: 1.2;
}
.booking-card .price-onwards {
  font-weight: 400;
  font-size: 14px;
  opacity: 0.6;
}
.booking-card .price-note {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0 0 20px;
}
.booking-field {
  margin-bottom: 14px;
}
.booking-field--last {
  margin-bottom: 20px;
}
.booking-field label {
  display: block;
  font-size: 12px;
  margin-bottom: 5px;
  color: var(--ink-soft);
}
.booking-field__control {
  position: relative;
}
.booking-field__control i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1;
  pointer-events: none;
}
.booking-field__control input {
  width: 100%;
  padding: 10px 14px 10px 40px;
  border-radius: 10px;
  border: 1px solid var(--divider);
  font-family: inherit;
  font-size: 14px;
  box-sizing: border-box;
}
.booking-card .btn--block {
  width: 100%;
  padding: 13px;
  font-size: 14.5px;
  box-shadow: none;
}
.booking-card .btn-expert {
  margin-top: 10px;
  padding: 13px;
  font-size: 14.5px;
}
.booking-card .btn-expert i {
  font-size: 15px;
  line-height: 1;
}
.booking-card__fineprint {
  font-size: 12px;
  color: var(--ink-soft);
  margin: 16px 0 0;
  text-align: center;
}

/* Native WP comment form, reused as the venue "Write a Review" form. */
.review-form-inner p {
  margin: 0 0 14px;
}
.review-form-inner label {
  display: block;
  font-size: 0.78rem;
  margin-bottom: 5px;
  color: var(--ink-soft);
}
.review-form-inner input[type="text"],
.review-form-inner input[type="email"],
.review-form-inner input[type="url"],
.review-form-inner input[type="date"],
.review-form-inner textarea,
.review-form-inner select {
  width: 100%;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid var(--divider);
  font-family: inherit;
  font-size: 0.9rem;
  box-sizing: border-box;
}
.review-form-inner .form-submit input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 26px;
  font-weight: 600;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  background: var(--pink);
  color: #fff;
}
.review-form-inner .form-submit input[type="submit"]:hover {
  background: var(--pink-dark);
}

/* ------------------------------------------------------------------ */
/* Forms (List Your Venue, Login, comment form)                         */
/* ------------------------------------------------------------------ */

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field label {
  display: block;
  font-size: 0.78rem;
  margin-bottom: 5px;
  color: var(--ink-soft);
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid var(--divider);
  font-family: inherit;
  font-size: 0.9rem;
  box-sizing: border-box;
}
.form-field textarea {
  resize: vertical;
}
.form-field--full {
  grid-column: 1 / -1;
}

.form-notice {
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 24px;
  font-size: 0.9rem;
}
.form-notice--success {
  background: #e8f8ee;
  color: #16794b;
}
.form-notice--error {
  background: #fdeceb;
  color: #b3261e;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--divider);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 28px;
}
.step-card .num {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--pink);
  margin: 0 0 12px;
}
.step-card h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}
.step-card p {
  margin: 0;
  color: rgba(32, 31, 46, 0.78);
  font-size: 0.88rem;
}

.testimonial-band {
  background: var(--navy);
  padding: 56px 0;
}
.testimonial-band blockquote {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.4;
  color: #fff;
  margin: 0 0 16px;
}
.testimonial-band cite {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-style: normal;
}

/* ------------------------------------------------------------------ */
/* Auth (login/signup)                                                   */
/* ------------------------------------------------------------------ */

.auth-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: calc(100vh - 66px);
}
.auth-visual {
  position: relative;
  overflow: hidden;
}
.auth-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.auth-visual__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(18, 21, 63, 0.15),
    rgba(18, 21, 63, 0.8)
  );
}
.auth-visual__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 56px;
  color: #fff;
}
.auth-visual__headline,
.auth-visual__content h2 {
  font-size: 1.8rem;
  max-width: 14ch;
  margin: 0 0 12px;
}
.auth-visual__content p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 40ch;
  margin: 0;
}
.auth-form-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 40px;
}
.auth-form {
  width: 100%;
  max-width: 380px;
}
.auth-tabs {
  display: flex;
  width: 100%;
  margin-bottom: 24px;
  background: var(--surface);
  border-radius: 999px;
  padding: 4px;
}
.auth-tabs a {
  flex: 1;
  text-align: center;
  padding: 9px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  text-decoration: none;
}
.auth-tabs a.is-active {
  background: var(--pink);
  color: #fff;
  font-weight: 600;
}
.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
}
.auth-divider span:first-child,
.auth-divider span:last-child {
  flex: 1;
  height: 1px;
  background: var(--divider);
}
.auth-divider span:nth-child(2) {
  font-size: 0.75rem;
  color: var(--ink-soft);
}
.social-btn-block {
  width: 100%;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--divider);
  border-radius: 999px;
  padding: 12px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
}
.social-btn-block:hover {
  border-color: var(--pink);
  color: var(--pink);
}
.social-btn-block:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

/* Native wp_login_form() markup. */
#loginform p {
  margin: 0 0 14px;
}
#loginform label {
  display: block;
  font-size: 0.78rem;
  margin-bottom: 5px;
  color: var(--ink-soft);
}
#loginform input[type="text"],
#loginform input[type="password"] {
  width: 100%;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid var(--divider);
  font-family: inherit;
  font-size: 0.9rem;
  box-sizing: border-box;
}
#loginform .login-remember {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
}
#loginform .login-remember label {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}
#loginform .login-submit input[type="submit"] {
  width: 100%;
  background: var(--pink);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 13px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
}
#loginform .login-submit input[type="submit"]:hover {
  background: var(--pink-dark);
}

/* ------------------------------------------------------------------ */
/* Blog / article                                                       */
/* ------------------------------------------------------------------ */

.article-header {
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 24px 0;
}
.article-header h1 {
  font-size: clamp(1.45rem, 5vw, 2.2rem);
  line-height: 1.2;
  margin: 16px 0;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 0.85rem;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.article-hero {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}
.article-hero .frame {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 40px;
}
.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px 80px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(32, 31, 46, 0.85);
}
.article-body h2,
.article-body h3 {
  margin: 32px 0 16px;
}
.article-body p {
  margin: 0 0 20px;
}
.article-body ul,
.article-body ol {
  margin: 0 0 20px;
  padding-left: 22px;
}
.article-body li {
  margin-bottom: 10px;
}
.article-body blockquote {
  margin: 0;
  padding: 28px;
  background: var(--pink-light);
  border-radius: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.4;
  color: var(--pink-dark);
}
.article-body img {
  border-radius: 16px;
}
.related-reading {
  border-top: 1px solid var(--divider);
  padding-top: 32px;
  margin-top: 16px;
}
.related-reading__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* ------------------------------------------------------------------ */
/* Reveal-on-scroll                                                      */
/* ------------------------------------------------------------------ */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .hero-animate,
  .hero__bg img.is-ken-burns,
  .hero__glow,
  .hero__ember,
  .why-us__rotate,
  .why-us__blob,
  .why-us__twinkle,
  .why-us__shimmer,
  .eyebrow--light .ph-sparkle {
    animation: none !important;
  }
  .hero-animate {
    opacity: 1;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .gallery-slider__viewport {
    scroll-behavior: auto;
  }
}

/* ------------------------------------------------------------------ */
/* Responsive                                                           */
/* ------------------------------------------------------------------ */

@media (max-width: 1080px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .occasion-grid,
  .occasion-grid--cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .venue-listing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .quick-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .amenities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .search-bar {
    grid-template-columns: 1fr 1fr;
    row-gap: 14px;
  }
  .search-field {
    border-right: none;
    padding-left: 0;
  }
  .search-submit {
    grid-column: 1 / -1;
    margin-left: 0;
  }
  .venue-detail__body {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .booking-card {
    position: static;
  }
  .auth-split {
    grid-template-columns: 1fr;
  }
  .auth-visual {
    min-height: 260px;
  }
  .newsletter__form {
    min-width: 0;
    max-width: 100%;
  }
  .newsletter__signup {
    min-width: 0;
    max-width: 100%;
  }
  .why-us .section-head-center h2 {
    font-size: clamp(1.55rem, 4vw, 2.25rem);
  }
}

@media (max-width: 860px) {
  .primary-nav {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 998;
    background: #fff;
    padding: 24px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
  }
  .primary-nav.is-open {
    transform: translateX(0);
  }
  .primary-nav ul {
    flex-direction: column;
    gap: 4px;
  }
  .primary-nav a {
    display: block;
    padding: 12px 4px;
  }
  .primary-nav__actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 13px 12px;
  }
  .primary-nav__actions {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 10px;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--divider);
  }
  .primary-nav__actions .btn,
  .primary-nav__actions .btn-outline {
    flex: 1;
    width: auto;
    min-width: 0;
    justify-content: center;
    text-align: center;
    padding: 13px 12px;
    font-size: 0.88rem;
    white-space: normal;
  }
  .header-actions__link {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .site-branding {
    flex: 1;
    min-width: 0;
  }
  .grid-3,
  .stats-row,
  .stats-strip,
  .steps-grid,
  .tips-grid,
  .quick-facts,
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .venue-listing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gallery-desktop {
    display: none;
  }
  .gallery-slider {
    display: block;
  }
  .container--venue {
    padding-left: 24px;
    padding-right: 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .auth-form-wrap {
    padding: 40px 24px;
  }
  .auth-visual__content {
    padding: 32px 24px;
  }
  .why-us {
    padding: 64px 0;
  }
  .section {
    padding: 48px 0;
  }
  .tax-hero {
    min-height: 280px;
  }
  .tax-hero__content {
    padding: 48px 0;
  }
  .stats-row,
  .stats-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
  }
  .testimonial-band blockquote {
    font-size: clamp(1.15rem, 3.5vw, 1.5rem);
  }
  .related-reading .grid-3 {
    grid-template-columns: 1fr;
  }
  .related-reading__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .grid-3,
  .stats-row,
  .stats-strip,
  .steps-grid,
  .tips-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .quick-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .amenities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 16px;
  }
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .grid-4 .venue-card__body {
    padding: 12px;
  }
  .grid-4 .venue-card__title {
    font-size: 0.92rem;
  }
  .grid-4 .venue-card__meta,
  .grid-4 .venue-card .price-onwards {
    font-size: 0.72rem;
  }
  .grid-4 .price {
    font-size: 0.88rem;
  }
  .occasion-grid,
  .occasion-grid--cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .venue-listing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .venue-listing-grid .venue-card__body {
    padding: 12px;
  }
  .venue-listing-grid .venue-card__title {
    font-size: 0.92rem;
  }
  .venue-listing-grid .venue-card__meta,
  .venue-listing-grid .venue-card .price-onwards {
    font-size: 0.72rem;
  }
  .venue-listing-grid .price {
    font-size: 0.88rem;
  }
  .site-header .header-inner {
    padding: 12px 16px;
    gap: 10px;
  }
  .site-logo {
    height: 30px;
  }
  .header-actions {
    gap: 6px;
  }
  .header-actions .btn--sm {
    padding: 8px 12px;
    font-size: 0.78rem;
  }
  .hero__content {
    padding: 56px 0 32px;
  }
  .hero__search {
    padding-bottom: 40px;
  }
  .search-bar {
    grid-template-columns: 1fr;
    padding: 16px;
    row-gap: 0;
  }
  .search-field {
    border-right: none;
    border-bottom: 1px solid var(--divider);
    padding: 12px 0;
  }
  .search-field:first-child {
    padding-top: 0;
  }
  .search-field:last-of-type {
    border-bottom: none;
  }
  .search-submit {
    width: 100%;
    margin-top: 10px;
  }
  .newsletter .container,
  .cta-band .container {
    flex-direction: column;
    align-items: flex-start;
  }
  .newsletter__form {
    flex-direction: column;
    width: 100%;
    max-width: none;
  }
  .newsletter__signup {
    width: 100%;
    max-width: none;
  }
  .newsletter__form button {
    width: 100%;
  }
  .newsletter h2 {
    font-size: clamp(1.25rem, 4vw, 1.6rem);
  }
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .container--venue {
    padding-left: 16px;
    padding-right: 16px;
  }
  .venue-detail__body {
    gap: 32px;
    padding-bottom: 48px;
  }
  .booking-card {
    padding: 20px;
  }
  .section-head {
    margin-bottom: 20px;
  }
  .section-head .link-arrow {
    white-space: normal;
  }
  .feature-card {
    padding: 24px 20px;
  }
  .article-header,
  .article-hero,
  .article-body {
    padding-left: 16px;
    padding-right: 16px;
  }
  .article-body {
    font-size: 1rem;
    padding-bottom: 56px;
  }
  .article-body blockquote {
    padding: 20px;
    font-size: 1.05rem;
  }
  .dashboard-hero {
    padding: 36px 0 16px;
  }
  .dashboard-panel__head {
    flex-direction: column;
    align-items: stretch;
  }
  .dashboard-panel__head .btn {
    width: 100%;
    justify-content: center;
  }
  .occasion-grid,
  .occasion-grid--cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .occasion-tile {
    padding: 20px 12px;
  }
  .occasion-grid--cards .venue-card__body {
    padding: 12px;
  }
  .occasion-grid--cards .venue-card__title,
  .occasion-grid--cards .venue-card__body p {
    font-size: 0.78rem;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 16px;
    padding-right: 16px;
  }
  .pill-row .chip-light {
    padding: 7px 14px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .header-actions .btn--sm {
    padding: 8px 10px;
    font-size: 0.74rem;
  }
  .dashboard-tabs a {
    padding: 8px 14px;
    font-size: 0.82rem;
  }
  .cta-band h2 {
    font-size: clamp(1.15rem, 4vw, 1.5rem);
  }
  .stat .num {
    font-size: clamp(1.45rem, 6vw, 2rem);
  }
  .gallery__side {
    grid-template-columns: 1fr;
  }
  .step-card {
    padding: 22px 18px;
  }
  .contact-page {
    padding: 32px 0 56px;
  }
}

body.has-nav-open {
  overflow: hidden;
}

/* ------------------------------------------------------------------ */
/* Dashboard (partner account area)                                     */
/* ------------------------------------------------------------------ */

.dashboard-hero {
  padding: 48px 0 24px;
}
.dashboard-hero h1 {
  margin: 8px 0 10px;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}
.dashboard-wrap {
  padding-bottom: 72px;
}
.dashboard-tabs {
  display: flex;
  gap: 8px;
  margin: 28px 0 24px;
  flex-wrap: wrap;
}
.dashboard-tabs a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
}
.dashboard-tabs a.is-active {
  background: var(--pink);
  color: #fff;
}
.dashboard-tabs__count {
  min-width: 1.4rem;
  height: 1.4rem;
  padding: 0 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  font-size: 0.72rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.dashboard-tabs a:not(.is-active) .dashboard-tabs__count {
  background: rgba(18, 21, 63, 0.08);
}
.dashboard-panel {
  background: #fff;
  border: 1px solid var(--divider);
  border-radius: 18px;
  padding: 28px;
}
.dashboard-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.dashboard-panel__head h2 {
  margin: 0 0 6px;
  font-size: 1.25rem;
}
.dashboard-subheading {
  margin: 28px 0 14px;
  font-size: 1rem;
}
.dashboard-venue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.dashboard-venue-card {
  border: 1px solid var(--divider);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}
.dashboard-venue-card__image {
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.dashboard-venue-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dashboard-venue-card__body {
  padding: 16px;
}
.dashboard-venue-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.dashboard-venue-card__top h3 {
  margin: 0;
  font-size: 1rem;
}
.dashboard-venue-card__top a {
  color: inherit;
  text-decoration: none;
}
.dashboard-venue-card__meta {
  margin: 0 0 6px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 6px;
}
.dashboard-venue-card__price {
  margin: 10px 0 14px;
  font-weight: 700;
  color: var(--ink);
}
.dashboard-venue-card__price span {
  font-weight: 500;
  color: var(--ink-soft);
  font-size: 0.82rem;
}
.dashboard-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
}
.dashboard-badge--live,
.dashboard-badge--confirmed {
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
}
.dashboard-badge--pending {
  background: rgba(245, 158, 11, 0.14);
  color: #b45309;
}
.dashboard-badge--draft,
.dashboard-badge--cancelled {
  background: rgba(100, 116, 139, 0.12);
  color: #475569;
}
.dashboard-table-wrap {
  overflow-x: auto;
  margin-bottom: 8px;
}
.dashboard-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
}
.dashboard-table th,
.dashboard-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--divider);
  vertical-align: top;
}
.dashboard-table th {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}
.dashboard-table a {
  color: var(--pink);
  text-decoration: none;
  font-weight: 600;
}
.dashboard-empty {
  text-align: center;
  padding: 48px 20px;
}
.dashboard-empty i {
  font-size: 2.4rem;
  color: var(--pink);
  margin-bottom: 12px;
}
.dashboard-empty h3 {
  margin: 0 0 8px;
}
.booking-form {
  margin-bottom: 12px;
}
.booking-price-breakdown {
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--divider);
  font-size: 0.84rem;
}
.booking-price-breakdown__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  color: var(--ink-soft);
}
.booking-price-breakdown__row--total {
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px solid var(--divider);
  color: var(--ink);
  font-size: 0.9rem;
}
.booking-price-breakdown__hint {
  margin: 8px 0 0;
  font-size: 0.78rem;
  color: var(--ink-soft);
}
.price-big__amount {
  margin-right: 4px;
}

/* ------------------------------------------------------------------ */
/* Contact page                                                         */
/* ------------------------------------------------------------------ */

.contact-page {
  background: var(--surface);
  padding: 56px 0 80px;
}
.contact-page__intro {
  max-width: 42rem;
  margin-bottom: 40px;
}
.contact-page__intro h1 {
  margin: 10px 0 14px;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.12;
  font-family: "Poppins", sans-serif;
  color: var(--navy);
}
.contact-page__intro p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.65;
}
.contact-page__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}
.contact-page__form-card,
.contact-page__info-card {
  background: #fff;
  border: 1px solid var(--divider);
  border-radius: 22px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.contact-page__form-card .form-notice {
  margin-bottom: 20px;
}
.contact-page__form-card .btn--block {
  margin-top: 8px;
}
.contact-page__aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-page__photo {
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
}
.contact-page__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.contact-details {
  margin: 0;
}
.contact-details__item {
  padding: 18px 0;
  border-bottom: 1px solid var(--divider);
}
.contact-details__item:first-child {
  padding-top: 0;
}
.contact-details__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.contact-details dt {
  margin: 0 0 6px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 600;
}
.contact-details dd {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--ink);
}
.contact-details a {
  color: inherit;
  text-decoration: none;
}
.contact-details a:hover {
  color: var(--pink);
}

@media (max-width: 960px) {
  .contact-page__grid {
    grid-template-columns: 1fr;
  }
  .contact-page__photo {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 720px) {
  .contact-page {
    padding: 40px 0 64px;
  }
  .contact-page__form-card,
  .contact-page__info-card {
    padding: 24px 20px;
  }
  .contact-page__grid .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .dashboard-panel {
    padding: 20px 16px;
  }
  .dashboard-table th:nth-child(4),
  .dashboard-table td:nth-child(4),
  .dashboard-table th:nth-child(5),
  .dashboard-table td:nth-child(5) {
    display: none;
  }
}
