* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --bg: #080706;
  --panel: #11100f;
  --text: #f8f3e9;
  --muted: #aaa398;
  --gold: #d9b55f;
  --gold-light: #e1c98f;
  --light: #f4d78d;
  --cream: #f6f2e8;
  --burgundy: #541924;
  --line: rgba(255, 255, 255, .08);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.loading {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
}

.glow-section {
  position: relative;
  overflow: hidden;
}

.continuous-glow {
  position: absolute;
  z-index: 0;
  width: 175%;
  height: 105%;
  border-radius: 46% 54% 59% 41% / 55% 42% 58% 45%;
  background: radial-gradient(ellipse at center,
      rgba(217, 181, 95, .34),
      rgba(217, 181, 95, .14) 42%,
      rgba(217, 181, 95, .045) 61%,
      transparent 76%);
  filter: blur(22px);
  pointer-events: none;
}

.eyebrow {
  margin-bottom: 24px;
  color: #ffd66d;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}

h1,
h2 {
  line-height: .97;
  letter-spacing: -.055em;
}

h1 span,
h2 span {
  display: block;
  color: var(--light);
  font-style: italic;
}

/* Loading screen */

.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-content: center;
  background: #080706;
  text-align: center;
  transition: opacity .55s ease, visibility .55s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader strong {
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: .15em;
}

.loader strong span {
  color: var(--gold);
}

.loader-flash {
  width: 12px;
  height: 12px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--light);
  box-shadow: 0 0 16px var(--light), 0 0 60px var(--gold);
  animation: loaderPulse .8s ease;
}

/* Header */

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 0 4vw;
  background: rgba(8, 7, 6, .93);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.logo {
  position: relative;
  flex-shrink: 0;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: .12em;
  transition: .3s;
}

.logo:hover {
  transform: translateY(-2px);
}

.logo span,
.footer-logo span {
  color: var(--gold);
  transition: .3s;
}

.logo:hover span {
  color: var(--light);
  text-shadow: 0 0 18px rgba(217, 181, 95, .5);
}

.logo i,
.footer-logo i {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--light);
  box-shadow: 0 0 14px var(--gold);
  animation: logoFlash 5s infinite;
}

.logo i {
  top: -4px;
  right: -11px;
}

nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

nav a {
  position: relative;
  min-width: 155px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  font-size: .86rem;
  font-weight: 900;
  transition: .3s;
}

nav a:hover {
  border-color: var(--gold);
  background: rgba(217, 181, 95, .1);
}

nav a::before,
.gold-button::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -45%;
  width: 28%;
  height: 300%;
  background: rgba(255, 255, 255, .42);
  transform: rotate(24deg);
  transition: .55s;
}

nav a:hover,
nav a.active {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(217, 181, 95, .3);
}

nav a:hover::before,
.gold-button:hover::before {
  left: 125%;
}

.menu-button {
  display: none;
}

/* Buttons */

.gold-button {
  position: relative;
  min-width: 245px;
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 32px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--light), var(--gold));
  color: #0a0805;
  font-weight: 900;
  box-shadow: 0 13px 34px rgba(217, 181, 95, .18);
  transition: .3s;
}

.gold-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 21px 52px rgba(217, 181, 95, .32);
}

.outline-button {
  background: rgba(255, 255, 255, .025);
  color: var(--text);
  border-color: rgba(217, 181, 95, .5);
}

.outline-button:hover {
  background: var(--light);
  color: #0a0805;
}

/* Hero */

.hero {
  min-height: auto;
  padding: 145px 5vw 25px;
  text-align: center;
  background: linear-gradient(#11100f, #080706);
}

.hero-glow {
  top: 15%;
  left: -38%;
  transform: rotate(-4deg);
}

.background-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .017) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .017) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, black, transparent 96%);
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 1080px;
  margin: auto;
}

h1 {
  font-size: clamp(4rem, 7.5vw, 7.8rem);
}

h1 span b {
  font-weight: 950;
}

.hero-text {
  max-width: 790px;
  margin: 34px auto 0;
  color: var(--text);
  font-size: 1.2rem;
  line-height: 1.75;
}

.hero-text strong {
  color: white;
  font-weight: 900;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 38px;
}

/* Pod showcase */

.pod-showcase {
  position: relative;
  z-index: 4;
  width: min(100%, 1450px);
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  align-items: center;
  gap: 95px;
  margin: 20px auto -15px;
}

