:root {
  --bg: #e9f8ff;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --text: #06355f;
  --ink: #06355f;
  --muted: #426b82;
  --line: rgba(0, 104, 181, 0.16);
  --navy: #005da8;
  --navy-soft: #1187cf;
  --teal: #00aeca;
  --teal-soft: rgba(0, 174, 202, 0.18);
  --accent: #ffb31a;
  --accent-strong: #f58220;
  --accent-deep: #9b4b08;
  --accent-soft: rgba(255, 179, 26, 0.24);
  --sun: #fff200;
  --sky: #1aa5df;
  --shadow: 0 24px 60px rgba(0, 83, 145, 0.15);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 242, 0, 0.24), transparent 28%),
    radial-gradient(circle at top right, rgba(0, 174, 202, 0.24), transparent 24%),
    linear-gradient(180deg, #dff6ff 0%, #f8fcff 42%, #fff7db 100%);
  font-family: "Sora", "Trebuchet MS", sans-serif;
  line-height: 1.65;
}

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

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

.page-shell {
  min-height: 100vh;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(0, 113, 188, 0.92);
  border-bottom: 3px solid var(--sun);
  box-shadow: 0 12px 28px rgba(0, 65, 128, 0.18);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-lockup strong,
h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
}

.brand-lockup strong {
  display: block;
  font-size: 1rem;
}

.brand-subtitle {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: #07365f;
  font-weight: 700;
  background: linear-gradient(145deg, var(--sun), var(--accent));
  box-shadow: var(--shadow);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-header .brand-lockup,
.site-header .brand-subtitle,
.site-header .site-nav,
.site-header .site-nav a {
  color: #fff;
}

.site-nav a:hover,
.text-link:hover,
.site-footer a:hover {
  color: var(--teal);
}

.site-header .site-nav a:hover {
  color: var(--sun);
}

.main-content {
  padding: 32px 0 56px;
}

.section,
.card,
.service-card,
.stat-card,
.info-card,
.support-card,
.step-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.section,
.card {
  padding: 28px;
}

.gradient-panel {
  background:
    radial-gradient(circle at top left, rgba(255, 242, 0, 0.2), transparent 30%),
    radial-gradient(circle at bottom right, rgba(0, 174, 202, 0.2), transparent 34%),
    rgba(255, 255, 255, 0.76);
}

.section-light {
  background: rgba(255, 255, 255, 0.78);
}

.section-dark {
  color: #fff;
  background: linear-gradient(160deg, #0071bc, #005da8 54%, #064586);
  border-color: rgba(255, 255, 255, 0.08);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
  margin-bottom: 26px;
}

.hero h1,
.rules-panel h1,
.thank-you-panel h1 {
  margin: 0;
  font-size: clamp(2.1rem, 3vw, 3.35rem);
  line-height: 1.02;
}

.hero-text,
.section p,
.card p,
.service-card p,
.info-card p,
.support-card p {
  color: var(--muted);
}

.section-dark p,
.section-dark li,
.section-dark a,
.section-dark .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.terms-section + .terms-section {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.terms-section h2 {
  margin: 0 0 10px;
  font-size: 1.45rem;
}

.hero-media img,
.art-stack img {
  width: 100%;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.62);
}

.hero-media {
  position: relative;
}

.hero-photo-collage {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

.hero-photo-primary,
.hero-photo-secondary {
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.hero-photo-primary {
  grid-row: 1 / span 2;
  aspect-ratio: 0.94 / 1;
}

.hero-photo-secondary {
  aspect-ratio: 1 / 0.82;
}

.travel-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 26px;
}

.travel-photo-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.travel-photo-card img,
.service-card-photo,
.service-hero-photo,
.service-photo-strip img {
  width: 100%;
  object-fit: cover;
}

.travel-photo-card img {
  aspect-ratio: 1 / 1.05;
}

.travel-photo-copy {
  padding: 16px 18px 18px;
}

.travel-photo-copy h2 {
  margin: 8px 0 0;
  font-size: 1.45rem;
  line-height: 1.08;
}

.hero-spotlight-card {
  position: absolute;
  top: 18px;
  right: 18px;
  width: min(310px, calc(100% - 36px));
  padding: 18px;
  border: 2px solid rgba(255, 242, 0, 0.88);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(0, 65, 128, 0.24);
  backdrop-filter: blur(12px);
}

.hero-spotlight-card h2 {
  margin: 8px 0;
  font-size: 1.28rem;
  line-height: 1.05;
}

.hero-spotlight-card p {
  margin: 0;
  color: var(--muted);
}

.hero-spotlight-card .eyebrow,
.destination-package-card .eyebrow {
  color: var(--accent-deep);
}

.dream-vacation-banner {
  position: relative;
  overflow: hidden;
  margin-bottom: 26px;
  border: 1px solid rgba(0, 93, 168, 0.2);
  border-radius: 28px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(0, 113, 188, 0.95) 0%, rgba(0, 93, 168, 0.82) 52%, rgba(255, 242, 0, 0.94) 52%, rgba(255, 242, 0, 0.94) 100%),
    var(--navy);
  box-shadow: var(--shadow);
}

.dream-banner-head {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 28px 28px 14px;
  text-align: center;
}

.dream-banner-head h2 {
  margin: 0;
  color: var(--accent);
  font-size: clamp(2.25rem, 6vw, 5rem);
  line-height: 0.88;
  text-transform: uppercase;
  text-shadow: 0 4px 0 rgba(0, 65, 128, 0.22);
}

.dream-banner-head p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.dream-banner-head .eyebrow {
  color: var(--sun);
  font-size: 1.05rem;
}

.dream-banner-options {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: stretch;
  padding: 18px 28px 72px;
}

.dream-prize-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--navy);
  isolation: isolate;
}

