/* ===== Pass The Cam — Design System ===== */

:root {
  --purple-dark: #4b3b70;
  --purple-darker: #3a2d58;
  --mauve: #ae9bc0;
  --mauve-light: #d9cfe3;
  --gold: #d8a94a;
  --near-black: #211f26;
  --white: #ffffff;
  --cream: #faf7fc;
  --text-body: #35293f;
  --shadow: 0 12px 30px rgba(33, 31, 38, 0.18);
  --radius: 18px;
  --max-width: 1100px;
  --font-heading: "Fraunces", Georgia, serif;
  --font-body: "Poppins", "Segoe UI", sans-serif;
  --font-display: "Baloo 2", "Poppins", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.6;
}

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

h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--purple-dark);
  line-height: 1.15;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; }

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

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

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  padding: 0.9em 2em;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--purple-dark);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: var(--purple-darker);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--purple-dark);
}

/* ---------- Header / Nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--near-black);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.announcement-bar {
  background: var(--gold);
  text-align: center;
  padding: 8px 24px;
}

.announcement-bar p {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--near-black);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav-logo img {
  height: 48px;
  width: auto;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px 0;
  background: var(--mauve-light);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--mauve-light);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--white);
  border-bottom-color: var(--gold);
}

.nav-links .btn-primary {
  color: var(--white);
}

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: var(--near-black);
    padding: 12px 24px 20px;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }

  .nav-links.is-open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links li {
    width: 100%;
    padding: 8px 0;
  }

  .nav-links .btn-primary {
    display: inline-block;
    margin-top: 6px;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(33, 31, 38, 0.55) 0%, rgba(33, 31, 38, 0.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 60px 24px;
}

.hero-logo {
  width: min(420px, 80vw);
  margin: 0 auto 24px;
}

.hero p {
  font-size: 1.15rem;
  margin-bottom: 2em;
}

/* ---------- Page banner (About / Gallery / Contact) ---------- */

.page-banner {
  background: var(--purple-dark);
  color: var(--white);
  text-align: center;
  padding: 90px 24px 70px;
}

.page-banner h1 {
  color: var(--white);
}

.page-banner-logo {
  width: min(320px, 70vw);
  margin: 4px auto 20px;
}

.page-banner p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--mauve-light);
  font-size: 1.1rem;
}

/* ---------- Sections ---------- */

section {
  padding: 80px 0;
}

.section-mauve {
  background: var(--mauve-light);
}

.section-purple {
  background: var(--purple-dark);
  color: var(--white);
}

.section-purple h2 {
  color: var(--white);
  text-align: center;
}

.section-cream {
  background: var(--cream);
}

/* About teaser / two-column layout */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.eyebrow {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 0.5em;
  display: block;
}

@media (max-width: 800px) {
  .split {
    grid-template-columns: 1fr;
  }
}

/* How it works */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
  margin-top: 48px;
}

.step-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.steps h3 {
  color: var(--white);
}

.steps p {
  color: var(--mauve-light);
}

@media (max-width: 760px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* CTA band */

.cta-band {
  background: var(--mauve-light);
  text-align: center;
  padding: 64px 24px;
}

/* ---------- Trust points (About page) ---------- */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.trust-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow);
}

.trust-card h3 {
  margin-bottom: 0.4em;
}

@media (max-width: 800px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Gallery ---------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 20px;
}

.gallery-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item figcaption {
  padding: 16px 18px 20px;
}

.gallery-item figcaption strong {
  display: block;
  font-family: var(--font-heading);
  color: var(--purple-dark);
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.gallery-item figcaption span {
  color: #6b5c78;
  font-size: 0.92rem;
}

.gallery-note {
  margin-top: 40px;
  text-align: center;
  color: #6b5c78;
  font-style: italic;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 28px;
}

.video-item {
  margin: 0;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--near-black);
}

.video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

.video-item figcaption {
  margin-top: 10px;
  font-family: var(--font-heading);
  color: var(--purple-dark);
  font-size: 1.02rem;
  text-align: center;
}

@media (max-width: 760px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(33, 31, 38, 0.88);
  padding: 24px;
}

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

.lightbox img {
  max-width: min(900px, 92vw);
  max-height: 86vh;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
}

/* ---------- Package link callout (Contact page) ---------- */

.package-link-row {
  margin-bottom: 24px;
}

.package-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  border: 2px solid var(--mauve-light);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--purple-dark);
  transition: border-color 0.15s ease, background 0.15s ease;
}

.package-link:hover {
  border-color: var(--gold);
  background: var(--white);
}