.showcase-column {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.events-column {
  text-align: right;
}

.included-column {
  text-align: left;
}

.column-heading {
  margin-bottom: 12px;
  color: #ffd66d;
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.event-option,
.included-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: none;
  text-align: inherit;
  transition: .3s;
}

.event-option {
  cursor: pointer;
}

.events-column .event-option {
  justify-content: flex-end;
}

.event-option span,
.included-item span {
  color: var(--gold);
  font-size: .82rem;
}

.event-option strong,
.included-item strong {
  font-size: 1.12rem;
}

.event-option:hover,
.event-option.active,
.included-item:hover {
  color: var(--light);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.pod-stage {
  position: relative;
  height: 650px;
}

.outer-ring,
.inner-ring {
  position: absolute;
  left: 50%;
  border-radius: 50%;
  transform: translateX(-50%);
}

.outer-ring {
  top: 0;
  width: 640px;
  height: 640px;
  border: 3px solid var(--gold);
  box-shadow: 0 0 34px rgba(217, 181, 95, .42),
    inset 0 0 35px rgba(217, 181, 95, .13);
}

.inner-ring {
  top: 52px;
  width: 536px;
  height: 536px;
  border: 1px solid rgba(244, 215, 141, .32);
}

.pod {
  position: absolute;
  top: 54px;
  left: 50%;
  z-index: 6;
  width: 345px;
  height: 485px;
  padding: 58px 17px 17px;
  border: 1px solid rgba(255, 255, 255, .23);
  border-radius: 48px;
  background: linear-gradient(145deg, #302d29, #080706);
  box-shadow: 0 55px 120px rgba(0, 0, 0, .78),
    0 0 70px rgba(217, 181, 95, .2);
  transform: translateX(-50%);
  cursor: pointer;
  transition: .3s;
}

.pod:hover {
  filter: brightness(1.1);
  transform: translateX(-50%) scale(1.015);
}

.camera {
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 10;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border: 3px solid var(--gold);
  border-radius: 50%;
  background: #030303;
  transform: translateX(-50%);
  box-shadow: 0 0 13px rgba(217, 181, 95, .4);
}

.camera i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #172c3a;
  box-shadow: inset 0 0 5px #65a3ca;
}

.camera b {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: white;
}

.pod-screen {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 33px;
  background: radial-gradient(circle at top, rgba(217, 181, 95, .32), transparent 64%),
    #090806;
}

.countdown {
  position: absolute;
  z-index: 6;
  width: 95%;
  color: #ffd66d;
  font-size: clamp(4.5rem, 8vw, 7.2rem);
  font-weight: 950;
  line-height: .9;
  text-align: center;
}

.screen-content {
  display: none;
  width: 88%;
  text-align: center;
}

.screen-content.active {
  display: grid;
  justify-items: center;
}

.screen-content small {
  color: #ffd66d;
  font-size: .8rem;
  font-weight: 950;
  letter-spacing: .2em;
}

.screen-content strong {
  max-width: 100%;
  margin-top: 18px;
  color: #ffd66d;
  font-size: 2.3rem;
  line-height: 1.05;
}

.screen-content span {
  margin-top: 18px;
  color: var(--light);
  font-size: .9rem;
}

.screen-flash {
  position: absolute;
  inset: 0;
  z-index: 9;
  border-radius: 48px;
  background: rgba(255, 244, 204, .84);
  opacity: 0;
  pointer-events: none;
}

.screen-flash.active {
  animation: screenFlash .65s ease;
}

.pod-shadow {
  position: absolute;
  left: 50%;
  bottom: 35px;
  width: 390px;
  height: 48px;
  border-radius: 50%;
  background: rgba(217, 181, 95, .18);
  filter: blur(25px);
  transform: translateX(-50%);
}

/* Polaroid */

.polaroid {
  position: absolute;
  z-index: 10;
  top: 310px;
  left: 50%;
  width: 190px;
  padding: 11px 11px 15px;
  border-radius: 3px;
  background: #f6f0e4;
  color: #18120a;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 22px 58px rgba(0, 0, 0, .48);
}

.polaroid.active {
  animation: polaroidDrop 2.8s ease;
}

.polaroid-image {
  height: 130px;
  display: grid;
  place-items: center;
  padding: 12px;
  background: radial-gradient(circle at top, rgba(217, 181, 95, .55), transparent 58%),
    #17120d;
  color: var(--light);
  text-align: center;
}

.polaroid p {
  margin-top: 10px;
  font-size: .74rem;
  text-align: center;
}

/* Section trim */

.gold-trim {
  width: min(96%, 1400px);
  height: 2px;
  margin: auto;
  background: linear-gradient(90deg,
      transparent,
      rgba(217, 181, 95, .2),
      var(--gold),
      rgba(217, 181, 95, .2),
      transparent);
  box-shadow: 0 0 22px rgba(217, 181, 95, .25);
}

/* Shared sections */

.packages,
.included-section,
.tom-section {
  padding: 115px 7vw;
}

.section-heading {
  position: relative;
  z-index: 2;
  max-width: 940px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-heading h2,
.left-heading h2,
.closing-section h2,
.tom-section h2 {
  font-size: clamp(3.2rem, 6vw, 6rem);
}

.section-heading>p:last-child {
  max-width: 690px;
  margin: 25px auto 0;
  color: var(--text);
  font-size: 1.08rem;
}

/* Packages */

.packages-glow {
  top: -3%;
  left: -38%;
  transform: rotate(4deg);
}

.package-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 1160px;
  margin: auto;
}

.package-card {
  position: relative;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  padding: 42px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(17, 16, 15, .92);
  transition: .4s;
}

.package-card:hover {
  transform: translateY(-8px);
  border-color: rgba(217, 181, 95, .5);
  box-shadow: 0 32px 75px rgba(0, 0, 0, .42);
}

.signature-card {
  border-color: rgba(217, 181, 95, .48);
}

.burgundy-light {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right,
      rgba(84, 25, 36, .65),
      transparent 58%);
}

.popular-label {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--gold);
  color: #0a0805;
  font-size: .68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.package-label,
.package-card h3,
.package-description,
.price,
.package-card ul,
.package-card>a,
.mini-rope {
  position: relative;
  z-index: 2;
}

.package-label {
  color: var(--gold);
  font-size: .75rem;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.package-card h3 {
  margin-top: 15px;
  font-size: 3rem;
}

.package-description {
  margin-top: 15px;
  color: var(--muted);
}

.price {
  margin: 34px 0 22px;
}

.price small {
  display: block;
  color: var(--muted);
}

.price strong {
  font-size: 4.2rem;
}

.package-card ul {
  list-style: none;
  margin-bottom: 30px;
}

.package-card li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.package-card li b {
  color: var(--gold);
}

.package-card .gold-button {
  width: 100%;
  margin-top: auto;
}

.mini-rope {
  width: 150px;
  display: flex;
  align-items: flex-start;
  margin-top: 17px;
}

.mini-rope i {
  width: 9px;
  height: 23px;
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(90deg, #8f6a24, var(--light), #8f6a24);
}

.mini-rope span {
  flex: 1;
  height: 13px;
  border-bottom: 6px solid var(--burgundy);
  border-radius: 0 0 50% 50%;
}

.bespoke-panel {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  margin: 24px auto 0;
  padding: 40px 42px;
  border: 1px solid rgba(217, 181, 95, .25);
  border-radius: 22px;
  background: rgba(17, 16, 15, .78);
}

.bespoke-panel h3 {
  font-size: 2rem;
}

.bespoke-panel p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 10px;
  color: var(--muted);
}

/* Included */

.included-section {
  min-height: 750px;
}

.included-glow {
  top: -5%;
  left: -28%;
  transform: rotate(-5deg);
}

.left-heading {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.benefit-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 60px;
}

.benefit-grid article {
  min-height: 285px;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: rgba(14, 13, 12, .84);
  transition: .35s;
}

.benefit-grid article:hover {
  transform: translateY(-7px);
  border-color: rgba(217, 181, 95, .5);
}

.benefit-grid article>span {
  color: var(--gold);
  font-size: .75rem;
}

.benefit-grid h3 {
  margin-top: 90px;
  font-size: 1.8rem;
}

.benefit-grid p {
  margin-top: 12px;
  color: var(--muted);
}

/* FAQ and contact */

.closing-section {
  min-height: 750px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.closing-glow {
  top: -4%;
  left: -38%;
  transform: rotate(5deg);
}

.faq-panel,
.contact-panel {
  position: relative;
  z-index: 2;
  padding: 100px 6vw;
}

.faq-panel {
  background: rgba(12, 11, 10, .7);
}

.faq-list {
  margin-top: 45px;
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 0;
  list-style: none;
  transition: .25s;
}

.faq-list summary:hover {
  padding-left: 8px;
  color: var(--light);
}

.faq-list summary span {
  color: var(--gold);
  font-size: 1.4rem;
  transition: .3s;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  padding: 0 0 25px;
  color: var(--muted);
}

.contact-panel {
  display: grid;
  place-content: center;
  text-align: center;
}

.contact-panel>p:not(.eyebrow) {
  max-width: 540px;
  margin: 25px auto 30px;
  color: var(--text);
  font-size: 1.07rem;
}

/* Tom */

.tom-section {
  min-height: 720px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: 90px;
}

.tom-glow {
  top: -5%;
  left: -45%;
  transform: rotate(-5deg);
}

.tom-photo-wrap {
  position: relative;
  z-index: 2;
  width: min(100%, 430px);
  aspect-ratio: 1;
  justify-self: center;
  padding: 4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--light), var(--gold));
  box-shadow: 0 0 58px rgba(217, 181, 95, .25);
  transition: .4s;
}

.tom-photo-wrap:hover {
  box-shadow: 0 0 80px rgba(217, 181, 95, .42);
}

.tom-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 50%;
  filter: brightness(.88) contrast(1.07);
}

