:root {
  --blue: #0c2340;
  --blue-soft: #173b65;
  --sand: #f5efe4;
  --sand-deep: #dfc79b;
  --gold: #c59b4b;
  --ink: #152238;
  --muted: #647084;
  --white: #ffffff;
  --line: rgba(12, 35, 64, 0.12);
  --shadow: 0 22px 60px rgba(12, 35, 64, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

body.admin-bar .site-header {
  top: 32px;
}

.triptreat-site {
  position: relative;
}

.nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-utility {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.nav-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}

.nav-contact a {
  color: var(--blue);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--gold);
  font-family: Inter, sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 650;
  color: var(--blue);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(12, 35, 64, 0.04);
}

.lang-switch button {
  min-height: 32px;
  border: 0;
  border-radius: 999px;
  padding: 0 10px;
  background: transparent;
  color: var(--blue);
  font-weight: 800;
  cursor: pointer;
}

.lang-switch button.is-active {
  background: var(--blue);
  color: var(--white);
}

.lang-switch-floating {
  position: fixed;
  z-index: 9999;
  top: 18px;
  right: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 36px rgba(12, 35, 64, 0.18);
}

[dir="rtl"] .lang-switch-floating {
  right: auto;
  left: 18px;
}

.mobile-bottom-nav {
  display: none;
}

#ea11y-root,
.ea11y-widget,
.ea11y-skip-to-content-backdrop {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.nav-links a:not(.btn) {
  opacity: 0.82;
}

.nav-links a:hover {
  opacity: 1;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--blue);
  border-radius: 8px;
  font-size: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 750;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
  background: var(--gold);
  color: var(--blue);
  box-shadow: 0 12px 30px rgba(197, 155, 75, 0.28);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: end;
  position: relative;
  color: var(--white);
  overflow: hidden;
  background: var(--blue);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 35, 64, 0.86), rgba(12, 35, 64, 0.34)), var(--hero-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  animation: slowZoom 18s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(0deg, rgba(12, 35, 64, 0.5), transparent);
}

.hero-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 92px 0 72px;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.06;
  margin: 0;
  color: var(--blue);
}

.hero h1 {
  max-width: 820px;
  color: var(--white);
  font-size: clamp(2.55rem, 8vw, 5.6rem);
  margin-top: 14px;
}

.hero p {
  max-width: 680px;
  margin: 22px 0 0;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.section {
  padding: 86px 0;
}

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

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

.section-blue h2,
.section-blue h3 {
  color: var(--white);
}

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

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 590px;
  margin: 10px 0 0;
  color: var(--muted);
}

.section-blue .section-head p,
.section-blue p {
  color: rgba(255, 255, 255, 0.75);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: 1.45rem;
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

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

.trip-card,
.testimonial,
.feature,
.step,
.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(12, 35, 64, 0.08);
}

.trip-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.holiday-card {
  min-height: 360px;
  position: relative;
  display: grid;
  align-content: end;
  overflow: hidden;
  border-radius: 8px;
  color: var(--white);
  box-shadow: var(--shadow);
}

.holiday-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 35, 64, 0.25), rgba(12, 35, 64, 0.94)), var(--holiday-image);
  background-size: cover;
  background-position: center;
  transition: transform 500ms ease;
}

.holiday-card:hover::before {
  transform: scale(1.05);
}

.holiday-card-body {
  position: relative;
  z-index: 1;
  padding: 28px;
  background: linear-gradient(180deg, transparent, rgba(4, 16, 32, 0.42));
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.holiday-card h3 {
  color: #ffffff;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
}

.holiday-card p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.96);
}

.hotel-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(12, 35, 64, 0.08);
}

.hotel-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.hotel-card-body {
  padding: 20px;
}

.hotel-card h3 {
  font-size: 1.25rem;
}

.hotel-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.trip-card-body {
  padding: 22px;
}

.trip-card p,
.testimonial p,
.feature p,
.step p,
.info-card p {
  color: var(--muted);
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(197, 155, 75, 0.14);
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: center;
}

.split img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.check-list li::before {
  content: "✓";
  flex: 0 0 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--blue);
  font-weight: 900;
}

.feature,
.step,
.testimonial,
.info-card {
  padding: 24px;
}

.step-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 18px;
}

.testimonial strong {
  color: var(--blue);
}

.testimonial {
  display: grid;
  gap: 16px;
}

.review-person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-person img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(197, 155, 75, 0.28);
}

.review-person span {
  display: block;
  color: var(--muted);
  font-size: 0.94rem;
}