.dream-prize-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-position: center;
  background-size: cover;
}

.dream-prize-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 42, 82, 0.08), rgba(0, 42, 82, 0.3));
}

.dream-prize-cruise::before {
  background-image: url("/assets/travel/cruise-ship.jpg");
}

.dream-prize-resort::before {
  background-image: url("/assets/travel/resort-pool.jpg");
}

.dream-prize-card > div {
  margin: 28px;
  max-width: 420px;
  padding: 18px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 22px;
  background: rgba(0, 174, 202, 0.78);
  text-align: center;
  box-shadow: 0 18px 36px rgba(0, 46, 91, 0.24);
}

.dream-prize-resort > div {
  margin-left: auto;
  background: rgba(245, 130, 32, 0.78);
}

.dream-prize-card h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 0.96;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.2);
}

.dream-prize-card p {
  margin: 10px 0 0;
  color: #071d32;
  font-weight: 800;
  line-height: 1.4;
}

.dream-or {
  align-self: start;
  margin-top: 50px;
  color: #fff;
  font-size: clamp(1.35rem, 2.4vw, 2.15rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 3px 0 rgba(0, 42, 82, 0.25);
}

.dream-banner-action {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 6px;
  transform: translateX(-50%);
  color: #07365f;
  text-align: center;
  font-weight: 800;
}

.dream-register-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 148px;
  height: 148px;
  border-radius: 999px;
  border: 5px solid rgba(255, 255, 255, 0.72);
  color: #e31576;
  background: radial-gradient(circle, #fff200 0%, #ffef33 52%, #ffcc00 100%);
  box-shadow: 0 18px 42px rgba(0, 46, 91, 0.28);
  font-size: 1.18rem;
  line-height: 0.96;
  text-transform: uppercase;
}

.dream-banner-action span {
  max-width: 280px;
  color: #07365f;
  font-size: 0.82rem;
  line-height: 1.2;
}

.westgate-destinations-section {
  margin-bottom: 26px;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.destination-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.destination-card img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.destination-card-copy {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.destination-card-copy h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.05;
}

.destination-card-copy p {
  margin: 0;
  color: var(--muted);
}

.destination-card-copy .button {
  width: 100%;
  min-height: 46px;
}

.westgate-destination-hero {
  grid-template-columns: 0.96fr 1.04fr;
}

.destination-hero-photo {
  width: 100%;
  min-height: 440px;
  object-fit: cover;
}

.destination-package-card {
  position: absolute;
  top: 18px;
  left: 18px;
  width: min(340px, calc(100% - 36px));
  padding: 18px;
  border-radius: 22px;
  border: 2px solid rgba(255, 242, 0, 0.88);
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 18px 42px rgba(0, 65, 128, 0.24);
  backdrop-filter: blur(8px);
}

.destination-package-card h2 {
  margin: 8px 0;
  font-size: 1.65rem;
  line-height: 1.02;
}

.destination-package-card p {
  margin: 0;
  color: var(--muted);
}

.westgate-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.westgate-public-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.clean-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.mini-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.mini-button-row .button {
  min-height: 42px;
  padding: 10px 14px;
  font-size: 0.9rem;
}

.pill-row,
.button-row,
.stats-grid,
.card-grid,
.service-grid,
.split-section,
.form-grid,
.contact-cards,
.footer-grid,
.footer-meta,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.82rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
}

.pill-accent {
  color: var(--accent-deep);
  background: var(--accent-soft);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: #07365f;
  font-weight: 600;
  background: linear-gradient(135deg, var(--sun), var(--accent));
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(245, 130, 32, 0.24);
}

.button-secondary {
  color: var(--navy);
  border-color: rgba(0, 93, 168, 0.22);
  background: rgba(255, 255, 255, 0.9);
}

.site-header .button-secondary {
  color: #07365f;
  border-color: rgba(255, 242, 0, 0.54);
  background: linear-gradient(135deg, var(--sun), var(--accent));
}

.button-submit {
  margin-top: 10px;
  width: 100%;
}

.stats-grid {
  margin-top: 26px;
}

.stat-card {
  flex: 1 1 180px;
  padding: 18px;
}

.stat-card strong {
  display: block;
  font-size: 1.4rem;
  font-family: "Fraunces", Georgia, serif;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 26px;
}

.feature-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: var(--teal);
  background: var(--teal-soft);
  font-weight: 700;
}