.tom-copy {
  position: relative;
  z-index: 2;
}

.tom-copy blockquote {
  max-width: 710px;
  margin-top: 32px;
}

.tom-copy blockquote p {
  margin-top: 17px;
  color: var(--muted);
  font-size: 1.04rem;
}

.signature {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}

.signature strong {
  color: var(--light);
  font-size: 2rem;
  font-style: italic;
}

.signature span {
  color: var(--muted);
  font-size: .84rem;
}

/* Footer */

footer {
  min-height: 620px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 100px 6vw 38px;
  text-align: center;
  border-top: 1px solid var(--line);
}

.footer-glow {
  bottom: -28%;
  left: -38%;
  height: 100%;
}

.footer-logo,
footer>p,
footer>.gold-button,
.footer-bottom {
  position: relative;
  z-index: 2;
}

.footer-logo {
  position: relative;
  display: inline-block;
  font-size: clamp(3.2rem, 7.5vw, 7.4rem);
  font-weight: 950;
  letter-spacing: -.05em;
}

.footer-logo i {
  top: 8px;
  right: -18px;
}

footer>p {
  margin-top: 13px;
  font-size: 1.4rem;
}

footer>.gold-button {
  margin-top: 34px;
}

.footer-bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: auto;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .82rem;
}

/* Easter egg */