.stars {
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.page-hero {
  min-height: 480px;
}

.page-hero .hero-inner {
  padding-bottom: 62px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: start;
}

.content-block {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  margin-bottom: 22px;
}

.content-block p,
.content-block li {
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 16px;
  padding: 0;
  list-style: none;
}

.timeline li {
  border-left: 3px solid var(--gold);
  padding-left: 18px;
}

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

.gallery img {
  height: 170px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.highlight-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(12, 35, 64, 0.08);
}

.highlight-item {
  background: var(--white);
  padding: 22px;
}

.highlight-item span {
  display: block;
  color: var(--gold);
  font-weight: 900;
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.highlight-item strong {
  display: block;
  color: var(--blue);
  line-height: 1.3;
}

.highlight-item small {
  display: block;
  color: var(--muted);
  margin-top: 5px;
}

.sidebar {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 18px;
}

.overview-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 13px;
}

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

.overview-list span {
  color: var(--muted);
}

.form {
  display: grid;
  gap: 16px;
}

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

.field {
  display: grid;
  gap: 7px;
}

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

label {
  font-weight: 750;
  color: var(--blue);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(197, 155, 75, 0.22);
  border-color: var(--gold);
}

.form-message {
  display: none;
  padding: 14px 16px;
  border-radius: 6px;
  background: rgba(30, 126, 78, 0.12);
  color: #17623d;
  font-weight: 750;
}

.form-error {
  color: #b42318;
  font-size: 0.9rem;
  min-height: 1.2em;
}

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

.map-placeholder {
  min-height: 360px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(12, 35, 64, 0.28);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(12, 35, 64, 0.08), rgba(197, 155, 75, 0.12));
  color: var(--blue);
  font-weight: 800;
  text-align: center;
  padding: 24px;
}

.site-footer {
  background: #071a31;
  color: rgba(255, 255, 255, 0.78);
  padding: 54px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 34px;
}

.site-footer h3,
.site-footer .brand {
  color: var(--white);
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 36px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes slowZoom {
  from {
    transform: scale(1.03);
  }
  to {
    transform: scale(1.09);
  }
}

@media (max-width: 960px) {
  .grid-4,
  .grid-3,
  .grid-2,
  .split,
  .detail-layout,
  .contact-band,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }
}

@media (max-width: 980px) {
  .nav {
    min-height: 104px;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 0 12px;
  }

  .menu-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    flex: 0 0 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 7px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    align-items: center;
  }

  .nav-links > a:not(.btn) {
    width: auto;
    text-align: center;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(12, 35, 64, 0.05);
    font-weight: 800;
    font-size: 0.82rem;
  }

  .nav-utility {
    width: auto;
    margin-left: 0;
    display: flex;
  }

  .nav-utility .btn {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.8rem;
    border-radius: 999px;
  }

  .lang-switch {
    width: max-content;
    transform: scale(0.9);
  }

  .section {
    padding: 62px 0;
  }

  .section-head {
    display: block;
  }

  .form-grid,
  .gallery,
  .highlight-strip {
    grid-template-columns: 1fr;
  }

  .trip-card img {
    height: 220px;
  }

  .content-block {
    padding: 22px;
  }

  body {
    padding-bottom: 0;
  }
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

/* Trip Treat hero readability fix */
.hero::before {
  background: linear-gradient(90deg, rgba(7, 26, 49, 0.92), rgba(7, 26, 49, 0.62) 52%, rgba(7, 26, 49, 0.42)), var(--hero-image) !important;
  background-size: cover !important;
  background-position: center !important;
}

.hero h1,
.hero .hero-inner h1 {
  color: #ffffff !important;
}

.hero p,
.hero .hero-inner p {
  color: rgba(255, 255, 255, 0.94) !important;
}

.hero h1,
.hero p,
.hero .eyebrow {
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.55);
}

.hero .eyebrow {
  color: #f0c86f;
}

[dir="rtl"] body {
  font-family: Inter, Tahoma, Arial, sans-serif;
}

[dir="rtl"] .nav,
[dir="rtl"] .hero-inner,
[dir="rtl"] .section-head,
[dir="rtl"] .contact-band,
[dir="rtl"] .review-person,
[dir="rtl"] .check-list li {
  direction: rtl;
}

[dir="rtl"] .hero::before {
  background: linear-gradient(270deg, rgba(7, 26, 49, 0.92), rgba(7, 26, 49, 0.62) 52%, rgba(7, 26, 49, 0.42)), var(--hero-image) !important;
  background-size: cover !important;
  background-position: center !important;
}

[dir="rtl"] .timeline li {
  border-left: 0;
  border-right: 3px solid var(--gold);
  padding-left: 0;
  padding-right: 18px;
}

[dir="rtl"] input,
[dir="rtl"] select,
[dir="rtl"] textarea {
  direction: rtl;
  text-align: right;
}

