:root {
  --navy: #082b5b;
  --navy-2: #061d3e;
  --blue: #0d3a75;
  --pink: #f5065f;
  --coral: #ff5c35;
  --violet: #6c1eb1;
  --paper: #ffffff;
  --surface: #f5f8fc;
  --surface-2: #eef3f9;
  --ink: #09254d;
  --muted: #66768c;
  --line: #dfe7f1;
  --green: #10985f;
  --danger: #dc294f;
  --shadow: 0 24px 70px rgba(8, 43, 91, 0.12);
  --shadow-sm: 0 10px 35px rgba(8, 43, 91, 0.09);
  --radius: 24px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: Tahoma, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.sidebar-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

img {
  max-width: 100%;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 0 24px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  transform: none;
}

.button-primary {
  background: linear-gradient(135deg, var(--pink), #d30c77 58%, var(--violet));
  color: #fff;
  box-shadow: 0 14px 30px rgba(245, 6, 95, 0.22);
}

.button-primary:hover {
  box-shadow: 0 18px 38px rgba(245, 6, 95, 0.3);
}

.button-secondary {
  border-color: #cad7e6;
  background: #fff;
  color: var(--navy);
}

.button-ghost {
  border-color: rgba(8, 43, 91, 0.16);
  background: rgba(255, 255, 255, 0.65);
  color: var(--navy);
}

.small-button {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 13px;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(8, 43, 91, 0.08);
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  height: 84px;
  align-items: center;
  justify-content: space-between;
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.brand img {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  object-fit: cover;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy strong,
.footer-brand span {
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-copy em,
.footer-brand em {
  color: var(--pink);
  font-style: normal;
}

.brand-copy small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  font-weight: 700;
}

.main-nav a {
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--pink);
}

.main-nav .nav-cta {
  border-radius: 12px;
  padding: 13px 20px;
  background: var(--navy);
  color: #fff;
}

.main-nav .nav-cta:hover {
  background: var(--pink);
  color: #fff;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: var(--surface);
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 3px;
  background: var(--navy);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 660px;
  background:
    radial-gradient(circle at 78% 15%, rgba(245, 6, 95, 0.08), transparent 24%),
    radial-gradient(circle at 15% 75%, rgba(255, 92, 53, 0.08), transparent 22%),
    linear-gradient(135deg, #fbfdff 0%, #fff 45%, #f6f1fb 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(8, 43, 91, 0.09) 1px, transparent 1px);
  background-size: 28px 28px;
  content: "";
  mask-image: linear-gradient(90deg, #000, transparent 35%, transparent 65%, #000);
  opacity: 0.5;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 660px;
  align-items: center;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 56px;
  padding-block: 62px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 25px;
}

.pill {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 0 13px;
  font-size: 11px;
  font-weight: 800;
}

.pill-live {
  border: 1px solid rgba(16, 152, 95, 0.22);
  background: #effcf5;
  color: #087545;
}

.pill-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #18b572;
  box-shadow: 0 0 0 4px rgba(24, 181, 114, 0.12);
}

.pill-discount {
  background: linear-gradient(135deg, #ffecf3, #f8edff);
  color: var(--pink);
}

.hero-copy h1 {
  max-width: 630px;
  margin: 0 0 17px;
  color: var(--navy);
  font-size: clamp(48px, 6vw, 78px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.hero-lead {
  max-width: 590px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
  margin-bottom: 31px;
}

.hero-meta > div {
  display: flex;
  min-width: 185px;
  align-items: center;
  gap: 12px;
}

.hero-meta .meta-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 13px;
  background: #fff;
  color: var(--pink);
  box-shadow: var(--shadow-sm);
  font-size: 21px;
}

.hero-meta > div > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero-meta small {
  color: var(--muted);
  font-size: 10px;
}

.hero-meta strong {
  font-size: 13px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-line {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 11px;
}

.avatar-stack {
  display: flex;
}

.avatar-stack i {
  display: grid;
  width: 30px;
  height: 30px;
  margin-left: -8px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.avatar-stack i:nth-child(2) {
  background: var(--pink);
}

.avatar-stack i:nth-child(3) {
  background: var(--violet);
}

.hero-visual {
  position: relative;
  padding: 25px 25px 5px;
}

.visual-card {
  position: relative;
  min-height: 490px;
  border: 10px solid rgba(255, 255, 255, 0.78);
  border-radius: 40px;
  background: linear-gradient(145deg, #0a2852, #0d3f75 50%, #151843);
  box-shadow: 0 35px 90px rgba(8, 43, 91, 0.28);
  transform: rotate(1deg);
}

.visual-card.has-cover {
  min-height: 0;
  aspect-ratio: 1085 / 1536;
  background: #e8d8bf;
}

.trip-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  object-fit: contain;
}

.paintball-art {
  position: absolute;
  overflow: hidden;
  inset: 0;
  border-radius: 30px;
  background:
    linear-gradient(30deg, rgba(255, 255, 255, 0.04) 25%, transparent 25%) 0 0/34px 34px,
    linear-gradient(-30deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%) 0 0/34px 34px;
}

.target {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  width: 270px;
  height: 270px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 25px solid #fff;
  border-radius: 50%;
  background: var(--pink);
  box-shadow:
    0 0 0 25px var(--navy),
    0 0 0 47px var(--coral),
    0 25px 60px rgba(0, 0, 0, 0.28);
  color: #fff;
  transform: translate(-50%, -50%) rotate(-4deg);
}

.target::before {
  position: absolute;
  width: 62px;
  height: 62px;
  border: 12px solid #fff;
  border-radius: 50%;
  background: var(--violet);
  content: "";
}

.target strong {
  position: relative;
  z-index: 2;
  margin-top: 160px;
  font: 900 30px/1 Arial, sans-serif;
  letter-spacing: 0.08em;
}

.target small {
  position: relative;
  z-index: 2;
  margin-top: 5px;
  font: 800 8px/1 Arial, sans-serif;
  letter-spacing: 0.22em;
}

.paint-dot,
.splash {
  position: absolute;
  border-radius: 50%;
}

.splash-a {
  top: -40px;
  right: -20px;
  width: 180px;
  height: 180px;
  background: var(--pink);
}

.splash-b {
  bottom: -70px;
  left: -30px;
  width: 230px;
  height: 230px;
  background: var(--violet);
}

.splash-c {
  top: 110px;
  left: -30px;
  width: 80px;
  height: 80px;
  background: var(--coral);
}

.dot-a {
  top: 50px;
  left: 60px;
  width: 18px;
  height: 18px;
  background: #ffc928;
}

.dot-b {
  right: 50px;
  bottom: 60px;
  width: 27px;
  height: 27px;
  background: #56e2cf;
}

.dot-c {
  right: 30px;
  bottom: 130px;
  width: 11px;
  height: 11px;
  background: #fff;
}

.visual-float {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.float-price {
  top: 40px;
  right: -38px;
  min-width: 148px;
  align-items: flex-start;
  flex-direction: column;
  gap: 3px;
  padding: 14px 18px;
  transform: rotate(-2deg);
}

.float-price small,
.float-seats small {
  color: var(--muted);
  font-size: 9px;
}

.float-price strong {
  color: var(--pink);
  font-size: 15px;
}

.float-seats {
  bottom: 34px;
  left: -28px;
  gap: 11px;
  padding: 12px 16px;
  transform: rotate(2deg);
}

.float-seats > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: #eafbf3;
  color: var(--green);
  font-weight: 900;
}

.float-seats div {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.float-seats strong {
  font: 900 18px/1 Arial, sans-serif;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.orb-one {
  top: 12%;
  left: 4%;
  width: 15px;
  height: 15px;
  background: var(--coral);
}

.orb-two {
  right: 3%;
  bottom: 10%;
  width: 21px;
  height: 21px;
  background: var(--pink);
}

.orb-three {
  right: 45%;
  top: 16%;
  width: 10px;
  height: 10px;
  background: var(--violet);
}

.quick-facts {
  position: relative;
  z-index: 3;
  border-bottom: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 -15px 45px rgba(8, 43, 91, 0.04);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-block: 25px;
}

.fact {
  display: flex;
  min-height: 56px;
  align-items: center;
  gap: 12px;
  border-left: 1px solid var(--line);
  padding: 0 27px;
}

.fact:first-child {
  padding-right: 0;
}

.fact:last-child {
  border-left: 0;
}

.fact-icon,
.stat-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  font-weight: 900;
}

.fact-icon.coral,
.stat-icon.coral {
  background: #fff0ec;
  color: var(--coral);
}

.fact-icon.violet,
.stat-icon.violet {
  background: #f4ecfb;
  color: var(--violet);
}

.fact-icon.pink,
.stat-icon.pink {
  background: #fff0f5;
  color: var(--pink);
}

.fact-icon.blue,
.stat-icon.blue {
  background: #edf4fc;
  color: var(--blue);
}

.stat-icon.green {
  background: #eafbf3;
  color: var(--green);
}

.fact div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
}

.fact small {
  color: var(--muted);
  font-size: 9px;
}

.fact strong {
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.section {
  padding-block: 100px;
}

.section-heading {
  max-width: 640px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-heading.compact {
  margin-bottom: 35px;
}

.section-heading h2,
.booking-copy h2 {
  margin: 0 0 15px;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.section-heading > p:last-child,
.booking-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.activities-section {
  background:
    radial-gradient(circle at 5% 20%, rgba(245, 6, 95, 0.06), transparent 20%),
    linear-gradient(180deg, #fff, #f8faff);
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.activity-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  border: 1px solid #e6edf6;
  border-radius: var(--radius);
  padding: 32px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.activity-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100px;
  height: 100px;
  border-radius: 100% 0 0 0;
  background: linear-gradient(135deg, transparent, rgba(245, 6, 95, 0.06));
  content: "";
}

.activity-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.activity-number {
  position: absolute;
  top: 24px;
  left: 26px;
  color: #e4eaf1;
  font: 900 30px/1 Arial, sans-serif;
}

.activity-emoji {
  display: grid;
  width: 60px;
  height: 60px;
  margin-bottom: 25px;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff0f5, #f2e9fb);
  color: var(--pink);
  font-size: 25px;
}

.activity-card:nth-child(2) .activity-emoji {
  background: #edf4fc;
  color: var(--blue);
}

.activity-card:nth-child(3) .activity-emoji {
  background: #fff2ea;
  color: var(--coral);
}

.activity-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 19px;
}

.activity-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.booking-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 0 100%, rgba(245, 6, 95, 0.2), transparent 25%),
    radial-gradient(circle at 100% 0, rgba(108, 30, 177, 0.2), transparent 25%),
    var(--navy-2);
  color: #fff;
}

.booking-section::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 24px 24px;
  content: "";
  opacity: 0.45;
}

.booking-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: start;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 70px;
}

.booking-copy {
  position: sticky;
  top: 120px;
  padding-top: 30px;
}

.booking-copy .eyebrow {
  color: #ff89b4;
}

.booking-copy h2 {
  color: #fff;
}

.booking-copy > p {
  color: #aebbd0;
}

.include-list {
  margin-top: 35px;
}

.include-list h3 {
  margin: 0 0 18px;
  font-size: 13px;
}

.include-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 13px;
  color: #d4ddeb;
  font-size: 12px;
}

.include-list span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #6fe0ae;
}

.booking-note {
  display: flex;
  gap: 13px;
  margin-top: 35px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.06);
}

.booking-note > span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 9px;
  background: var(--pink);
  font-family: Georgia, serif;
  font-weight: 900;
}

.booking-note p {
  margin: 0;
  color: #aebbd0;
  font-size: 11px;
  line-height: 1.7;
}

.booking-note strong {
  color: #fff;
}

.booking-card {
  border-radius: 30px;
  padding: 34px;
  background: #fff;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.28);
  color: var(--ink);
}

.form-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 25px;
}

.form-heading span {
  color: var(--pink);
  font-size: 10px;
  font-weight: 800;
}

.form-heading h3 {
  margin: 5px 0 0;
  color: var(--navy);
  font-size: 21px;
}

.form-heading .step-badge {
  border-radius: 999px;
  padding: 8px 12px;
  background: #fff0f5;
}

.booking-form,
.admin-form-main,
.form-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
}

.field label {
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
}

.field label b {
  color: var(--pink);
}

.field input,
.field select,
.field textarea,
.filter-bar select,
.search-box {
  width: 100%;
  border: 1px solid #dbe4ef;
  border-radius: 12px;
  outline: 0;
  background: #fbfcfe;
  color: var(--ink);
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field input,
.field select {
  height: 48px;
  padding: 0 14px;
}

.field textarea {
  min-height: 90px;
  resize: vertical;
  padding: 13px 14px;
  line-height: 1.7;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.search-box:focus-within {
  border-color: rgba(245, 6, 95, 0.55);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(245, 6, 95, 0.08);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #a7b3c2;
}

.field > small {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.7;
}

.number-wrap {
  display: grid;
  overflow: hidden;
  height: 48px;
  border: 1px solid #dbe4ef;
  border-radius: 12px;
  background: #fbfcfe;
  grid-template-columns: 44px 1fr 44px;
}

.number-wrap input {
  height: 46px;
  border: 0;
  border-radius: 0;
  padding: 0;
  text-align: center;
  appearance: textfield;
}

.number-wrap input::-webkit-outer-spin-button,
.number-wrap input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.number-wrap button {
  border: 0;
  background: transparent;
  color: var(--pink);
  cursor: pointer;
  font-size: 19px;
  font-weight: 800;
}

.child-details.hidden {
  display: none;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  cursor: pointer;
  font-size: 10px;
  line-height: 1.6;
}

.consent input {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  accent-color: var(--pink);
}

.booking-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 13px;
  padding: 14px 16px;
  background: var(--surface);
}

.booking-total span {
  color: var(--muted);
  font-size: 11px;
}

.booking-total strong {
  color: var(--pink);
  font-size: 17px;
}

.submit-button {
  width: 100%;
}

.secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 9px;
}

.secure-note span {
  color: var(--green);
}

.alert {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid;
  border-radius: 13px;
  padding: 13px 15px;
  font-size: 11px;
  line-height: 1.7;
}

.alert > span {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  font-weight: 900;
}

.alert-error {
  border-color: #f5c1cd;
  background: #fff4f6;
  color: #a41437;
}

.alert-error > span {
  background: #ffdce4;
}

.alert-success {
  border-color: #b9ead3;
  background: #effcf6;
  color: #087545;
}

.alert-success > span {
  background: #d3f7e5;
}

.alert-warning {
  border-color: #f1d69d;
  background: #fff9eb;
  color: #8b5b07;
}

.booking-closed {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 45px 25px;
  background: var(--surface);
  text-align: center;
}

.booking-closed > span {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  place-items: center;
  border-radius: 20px;
  background: #fff;
  color: var(--pink);
  box-shadow: var(--shadow-sm);
  font-size: 27px;
}

.booking-closed h3 {
  margin: 0 0 8px;
}

.booking-closed p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.other-trips {
  background: var(--surface);
}

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

.mini-trip {
  display: block;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 25px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.mini-trip > span {
  color: var(--pink);
  font-size: 10px;
  font-weight: 800;
}

.mini-trip h3 {
  margin: 9px 0;
}

.mini-trip p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 11px;
}

.mini-trip strong {
  color: var(--pink);
  font-size: 11px;
}

.site-footer {
  padding: 60px 0 22px;
  background: #051936;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 70px;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  object-fit: cover;
}

.footer-grid > div:first-child p {
  max-width: 360px;
  margin: 18px 0 0;
  color: #96a8c0;
  font-size: 12px;
  line-height: 1.8;
}

.footer-grid h3 {
  margin: 0 0 18px;
  font-size: 12px;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}

.footer-grid > div:not(:first-child) a,
.footer-grid > div:not(:first-child) span {
  color: #96a8c0;
  font-size: 10px;
}

.copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  color: #7186a2;
  font-size: 9px;
}