.package-link .package-link-arrow {
  color: var(--gold);
}

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

.ptc-calendar {
  margin-top: 22px;
}

.ptc-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.ptc-cal-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--purple-dark);
  font-size: 1.15rem;
}

.ptc-cal-nav {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: var(--mauve-light);
  color: var(--purple-dark);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}

.ptc-cal-nav:hover:not(:disabled) {
  background: var(--mauve);
}

.ptc-cal-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.ptc-cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: #6b5c78;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

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

.ptc-cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.88rem;
  color: var(--text-body);
  background: var(--cream);
}

.ptc-cal-day.is-empty {
  background: transparent;
}

.ptc-cal-day.is-past {
  opacity: 0.35;
}

.ptc-cal-day.is-today {
  box-shadow: inset 0 0 0 2px var(--gold);
  font-weight: 700;
}

.ptc-cal-day.is-booked {
  position: relative;
  background: var(--near-black);
  color: transparent;
}

.ptc-cal-day.is-booked::after {
  content: "\2715";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75em;
}

.ptc-cal-status {
  margin: 14px 0 0;
  font-size: 0.85rem;
  color: #6b5c78;
  text-align: center;
}

.ptc-cal-status-error {
  color: #9c4b4b;
}

.ptc-cal-legend {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 16px;
  font-size: 0.8rem;
  color: #6b5c78;
}

.ptc-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid #d8cbe0;
  margin-right: 6px;
  vertical-align: middle;
}

.ptc-dot.is-booked {
  background: var(--near-black);
  border-color: var(--near-black);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

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

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.calendar-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 34px;
  box-shadow: var(--shadow);
}

.calendar-card p {
  color: #6b5c78;
  font-size: 0.95rem;
}

.form-row {
  margin-bottom: 20px;
}

.form-row label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--purple-dark);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--mauve-light);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-body);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--purple-dark);
}

.form-row textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row textarea[readonly] {
  background: var(--cream);
  color: #6b5c78;
  resize: none;
  min-height: 90px;
  font-style: italic;
}

.contact-info {
  background: var(--purple-dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 32px 34px;
}

.contact-info h3 {
  color: var(--white);
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.contact-info li {
  margin-bottom: 16px;
  font-weight: 600;
}

.contact-info a {
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
}

/* ---------- Packages & À La Carte ---------- */

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 32px;
}

.package-card {
  cursor: pointer;
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
}

.package-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow);
  border: 3px solid transparent;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.package-card:hover .package-card-inner {
  transform: translateY(-3px);
}

.package-card.is-selected .package-card-inner {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.package-card:focus-visible .package-card-inner {
  outline: 2px solid var(--purple-dark);
  outline-offset: 2px;
}

.package-name {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--purple-dark);
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.package-price {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--gold);
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.package-desc {
  color: #6b5c78;
  font-size: 0.92rem;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .package-grid {
    grid-template-columns: 1fr;
  }
}

.addon-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.addon-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: 0 4px 14px rgba(33, 31, 38, 0.08);
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.15s ease;
}

.addon-row:has(input:checked) {
  border-color: var(--gold);
}

.addon-row input {
  margin-top: 4px;
  width: 20px;
  height: 20px;
  accent-color: var(--purple-dark);
  flex-shrink: 0;
  cursor: pointer;
}

.addon-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.addon-title {
  font-weight: 700;
  color: var(--purple-dark);
}

.addon-title em {
  font-style: normal;
  color: var(--gold);
  margin-left: 8px;
}

.addon-desc {
  color: #6b5c78;
  font-size: 0.9rem;
}

.estimate-hint {
  text-align: center;
  color: #6b5c78;
  font-style: italic;
}

/* ---------- FAQ accordion ---------- */

.faq-heading {
  text-align: center;
  margin-bottom: 24px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 14px;
  padding: 4px 22px;
  box-shadow: 0 4px 14px rgba(33, 31, 38, 0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  font-weight: 600;
  color: var(--purple-dark);
  cursor: pointer;
  list-style: none;
}

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

.faq-icon {
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.15s ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer p {
  margin: 0;
  padding-bottom: 18px;
  color: #6b5c78;
}

/* Package selection popup */

.package-modal[hidden] {
  display: none;
}

.package-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.package-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(33, 31, 38, 0.55);
}

body.modal-open {
  overflow: hidden;
}

.package-modal-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  padding: 40px 36px 32px;
  max-width: 440px;
  width: 100%;
  text-align: center;
}

.package-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: #6b5c78;
  cursor: pointer;
}