.card h2,
.section h2,
.service-card h3,
.info-card h3,
.contact-cards h3 {
  margin: 16px 0 10px;
  line-height: 1.05;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 420px);
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.section-heading.narrow {
  grid-template-columns: 1fr;
}

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

.service-card {
  padding: 22px;
}

.service-card-photo {
  display: block;
  aspect-ratio: 1.5 / 1;
  margin: -22px -22px 18px;
  border-bottom: 1px solid var(--line);
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  font-weight: 600;
  color: var(--navy);
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 26px;
}

.check-list {
  margin: 22px 0 0;
  padding-left: 18px;
}

.check-list li + li {
  margin-top: 10px;
}

.step-stack {
  display: grid;
  gap: 14px;
}

.step-stack.compact {
  margin-top: 22px;
}

.step-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
}

.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  flex: 0 0 38px;
  font-weight: 700;
  color: var(--accent-deep);
  background: var(--accent-soft);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  color: #fff;
  background: linear-gradient(160deg, #0071bc, #005da8 54%, #064586);
  border-color: rgba(255, 255, 255, 0.08);
}

.contact-panel p,
.contact-panel a:not(.button) {
  color: rgba(255, 255, 255, 0.82);
}

.contact-panel .button {
  color: #07365f;
  background: linear-gradient(135deg, var(--sun), var(--accent));
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.contact-panel .button-secondary {
  color: #07365f;
  border-color: rgba(255, 242, 0, 0.58);
  background: #fff;
}

.contact-panel .button-secondary:hover {
  color: #07365f;
}

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

.contact-cards article {
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.82);
}

.service-hero {
  grid-template-columns: 1.1fr 0.9fr;
}

.service-sidebar {
  align-self: stretch;
}

.service-hero h1 {
  font-size: clamp(1.8rem, 2.35vw, 2.5rem);
  max-width: 12ch;
}

.service-hero-photo {
  display: block;
  aspect-ratio: 1.35 / 1;
  margin: -28px -28px 20px;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  border-bottom: 1px solid var(--line);
}

.service-photo-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.service-photo-strip img {
  aspect-ratio: 1.15 / 1;
  border-radius: 16px;
}

.tag-list {
  margin-top: 18px;
}

.tag {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(0, 174, 202, 0.12);
  color: var(--teal);
  font-size: 0.92rem;
}

.closing-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.photo-story-panel {
  display: grid;
  gap: 18px;
}

.photo-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.photo-story-grid img {
  width: 100%;
  aspect-ratio: 0.9 / 1;
  border-radius: 18px;
  object-fit: cover;
}

.photo-story-copy {
  margin: 0;
  font-size: 1rem;
  color: var(--muted);
}

.public-steps .info-card h3 {
  margin-top: 0;
}

.callout-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.callout-chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
}

.landing-hero {
  grid-template-columns: 1.02fr 0.98fr;
}

.landing-hero h1 {
  max-width: 10ch;
  font-size: clamp(2rem, 2.7vw, 2.9rem);
  line-height: 1.04;
}

.landing-hero-media {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 16px;
  align-items: stretch;
}

.landing-hero-main,
.landing-hero-secondary {
  width: 100%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.7);
}

.landing-hero-main {
  min-height: 520px;
  border-radius: 28px;
}

.landing-hero-stack {
  display: grid;
  gap: 16px;
}

.landing-hero-secondary {
  aspect-ratio: 1 / 1;
  border-radius: 24px;
}

.landing-prize-summary {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.landing-prize-list {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.landing-prize-item strong {
  display: block;
  font-size: 1.08rem;
  font-family: "Fraunces", Georgia, serif;
}

.landing-prize-item p {
  margin: 6px 0 0;
  color: var(--muted);
}

.landing-feature-grid {
  margin-bottom: 26px;
}

.landing-shell {
  margin-bottom: 0;
}

.landing-kit-hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 26px;
}

.landing-kit-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.landing-kit-shell {
  align-items: start;
}

.qr-display-card h2,
.kit-link-panel h2,
.copy-card h2 {
  margin-top: 10px;
}

.qr-frame {
  max-width: 360px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
}

.qr-frame img {
  width: 100%;
  aspect-ratio: 1 / 1;
}

.copy-field,
.kit-link-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
}