.empty-state,
.error-page {
  display: flex;
  min-height: 650px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.empty-icon {
  display: grid;
  width: 90px;
  height: 90px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  box-shadow: var(--shadow);
  color: #fff;
  font-size: 35px;
}

.empty-state h1,
.error-page h1 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 45px;
}

.empty-state > p:last-child,
.error-page > p {
  max-width: 550px;
  margin: 0 0 25px;
  color: var(--muted);
}

.error-code {
  background: linear-gradient(135deg, var(--pink), var(--violet));
  background-clip: text;
  color: transparent;
  font: 900 130px/1 Arial, sans-serif;
}

.success-page {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 70px 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(245, 6, 95, 0.1), transparent 20%),
    radial-gradient(circle at 90% 80%, rgba(108, 30, 177, 0.1), transparent 20%),
    var(--surface);
}

.success-card {
  position: relative;
  z-index: 2;
  max-width: 650px;
  border: 1px solid #e5ecf4;
  border-radius: 32px;
  padding: 45px;
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}

.success-check {
  display: grid;
  width: 82px;
  height: 82px;
  margin: 0 auto 25px;
  place-items: center;
  border: 9px solid #dff8ec;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 15px 35px rgba(16, 152, 95, 0.24);
  color: #fff;
  font-size: 35px;
  font-weight: 900;
}