.easter-egg {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  padding: 12px 17px;
  border: 1px solid rgba(217, 181, 95, .35);
  border-radius: 999px;
  background: #11100f;
  color: var(--light);
  font-size: .78rem;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: .35s;
}

.easter-egg.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animations */

@keyframes loaderPulse {
  0% {
    opacity: 0;
    transform: scale(.4);
  }

  55% {
    opacity: 1;
    transform: scale(1.5);
  }

  100% {
    opacity: .8;
    transform: scale(1);
  }
}

@keyframes logoFlash {

  0%,
  86%,
  100% {
    opacity: .25;
    transform: scale(.6);
  }

  89% {
    opacity: 1;
    transform: scale(1.8);
  }
}

@keyframes screenFlash {

  0%,
  100% {
    opacity: 0;
  }

  25% {
    opacity: .95;
  }
}

@keyframes polaroidDrop {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(-30px) rotate(-4deg) scale(.75);
  }

  25% {
    opacity: 1;
    transform: translateX(-50%) translateY(120px) rotate(4deg) scale(1);
  }

  75% {
    opacity: 1;
    transform: translateX(-50%) translateY(130px) rotate(3deg) scale(1);
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(195px) rotate(8deg) scale(.92);
  }
}

/* Tablet */

@media (max-width: 1150px) {

  .header {
    gap: 20px;
  }

  nav {
    gap: 8px;
  }

  nav a {
    min-width: 110px;
    padding: 0 14px;
  }

  .pod-showcase {
    gap: 35px;
  }

  .outer-ring {
    width: 570px;
    height: 570px;
    top: 35px;
  }

  .inner-ring {
    width: 480px;
    height: 480px;
    top: 80px;
  }
}