.copy-field {
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.9);
}

.copy-field strong,
.kit-link-card strong {
  display: block;
  font-size: 0.95rem;
}

.copy-field p,
.kit-link-card p {
  margin: 0;
  color: var(--muted);
  word-break: break-word;
}

.kit-link-stack {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.kit-link-panel .kit-link-card {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(13, 39, 70, 0.12);
}

.kit-link-panel .kit-link-card strong,
.kit-link-panel .kit-link-card p {
  color: var(--text);
}

.copy-button {
  min-height: 46px;
  width: auto;
}

.landing-kit-copy-grid {
  margin-bottom: 0;
}

.copy-card {
  display: grid;
  gap: 10px;
  align-content: start;
}

.copy-card .button {
  margin-top: auto;
}

.landing-kit-list {
  margin-top: 0;
}

.giveaway-hero {
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
}

.giveaway-hero h1 {
  max-width: 9ch;
  font-size: clamp(1.95rem, 2.8vw, 2.8rem);
  line-height: 1.04;
}

.giveaway-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.giveaway-photo-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.giveaway-photo-card img {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
}

.giveaway-photo-copy {
  padding: 16px 18px 18px;
}

.giveaway-photo-copy h2 {
  margin: 0 0 6px;
  font-size: 1.5rem;
  line-height: 1.08;
}

.giveaway-photo-copy p {
  margin: 0;
  color: var(--muted);
}

.giveaway-shell {
  align-items: start;
}

.giveaway-details .info-card p {
  margin: 0;
  line-height: 1.65;
}

.minimal-header {
  position: static;
}

.lead-form {
  display: grid;
  gap: 18px;
}

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

.align-end {
  align-self: end;
}

.split-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.compact-heading {
  margin-bottom: 16px;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
}

.table-wrap table {
  width: 100%;
  border-collapse: collapse;
}

.table-wrap th,
.table-wrap td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
}

.table-wrap th {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-grid label,
.lead-form > label {
  display: grid;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--text);
}

.full-width {
  grid-column: 1 / -1;
}

input,
select {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid rgba(23, 48, 77, 0.16);
  background: rgba(255, 255, 255, 0.95);
  font: inherit;
  color: var(--text);
}

input:focus,
select:focus {
  outline: 3px solid rgba(0, 174, 202, 0.22);
  outline-offset: 0;
  border-color: var(--teal);
}

.checkbox-row {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: start;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(23, 48, 77, 0.12);
  border-radius: 18px;
  background: #f8fbfd;
  line-height: 1.5;
}

.checkbox-row input {
  width: 24px;
  height: 24px;
  min-height: 24px;
  margin: 2px 0 0;
  accent-color: var(--navy);
}

.checkbox-copy {
  color: var(--text);
  font-size: 0.98rem;
}

.checkbox-copy a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.alert {
  margin-bottom: 20px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(176, 56, 24, 0.2);
  background: rgba(176, 56, 24, 0.08);
  color: #7c2f16;
}

.alert ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