.success-card h1 {
  margin: 0 0 13px;
  color: var(--navy);
  font-size: 38px;
}

.success-lead {
  max-width: 480px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.reference-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px dashed rgba(245, 6, 95, 0.42);
  border-radius: 18px;
  padding: 20px;
  background: #fff6f9;
}

.reference-box small {
  color: var(--muted);
  font-size: 9px;
}

.reference-box strong {
  margin-top: 5px;
  color: var(--pink);
  font: 900 25px/1.4 Arial, sans-serif;
  letter-spacing: 0.06em;
}

.reference-box button {
  position: absolute;
  left: 12px;
  border: 0;
  border-radius: 9px;
  padding: 8px 10px;
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  font-size: 9px;
  font-weight: 800;
}

.success-details {
  display: grid;
  margin: 25px 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  text-align: right;
  grid-template-columns: repeat(2, 1fr);
}

.success-details div {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 17px 20px;
}

.success-details div:nth-child(odd) {
  border-left: 1px solid var(--line);
}

.success-details div:nth-child(-n + 2) {
  border-bottom: 1px solid var(--line);
}

.success-details span {
  color: var(--muted);
  font-size: 9px;
}

.success-details strong {
  font-size: 11px;
}

.mail-status {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 25px;
  border-radius: 15px;
  padding: 14px;
  background: var(--surface);
  text-align: right;
}