@media (max-width: 760px) {
  .hero::before {
    background: linear-gradient(90deg, rgba(7, 26, 49, 0.94), rgba(7, 26, 49, 0.7)), var(--hero-image) !important;
    background-size: cover !important;
    background-position: center !important;
  }
}

.nav-address {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.footer-address,
.footer-phone,
.contact-address,
.contact-phone {
  margin: 8px 0;
}

/* Compact contact details in header */
.site-header .nav-utility {
  flex-shrink: 1;
}

.site-header .nav-contact {
  max-width: 330px;
  flex-wrap: wrap;
  row-gap: 2px;
  white-space: normal;
  line-height: 1.25;
}

.site-header .nav-address {
  flex-basis: 100%;
  font-size: 0.76rem;
}

@media (max-width: 1120px) {
  .site-header .nav-contact a[href^="mailto"],
  .site-header .nav-address {
    display: none;
  }
}

/* Hide legacy Elementor header from old TripTreat template */
.elementor-location-header,
header.elementor-location-header,
.elementor-location-header > .elementor-section {
  display: none !important;
  height: 0 !important;
  min-height: 0 !important;
  overflow: hidden !important;
  visibility: hidden !important;
}

.site-header {
  z-index: 10000 !important;
}

.hotel-package-panel {
  display: none;
}

.hotel-package-panel.is-active {
  display: block;
}

#all-inclusive-holidays {
  padding-bottom: 72px;
}

.hotel-package-panel.is-active {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

/* Tighten holiday detail pages so no empty beige gap appears after the hero */
.holiday-detail-section {
  padding-top: 34px !important;
}

.holiday-detail-section .section-head {
  margin-bottom: 22px;
}

@media (max-width: 760px) {
  .holiday-detail-section {
    padding-top: 24px !important;
  }
}

/* Holiday package pages should render immediately without animation gaps */
.holiday-detail-section .fade-up,
.holiday-detail-section.fade-up,
.holiday-detail-section .hotel-card {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

body:has(.holiday-detail-section) .hero.page-hero {
  min-height: 300px !important;
}

.holiday-detail-section .section-head p {
  margin-bottom: 0;
}

@media (max-width: 760px) {
  body:has(.holiday-detail-section) .hero.page-hero {
    min-height: 300px !important;
  }

  .holiday-detail-section .section-head p {
    display: none;
  }
}

body.holiday-detail-page .hero.page-hero {
  min-height: 300px !important;
  padding-block: 52px 34px !important;
}

body.holiday-detail-page .holiday-detail-section {
  padding-top: 12px !important;
}

body.holiday-detail-page .holiday-detail-section .container {
  display: grid;
  gap: 18px;
}

body.holiday-detail-page .holiday-detail-section .section-head {
  margin-bottom: 0 !important;
}

body.holiday-detail-page .holiday-detail-section .section-head p {
  display: none;
}

#all-inclusive-holidays .holiday-card h3,
[dir="rtl"] #all-inclusive-holidays .holiday-card h3 {
  color: #ffffff !important;
  font-weight: 800 !important;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.72);
}

#all-inclusive-holidays .holiday-card p,
[dir="rtl"] #all-inclusive-holidays .holiday-card p {
  color: rgba(255, 255, 255, 0.98) !important;
}

.legal-hero {
  padding: 150px 0 58px;
  background: linear-gradient(135deg, var(--blue), var(--blue-soft));
  color: var(--white);
}

.legal-hero h1 {
  max-width: 900px;
  margin-top: 16px;
  color: var(--white);
  font-size: clamp(2.4rem, 6vw, 4.6rem);
}

.legal-hero p {
  max-width: 780px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.legal-hero .breadcrumb,
.legal-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.78);
}

.legal-section {
  background: var(--sand);
}

.legal-layout {
  display: grid;
  gap: 18px;
  max-width: 920px;
}

.legal-block {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(12, 35, 64, 0.08);
}

.legal-block h2 {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.legal-block p {
  margin: 8px 0 0;
  color: var(--muted);
}

.legal-back {
  width: max-content;
}

.footer-bottom a {
  color: inherit;
  font-weight: 800;
}

.legal-footer-links {
  padding: 18px 0 24px;
  background: #071a31;
  color: rgba(255, 255, 255, 0.76);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-footer-links .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.legal-footer-links a {
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 850;
}

/* Keep the main menu fixed at the top while scrolling */
.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10000 !important;
}

body.admin-bar .site-header {
  top: 32px !important;
}

body {
  padding-top: 76px;
}

body.admin-bar {
  padding-top: 108px;
}

@media (max-width: 760px) {
  .legal-hero {
    padding: 122px 0 42px;
  }

  .legal-block {
    padding: 18px;
  }

  body {
    padding-top: 118px;
  }

  body.admin-bar {
    padding-top: 164px;
  }
}