.info-stack {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.info-card,
.support-card {
  padding: 20px;
}

.section-dark .info-card,
.section-dark .support-card,
.section-dark .kit-link-card,
.section-dark .stat-card {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(13, 39, 70, 0.12);
  box-shadow: none;
  color: var(--text);
}

.section-dark .info-card h3,
.section-dark .info-card strong,
.section-dark .info-card p,
.section-dark .kit-link-card strong,
.section-dark .kit-link-card p,
.section-dark .stat-card strong,
.section-dark .stat-card span,
.section-dark .stat-card p,
.section-dark .support-card p,
.section-dark .support-card a {
  color: var(--text);
}

.section-dark .info-card .eyebrow,
.section-dark .kit-link-card .eyebrow,
.section-dark .stat-card .eyebrow {
  color: var(--teal);
}

.support-card {
  margin-top: 22px;
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(13, 39, 70, 0.12);
}

.section-dark .support-card .eyebrow {
  color: var(--teal);
}

.thank-you-panel,
.rules-panel {
  max-width: 920px;
  margin: 0 auto;
}

.shows-shell,
.shows-month,
.shows-stack {
  display: grid;
  gap: 24px;
}

.shows-hero,
.shows-card {
  display: grid;
  gap: 24px;
}

.shows-summary,
.shows-subgrid,
.shows-columns,
.shows-priority-grid {
  display: grid;
  gap: 20px;
}

.shows-summary {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.shows-priority-grid {
  grid-template-columns: 1.08fr 0.92fr;
}

.shows-priority-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.shows-priority-item {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
}

.shows-priority-title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.shows-priority-title h3,
.shows-priority-title p {
  margin: 0;
}

.shows-priority-item > p:last-child {
  margin-bottom: 0;
}

.shows-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.shows-card-copy h2,
.shows-month-header h2,
.shows-priority-grid h2 {
  margin-bottom: 0;
}

.shows-card-copy {
  max-width: 760px;
}

.shows-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-fit-very-high {
  color: var(--accent-deep);
  background: var(--accent-soft);
}

.pill-fit-high {
  color: var(--teal);
  background: var(--teal-soft);
}

.pill-fit-medium {
  color: var(--text);
  background: rgba(255, 255, 255, 0.84);
}

.shows-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin-top: 18px;
}

.shows-meta-grid p,
.shows-address,
.shows-watch-copy {
  margin: 0;
  color: var(--muted);
}

.shows-address {
  margin-top: 16px;
}

.shows-actions {
  display: grid;
  gap: 12px;
  min-width: 220px;
}

.shows-columns {
  grid-template-columns: 1.08fr 0.92fr;
}

.shows-panel {
  padding: 24px;
}

.shows-highlight {
  margin: 18px 0 0;
  padding: 16px 18px;
  border-radius: 18px;
  color: var(--text);
  background: rgba(255, 179, 26, 0.22);
}

.shows-list {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.shows-list li + li {
  margin-top: 10px;
}

.shows-list a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.shows-list-plain {
  margin-bottom: 0;
}

.shows-source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.shows-source-link {
  min-height: 48px;
  padding: 0 18px;
}

.shows-empty {
  margin: 14px 0 0;
  color: var(--muted);
}

.shows-month-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.shows-month-header p {
  margin: 0;
  color: var(--muted);
}

.shows-compliance {
  align-self: stretch;
}

.rules-panel p + p {
  margin-top: 16px;
}

.gift-hero {
  align-items: stretch;
}

.gift-notice-card {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 26px;
  border: 1px solid rgba(245, 130, 32, 0.34);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.gift-notice-card h2,
.gift-notice-card p {
  margin: 0;
}

.gift-notice-card .eyebrow {
  color: var(--accent-deep);
}

.gift-quick-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 26px;
}

.gift-quick-links .kit-link-card {
  text-decoration: none;
}

.gift-card-grid {
  display: grid;
  gap: 24px;
}

.gift-card,
.gift-terms-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.gift-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1fr);
}

.gift-media {
  min-height: 320px;
  background: #092a47;
}

.gift-media iframe,
.gift-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  object-fit: cover;
}

.gift-card-copy,
.gift-terms-card-copy {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
}

.gift-card-copy h3,
.gift-terms-card-copy h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.05;
}

.gift-card-copy p,
.gift-terms-card-copy p {
  margin: 0;
  color: var(--muted);
}

.gift-fee-strip {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(245, 130, 32, 0.32);
  border-left: 5px solid var(--accent);
  border-radius: 16px;
  background: #fff7df;
}