.mail-status > span {
  display: grid;
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 11px;
  background: #eafbf3;
  color: var(--green);
  font-weight: 900;
}

.mail-status p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.7;
}

.mail-status strong {
  color: var(--navy);
}

/* Admin */
.admin-page {
  min-height: 100vh;
  background: #f4f7fb;
}

.admin-sidebar {
  position: fixed;
  z-index: 80;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  width: 250px;
  flex-direction: column;
  padding: 22px 17px;
  background: var(--navy-2);
  color: #fff;
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 38px;
  padding: 0 8px;
}

.admin-brand img {
  width: 49px;
  height: 49px;
  border-radius: 13px;
  object-fit: cover;
}

.admin-brand > span {
  display: flex;
  flex-direction: column;
}

.admin-brand strong {
  font-family: Arial, sans-serif;
  font-size: 17px;
  font-weight: 900;
}

.admin-brand em {
  color: var(--pink);
  font-style: normal;
}

.admin-brand small {
  margin-top: 3px;
  color: #8295af;
  font-size: 8px;
}

.admin-sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.admin-sidebar nav a,
.sidebar-logout button {
  display: flex;
  width: 100%;
  min-height: 47px;
  align-items: center;
  gap: 12px;
  border: 0;
  border-radius: 12px;
  padding: 0 13px;
  background: transparent;
  color: #94a8c2;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  text-align: right;
  transition: background 0.2s ease, color 0.2s ease;
}