/* Mobile */

@media (max-width: 900px) {

  .header {
    min-height: 78px;
  }

  .menu-button {
    width: 48px;
    height: 48px;
    display: grid;
    place-content: center;
    gap: 7px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    background: transparent;
  }

  .menu-button span {
    width: 20px;
    height: 2px;
    background: var(--gold);
  }

  nav {
    position: absolute;
    top: 78px;
    right: 4vw;
    left: 4vw;
    display: grid;
    gap: 9px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(8, 7, 6, .98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: .3s;
  }

  nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  nav a {
    width: 100%;
    min-height: 50px;
  }

  .pod-showcase {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .showcase-column {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
  }

  .column-heading {
    grid-column: 1/-1;
  }

  .event-option,
  .included-item,
  .events-column .event-option {
    justify-content: center;
    flex-direction: column;
    gap: 5px;
  }

  .events-column {
    order: 1;
  }

  .pod-stage {
    order: 2;
  }

  .included-column {
    order: 3;
  }

  .package-grid,
  .closing-section,
  .tom-section {
    grid-template-columns: 1fr;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bespoke-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .tom-photo-wrap {
    width: min(75%, 390px);
  }
}

@media (max-width: 650px) {

  .header {
    padding: 0 5vw;
  }

  .logo {
    font-size: .88rem;
  }

  .hero {
    padding: 115px 5vw 25px;
  }

  .eyebrow {
    font-size: .78rem;
    line-height: 1.6;
  }

  h1 {
    font-size: clamp(3.2rem, 15vw, 5rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .gold-button {
    width: 100%;
  }

  .showcase-column {
    grid-template-columns: repeat(2, 1fr);
  }

  .pod-stage {
    height: 515px;
    transform: scale(.72);
    transform-origin: top center;
    margin-bottom: -145px;
  }

  .packages,
  .included-section,
  .tom-section {
    padding: 88px 6vw;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .package-card {
    min-height: auto;
    padding: 31px;
  }

  .bespoke-panel {
    padding: 31px;
  }

  .bespoke-panel .gold-button {
    width: 100%;
  }

  .faq-panel,
  .contact-panel {
    padding: 82px 7vw;
  }

  footer {
    min-height: 540px;
  }

  .footer-bottom {
    align-items: center;
    flex-direction: column;
  }
}

/* =====================================================
   FINAL POLISH / SINGLE PACKAGE LAYOUT
===================================================== */

/* Active navigation */

nav a.active {
  color: #080706;
  border-color: var(--light);
  background: linear-gradient(135deg, #f8dfa0, var(--gold));
  box-shadow: 0 0 0 1px rgba(244, 215, 141, .18),
    0 12px 34px rgba(217, 181, 95, .28),
    0 0 30px rgba(217, 181, 95, .18);
}

/* Say cheese */

/* Keeps the big 3 / 2 / 1 countdown, but makes SAY CHEESE fit properly. */

.countdown.say-cheese {
  width: 86%;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  line-height: 1;
  letter-spacing: -.035em;
  white-space: nowrap;
}

/* Single digital pod package */

/* We only have one package now, so centre it instead of leaving a fake second column. */

.package-grid {
  grid-template-columns: minmax(0, 650px);
  justify-content: center;
  max-width: 650px;
}

.package-card {
  width: 100%;
  min-height: 640px;
  padding: 46px 48px;
  border-color: rgba(217, 181, 95, .2);
  background: radial-gradient(circle at 85% 5%, rgba(217, 181, 95, .09), transparent 34%),
    rgba(17, 16, 15, .94);
}

.package-card h3 {
  font-size: clamp(2.8rem, 5vw, 3.7rem);
}

.price strong {
  font-size: clamp(4rem, 7vw, 5.3rem);
}

/* Trust strip */

.trust-strip {
  position: relative;
  z-index: 2;
  width: min(100% - 10vw, 1200px);
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin: 0 auto;
  padding: 28px 0;
  color: var(--text);
  text-align: center;
}

.trust-strip span {
  font-size: .82rem;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.trust-strip i {
  color: var(--gold);
  font-size: .7rem;
  font-style: normal;
  opacity: .8;
  text-shadow: 0 0 14px rgba(217, 181, 95, .45);
}

/* Meet Tom */

.tom-section {
  min-height: 720px;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(55px, 7vw, 110px);
}

.tom-photo-wrap {
  width: min(100%, 400px);
  box-shadow: 0 0 0 1px rgba(244, 215, 141, .12),
    0 0 65px rgba(217, 181, 95, .22);
}

.tom-copy {
  max-width: 760px;
}

.tom-copy h2 {
  font-size: clamp(3rem, 5.2vw, 5.5rem);
}

.tom-copy blockquote {
  padding-left: 24px;
  border-left: 1px solid rgba(217, 181, 95, .28);
}

.tom-copy blockquote p {
  font-size: 1rem;
  line-height: 1.75;
}

/* FAQ */

/* FAQ now owns the entire section instead of sharing half the screen with the enquiry panel. */

.faq-section {
  position: relative;
  min-height: 760px;
  padding: 115px 7vw;
  background: linear-gradient(180deg, rgba(17, 16, 15, .55), rgba(8, 7, 6, .2));
}

.faq-section h2 {
  font-size: clamp(3.2rem, 6vw, 6rem);
}

.faq-section .faq-panel {
  width: min(100%, 1040px);
  margin: 0 auto;
  padding: 0;
  background: transparent;
}

.faq-section .faq-list {
  margin-top: 58px;
}

.faq-section .faq-list details {
  background: rgba(255, 255, 255, .012);
  transition: background .25s ease, border-color .25s ease;
}

.faq-section .faq-list details[open] {
  background: rgba(217, 181, 95, .025);
}

.faq-section .faq-list summary {
  padding: 28px 4px;
  font-size: 1.05rem;
  font-weight: 750;
}

.faq-section .faq-list details p {
  max-width: 830px;
  padding: 0 4px 28px;
  line-height: 1.75;
}

/* Final enquiry CTA */

/* This is deliberately much more dramatic than FAQ. FAQ removes doubts. This section asks for the booking. */

.contact-section {
  position: relative;
  min-height: 680px;
  display: grid;
  place-items: center;
  padding: 120px 7vw;
  isolation: isolate;
  background: radial-gradient(circle at 50% 50%, rgba(217, 181, 95, .09), transparent 38%),
    linear-gradient(180deg, #080706, #0c0a08);
}

.contact-glow {
  top: -7%;
  left: -38%;
  height: 115%;
  transform: rotate(-4deg);
  opacity: .85;
}

/* Very subtle halo/ring. Gives the CTA some depth without looking nightclub-y. */

.contact-section::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: min(82vw, 900px);
  height: min(82vw, 900px);
  border: 1px solid rgba(217, 181, 95, .08);
  border-radius: 50%;
  pointer-events: none;
}

.contact-section .contact-panel {
  width: min(100%, 900px);
  padding: 0;
}

.contact-section h2 {
  font-size: clamp(4rem, 8vw, 7.7rem);
}

.contact-section .contact-panel>p:not(.eyebrow):not(.contact-reassurance) {
  max-width: 650px;
  margin: 30px auto 36px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.contact-section .gold-button {
  min-width: 270px;
  min-height: 64px;
}

.contact-reassurance {
  margin: 22px auto 0 !important;
  color: rgba(248, 243, 233, .55) !important;
  font-size: .8rem !important;
  letter-spacing: .02em;
}

/* Tablet polish */

@media (max-width: 900px) {

  .package-grid {
    grid-template-columns: minmax(0, 650px);
    max-width: 650px;
  }

  .tom-section {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .tom-copy {
    max-width: 760px;
    margin: 0 auto;
  }

  .faq-section,
  .contact-section {
    padding: 100px 7vw;
  }

  .trust-strip {
    width: min(100% - 12vw, 780px);
  }
}

/* Mobile polish */

@media (max-width: 650px) {

  /* Say cheese */
  .countdown.say-cheese {
    width: 90%;
    font-size: 1.85rem;
  }

  /* Package */
  .package-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .package-card {
    min-height: auto;
    padding: 34px 27px;
  }

  /* Trust strip */
  .trust-strip {
    width: 88%;
    min-height: 0;
    gap: 12px 16px;
    padding: 26px 0;
  }

  .trust-strip span {
    font-size: .68rem;
  }

  .trust-strip i {
    font-size: .55rem;
  }

  /* Tom */
  .tom-section {
    gap: 42px;
  }

  .tom-photo-wrap {
    width: min(76%, 330px);
  }

  .tom-copy blockquote {
    padding-left: 18px;
  }

  /* FAQ */
  .faq-section {
    min-height: auto;
    padding: 88px 7vw;
  }

  .faq-section .faq-list {
    margin-top: 42px;
  }

  .faq-section .faq-list summary {
    padding: 23px 2px;
    font-size: .98rem;
  }

  /* Contact */
  .contact-section {
    min-height: 590px;
    padding: 95px 7vw;
  }

  .contact-section h2 {
    font-size: clamp(3.6rem, 16vw, 5.4rem);
  }

  .contact-section .gold-button {
    width: 100%;
    min-width: 0;
  }

  .contact-section::after {
    width: 105vw;
    height: 105vw;
  }
}

/* ================================
   PHOTO GALLERY
================================ */

.gallery-section {
  padding: 110px 6%;
  background: #080808;
}

.gallery-header {
  max-width: 700px;
  margin: 0 auto 55px;
  text-align: center;
}

.gallery-header .section-label {
  display: block;
  margin-bottom: 14px;
  color: #c9a962;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.gallery-header h2 {
  margin: 0 0 18px;
  color: #f6f2e8;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.gallery-header h2 span {
  color: #c9a962;
}

.gallery-header p {
  max-width: 570px;
  margin: 0 auto;
  color: #aaa;
  font-size: 1rem;
  line-height: 1.7;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
}

.gallery-photo {
  position: relative;
  overflow: hidden;
  height: 520px;
  border: 1px solid #c9a962;
  border-radius: 6px;
  background: #111;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.gallery-photo:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(201, 169, 98, 0.18);
}

.gallery-photo:hover img {
  transform: scale(1.035);
}

/* Mobile */

@media (max-width: 900px) {

  .gallery-section {
    padding: 80px 5%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-photo {
    height: 500px;
  }
}

@media (max-width: 600px) {

  .gallery-photo {
    height: 420px;
  }
}

/* ================================
   PHOTO GALLERY
================================ */

.gallery-section {
  padding: 110px 6%;
  background: #080808;
}

.gallery-glow {
  top: -8%;
  left: -30%;
  transform: rotate(-3deg);
}

.gallery-header {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto 55px;
  text-align: center;
}

.gallery-header .section-label {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.gallery-header h2 {
  margin: 0 0 18px;
  color: var(--cream);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.gallery-header h2 span {
  color: var(--gold);
}

.gallery-header p {
  max-width: 570px;
  margin: 0 auto;
  color: #aaa;
  font-size: 1rem;
  line-height: 1.7;
}

.gallery-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
}

.gallery-photo {
  position: relative;
  overflow: hidden;
  height: 520px;
  border: 1px solid var(--gold);
  border-radius: 6px;
  background: #111;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.gallery-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  pointer-events: none;
  transition: border-color 0.35s ease;
}

.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.gallery-photo:hover {
  transform: translateY(-8px);
  border-color: var(--gold-light);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5),
    0 0 24px rgba(201, 169, 98, 0.12);
}

.gallery-photo:hover img {
  transform: scale(1.035);
}

.gallery-photo:hover::after {
  border-color: rgba(225, 201, 143, 0.35);
}

/* Mobile */

@media (max-width: 900px) {

  .gallery-section {
    padding: 80px 5%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-photo {
    height: 500px;
  }
}

@media (max-width: 600px) {

  .gallery-photo {
    height: 420px;
  }
}

/* ==========================================
   BOOKING ENQUIRY
========================================== */

.booking-section {
  padding: 120px 6%;
  background: #080808;
}

.booking-heading {
  max-width: 760px;
  margin: 0 auto 55px;
  text-align: center;
}

.booking-heading .section-label {
  display: block;
  margin-bottom: 15px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.booking-heading h2 {
  margin: 0 0 20px;
  color: var(--cream);
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.booking-heading h2 span {
  color: var(--gold);
}

.booking-heading p {
  max-width: 570px;
  margin: 0 auto;
  color: #999;
  font-size: 1rem;
  line-height: 1.7;
}

/* Form */

.booking-form {
  max-width: 920px;
  margin: 0 auto;
  padding: 46px;
  background: #0d0d0d;
  border: 1px solid rgba(201, 169, 98, 0.45);
  border-radius: 8px;
}

/* Rows */

.booking-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

/* Field */

.booking-field {
  margin-bottom: 28px;
}

.booking-field label,
.address-heading label {
  display: block;
  margin-bottom: 10px;
  color: #f6f2e8;
  font-size: 0.85rem;
  font-weight: 600;
}

.booking-field label span {
  color: var(--gold);
}

.booking-field label small {
  margin-left: 7px;
  color: #666;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Inputs */

.booking-field input,
.booking-field select,
.booking-field textarea,
.selected-address-fields input {
  box-sizing: border-box;
  width: 100%;
  padding: 16px 18px;
  background: #111;
  border: 1px solid #292929;
  border-radius: 4px;
  color: #f6f2e8;
  font: inherit;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
  background: #141414;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.08);
}

.booking-field input::placeholder,
.booking-field textarea::placeholder {
  color: #626262;
}

/* Big textarea */

.booking-message textarea {
  min-height: 280px;
  resize: vertical;
  line-height: 1.65;
}

/* Address */

.address-area {
  margin: 10px 0 34px;
  padding: 28px;
  background: #0a0a0a;
  border: 1px solid rgba(201, 169, 98, 0.3);
  border-radius: 5px;
}

.address-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.address-heading p {
  margin: 4px 0 0;
  color: #777;
  font-size: 0.82rem;
}

.optional-tag {
  padding: 6px 9px;
  color: var(--gold);
  border: 1px solid rgba(201, 169, 98, 0.45);
  border-radius: 30px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

/* Address lookup generated elements */

#postcode-lookup input,
#postcode-lookup select,
#postcode-lookup button {
  box-sizing: border-box;
  min-height: 50px;
  font: inherit;
}

#postcode-lookup input,
#postcode-lookup select {
  width: 100%;
  padding: 14px 16px;
  background: #111;
  color: #f6f2e8;
  border: 1px solid #292929;
  border-radius: 4px;
}

#postcode-lookup button {
  margin-top: 10px;
  padding: 12px 20px;
  background: var(--gold);
  color: #080808;
  border: 0;
  border-radius: 4px;
  font-weight: 800;
  cursor: pointer;
}

.selected-address-fields {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.selected-address-fields input {
  color: #bbb;
}

/* Button */

.booking-submit {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding: 18px 25px;
  background: var(--gold);
  color: #080808;
  border: 1px solid var(--gold);
  border-radius: 4px;
  font: inherit;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.booking-submit:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-2px);
}

.booking-smallprint {
  margin: 15px 0 0;
  color: #606060;
  text-align: center;
  font-size: 0.72rem;
}

/* Honeypot */

.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* Validation */

.booking-field.has-error input,
.booking-field.has-error select,
.booking-field.has-error textarea {
  border-color: #d97a5f;
}

.field-error {
  display: block;
  min-height: 18px;
  margin-top: 6px;
  color: #d97a5f;
  font-size: 0.78rem;
}

.booking-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-status {
  margin: 18px 0 0;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
}

.form-status.success {
  color: var(--gold-light);
}

.form-status.error {
  color: #d97a5f;
}

/* Mobile */

@media (max-width: 700px) {

  .booking-section {
    padding: 80px 5%;
  }

  .booking-form {
    padding: 25px 20px;
  }

  .booking-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .address-area {
    padding: 20px;
  }

  .address-heading {
    flex-direction: column;
  }

  .booking-message textarea {
    min-height: 240px;
  }
}

/* =========================================================
   FOOTER SPACING OVERRIDES
========================================================= */

.booking-section {
  margin: 0 !important;
  padding-bottom: 40px !important;
}

main {
  margin: 0 !important;
  padding-bottom: 0 !important;
}

footer,
footer.glow-section {
  min-height: 0 !important;
  height: auto !important;
  margin: 0 !important;
  padding: 24px 6% !important;
  background: transparent !important;
}

.footer-bottom {
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

footer.glow-section {
  display: block !important;
}

footer,
footer.glow-section,
.footer-bottom {
  min-height: unset !important;
  max-height: none !important;
}

footer::before,
footer::after {
  content: none !important;
  display: none !important;
}

main+footer {
  margin-top: 0 !important;
}

.glow-section:last-of-type {
  margin-bottom: 0 !important;
}

main>section:last-of-type {
  margin-bottom: 0 !important;
  padding-bottom: 40px !important;
}

main>.gold-trim:last-child {
  display: none !important;
}