/*
Theme Name: Wink Photography
Theme URI: https://www.winkphoto.co.uk/
Author: Wink Photography
Description: A bold, conversion-focused theme for Wink Photography in Digbeth, Birmingham.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wink-photography
*/

:root {
  --ink: #151515;
  --soft-ink: #2a2a2a;
  --paper: #f6f1ea;
  --font-sans: "Raleway", "Helvetica Neue", Arial, sans-serif;
  --rose: #e88aa8;
  --sun: #f3c26b;
  --sky: #9ed3d7;
  --leaf: #4f8f7a;
  --shadow: rgba(21, 21, 21, 0.12);
  --shadow-strong: rgba(21, 21, 21, 0.22);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: radial-gradient(circle at top left, #fde7d6, transparent 55%),
    radial-gradient(circle at 20% 70%, rgba(158, 211, 215, 0.35), transparent 50%),
    linear-gradient(135deg, #fff, var(--paper));
  min-height: 100vh;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #000;
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  background: rgba(17, 17, 17, 0.96);
  color: #f8f5f0;
  border-bottom: 1px solid rgba(248, 245, 240, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo {
  width: 140px;
  max-width: 100%;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.nav-menu {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-menu-list {
  display: flex;
  gap: 2.1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-menu-list li {
  margin: 0;
  padding: 0 1rem;
}

.nav-menu a {
  position: relative;
}

.nav-caret {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  margin-left: 0.45rem;
  transition: transform 0.2s ease;
}

.has-dropdown:hover .nav-caret,
.has-dropdown:focus-within .nav-caret {
  transform: translateY(-2px) rotate(225deg);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 100%;
  height: 2px;
  background: var(--sun);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-menu a:hover::after,
.nav-menu a:focus::after {
  transform: scaleX(1);
}

.has-dropdown {
  position: relative;
}

.has-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}

.dropdown {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 0;
  min-width: 200px;
  list-style: none;
  padding: 0.75rem 0;
  margin: 0;
  border-radius: 16px;
  background: #181818;
  color: #f8f5f0;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(248, 245, 240, 0.14);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 20;
}

.dropdown a {
  display: block;
  padding: 0.75rem 1.4rem;
  font-weight: 700;
}

.dropdown a:hover,
.dropdown a:focus {
  background: rgba(243, 194, 107, 0.14);
}

.dropdown a::after {
  display: none;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown:hover {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-menu-toggle {
  display: none;
  align-items: center;
  gap: 0.65rem;
  background: transparent;
  border: 1px solid rgba(248, 245, 240, 0.35);
  color: #f8f5f0;
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.mobile-menu-toggle-label {
  font-size: 0.9rem;
}

.mobile-menu-toggle-bars {
  display: inline-block;
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
}

.mobile-menu-toggle-bars::before,
.mobile-menu-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.mobile-menu-toggle-bars::before {
  top: -6px;
}

.mobile-menu-toggle-bars::after {
  top: 6px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button-primary {
  background: #151515;
  color: #fff;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
}

.site-header .button-primary {
  background: var(--sun);
  color: #151515;
  border-color: var(--sun);
  box-shadow: none;
}

.button-primary:hover,
.button-primary:focus {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px var(--shadow-strong);
}

.site-header .button-primary:hover,
.site-header .button-primary:focus {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.button-ghost {
  border-color: currentColor;
  background: transparent;
}

.hero {
  padding: 4rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.hero-kicker {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: 700;
  color: var(--leaf);
}

.hero-title {
  font-family: var(--font-sans);
  font-size: clamp(2.6rem, 4vw, 4.4rem);
  line-height: 1.05;
  margin: 1rem 0;
}

.hero-copy {
  font-size: 1.1rem;
  color: var(--soft-ink);
  max-width: 36rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.session-mobile-cta {
  display: none;
}

.hero-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 26px 40px var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -30%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(232, 138, 168, 0.4), transparent 70%);
}

.hero-card h3 {
  margin-top: 0;
  font-family: var(--font-sans);
  font-size: 1.6rem;
}

.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 26px 40px var(--shadow);
  background: linear-gradient(135deg, rgba(232, 138, 168, 0.35), rgba(158, 211, 215, 0.35));
  aspect-ratio: 1 / 1;
  display: grid;
  align-items: stretch;
}

.hero-image .carousel-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.75rem;
  font-weight: 700;
}

.section {
  padding: 3.25rem 0;
}

section[id] {
  scroll-margin-top: 120px;
}

.section-title {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0 0 1.5rem;
}

.section-lead {
  color: var(--soft-ink);
  max-width: 40rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.75rem;
}

.card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: 0 18px 30px var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: grid;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(243, 194, 107, 0.35), transparent 70%);
}

.card h3 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.4rem;
}

.card p {
  margin: 0;
  color: var(--soft-ink);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(79, 143, 122, 0.12);
  color: var(--leaf);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.85rem;
}

.session-hero .badge {
  background: #151515;
  color: var(--sun);
  border: 2px solid var(--sun);
  box-shadow: 0 10px 20px rgba(21, 21, 21, 0.22);
}

.session-hero > .carousel > .badge {
  justify-self: center;
  padding: 0.28rem 0.75rem;
  margin: 0 auto 0.15rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
}

.session-hero > .feature-block {
  text-align: center;
}

.session-hero > .feature-block .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.session-hero > .feature-block .feature-list {
  justify-items: center;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.split-equal {
  align-items: stretch;
}

.split-equal > * {
  height: 100%;
}

.split-equal > .feature-block {
  display: flex;
  flex-direction: column;
}

.split-equal > .feature-block .hero-actions {
  margin-top: auto;
  justify-content: center;
}

.feature-block {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 24px 40px var(--shadow);
}

.feature-block-center {
  text-align: center;
}

.feature-block-center .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.feature-block-center .feature-list {
  justify-items: center;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.8rem;
  color: var(--soft-ink);
}

.feature-list-bullets {
  list-style: disc;
  padding-left: 1.25rem;
  display: block;
}

.feature-list-bullets li + li {
  margin-top: 0.8rem;
}

.carousel {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 24px 40px var(--shadow);
  display: grid;
  gap: 1.5rem;
  overflow: hidden;
}

.carousel-slide {
  display: none;
  margin: 0;
  color: var(--soft-ink);
  font-size: 1.05rem;
}

.carousel-slide.is-active {
  display: grid;
  gap: 0.9rem;
}

.carousel-dots {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(21, 21, 21, 0.2);
  cursor: pointer;
  padding: 0;
}

.carousel-dot.is-active {
  background: var(--leaf);
}

.carousel-title {
  font-family: var(--font-sans);
  font-size: 1.6rem;
  margin: 0;
}

.carousel-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(232, 138, 168, 0.35), rgba(158, 211, 215, 0.35));
  overflow: hidden;
  position: relative;
}

.carousel-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 18px;
}

.carousel-placeholder {
  display: grid;
  place-items: center;
  height: 100%;
  font-weight: 700;
  color: rgba(21, 21, 21, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
}

.carousel-caption {
  margin: 0;
  color: var(--soft-ink);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.testimonial {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.8rem;
  box-shadow: 0 16px 26px var(--shadow);
  display: grid;
  gap: 1rem;
}

.testimonial p {
  margin: 0;
  color: var(--soft-ink);
}

.testimonial span {
  font-weight: 700;
  font-size: 0.9rem;
}

.home-testimonials-section {
  background: linear-gradient(135deg, rgba(158, 211, 215, 0.2), rgba(243, 194, 107, 0.16));
}

.cta-band {
  background: linear-gradient(120deg, rgba(232, 138, 168, 0.18), rgba(158, 211, 215, 0.4));
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: grid;
  gap: 1rem;
  align-items: center;
}

.cta-band-center {
  text-align: center;
  justify-items: center;
}

.cta-band-center .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.cta-band-center .hero-actions {
  justify-content: center;
}

.home-booking-grid {
  margin-top: 2rem;
}

.home-package-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.home-package-card .home-package-link {
  width: 100%;
  justify-content: center;
  white-space: nowrap;
  margin-top: 0;
}

.home-package-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 360px;
}

.home-package-card .home-package-meta {
  margin-top: auto;
}

.home-package-card h3 {
  font-size: 1.25rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.home-package-card-full {
  width: 100%;
  max-width: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.home-package-card-full .home-package-meta {
  margin-top: auto;
}

.home-package-card-span-2 {
  grid-column: span 2;
}

.home-package-card-highlight {
  background: linear-gradient(135deg, rgba(243, 194, 107, 0.26), rgba(158, 211, 215, 0.22));
  border: 1px solid rgba(79, 143, 122, 0.28);
  box-shadow: 0 20px 34px rgba(21, 21, 21, 0.14);
}

.home-booking-card {
  min-height: 100%;
}

.home-booking-card .button {
  margin-top: auto;
  width: fit-content;
}

.backdrop-option-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.backdrop-option-card {
  text-align: center;
  justify-items: center;
  min-height: 0;
  padding: 1.25rem 1rem;
  gap: 0.75rem;
}

.backdrop-option-card h3 {
  margin: 0;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.backdrop-option-swatch {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #ddd;
}

.backdrop-option-card-blue .backdrop-option-swatch {
  background: #6fa8dc;
}

.backdrop-option-card-jungle .backdrop-option-swatch {
  background: linear-gradient(135deg, #87b66b, #4f8f7a);
}

.backdrop-option-card-pink .backdrop-option-swatch {
  background: #ee9dbd;
}

.backdrop-option-card-white .backdrop-option-swatch {
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.contact-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: 0 18px 30px var(--shadow);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.6rem;
  color: var(--soft-ink);
}

.contact-map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 30px var(--shadow);
}

.contact-map {
  width: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form-field {
  display: grid;
  gap: 0.45rem;
}

.contact-form-field-full {
  grid-column: 1 / -1;
}

.contact-form-field label {
  font-weight: 700;
  font-size: 0.95rem;
}

.contact-form-field input,
.contact-form-field textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
  font: inherit;
  background: #fff;
  color: var(--ink);
}

.contact-form-field input:focus,
.contact-form-field textarea:focus {
  outline: none;
  border-color: var(--leaf);
  box-shadow: 0 0 0 3px rgba(79, 143, 122, 0.16);
}

.contact-form-alert {
  margin: 0 0 1.25rem;
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  font-weight: 600;
}

.contact-form-alert.is-success {
  background: rgba(79, 143, 122, 0.14);
  color: #184d3d;
}

.contact-form-alert.is-error {
  background: rgba(184, 35, 24, 0.12);
  color: #7a251d;
}

.faq-accordion {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 20px rgba(21, 21, 21, 0.06);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  line-height: 1;
  color: var(--leaf);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 1.25rem 1rem;
  color: var(--soft-ink);
}

.site-footer {
  padding: 3rem 0;
  background: #111;
  color: #f8f5f0;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: start;
  text-align: center;
  justify-content: center;
  justify-items: center;
}

.footer-grid a {
  color: inherit;
}

.footer-title {
  font-family: var(--font-sans);
  font-size: 1.2rem;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(248, 245, 240, 0.28);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.footer-social-link svg {
  width: 17px;
  height: 17px;
  display: block;
}

.footer-social-link:hover,
.footer-social-link:focus {
  background: rgba(248, 245, 240, 0.12);
  border-color: rgba(248, 245, 240, 0.52);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.home .hero-grid > .reveal:first-child {
  display: grid;
  gap: 5rem;
  align-content: center;
}

body.home .hero-grid > .reveal:first-child .hero-title,
body.home .hero-grid > .reveal:first-child .hero-copy {
  margin: 0;
}

body.home .hero-grid > .reveal:first-child .hero-actions {
  margin-top: 2rem;
}

@media (max-width: 860px) {
  .mobile-menu-toggle {
    display: inline-flex;
  }

  .header-cta {
    display: none;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 1rem;
    right: 1rem;
    background: #181818;
    border: 1px solid rgba(248, 245, 240, 0.16);
    border-radius: 16px;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.35);
    padding: 1rem 0.9rem;
    z-index: 30;
  }

  .nav-menu.is-open {
    display: block;
  }

  .nav-menu-list {
    display: grid;
    gap: 0.5rem;
  }

  .nav-menu-list li {
    padding: 0;
  }

  .nav-menu a {
    display: block;
    padding: 0.55rem 0.3rem;
  }

  .nav-menu a::after {
    display: none;
  }

  .has-dropdown::after {
    display: none;
  }

  .nav-caret {
    display: none;
  }

  .dropdown {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    border: 0;
    box-shadow: none;
    background: transparent;
    padding: 0.2rem 0 0.2rem 1rem;
    margin-top: 0.2rem;
  }

  .dropdown a {
    padding: 0.45rem 0.3rem;
    font-weight: 600;
  }

  .mobile-nav-open {
    overflow: hidden;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 3rem 0;
  }

  .hero {
    padding-top: 3rem;
  }

  .cta-band {
    padding: 2.25rem;
  }

  .home-booking-card .button {
    width: 100%;
  }

  .home-package-grid {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 1rem;
    padding: 0.25rem 0 0.4rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .home-package-card {
    flex: 0 0 100%;
    min-height: 0;
    width: auto;
    max-width: none;
    scroll-snap-align: start;
  }

  .home-package-card-span-2 {
    grid-column: auto;
    flex-basis: 100%;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-map {
    min-height: 300px;
  }

  body.home .hero {
    padding: 2.25rem 0 2rem;
  }

  body.home .hero-grid > .hero-image {
    order: -1;
  }

  body.home .hero-grid > .reveal:first-child {
    gap: 1.1rem;
    text-align: center;
    justify-items: center;
  }

  body.home .hero-copy {
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
  }

  body.home .hero-actions {
    justify-content: center;
    margin-top: 0.25rem;
  }

  .session-hero > .carousel {
    order: -1;
  }

  .session-hero .session-mobile-cta {
    display: flex;
    justify-content: center;
    margin-top: 0.25rem;
  }

  .session-hero .session-mobile-cta .button {
    width: 100%;
    justify-content: center;
  }

  .home-packages-title {
    text-align: center;
  }

  .home-packages-section,
  #packages {
    padding-bottom: 1.75rem;
  }

  .home-expect-section {
    padding-top: 1.75rem;
  }
}

@media (max-width: 1200px) {
  .home-package-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

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

  .home-package-card .home-package-link {
    width: 100%;
    white-space: normal;
    text-align: center;
    justify-content: center;
  }

  .home-package-card-span-2 {
    grid-column: span 2;
  }
}

.wp-block {
  max-width: var(--max);
}

body.home section#contact {
  padding-top: 1.75rem;
}

@media (min-width: 721px) {
  .home-expect-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .home-book-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.facebook-booking-hero {
  position: relative;
  overflow: hidden;
}

.facebook-booking-hero-tight {
  padding-bottom: 1rem;
}

.facebook-booking-form-tight {
  padding-top: 1rem;
}

.facebook-booking-intro {
  text-align: center;
  justify-items: center;
}

.facebook-booking-intro .section-lead {
  margin-left: auto;
  margin-right: auto;
  max-width: 42rem;
}

.facebook-booking-intro .hero-actions {
  justify-content: center;
}

.facebook-confetti {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
}

.facebook-confetti-piece {
  position: absolute;
  top: -18px;
  width: 9px;
  height: 16px;
  opacity: 0.95;
  border-radius: 3px;
  animation-name: facebookConfettiFall;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

.facebook-confetti.is-fading {
  transition: opacity 0.7s ease;
  opacity: 0;
}

@keyframes facebookConfettiFall {
  0% {
    transform: translate3d(0, -12px, 0) rotate(0deg);
  }
  100% {
    transform: translate3d(0, 115vh, 0) rotate(560deg);
  }
}

@media (max-width: 720px) {
  .home-package-card {
    min-height: 0;
  }
}