.admin-sidebar nav a span,
.sidebar-logout button span {
  display: grid;
  width: 25px;
  place-items: center;
  font-size: 17px;
}

.admin-sidebar nav a:hover,
.admin-sidebar nav a.active {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.admin-sidebar nav a.active {
  box-shadow: inset -3px 0 0 var(--pink);
}

.sidebar-logout {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 13px;
}

.sidebar-logout button:hover {
  color: #ff87a9;
}

.admin-shell {
  min-height: 100vh;
  margin-right: 250px;
}

.admin-topbar {
  position: sticky;
  z-index: 30;
  top: 0;
  display: flex;
  height: 72px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 0 32px;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(15px);
}

.admin-topbar > div {
  display: flex;
  flex-direction: column;
}

.admin-topbar small {
  color: var(--muted);
  font-size: 8px;
}

.admin-topbar strong {
  margin-top: 3px;
  font-size: 12px;
}

.topbar-site {
  color: var(--pink);
  font-size: 10px;
  font-weight: 800;
}

.admin-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 11px;
  background: var(--surface);
  color: var(--navy);
  cursor: pointer;
}

.admin-main {
  width: min(1320px, calc(100% - 54px));
  margin-inline: auto;
  padding: 34px 0 70px;
}

.admin-page-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.admin-page-heading h1 {
  margin: 0;
  color: var(--navy);
  font-size: 25px;
  letter-spacing: -0.025em;
}

.stat-grid {
  display: grid;
  margin: 22px 0;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-card {
  display: flex;
  min-height: 130px;
  align-items: flex-start;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(8, 43, 91, 0.04);
}

.stat-card > div {
  display: flex;
  flex-direction: column;
}

.stat-card small {
  color: var(--muted);
  font-size: 9px;
}

.stat-card strong {
  margin: 5px 0 3px;
  color: var(--navy);
  font: 900 29px/1.2 Arial, sans-serif;
}

.stat-card p {
  margin: 0;
  color: #8a98aa;
  font-size: 8px;
  line-height: 1.5;
}

.admin-grid {
  display: grid;
  gap: 18px;
}

.admin-grid.two-columns {
  grid-template-columns: 1.15fr 0.85fr;
}

.admin-panel {
  border: 1px solid var(--line);
  border-radius: 19px;
  background: #fff;
  box-shadow: 0 8px 30px rgba(8, 43, 91, 0.04);
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border-bottom: 1px solid var(--line);
  padding: 20px 22px;
}

.panel-heading .eyebrow {
  margin-bottom: 4px;
  font-size: 8px;
}

.panel-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: 15px;
}

.panel-heading > a {
  color: var(--pink);
  font-size: 9px;
  font-weight: 800;
}

.trip-admin-list article,
.recent-bookings article {
  display: flex;
  align-items: center;
  gap: 13px;
  border-bottom: 1px solid #edf1f5;
  padding: 16px 20px;
}

.trip-admin-list article:last-child,
.recent-bookings article:last-child {
  border-bottom: 0;
}

.trip-thumb {
  display: grid;
  overflow: hidden;
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--violet));
  color: #fff;
  font-size: 24px;
}

.trip-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trip-admin-copy {
  min-width: 0;
  flex: 1;
}