.gift-fee-strip strong {
  color: var(--accent-deep);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gift-fee-strip span {
  color: var(--text);
  font-weight: 700;
}

.gift-card .check-list,
.gift-terms-card .check-list,
.gift-material-costs .check-list {
  margin-top: 4px;
}

.gift-disclosure-panel,
.gift-terms-card {
  display: grid;
  gap: 24px;
  align-items: center;
}

.gift-disclosure-panel {
  grid-template-columns: minmax(0, 1fr);
}

.gift-terms-card {
  grid-template-columns: minmax(0, 1fr) auto;
}

.gift-disclosure-panel h2,
.gift-disclosure-panel p {
  margin: 0;
}

.gift-disclosure-panel h2 {
  margin-bottom: 10px;
}

.gift-disclosure-panel .button-row {
  align-items: flex-start;
}

.section-dark .button,
.section-dark .button-secondary {
  color: #07365f;
}

.section-dark .button-secondary {
  border-color: rgba(255, 242, 0, 0.58);
  background: #fff;
}

.section-dark .button:hover,
.section-dark .button-secondary:hover {
  color: #07365f;
}

.gift-terms-hero {
  max-width: 980px;
  margin: 0 auto 26px;
}

.gift-terms-hero h1 {
  margin: 0;
  font-size: clamp(2.1rem, 3vw, 3.35rem);
  line-height: 1.02;
}

.gift-terms-hero > p {
  max-width: 760px;
  color: var(--muted);
}

.gift-material-costs {
  margin-top: 24px;
  padding: 22px;
  border: 1px solid rgba(245, 130, 32, 0.28);
  border-radius: var(--radius-lg);
  background: #fff7df;
}

.gift-material-costs h2 {
  margin-top: 0;
}

.gift-terms-grid {
  display: grid;
  gap: 20px;
  margin: 0 0 26px;
}

.gift-terms-card {
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
}

.gift-terms-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.terms-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.terms-detail-grid .info-card p {
  margin: 0;
}

.site-footer {
  padding: 0 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.footer-grid h2 {
  margin: 8px 0 10px;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 4px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.eyebrow {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

label small {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
}

@media (max-width: 980px) {
  .hero,
  .split-section,
  .contact-panel,
  .service-hero,
  .westgate-destination-hero,
  .landing-hero,
  .giveaway-hero,
  .landing-kit-hero,
  .gift-card,
  .gift-disclosure-panel,
  .gift-terms-card,
  .section-heading,
  .closing-panel,
  .footer-grid,
  .shows-priority-grid,
  .shows-columns {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .service-grid,
  .contact-cards,
  .travel-gallery,
  .gift-quick-links,
  .terms-detail-grid,
  .shows-summary,
  .shows-subgrid,
  .shows-meta-grid {
    grid-template-columns: 1fr;
  }

  .dream-banner-options {
    grid-template-columns: 1fr;
    padding-bottom: 176px;
  }

  .dream-or {
    margin-top: 0;
    text-align: center;
  }

  .destination-grid,
  .westgate-detail-grid,
  .westgate-public-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-photo-collage,
  .landing-hero-media,
  .giveaway-media,
  .photo-story-grid,
  .landing-kit-badges {
    grid-template-columns: 1fr;
  }

  .site-nav {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }
}

@media (max-width: 720px) {
  .main-content {
    padding-top: 22px;
  }

  .nav-row,
  .button-row,
  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-row {
    gap: 14px;
  }

  .site-header .header-actions {
    margin-left: 0;
    width: auto;
  }

  .site-header .header-actions .button,
  .site-header .header-actions .button-secondary {
    width: auto;
    min-height: 46px;
    padding: 0 18px;
  }

  .section,
  .card {
    padding: 22px;
  }

  .hero h1,
  .rules-panel h1,
  .gift-terms-hero h1,
  .thank-you-panel h1 {
    font-size: 1.85rem;
    line-height: 1.06;
  }

  .service-hero h1 {
    font-size: 1.75rem;
    max-width: none;
  }

  .landing-hero h1 {
    font-size: 1.75rem;
    max-width: none;
  }

  .giveaway-hero h1 {
    font-size: 1.75rem;
    max-width: none;
  }

  .landing-hero-main {
    min-height: 320px;
  }

  .hero-spotlight-card {
    position: static;
    width: 100%;
  }

  .dream-vacation-banner {
    border-radius: 22px;
  }

  .dream-banner-head {
    padding: 24px 18px 10px;
  }

  .dream-banner-options {
    gap: 14px;
    padding: 14px;
  }

  .dream-prize-card {
    min-height: 230px;
  }

  .dream-prize-card > div,
  .dream-prize-resort > div {
    margin: 18px;
  }

  .dream-banner-action {
    position: static;
    padding: 0 18px 20px;
    transform: none;
  }

  .dream-register-button {
    width: 118px;
    height: 118px;
    font-size: 1rem;
  }

  .destination-grid,
  .westgate-detail-grid,
  .westgate-public-grid {
    grid-template-columns: 1fr;
  }

  .destination-hero-photo {
    min-height: 300px;
  }

  .destination-package-card {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .gift-card-copy,
  .gift-terms-card-copy,
  .gift-notice-card,
  .gift-material-costs {
    padding: 18px;
  }

  .gift-media,
  .gift-media iframe,
  .gift-media img,
  .gift-terms-card img {
    min-height: 220px;
  }

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

  .shows-card-head,
  .shows-month-header,
  .shows-priority-title {
    flex-direction: column;
    align-items: flex-start;
  }

  .shows-actions {
    min-width: 0;
    width: 100%;
  }

  input,
  select {
    font-size: 16px;
  }

  .checkbox-row {
    padding: 15px 16px;
  }

  .button-row .button,
  .button-row .button-secondary,
  .copy-card .button,
  .button-submit {
    width: 100%;
  }
}

.showboard-shell,
.showboard-month,
.showboard-listing {
  display: grid;
  gap: 20px;
}

.showboard-header {
  display: grid;
  gap: 18px;
}

.showboard-heading {
  display: grid;
  gap: 14px;
}

.showboard-heading h1 {
  margin: 0;
  font-size: clamp(2rem, 2.8vw, 3rem);
  line-height: 1.02;
}

.showboard-subtitle,
.showboard-note {
  margin: 0;
  color: var(--muted);
}

.showboard-chip-row,
.showboard-stat-row,
.showboard-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.showboard-stat-row {
  align-items: center;
}

.showboard-stat {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
  cursor: help;
  white-space: nowrap;
}

.showboard-stat strong {
  font-size: 0.85rem;
}

.showboard-stat span:last-child {
  font-weight: 700;
  color: var(--navy);
}

.showboard-month-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.showboard-month-header h2,
.showboard-month-header p {
  margin: 0;
}

.showboard-month-header p:last-child {
  color: var(--muted);
}

.showboard-item {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.showboard-item[open] {
  background: rgba(255, 255, 255, 0.92);
}

.showboard-summary {
  list-style: none;
  display: grid;
  gap: 10px;
  padding: 18px 22px;
  cursor: pointer;
}

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

.showboard-summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(13, 39, 70, 0.08);
  font-size: 1.25rem;
  font-weight: 600;
}

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

.showboard-summary {
  position: relative;
}

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

.showboard-summary-line,
.showboard-summary-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding-right: 44px;
}

.showboard-date,
.showboard-roi,
.showboard-fit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  border: 1px solid var(--line);
}

.showboard-date {
  color: var(--navy);
  background: rgba(13, 39, 70, 0.08);
  font-weight: 700;
}

.showboard-roi {
  color: var(--accent-deep);
  background: var(--accent-soft);
  font-weight: 700;
  cursor: help;
}

.showboard-name {
  flex: 1 1 280px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.showboard-summary-meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.showboard-summary-meta span:not(.showboard-fit)::before {
  content: "";
}

.showboard-fit {
  border-color: transparent;
}

.showboard-fit-very-high {
  color: var(--accent-deep);
  background: var(--accent-soft);
}

.showboard-fit-high {
  color: var(--teal);
  background: var(--teal-soft);
}

.showboard-fit-medium {
  color: var(--text);
  background: rgba(13, 39, 70, 0.08);
}

.showboard-body {
  display: grid;
  gap: 16px;
  padding: 0 22px 22px;
  border-top: 1px solid var(--line);
}

.showboard-overview {
  padding-top: 18px;
}

.showboard-overview p {
  margin: 0;
  color: var(--muted);
}

.showboard-best-use {
  margin-top: 14px !important;
  padding: 14px 16px;
  border-radius: 18px;
  color: var(--text) !important;
  background: rgba(255, 179, 26, 0.2);
}

.showboard-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.showboard-panel {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
}

.showboard-panel h3 {
  margin: 0;
  font-size: 1rem;
}

.showboard-list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.showboard-list li + li {
  margin-top: 8px;
}

.showboard-list a,
.showboard-link-row a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.showboard-link-row {
  margin-top: 14px;
}

.showboard-empty {
  margin: 14px 0 0;
  color: var(--muted);
}

.showboard-footnote {
  display: grid;
  gap: 12px;
}

.showboard-footnote summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.showboard-footnote summary::-webkit-details-marker {
  display: none;
}

.showboard-footnote-body p {
  margin-top: 0;
}

@media (max-width: 980px) {
  .showboard-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .showboard-month-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .showboard-summary {
    padding: 16px 18px;
  }

  .showboard-summary-line,
  .showboard-summary-meta {
    padding-right: 34px;
  }

  .showboard-detail-grid {
    grid-template-columns: 1fr;
  }

  .showboard-body {
    padding: 0 18px 18px;
  }

  .showboard-stat-row {
    gap: 10px;
  }

  .showboard-stat {
    min-height: 42px;
    padding: 0 14px;
  }
}

body.tablet-kiosk {
  overflow: hidden;
}

.tablet-kiosk .page-shell {
  min-height: 100svh;
  height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.tablet-kiosk .minimal-header {
  display: none;
}

.tablet-kiosk .main-content {
  flex: 1 1 auto;
  width: min(1360px, calc(100% - 24px));
  padding: 12px 0;
  display: flex;
  overflow: hidden;
}

.tablet-kiosk-shell {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
}

.tablet-card {
  width: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 10px;
  border: 1px solid rgba(23, 48, 77, 0.12);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.tablet-banner-strip {
  position: relative;
  flex: 0 0 72px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: linear-gradient(135deg, rgba(0, 93, 168, 0.94), rgba(0, 174, 202, 0.84));
}

.tablet-banner-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.36;
}

.tablet-banner-copy {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 22px;
  color: #fff;
}

.tablet-banner-copy strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
}

.tablet-banner-copy .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.tablet-screen {
  flex: 1 1 auto;
  min-height: 0;
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 10px 6px 2px;
}

.tablet-screen.is-active {
  display: flex;
}

.tablet-screen-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.tablet-screen-head h1 {
  margin: 0;
  font-size: clamp(1.95rem, 3vw, 3rem);
  line-height: 0.98;
}

.tablet-screen-copy {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.tablet-countdown {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(13, 39, 70, 0.08);
  color: var(--navy);
  font-weight: 700;
}

.tablet-countdown strong {
  font-size: 1.3rem;
}

.tablet-alert {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(154, 44, 44, 0.22);
  background: rgba(255, 240, 240, 0.9);
  color: #8f2828;
  font-weight: 600;
}

.tablet-alert div + div {
  margin-top: 6px;
}

.tablet-decoy-fields {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.tablet-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 0;
}

.tablet-form-tight {
  justify-content: flex-start;
}

.tablet-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
}

.tablet-form-grid-qualify {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tablet-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tablet-field-wide {
  grid-column: 1 / -1;
}

.tablet-field span {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
}

.tablet-field input,
.tablet-field select {
  min-height: 54px;
  padding: 10px 16px;
  border-radius: 18px;
  border: 1px solid rgba(23, 48, 77, 0.16);
  background: rgba(255, 255, 255, 0.94);
  font-size: 0.98rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.tablet-field input:focus,
.tablet-field select:focus,
.tablet-primary:focus,
.tablet-secondary:focus,
.tablet-inline-link:focus,
.tablet-modal-close:focus {
  outline: 3px solid rgba(255, 179, 26, 0.34);
  outline-offset: 2px;
  border-color: rgba(245, 130, 32, 0.72);
}

.tablet-consent-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px 12px 12px;
  border-radius: 22px;
  border: 1px solid rgba(23, 48, 77, 0.12);
  background: rgba(255, 255, 255, 0.78);
}

.tablet-consent-row input {
  width: 22px;
  height: 22px;
  margin: 4px 0 0;
}

.tablet-consent-row span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.42;
}

.tablet-inline-link {
  display: inline;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.tablet-actions,
.tablet-choice-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.tablet-primary,
.tablet-secondary {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 18px;
  font-size: 0.96rem;
}

.tablet-primary {
  min-width: min(420px, 100%);
}

.tablet-choice-panel {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 22px;
  border-radius: 26px;
  background: rgba(13, 39, 70, 0.05);
  border: 1px solid rgba(13, 39, 70, 0.08);
}

.tablet-helper {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.tablet-booking-layout {
  flex: 1 1 auto;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.4fr);
  gap: 18px;
}

.tablet-booking-summary,
.tablet-booking-frame-shell {
  min-height: 0;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(23, 48, 77, 0.1);
  background: rgba(255, 255, 255, 0.7);
}

.tablet-booking-summary {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tablet-booking-summary p {
  margin: 0;
}

.tablet-booking-frame-shell {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}

.tablet-booking-frame {
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: none;
  border-radius: 18px;
  background: #fff;
}

.tablet-booking-placeholder {
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  border-radius: 18px;
  border: 1px dashed rgba(23, 48, 77, 0.2);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.78);
}

.tablet-booking-placeholder strong {
  color: var(--ink);
}

.tablet-modal {
  width: min(1040px, calc(100% - 48px));
  max-width: 1040px;
  padding: 0;
  border: none;
  background: transparent;
}

.tablet-modal::backdrop {
  background: rgba(11, 20, 32, 0.45);
  backdrop-filter: blur(4px);
}

.tablet-modal-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 72px rgba(12, 33, 56, 0.28);
}

.tablet-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.tablet-modal-head h2 {
  margin: 0;
}

.tablet-modal-close {
  min-height: 50px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid rgba(23, 48, 77, 0.14);
  background: rgba(13, 39, 70, 0.06);
  color: var(--navy);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.tablet-modal-frame {
  width: 100%;
  height: min(68svh, 760px);
  border: none;
  border-radius: 18px;
  background: #fff;
}

@media (max-width: 1100px) {
  .tablet-booking-layout {
    grid-template-columns: 1fr;
  }

  .tablet-booking-frame-shell {
    min-height: 420px;
  }
}

@media (max-width: 900px), (orientation: portrait) {
  .tablet-kiosk .main-content {
    width: min(100%, calc(100% - 16px));
    padding: 8px 0 12px;
  }

  .tablet-card {
    padding: 10px;
    border-radius: 24px;
  }

  .tablet-banner-strip {
    flex-basis: 76px;
  }

  .tablet-screen {
    padding: 14px 4px 2px;
    gap: 16px;
  }

  .tablet-screen-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .tablet-form-grid,
  .tablet-form-grid-qualify {
    grid-template-columns: 1fr;
  }

  .tablet-field-wide {
    grid-column: auto;
  }

  .tablet-consent-row {
    gap: 12px;
    padding: 14px;
  }

  .tablet-primary,
  .tablet-secondary {
    width: 100%;
  }
}