.package-modal-eyebrow {
  display: block;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 6px;
}

.package-modal-card h3 {
  margin-bottom: 4px;
}

.package-modal-price {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--gold);
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.package-modal-desc {
  color: #6b5c78;
  font-size: 0.95rem;
  margin-bottom: 26px;
}

.package-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline-purple {
  background: transparent;
  color: var(--purple-dark);
  border: 2px solid var(--mauve-light);
}

.btn-outline-purple:hover {
  border-color: var(--purple-dark);
}

.package-modal-remove {
  display: block;
  margin: 18px auto 0;
  background: none;
  border: none;
  color: #9c4b4b;
  font-size: 0.85rem;
  text-decoration: underline;
  cursor: pointer;
}

/* PDF popup (Rental Agreement, etc.) */

.pdf-modal[hidden] {
  display: none;
}

.pdf-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.pdf-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(33, 31, 38, 0.65);
}

.pdf-modal-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: min(820px, 100%);
  height: min(88vh, 900px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  padding: 48px 20px 20px;
}

.pdf-modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: #6b5c78;
  cursor: pointer;
}

.pdf-modal-card iframe {
  flex: 1;
  width: 100%;
  border: 1px solid var(--mauve-light);
  border-radius: 10px;
}

.pdf-modal-open-new {
  align-self: center;
  font-weight: 600;
  color: var(--purple-dark);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}

@media (max-width: 640px) {
  .pdf-modal-card {
    height: 92vh;
    padding: 44px 12px 16px;
  }
}

/* Floating à la carte cart tab */

.side-tab {
  position: fixed;
  right: 0;
  top: 55%;
  transform: translateY(-50%);
  z-index: 250;
  display: flex;
  align-items: flex-start;
}

.side-tab-toggle {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  background: var(--purple-dark);
  color: var(--white);
  border: none;
  border-radius: 14px 0 0 14px;
  padding: 18px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: -4px 4px 16px rgba(33, 31, 38, 0.25);
  font-family: var(--font-body);
}

.side-tab-label {
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}

.side-tab-total {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--gold);
  font-size: 1rem;
}

.side-tab-panel {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  width: min(320px, 82vw);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(33, 31, 38, 0.3);
  padding: 26px;
  margin-right: 10px;
}

.side-tab-panel[hidden] {
  display: none;
}

.side-tab-panel h3 {
  margin-bottom: 14px;
}

.side-tab-items {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  max-height: 260px;
  overflow-y: auto;
}

.side-tab-items li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--mauve-light);
  font-size: 0.9rem;
  color: var(--text-body);
}

.side-tab-items li.side-tab-empty {
  display: block;
  border-bottom: none;
  color: #6b5c78;
  font-style: italic;
  font-size: 0.85rem;
}

.side-tab-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 18px;
  font-weight: 700;
  color: var(--purple-dark);
}

.side-tab-total-row strong {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 1.3rem;
}

#side-tab-check {
  width: 100%;
}

#side-tab-check:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

#side-tab-check:disabled:hover {
  transform: none;
}

@media (max-width: 640px) {
  .side-tab {
    top: auto;
    bottom: 90px;
    transform: none;
  }

  .side-tab-panel {
    position: fixed;
    right: 12px;
    left: 12px;
    bottom: 150px;
    top: auto;
    transform: none;
    width: auto;
    margin-right: 0;
  }
}

/* ---------- Google Reviews ---------- */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 32px;
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow);
}

.review-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.review-text {
  flex-grow: 1;
  margin: 0;
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.6;
}

.review-author {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--purple-dark);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
}

.review-author-name {
  display: block;
  font-weight: 600;
  color: var(--purple-dark);
  font-size: 0.92rem;
}

.review-source {
  display: block;
  color: #6b5c78;
  font-size: 0.78rem;
}

.reviews-cta {
  display: block;
  width: fit-content;
  margin: 36px auto 0;
}

@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Thanks page ---------- */

.thanks {
  text-align: center;
  padding: 140px 24px;
}

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

.site-footer {
  background: var(--near-black);
  color: var(--white);
  text-align: center;
  padding: 56px 24px 32px;
}

.site-footer p a {
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}

@media (max-width: 420px) {
  .site-footer p {
    font-size: 0.9rem;
  }
}

.site-footer .tagline {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 0.4em;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 20px 0;
}

.footer-social a {
  font-weight: 600;
}

.footer-social a:hover {
  color: var(--gold);
}

.site-footer .copyright {
  margin-top: 24px;
  color: #9a8fa6;
  font-size: 0.85rem;
}