.trip-admin-copy h3,
.recent-bookings h3 {
  overflow: hidden;
  margin: 6px 0 4px;
  color: var(--navy);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.trip-admin-copy p,
.recent-bookings p {
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.status-row {
  display: flex;
  gap: 5px;
}

.status {
  display: inline-flex;
  min-height: 20px;
  align-items: center;
  border-radius: 999px;
  padding: 0 8px;
  font-size: 7px;
  font-weight: 800;
}

.status.confirmed {
  background: #eafbf3;
  color: #087545;
}

.status.cancelled {
  background: #fff0f3;
  color: #b91c42;
}

.status.featured {
  background: #f4ecfb;
  color: var(--violet);
}

.capacity-line {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 8px;
}

.capacity-line > div {
  overflow: hidden;
  width: 100px;
  height: 4px;
  border-radius: 9px;
  background: var(--surface-2);
}

.capacity-line i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: 9px;
  background: linear-gradient(90deg, var(--pink), var(--violet));
}

.capacity-line span {
  color: var(--muted);
  font-size: 7px;
}

.icon-button {
  display: grid;
  width: 33px;
  height: 33px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  transition: border 0.2s ease, color 0.2s ease;
}

.icon-button:hover {
  border-color: rgba(245, 6, 95, 0.35);
  color: var(--pink);
}

.customer-avatar {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  background: #edf4fc;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.recent-bookings article > div:nth-child(2) {
  min-width: 0;
  flex: 1;
}

.recent-meta {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 6px;
}

.recent-meta small {
  color: var(--muted);
  font-size: 7px;
}

.panel-empty {
  padding: 35px 20px;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

.panel-empty.large {
  padding: 70px 20px;
}

.admin-form {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 18px;
}

.admin-form-main {
  gap: 18px;
}

.admin-form-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-panel {
  gap: 17px;
  padding: 0 22px 22px;
}

.form-panel .panel-heading {
  margin: 0 -22px 3px;
}

.toggle-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
  cursor: pointer;
}

.toggle-row > span {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 4px;
}

.toggle-row strong {
  font-size: 10px;
}

.toggle-row small {
  color: var(--muted);
  font-size: 8px;
  line-height: 1.5;
}

.toggle-row input {
  position: absolute;
  opacity: 0;
}

.toggle-row i {
  position: relative;
  width: 40px;
  height: 23px;
  flex: 0 0 auto;
  border-radius: 20px;
  background: #cbd6e3;
  transition: background 0.2s ease;
}

.toggle-row i::after {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(8, 43, 91, 0.25);
  content: "";
  transition: transform 0.2s ease;
}

.toggle-row input:checked + i {
  background: var(--pink);
}

.toggle-row input:checked + i::after {
  transform: translateX(-17px);
}

.upload-box {
  display: flex;
  min-height: 145px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  border: 1px dashed #bdcbdc;
  border-radius: 15px;
  background: var(--surface);
  cursor: pointer;
  text-align: center;
}

.upload-box input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.upload-box > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 12px;
  background: #fff;
  color: var(--pink);
  box-shadow: var(--shadow-sm);
  font-size: 20px;
}

.upload-box strong {
  font-size: 10px;
}

.upload-box small {
  color: var(--muted);
  font-size: 8px;
}

.current-cover {
  width: 100%;
  max-height: 180px;
  border-radius: 14px;
  object-fit: cover;
}

.sticky-save {
  position: sticky;
  bottom: 20px;
}

.filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  padding: 15px 18px;
}

.search-box {
  display: flex;
  max-width: 390px;
  height: 43px;
  align-items: center;
  flex: 1;
  gap: 8px;
  padding: 0 13px;
}

.search-box span {
  color: var(--muted);
  font-size: 18px;
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 10px;
}

.filter-bar select {
  width: 140px;
  height: 43px;
  padding: 0 12px;
  font-size: 10px;
}

.clear-filter {
  color: var(--pink);
  font-size: 9px;
  font-weight: 700;
}

.table-scroll {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  min-width: 1180px;
  border-collapse: collapse;
  text-align: right;
}

.admin-table th {
  padding: 13px 15px;
  background: #f9fbfd;
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
}

.admin-table td {
  border-top: 1px solid #edf1f5;
  padding: 14px 15px;
  font-size: 10px;
  vertical-align: top;
}

.admin-table td > strong,
.admin-table td > small {
  display: block;
}

.admin-table td > small {
  max-width: 180px;
  overflow: hidden;
  margin-top: 5px;
  color: var(--muted);
  font-size: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-table .reference {
  color: var(--pink);
  font-family: Arial, sans-serif;
  font-size: 9px;
  letter-spacing: 0.04em;
}

.booking-extra {
  position: relative;
  min-width: 95px;
}

.booking-extra summary {
  color: var(--blue);
  cursor: pointer;
  font-size: 8px;
  font-weight: 800;
  list-style: none;
}

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

.booking-extra[open] > div {
  width: 230px;
  margin-top: 9px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  background: #f8fbff;
  box-shadow: var(--shadow-sm);
}

.booking-extra strong,
.booking-extra p {
  display: block;
}

.booking-extra strong {
  margin-top: 8px;
  color: var(--navy);
  font-size: 8px;
}

.booking-extra strong:first-child {
  margin-top: 0;
}

.booking-extra p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.7;
  white-space: normal;
}

.mail-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 3px;
  border-radius: 50%;
  background: #cbd6e3;
}

.mail-dot.sent {
  background: var(--green);
}

.mail-dot.failed {
  background: var(--danger);
}

.table-actions {
  display: flex;
  gap: 5px;
}

.settings-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 1fr 0.8fr;
  gap: 18px;
}

.smtp-status {
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid;
  border-radius: 15px;
  padding: 15px;
}

.smtp-status > span {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  font-weight: 900;
}

.smtp-status.ready {
  border-color: #b9ead3;
  background: #f1fcf7;
}

.smtp-status.ready > span {
  background: #d3f7e5;
  color: var(--green);
}

.smtp-status.missing {
  border-color: #f3c6d0;
  background: #fff6f8;
}

.smtp-status.missing > span {
  background: #ffe0e7;
  color: var(--danger);
}

.smtp-status strong {
  font-size: 11px;
}

.smtp-status p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.6;
}

.config-list {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 15px;
}

.config-list div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 12px 14px;
}

.config-list div:last-child {
  border-bottom: 0;
}

.config-list dt {
  color: var(--muted);
  font-size: 8px;
}

.config-list dd {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 9px;
  text-align: left;
}

.security-hint {
  margin: 0;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.7;
}

.smtp-edit-form {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.danger-consent {
  color: var(--danger);
}

.login-shell {
  display: grid;
  min-height: 100vh;
  grid-template-columns: 1.05fr 0.95fr;
}

.login-brand-panel {
  position: relative;
  display: flex;
  overflow: hidden;
  align-items: center;
  padding: 70px 10vw;
  background:
    radial-gradient(circle at 10% 90%, rgba(245, 6, 95, 0.4), transparent 30%),
    radial-gradient(circle at 90% 10%, rgba(108, 30, 177, 0.5), transparent 30%),
    var(--navy-2);
  color: #fff;
}

.login-brand-panel::after {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 25px 25px;
  content: "";
  opacity: 0.45;
}

.login-brand-content {
  position: relative;
  z-index: 2;
  max-width: 490px;
}

.login-brand-content > img {
  width: 100px;
  height: 100px;
  margin-bottom: 45px;
  border-radius: 25px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.28);
  object-fit: cover;
}

.login-brand-content h1 {
  margin: 0 0 20px;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.12;
  letter-spacing: -0.05em;
}

.login-brand-content h1 em {
  background: linear-gradient(90deg, #ff5c35, #ff4181);
  background-clip: text;
  color: transparent;
  font-style: normal;
}

.login-brand-content > p:last-child {
  max-width: 430px;
  margin: 0;
  color: #a7b6ca;
  font-size: 13px;
  line-height: 1.8;
}

.login-art i {
  position: absolute;
  z-index: 1;
  border: 18px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.login-art i:nth-child(1) {
  right: -100px;
  bottom: -100px;
  width: 320px;
  height: 320px;
}

.login-art i:nth-child(2) {
  top: 80px;
  left: -50px;
  width: 160px;
  height: 160px;
}

.login-art i:nth-child(3) {
  right: 18%;
  top: 9%;
  width: 60px;
  height: 60px;
  border-width: 10px;
  border-color: rgba(245, 6, 95, 0.6);
}

.login-form-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  background: #fff;
}

.login-form {
  display: flex;
  width: 100%;
  max-width: 420px;
  flex-direction: column;
  gap: 19px;
}

.login-form h2 {
  margin: -7px 0 -10px;
  color: var(--navy);
  font-size: 30px;
}

.login-hint {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 11px;
}

.password-field {
  position: relative;
}

.password-field input {
  padding-left: 50px;
}

.password-field button {
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.back-link {
  color: var(--muted);
  font-size: 9px;
  text-align: center;
}

.mobile-login-brand {
  display: none;
}

.sidebar-overlay {
  display: none;
}

@media (max-width: 1100px) {
  .hero-grid {
    gap: 25px;
    grid-template-columns: 1fr 0.9fr;
  }

  .hero-copy h1 {
    font-size: 58px;
  }

  .visual-card {
    min-height: 440px;
  }

  .target {
    width: 220px;
    height: 220px;
  }

  .facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fact:nth-child(2) {
    border-left: 0;
  }

  .fact:nth-child(-n + 2) {
    margin-bottom: 16px;
  }

  .booking-grid {
    gap: 35px;
  }

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-grid.two-columns,
  .settings-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 850px) {
  .header-inner {
    height: 72px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand-copy strong {
    font-size: 17px;
  }

  .menu-button {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 72px;
    right: 20px;
    left: 20px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 14px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    border-radius: 10px;
    padding: 12px;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 55px 80px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-pills,
  .hero-meta,
  .hero-actions,
  .trust-line {
    justify-content: center;
  }

  .hero-copy h1,
  .hero-lead {
    margin-inline: auto;
  }

  .hero-visual {
    width: min(540px, 100%);
    margin: 10px auto 0;
  }

  .visual-card {
    min-height: 500px;
  }

  .visual-card.has-cover {
    min-height: 0;
  }

  .activity-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .booking-copy {
    position: static;
    max-width: 620px;
    padding-top: 0;
  }

  .trip-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-sidebar {
    transform: translateX(100%);
    transition: transform 0.25s ease;
  }

  .sidebar-open .admin-sidebar {
    transform: translateX(0);
  }

  .admin-shell {
    margin-right: 0;
  }

  .admin-menu-button {
    display: block;
  }

  .admin-topbar {
    padding: 0 22px;
  }

  .admin-topbar > div {
    flex: 1;
    margin-right: 12px;
  }

  .sidebar-overlay {
    position: fixed;
    z-index: 70;
    inset: 0;
    background: rgba(2, 17, 37, 0.55);
  }

  .sidebar-open .sidebar-overlay {
    display: block;
  }

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

  .admin-form-side {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-form-side > :first-child,
  .admin-form-side > :last-child {
    grid-column: 1 / -1;
  }

  .login-shell {
    grid-template-columns: 1fr;
  }

  .login-brand-panel {
    display: none;
  }

  .login-form-panel {
    min-height: 100vh;
  }

  .mobile-login-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 30px;
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: 900;
  }

  .mobile-login-brand img {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    object-fit: cover;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .brand-copy small {
    display: none;
  }

  .hero-grid {
    padding-top: 40px;
  }

  .hero-copy h1 {
    font-size: 43px;
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .hero-meta > div {
    min-width: 0;
    align-items: flex-start;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.75);
    text-align: right;
  }

  .hero-meta .meta-icon {
    width: 35px;
    height: 35px;
    box-shadow: none;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-visual {
    padding: 18px 8px;
  }

  .visual-card {
    min-height: 370px;
    border-width: 7px;
    border-radius: 30px;
  }

  .visual-card.has-cover {
    min-height: 0;
  }

  .visual-card.has-cover .trip-cover {
    border-radius: 23px;
  }

  .paintball-art {
    border-radius: 23px;
  }

  .target {
    width: 170px;
    height: 170px;
    border-width: 17px;
    box-shadow:
      0 0 0 17px var(--navy),
      0 0 0 32px var(--coral),
      0 25px 60px rgba(0, 0, 0, 0.28);
  }

  .target::before {
    width: 45px;
    height: 45px;
    border-width: 9px;
  }

  .target strong {
    margin-top: 125px;
    font-size: 23px;
  }

  .float-price {
    top: 35px;
    right: -4px;
  }

  .float-seats {
    bottom: -5px;
    left: 8px;
  }

  .facts-grid {
    grid-template-columns: 1fr 1fr;
    padding-block: 17px;
  }

  .fact {
    align-items: flex-start;
    border-left: 0;
    padding: 10px 8px;
  }

  .fact:nth-child(-n + 2) {
    margin-bottom: 0;
  }

  .fact-icon {
    width: 36px;
    height: 36px;
  }

  .section {
    padding-block: 70px;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .activity-grid,
  .trip-list {
    grid-template-columns: 1fr;
  }

  .activity-card {
    min-height: 220px;
  }

  .booking-card {
    margin-inline: -4px;
    border-radius: 22px;
    padding: 22px 17px;
  }

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

  .attendee-row {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .copyright {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .success-card {
    padding: 35px 18px;
  }

  .success-card h1 {
    font-size: 30px;
  }

  .reference-box button {
    position: static;
    margin-top: 10px;
  }

  .success-details {
    grid-template-columns: 1fr;
  }

  .success-details div,
  .success-details div:nth-child(odd),
  .success-details div:nth-child(-n + 2) {
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .success-details div:last-child {
    border-bottom: 0;
  }

  .admin-main {
    width: min(100% - 24px, 1320px);
    padding-top: 22px;
  }

  .topbar-site {
    display: none;
  }

  .admin-page-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-page-heading .button {
    width: 100%;
  }

  .stat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .stat-card {
    min-height: 145px;
    flex-direction: column;
    padding: 15px;
  }

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

  .admin-form-side > * {
    grid-column: auto !important;
  }

  .filter-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .search-box,
  .filter-bar select {
    width: 100%;
    max-width: none;
  }

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

  .login-form-panel {
    padding: 25px;
  }
}
